/* ============================================
   DESIGN TOKENS — CLEAN WHITE ANIMATED THEME
============================================ */
:root {
    --bg: #f8fafc;
    --bg-2: #ffffff;
    --surface: rgba(255, 255, 255, 0.9);
    --border: #e2e8f0;
    --primary: #4f46e5;
    --secondary: #0284c7;
    --accent: #10b981;
    --grad: linear-gradient(135deg, #4f46e5 0%, #0284c7 50%, #0d9488 100%);
    --text: #0f172a;
    --text-muted: #475569;
    --text-sub: #64748b;
    --font: 'Space Grotesk', sans-serif;
    --mono: 'Space Mono', monospace;
}

/* ============================================
   RESET
============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: rgba(79, 70, 229, 0.15);
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
}

/* ============================================
   SCROLL PROGRESS
============================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--grad);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

/* ============================================
   CUSTOM CURSOR
============================================ */
#cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s, width 0.3s, height 0.3s, background 0.3s;
    box-shadow: 0 0 12px rgba(79, 70, 229, 0.4);
}

#cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(79, 70, 229, 0.35);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

/* ============================================
   FLOATING CTA
============================================ */
#floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--grad);
    color: white;
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 900;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

#floating-cta.hidden {
    opacity: 0;
    transform: translateY(80px);
    pointer-events: none;
}

#floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.6);
}

/* ============================================
   BACK TO TOP
============================================ */
#back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-sub);
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 900;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

#back-to-top.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

#back-to-top:hover {
    color: var(--text);
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(124, 58, 237, 0.1);
}

/* ============================================
   NAVBAR
============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s;
}

#navbar.scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--mono);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-logo .dot {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-sub);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links .nav-cta {
    background: var(--grad);
    color: white !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s !important;
}

.nav-links .nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-sub);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mob-link {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-sub);
    transition: color 0.3s;
}

.mob-link:hover,
.mob-cta {
    color: var(--secondary) !important;
}

/* ============================================
   HERO
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 60% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    animation: meshFloat 12s ease-in-out infinite alternate;
}

@keyframes meshFloat {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.05) translate(10px, -10px);
    }
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--secondary);
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.25);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.hero-name {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -4px;
}

.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-role {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-sub);
    margin-bottom: 20px;
}

.typed-text {
    color: var(--text);
    font-weight: 600;
}

.cursor-blink {
    color: var(--secondary);
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.btn {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: var(--font);
}

.btn-primary {
    background: var(--grad);
    color: white;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proof-num {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--mono);
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Pulse dots */
.pulse-dot-small {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulseGreen 2s infinite;
    flex-shrink: 0;
}

/* ============================================
   GLASS
============================================ */
.glass {
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    border-radius: 16px;
}

/* ============================================
   SECTION COMMON
============================================ */
.section-label {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ============================================
   ABOUT
============================================ */
.about {
    background: var(--bg-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-body {
    color: var(--text-sub);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

@keyframes shimmer {
    0% {
        background-position: -300% 0;
    }

    100% {
        background-position: 300% 0;
    }
}

.badge {
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-sub);
    transition: all 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(124, 58, 237, 0.15) 40%, rgba(6, 182, 212, 0.15) 60%, transparent 100%);
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.badge:hover {
    border-color: rgba(124, 58, 237, 0.45);
    color: var(--text);
    background: rgba(124, 58, 237, 0.08);
}

.badge:hover::after {
    opacity: 1;
    animation: shimmer 1.6s linear infinite;
}

.about-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s;
}

.stat-card:hover {
    transform: translateX(8px);
    border-color: rgba(124, 58, 237, 0.3);
}

.stat-icon-svg {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--c) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--c) 20%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c);
    flex-shrink: 0;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--mono);
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================
   SERVICES
============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px;
    transition: all 0.4s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.12), 0 4px 15px rgba(0, 0, 0, 0.03);
}

@keyframes featuredGlow {

    0%,
    100% {
        box-shadow: 0 0 24px rgba(124, 58, 237, 0.15);
        border-color: rgba(124, 58, 237, 0.35);
    }

    50% {
        box-shadow: 0 0 40px rgba(6, 182, 212, 0.2);
        border-color: rgba(6, 182, 212, 0.4);
    }
}

.featured-card {
    border-color: rgba(124, 58, 237, 0.35);
    background: rgba(124, 58, 237, 0.05);
    animation: featuredGlow 4s ease-in-out infinite;
}

.featured-pill {
    position: absolute;
    top: -14px;
    right: 30px;
    background: var(--grad);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--clr) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--clr) 20%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr);
    margin-bottom: 24px;
    box-shadow: 0 0 20px color-mix(in srgb, var(--clr) 10%, transparent);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-card>p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    color: var(--text-sub);
    font-size: 0.925rem;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 0.8rem;
}

/* ============================================
   PROCESS
============================================ */
.process {
    background: var(--bg-2);
}

.process-track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 39px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #7c3aed, #06b6d4, #10b981, #f59e0b);
    opacity: 0.3;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid var(--clr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr);
    box-shadow: 0 0 20px color-mix(in srgb, var(--clr) 20%, transparent);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    background: var(--bg-2);
}

.step-content {
    padding: 32px 36px;
    transition: all 0.4s;
}

.step-content:hover {
    transform: translateX(8px);
    border-color: rgba(124, 58, 237, 0.2);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.step-content>p {
    color: var(--text-sub);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.step-detail {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.step-detail span {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--secondary);
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 5px 14px;
    border-radius: 100px;
}

/* ============================================
   PROJECTS
============================================ */
.projects {}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.project-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-areas:
        "meta body"
        "frame frame";
    gap: 32px;
    align-items: start;
    padding: 44px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.project-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.project-item:hover::before {
    opacity: 1;
}

.project-item:hover {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.12), 0 4px 15px rgba(0, 0, 0, 0.03);
}

.project-item.alt:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

.project-meta {
    grid-area: meta;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.project-num {
    font-family: var(--mono);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
}

.project-tag {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr);
    background: color-mix(in srgb, var(--clr) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--clr) 25%, transparent);
    padding: 4px 12px;
    border-radius: 100px;
}

.project-body {
    grid-area: body;
    flex: 1;
}

.project-body h3 {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.project-aka {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1.2rem;
}

.project-body>p {
    color: var(--text-sub);
    font-size: 0.93rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.project-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight {
    font-size: 0.875rem;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--grad);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(124, 58, 237, 0.5);
}

.project-tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-chip {
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 0.73rem;
    color: var(--text-sub);
    transition: 0.3s;
}

.tech-chip:hover {
    border-color: rgba(124, 58, 237, 0.4);
    color: var(--text);
}

/* ============================================
   HOSTED PROJECT BROWSER PREVIEW FRAME (SPACIOUS FULL-WIDTH)
============================================ */
.project-browser-frame {
    grid-area: frame;
    width: 100%;
    height: 420px;
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.85);
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    margin-top: 8px;
}

.project-item:hover .project-browser-frame {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.16), 0 4px 15px rgba(0, 0, 0, 0.04);
    border-color: rgba(79, 70, 229, 0.35);
}

.browser-header {
    height: 36px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 10px;
    flex-shrink: 0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}
.browser-dots .dot.red { background: #ef4444; }
.browser-dots .dot.yellow { background: #f59e0b; }
.browser-dots .dot.green { background: #10b981; }

.browser-url {
    flex: 1;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    height: 22px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.browser-body {
    flex: 1;
    position: relative;
    width: 100%;
    height: calc(100% - 36px);
    background: #f8fafc;
    overflow: hidden;
}

.browser-body iframe {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    transform: scale(1);
    background: transparent;
}

/* Fallback Mockup UI (renders behind iframe if iframe is blocked by X-Frame-Options) */
.browser-mockup-ui {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
}

.mockup-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-brand {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.mockup-badge {
    font-family: var(--mono);
    font-size: 0.72rem;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    font-weight: 600;
}

.mockup-content-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.mockup-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mockup-stat-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.mockup-stat-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4f46e5;
    font-family: var(--mono);
}

.mockup-stat-lbl {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 4px;
}

.mockup-chat-bubble {
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 80%;
}

.mockup-chat-bubble.user {
    background: #4f46e5;
    color: #ffffff;
    align-self: flex-end;
}

.mockup-chat-bubble.bot {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.browser-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-browser-frame:hover .browser-overlay {
    opacity: 1;
}

.preview-btn {
    background: var(--grad);
    color: #ffffff !important;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    transform: translateY(8px);
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-browser-frame:hover .preview-btn {
    transform: translateY(0);
}

.voice-preview-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-voice-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pulse-wave-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
}

.wave-bar {
    width: 5px;
    background: #818cf8;
    border-radius: 10px;
    animation: wavePulse 1.2s ease-in-out infinite alternate;
}
.wave-bar.b1 { height: 16px; animation-delay: 0.1s; }
.wave-bar.b2 { height: 32px; animation-delay: 0.3s; }
.wave-bar.b3 { height: 22px; animation-delay: 0.2s; }
.wave-bar.b4 { height: 36px; animation-delay: 0.4s; }
.wave-bar.b5 { height: 18px; animation-delay: 0.15s; }

@keyframes wavePulse {
    0% { transform: scaleY(0.4); opacity: 0.5; }
    100% { transform: scaleY(1.1); opacity: 1; }
}

.voice-status-pill {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: #34d399;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 4px 12px;
    border-radius: 100px;
}

/* ============================================
   PRICING
============================================ */
.pricing {
    background: var(--bg-2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-card {
    padding: 44px 36px;
    transition: all 0.4s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.12), 0 4px 15px rgba(0, 0, 0, 0.03);
}

.featured-pricing {
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(124, 58, 237, 0.06);
    transform: scale(1.02);
}

.featured-pricing:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-from {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--mono);
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing checkmark icons */
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-sub);
}

.pricing-features li .ci {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-features li .ci svg {
    display: block;
}

/* Section dividers */
.section-sep {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.07) 20%, rgba(255, 255, 255, 0.07) 80%, transparent 100%);
    margin: 0;
    border: none;
}

/* Footer socials */
.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.4);
    color: var(--text);
    transform: translateY(-2px);
}

.pricing-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-sub);
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-note a {
    color: var(--secondary);
}

/* ============================================
   TECH & CORE COMPETENCIES
============================================ */
.competencies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.competency-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.4s ease;
    position: relative;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.competency-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 20px 45px rgba(79, 70, 229, 0.1), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.featured-comp {
    border-color: rgba(244, 63, 94, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fff1f2 100%);
}

.comp-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--c) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c);
    margin-bottom: 4px;
}

.competency-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text);
}

.competency-card p {
    font-size: 0.92rem;
    color: var(--text-sub);
    line-height: 1.7;
    flex: 1;
}

.comp-outcome-tag {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    align-self: flex-start;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tech-cat {
    padding: 32px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tech-cat:hover {
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(79, 70, 229, 0.1);
}

.tech-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
}

.tech-cat-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.tech-outcome-pill {
    font-family: var(--mono);
    font-size: 0.68rem;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
    font-weight: 600;
    white-space: nowrap;
}

.tech-items-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--text-sub);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    border-color: rgba(79, 70, 229, 0.4);
    background: #ffffff;
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
}

.tech-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.tech-ship-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 16px;
    line-height: 1.6;
}

/* ============================================
   WHY
============================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.why-right {
    display: flex;
    flex-direction: column;
}

.why-item {
    display: flex;
    gap: 30px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}

.why-item:first-child {
    padding-top: 0;
}

.why-num {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 700;
    padding-top: 4px;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   FAQ
============================================ */
.faq {
    background: var(--bg-2);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(124, 58, 237, 0.35);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-sub);
    line-height: 1.85;
    font-size: 0.97rem;
}

/* ============================================
   CONTACT
============================================ */
.contact-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.contact-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 52px;
    line-height: 1.7;
}

.contact-platforms {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    border-radius: 14px;
    transition: all 0.4s;
    text-align: left;
}

.platform-btn:hover {
    transform: translateX(8px);
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(124, 58, 237, 0.08);
}

.platform-icon-svg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--c) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--c) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c);
    flex-shrink: 0;
}

.platform-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.platform-handle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 100px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulseGreen 2s infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ============================================
   FOOTER
============================================ */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-name {
    font-family: var(--mono);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-name .dot {
    color: var(--secondary);
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text);
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .featured-pricing {
        transform: none;
    }

    .featured-pricing:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 1024px) {

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-item {
        grid-template-columns: 80px 1fr;
    }

    .project-visual {
        display: none;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .process-line {
        left: 29px;
    }

    .step-icon-wrap {
        width: 60px;
        height: 60px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .section {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-name {
        letter-spacing: -2px;
    }

    .project-item {
        grid-template-columns: 1fr;
        grid-template-areas:
            "meta"
            "body"
            "frame";
        gap: 20px;
        padding: 28px 24px;
    }

    .project-browser-frame {
        height: 280px;
    }

    .project-meta {
        flex-direction: row;
        align-items: center;
    }

    .project-num {
        font-size: 2rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    #back-to-top {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .tech-categories {
        grid-template-columns: 1fr;
    }

    body {
        cursor: auto;
    }

    #cursor,
    #cursor-follower {
        display: none;
    }
}

/* ============================================
   PROJECT DEMO LINK
============================================ */
.project-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 8px 18px;
    border-radius: 8px;
    background: rgba(6, 182, 212, 0.06);
    transition: all 0.3s;
    font-family: var(--font);
}

.project-link:hover {
    background: rgba(6, 182, 212, 0.14);
    border-color: rgba(6, 182, 212, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.15);
}

/* ============================================
   CONTACT FORM STYLES
============================================ */
.contact-form-wrap {
    margin: 40px auto 30px;
    padding: 36px;
    border-radius: 20px;
    border: 1px solid rgba(79, 70, 229, 0.15);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.08), 0 4px 15px rgba(0, 0, 0, 0.02);
    text-align: left;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--mono);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.form-group select option {
    background: #ffffff;
    color: #0f172a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.18);
    background: #ffffff;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    cursor: pointer;
}

.form-status {
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.form-status.success {
    color: #10b981;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-status.error {
    color: #f43f5e;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.contact-divider {
    position: relative;
    margin: 36px 0 24px;
    text-align: center;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
    z-index: 1;
}

.contact-divider span {
    position: relative;
    z-index: 2;
    background: var(--bg);
    padding: 0 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 24px;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}