/* ============================================================
   Software House — Apple-Style Design System
   ============================================================ */

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

:root {
    --white:        #FFFFFF;
    --black:        #000000;
    --ink:          #1D1D1F;
    --ink-2:        #424245;
    --gray:         #6E6E73;
    --gray-2:       #86868B;
    --surface:      #F5F5F7;
    --surface-2:    #FBFBFD;
    --border:       #D2D2D7;
    --border-lt:    #E5E5E7;
    --blue:         #22d3ee;
    --blue-hov:     #06b6d4;
    --blue-tint:    rgba(34,211,238,0.08);
    --green:        #34C759;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --sh-sm: 0 2px 8px rgba(0,0,0,0.06);
    --sh-md: 0 8px 32px rgba(0,0,0,0.08);
    --sh-lg: 0 20px 60px rgba(0,0,0,0.12);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.16, 1, 0.3, 1);
    --t: 0.3s;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, 'Inter', BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.35; }
}

@keyframes scrollThumb {
    0%   { top: 0;    opacity: 1; }
    80%  { top: 28px; opacity: 0; }
    100% { top: 0;    opacity: 0; }
}

/* ============================================================
   HERO ENTRANCE ANIMATIONS
   ============================================================ */

.animate-up {
    opacity: 0;
    animation: fadeUp 0.9s var(--spring) forwards;
    animation-delay: var(--d, 0s);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   ANNOUNCEMENT RIBBON
   ============================================================ */

.announcement-ribbon {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    opacity: 0.95;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    background: rgba(255,255,255,0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.96);
    box-shadow: var(--sh-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

.navbar-brand {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink) !important;
    letter-spacing: -0.4px;
    flex-shrink: 0;
    overflow: visible;
}
.navbar-brand img {
    height: 110px;
    margin: -18px 0;
    display: block;
}

.navbar-nav { gap: 0.15rem; }

.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink) !important;
    padding: 0.38rem 0.85rem !important;
    border-radius: var(--r-sm);
    transition: background var(--t) var(--ease);
}
.nav-link:hover { background: rgba(0,0,0,0.05); }

/* AI Solutions nav link — subtle blue tint */
.nav-link-ai {
    color: var(--blue) !important;
    font-weight: 600 !important;
}
.nav-link-ai:hover { background: rgba(34,211,238,0.07) !important; }

.btn-nav-cta {
    background: transparent;
    color: var(--blue) !important;
    border: 1.5px solid var(--blue);
    border-radius: 5px;
    padding: 0.42rem 1.15rem;
    font-size: 13.5px;
    font-weight: 600;
    transition: background var(--t), color var(--t), transform var(--t);
    text-decoration: none;
    align-items: center;
    gap: 0;
}
.btn-nav-cta:hover {
    background: var(--blue);
    color: var(--white) !important;
    transform: scale(1.03);
}

/* ============================================================
   MOBILE FULL-SCREEN NAV OVERLAY
   ============================================================ */

/* Hamburger bars */
.mob-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px 8px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
}
.mob-bar {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.38s var(--spring), opacity 0.22s ease, width 0.3s ease;
    transform-origin: center;
}
.mob-bar-1 { width: 24px; }
.mob-bar-2 { width: 16px; }
.mob-bar-3 { width: 24px; }
body.nav-open .mob-bar-1 { transform: translateY(7px) rotate(45deg); }
body.nav-open .mob-bar-2 { opacity: 0; transform: scaleX(0); }
body.nav-open .mob-bar-3 { transform: translateY(-7px) rotate(-45deg); width: 24px; }
body.nav-open { overflow: hidden; }

/* Full-screen overlay — lives OUTSIDE the navbar element in the DOM */
.mob-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                opacity   0.28s ease,
                visibility 0s linear 0.42s;
    overflow-y: auto;
}
.mob-nav-overlay.nav-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                opacity   0.28s ease,
                visibility 0s linear 0s;
}

/* Techy grid backdrop */
.mob-nav-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34,211,238,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,0.05) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

/* Header row */
.mob-nav-head {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    height: 130px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.mob-nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.mob-nav-logo {
    height: 150px;
    width: auto;
    display: block;
    filter: invert(1);
}
.mob-nav-close {
    position: absolute;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.mob-nav-close:hover { background: rgba(34,211,238,0.15); border-color: rgba(34,211,238,0.5); color: #22d3ee; }

/* Nav links */
.mob-nav-links {
    list-style: none;
    padding: 2rem 1.5rem 1rem;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 1;
}
.mob-nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.38s ease, transform 0.38s var(--spring);
}
.mob-nav-overlay.nav-open .mob-nav-links li { opacity: 1; transform: translateX(0); }
.mob-nav-overlay.nav-open .mob-nav-links li:nth-child(1) { transition-delay: 0.07s; }
.mob-nav-overlay.nav-open .mob-nav-links li:nth-child(2) { transition-delay: 0.12s; }
.mob-nav-overlay.nav-open .mob-nav-links li:nth-child(3) { transition-delay: 0.17s; }
.mob-nav-overlay.nav-open .mob-nav-links li:nth-child(4) { transition-delay: 0.22s; }
.mob-nav-overlay.nav-open .mob-nav-links li:nth-child(5) { transition-delay: 0.27s; }
.mob-nav-overlay.nav-open .mob-nav-links li:nth-child(6) { transition-delay: 0.32s; }
.mob-nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: color 0.2s ease;
}
.mob-nav-links a::after {
    content: "→";
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.2s ease, transform 0.2s var(--spring);
    font-weight: 400;
}
.mob-nav-links a:hover { color: #22d3ee !important; }
.mob-nav-links a:hover::after { opacity: 1; transform: translateX(0); }
.mob-link-ai { color: #22d3ee !important; }

/* Footer: CTA + phone */
.mob-nav-foot {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.36s ease 0.36s, transform 0.36s var(--spring) 0.36s;
}
.mob-nav-overlay.nav-open .mob-nav-foot { opacity: 1; transform: translateY(0); }
.mob-nav-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: #22d3ee;
    color: var(--ink) !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: var(--r-md);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s var(--spring);
}
.mob-nav-cta-btn:hover { background: #06b6d4; transform: scale(1.02); }
.mob-nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.45) !important;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mob-nav-phone:hover { color: rgba(255,255,255,0.8) !important; }
.mob-nav-phone i { font-size: 0.75rem; }

@media (max-width: 991.98px) {
    .mob-toggler { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero-section {
    position: relative;
    min-height: calc(100vh - 78px);
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 8rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

/* ============================================================
   HERO ROBOTIC / HUD COMMAND-CENTER LAYER
   ============================================================ */
.hero-hud {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

/* --- Circuit-board grid with traveling light pulses --- */
.hud-grid {
    position: absolute;
    inset: -2px;
    background-image:
        linear-gradient(rgba(34,211,238,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 35%, transparent 78%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 35%, transparent 78%);
    animation: hudGridDrift 26s linear infinite;
}
.hud-grid::before,
.hud-grid::after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(34,211,238,0.9), transparent);
    box-shadow: 0 0 12px 1px rgba(34,211,238,0.7);
    height: 1px;
    width: 240px;
    top: 22%;
    left: -240px;
    animation: hudPulseRow 7s ease-in-out infinite;
}
.hud-grid::after {
    top: auto;
    bottom: 18%;
    left: auto;
    right: -240px;
    width: 1px;
    height: 220px;
    background: linear-gradient(180deg, transparent, rgba(34,211,238,0.9), transparent);
    animation-name: hudPulseCol;
    animation-duration: 9s;
    animation-delay: 2.4s;
}
@keyframes hudGridDrift {
    to { background-position: 64px 64px, 64px 64px; }
}
@keyframes hudPulseRow {
    0%   { transform: translateX(0); opacity: 0; }
    8%   { opacity: 1; }
    50%  { opacity: 1; }
    60%  { opacity: 0; }
    100% { transform: translateX(calc(100vw + 480px)); opacity: 0; }
}
@keyframes hudPulseCol {
    0%   { transform: translateY(0); opacity: 0; }
    8%   { opacity: 1; }
    50%  { opacity: 1; }
    60%  { opacity: 0; }
    100% { transform: translateY(calc(-100vh - 440px)); opacity: 0; }
}

/* --- Node network canvas (drawn in script.js) --- */
.hud-nodes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

/* --- Business → World: building + flow + globe SVG --- */
.hud-flow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Building */
.hud-bld { vector-effect: non-scaling-stroke; }
.hud-sig  { fill: none; stroke: rgba(34,211,238,0.22); stroke-width: 0.6; }
.hud-sig-1 { animation: hudSigPulse 2.6s ease-out infinite; }
.hud-sig-2 { animation: hudSigPulse 2.6s ease-out infinite -0.87s; }
.hud-sig-3 { animation: hudSigPulse 2.6s ease-out infinite -1.74s; }
@keyframes hudSigPulse { 0% { opacity: 0.7; } 100% { opacity: 0; } }

/* Flow paths */
.hud-fp {
    fill: none;
    stroke-width: 0.8;
    stroke-dasharray: 18 30;
    animation: hudFlowDash 4s linear infinite;
}
.hud-fp-a { stroke: rgba(34,211,238,0.22); animation-duration: 5s; }
.hud-fp-b { stroke: rgba(34,211,238,0.28); animation-duration: 4.5s; animation-delay: -1s; }
.hud-fp-c { stroke: rgba(34,211,238,0.16); animation-duration: 6s;   animation-delay: -2.2s; }
.hud-fp-d { stroke: rgba(34,211,238,0.28); animation-duration: 4.5s; animation-delay: -0.6s; }
.hud-fp-e { stroke: rgba(34,211,238,0.22); animation-duration: 5s;   animation-delay: -3.1s; }
@keyframes hudFlowDash { to { stroke-dashoffset: -48; } }

/* Particles */
.hud-prt {
    fill: rgba(34,211,238,0.8);
    filter: drop-shadow(0 0 3px rgba(34,211,238,1));
}

/* Globe */
.hud-globe-g {
    transform-box: fill-box;
    transform-origin: center;
    animation: hudGlobeSpin 90s linear infinite;
}
.hud-gm {
    transform-box: fill-box;
    transform-origin: center;
    animation: hudGlobeMeridian 18s ease-in-out infinite;
}
.hud-gm:nth-child(5) { animation-delay: -3.2s; }
.hud-gm:nth-child(6) { animation-delay: -9s; }
.hud-gm:nth-child(7) { animation-delay: -14.8s; }
@keyframes hudGlobeSpin { to { transform: rotate(360deg); } }
@keyframes hudGlobeMeridian {
    0%, 100% { transform: scaleX(1); }
    50%      { transform: scaleX(-1); }
}

/* --- Scan-line sweep --- */
.hud-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    top: -120px;
    background: linear-gradient(180deg, transparent, rgba(34,211,238,0.1) 45%, rgba(34,211,238,0.22) 50%, rgba(34,211,238,0.1) 55%, transparent);
    box-shadow: 0 0 40px 6px rgba(34,211,238,0.06);
    animation: hudScan 9s ease-in-out infinite;
}
@keyframes hudScan {
    0%   { transform: translateY(0); opacity: 0; }
    8%   { opacity: 1; }
    46%  { opacity: 1; }
    55%  { opacity: 0; }
    100% { transform: translateY(calc(100vh + 120px)); opacity: 0; }
}

/* --- HUD targeting-frame corner brackets --- */
.hud-corner {
    position: absolute;
    width: 46px;
    height: 46px;
    border: 1.5px solid rgba(34,211,238,0.4);
    opacity: 0.8;
}
.hud-corner-tl { top: 28px;    left: 28px;    border-right: none; border-bottom: none; }
.hud-corner-tr { top: 28px;    right: 28px;   border-left: none;  border-bottom: none; }
.hud-corner-bl { bottom: 28px; left: 28px;    border-right: none; border-top: none; }
.hud-corner-br { bottom: 28px; right: 28px;   border-left: none;  border-top: none; }

/* --- Live readout panels --- */
.hud-readout {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'SF Mono', 'Menlo', monospace;
    font-size: 11px;
    letter-spacing: 0.4px;
    color: rgba(34,211,238,0.55);
    text-transform: uppercase;
}
.hud-readout-line { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.hud-readout-line i { font-size: 10px; opacity: 0.8; }
.hud-readout-line em { font-style: normal; color: rgba(255,255,255,0.78); font-weight: 600; letter-spacing: 0.6px; }
.hud-readout-tl { top: 50px;    left: 52px; align-items: flex-start; }
.hud-readout-br { bottom: 50px; right: 52px; align-items: flex-end; text-align: right; }

@media (max-width: 860px) {
    .hud-readout, .hud-corner, .hud-flow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-hud * { animation: none !important; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    width: 100%;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 2.25rem;
    letter-spacing: 0.2px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

/* Headline */
.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.06em;
    margin-bottom: 1.75rem;
}

.hero-line {
    display: block;
    font-size: clamp(2.6rem, 7vw, 5.6rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.hero-line-accent {
    background: linear-gradient(90deg, #a5f3fc 0%, #67e8f9 40%, #22d3ee 80%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sub */
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.72);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.hero-cta-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.42);
    text-align: center;
    margin: 0 0 2.75rem;
    letter-spacing: 0.01em;
}

.btn-hero-primary {
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 14px;
    padding: 0.875rem 2.1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-hero-primary:hover {
    background: var(--blue-hov);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: 0 10px 28px rgba(34,211,238,0.45);
}

.btn-hero-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 14px;
    padding: 0.875rem 2.1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--t), border-color var(--t), transform var(--t);
}
.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.18);
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.04);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.stat-num {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-lbl {
    font-size: 11.5px;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.18);
}

/* Scroll hint */
.hero-scroll {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-label {
    color: rgba(255,255,255,0.45);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.scroll-track {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 14px;
    background: rgba(255,255,255,0.55);
    border-radius: 2px;
    animation: scrollThumb 1.8s ease-in-out infinite;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */

.section-hd {
    text-align: center;
    margin-bottom: 4rem;
}

.eyebrow {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--ink);
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-section {
    padding: 8rem 1.5rem;
    background: var(--surface-2);
    position: relative;
    overflow: hidden;
}
.services-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(29,29,31,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29,29,31,0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 35%, transparent 100%);
            mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 35%, transparent 100%);
    pointer-events: none;
}
.services-section .section-hd { position: relative; z-index: 1; }

/* ── Background watermarks: globe + dim code (light-mode tints) ── */
.svc-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.svc-bg-globe {
    position: absolute;
    top: -22%; right: -10%;
    font-size: 40rem;
    line-height: 1;
    color: rgba(34,211,238,0.06);
    animation: svcGlobeSpin 110s linear infinite;
}
@keyframes svcGlobeSpin { to { transform: rotate(360deg); } }
.svc-bg-code {
    position: absolute;
    margin: 0;
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 0.8rem;
    line-height: 1.75;
    color: rgba(29,29,31,0.05);
    white-space: pre;
    user-select: none;
}
.svc-bg-code-1 { top: 11%;  left: 4%;  transform: rotate(-2deg); }
.svc-bg-code-2 { bottom: 14%; left: 7%; transform: rotate(1.5deg); color: rgba(124,58,237,0.05); }
.svc-bg-code-3 { top: 16%;  right: 5%; transform: rotate(2deg); color: rgba(16,185,129,0.05); }
.svc-bg-code-4 { bottom: 10%; right: 8%; transform: rotate(-1.5deg); }
@media (max-width: 1180px) {
    .svc-bg-code, .svc-bg-globe { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .svc-bg-globe { animation: none !important; }
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Browser-tab styled service card (light-mode "ER diagram" tab) ── */
.svc-tab {
    --accent: 34,211,238;
    position: relative;
    display: block;
    background: var(--white);
    border: 1px solid var(--border-lt);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--sh-sm);
    transition: transform 0.4s var(--spring), border-color 0.35s ease, box-shadow 0.4s ease;
}
/* Static base edge */
.svc-tab::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(var(--accent), 0.4);
    z-index: 2;
    transition: background 0.3s ease;
}
/* Moving glowy neon comet that sweeps the top edge */
.svc-tab::after {
    content: '';
    position: absolute; top: -1px; left: -28%;
    width: 28%; height: 2px;
    background: linear-gradient(90deg, transparent, rgb(var(--accent)) 50%, transparent);
    box-shadow: 0 0 14px 2px rgba(var(--accent), 0.6), 0 0 28px 4px rgba(var(--accent), 0.25);
    border-radius: 2px;
    z-index: 3;
    animation: svcBarSweep 4s ease-in-out infinite;
    animation-delay: var(--sweep-delay, 0s);
}
@keyframes svcBarSweep {
    0%   { left: -28%; opacity: 0; }
    12%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}
.svc-tab:hover {
    transform: translateY(-7px);
    border-color: rgba(var(--accent), 0.4);
    box-shadow: 0 30px 70px -22px rgba(15,23,42,0.16), 0 0 48px -14px rgba(var(--accent), 0.3);
}
.svc-tab:hover::before { background: rgba(var(--accent), 0.7); }
.svc-tab:hover::after { animation-duration: 1.9s; }

.svc-tab[data-g="1"] { --accent: 34,211,238;  --sweep-delay: 0s; }
.svc-tab[data-g="2"] { --accent: 124,58,237;  --sweep-delay: 0.7s; }
.svc-tab[data-g="3"] { --accent: 16,185,129;  --sweep-delay: 1.4s; }
.svc-tab[data-g="4"] { --accent: 234,88,12;   --sweep-delay: 2.1s; }
.svc-tab[data-g="5"] { --accent: 219,39,119;  --sweep-delay: 2.8s; }
.svc-tab[data-g="6"] { --accent: 37,99,235;   --sweep-delay: 3.5s; }
@media (prefers-reduced-motion: reduce) {
    .svc-tab::after { animation: none !important; opacity: 0; }
}

.svc-tab-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.85rem 1.1rem;
    background: rgba(29,29,31,0.025);
    border-bottom: 1px solid var(--border-lt);
}
.svc-tab-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.svc-tab-dot.red    { background: #ff5f57; }
.svc-tab-dot.yellow { background: #febc2e; }
.svc-tab-dot.green  { background: #28c840; }
.svc-tab-label {
    margin-left: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 0.74rem;
    color: var(--gray-2);
    letter-spacing: 0.01em;
}
.svc-tab-label i { color: rgb(var(--accent)); font-size: 0.7rem; transition: color 0.3s ease; }

.svc-tab-body { padding: 1.85rem 1.6rem 2.1rem; position: relative; }
.svc-tab-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.025em;
    margin-bottom: 0.6rem;
}
.svc-tab-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.svc-tab-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--gray-2);
    text-decoration: none;
    transition: color var(--t), gap var(--t);
}
.svc-tab-link i { font-size: 0.7rem; transition: transform var(--t) var(--spring); }
.svc-tab:hover .svc-tab-link { color: rgb(var(--accent)); gap: 9px; }
.svc-tab:hover .svc-tab-link i { transform: translateX(3px); }

/* Connector dot — gives the grid an "ER-diagram / linked nodes" feel */
.svc-tab-body::after {
    content: '';
    position: absolute;
    bottom: 1.95rem; right: 1.6rem;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgb(var(--accent));
    box-shadow: 0 0 0 4px rgba(var(--accent), 0.14);
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.35s ease, transform 0.35s var(--spring);
}
.svc-tab:hover .svc-tab-body::after { opacity: 1; transform: scale(1); }

/* ============================================================
   WHY US + HOW IT WORKS — combined modern section (no cards)
   ============================================================ */

.wp-section {
    padding: 8rem 1.5rem;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.wp-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.wp-glow {
    position: absolute;
    top: -14%; left: 50%;
    transform: translateX(-50%);
    width: 920px; height: 540px;
    background: radial-gradient(ellipse, rgba(34,211,238,0.1) 0%, transparent 65%);
}
.wp-grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
            mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
}
.wp-section .container-xl { position: relative; z-index: 1; }
.wp-section .section-title { color: #fff; }

.wp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.wp-col-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 2.1rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.wp-col-title i { color: rgb(34,211,238); font-size: 0.95rem; }

/* ── Why Us: flat icon rows, no card backgrounds ── */
.wp-list { display: flex; flex-direction: column; }
.wp-row {
    display: flex;
    gap: 1.25rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: padding-left 0.4s var(--spring);
}
.wp-row:last-child { border-bottom: none; padding-bottom: 0; }
.wp-row:first-child { padding-top: 0; }
.wp-row:hover { padding-left: 0.6rem; }
.wp-row-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.2);
    color: rgb(34,211,238);
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.4s var(--spring);
}
.wp-row:hover .wp-row-icon { transform: scale(1.08) rotate(-6deg); background: rgba(34,211,238,0.18); }
.wp-row-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.015em;
    margin-bottom: 0.4rem;
}
.wp-row-text p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.46);
    line-height: 1.7;
    margin: 0;
}

/* ── How It Works: vertical glowing timeline ── */
.wp-timeline { position: relative; }
.wp-timeline-line {
    position: absolute;
    top: 28px; bottom: 28px; left: 23px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(34,211,238,0.55), rgba(255,255,255,0.05));
}
.wp-step {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2.4rem;
}
.wp-step:last-child { padding-bottom: 0; }
.wp-step-num {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--ink);
    border: 1px solid rgba(34,211,238,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
    color: rgb(34,211,238);
    letter-spacing: -0.02em;
    box-shadow: 0 0 0 6px var(--ink), 0 0 26px -6px rgba(34,211,238,0.55);
}
.wp-step-text { padding-top: 0.55rem; }
.wp-step-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.015em;
    margin-bottom: 0.4rem;
}
.wp-step-text p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.46);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 860px) {
    .wp-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

/* ============================================================
   CTA
   ============================================================ */

.cta-section {
    padding: 8rem 1.5rem;
    background: var(--surface);
}

.cta-box {
    background: var(--ink);
    border-radius: var(--r-xl);
    padding: 5.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(34,211,238,0.28) 0%, transparent 65%);
    pointer-events: none;
}

.cta-eyebrow { color: rgba(255,255,255,0.45); }

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.56);
    margin-bottom: 2.5rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}
.cta-footnote {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
}

.btn-cta-primary {
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 14px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-cta-primary:hover {
    background: var(--blue-hov);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: 0 10px 28px rgba(34,211,238,0.5);
}

.btn-cta-ghost {
    background: rgba(255,255,255,0.07);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--t), border-color var(--t), transform var(--t);
}
.btn-cta-ghost:hover {
    background: rgba(255,255,255,0.14);
    color: var(--white);
    border-color: rgba(255,255,255,0.38);
    transform: scale(1.04);
}

/* ============================================================
   FOOTER
   ============================================================ */

/* Top bar */
.site-footer {
    background: var(--ink);
    border-top: none;
    padding: 0;
}
.ft-glow {
    position: absolute;
    top: -220px; left: 50%;
    transform: translateX(-50%);
    width: 760px; height: 420px;
    background: radial-gradient(ellipse, rgba(34,211,238,0.16) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
.site-footer .ft-topbar,
.site-footer .ft-body,
.site-footer .ft-bottombar { position: relative; z-index: 1; }

.ft-topbar {
    background: #29292c;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 1.1rem 1.5rem;
}
.ft-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ft-brand {
    text-decoration: none;
    display: block;
    overflow: visible;
}
.ft-brand img {
    height: 90px;
    margin: -18px 0;
    display: block;
}
.ft-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--t);
}
.ft-phone:hover { color: #fff; }
.ft-phone-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    color: var(--blue);
    flex-shrink: 0;
}
.ft-phone small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

/* Main body */
.ft-body {
    padding: 4rem 1.5rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ft-body-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 3rem;
}

.ft-col-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.ft-col-heading i { color: var(--blue); font-size: 0.8rem; }

/* Contact column */
.ft-contact-block { margin-bottom: 1.75rem; }
.ft-contact-block:last-child { margin-bottom: 0; }
.ft-addr {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
.ft-addr:last-child { margin-bottom: 0; }
.ft-addr strong { color: rgba(255,255,255,0.75); font-weight: 600; }
.ft-email {
    font-size: 0.85rem;
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--t);
}
.ft-email:hover { opacity: 0.75; }

/* Nav links */
.ft-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.ft-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--t), padding-left var(--t);
    display: inline-block;
}
.ft-links a:hover { color: #fff; padding-left: 4px; }

/* Newsletter */
.ft-newsletter-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.85rem;
}
.ft-newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.12);
}
.ft-newsletter-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.82rem;
    padding: 0.65rem 0.9rem;
}
.ft-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.ft-newsletter-btn {
    background: var(--blue);
    border: none;
    color: #fff;
    width: 44px;
    cursor: pointer;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: background var(--t);
}
.ft-newsletter-btn:hover { background: #0891b2; }

/* Social icons */
.ft-socials {
    display: flex;
    gap: 0.65rem;
}
.ft-social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.8rem;
    transition: background var(--t), border-color var(--t), color var(--t);
}
.ft-social-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

/* Bottom bar */
.ft-bottom {
    padding: 1.25rem 1.5rem;
}
.ft-bottom-inner {
    text-align: center;
}
.ft-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.ft-bottom strong { color: rgba(255,255,255,0.55); font-weight: 600; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 210px 210px;
    }
    .work-card-featured { grid-row: 1; grid-column: 1 / 3; }

    .wp-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */

@media (max-width: 768px) {
    .hero-section {
        min-height: 92vh;
        background-attachment: scroll;
        padding: 4.5rem 1.25rem 6rem;
    }

    .hero-stats { gap: 1.5rem; }
    .stat-sep { display: none; }

    .services-section,
    .work-section,
    .wp-section,
    .cta-section { padding: 5rem 1.25rem; }

    .work-header { flex-direction: column; align-items: flex-start; }

    .work-grid {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
    }
    .work-card,
    .work-card-featured {
        width: 100%;
        height: 200px;
        grid-row: unset;
        grid-column: unset;
    }

    .work-more { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .btn-see-all { width: 100%; justify-content: center; }

    .section-hd { margin-bottom: 2.5rem; }

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

    .cta-box { padding: 3rem 1.5rem; }
    .cta-box .eyebrow { margin-bottom: 1rem; }

    .ft-body-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .ft-topbar-inner { gap: 1rem; }
}

@media (max-width: 600px) {
    .ft-body-inner { grid-template-columns: 1fr; gap: 2rem; }
    .ft-topbar-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .ft-bottom p { font-size: 0.75rem; }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ink);
    border: 1.5px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 990;
    opacity: 0;
    transform: translateY(14px) scale(0.92);
    transition: opacity 0.3s ease, transform 0.35s var(--spring),
                background var(--t), border-color var(--t), color var(--t);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    pointer-events: none;
}
.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.scroll-top-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-2px) scale(1.05);
}

/* ============================================================
   OUR WORK
   ============================================================ */

.work-section {
    padding: 8rem 1.5rem;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.work-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 85% 0%, rgba(34,211,238,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.work-section .container-xl { position: relative; z-index: 1; }
.work-section .section-title { color: #fff; }

.work-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.work-intro {
    margin-top: 1rem;
    max-width: 460px;
    font-size: 0.975rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.46);
}
.work-intro strong {
    color: rgb(34,211,238);
    font-weight: 600;
}

.btn-work-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 0.6rem 1.35rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--t) var(--ease),
                color var(--t) var(--ease),
                border-color var(--t) var(--ease);
}
.btn-work-all i { transition: transform var(--t) var(--spring); }
.btn-work-all:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.btn-work-all:hover i { transform: translateX(4px); }

/* Bento Grid */
.work-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 265px 265px;
    gap: 1.1rem;
}

.work-card {
    position: relative;
    display: block;
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    background: #29292c;
    border: 1px solid rgba(255,255,255,0.06);
}

.work-card-featured {
    grid-row: 1 / 3;
}

/* Showcases card — branded gradient background */
.work-bg-showcases {
    background: linear-gradient(
        135deg,
        #0d1117 0%,
        #0f1923 35%,
        #091a23 65%,
        #060e18 100%
    );
}
.work-bg-showcases::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(34,211,238,0.13), transparent 65%),
        radial-gradient(ellipse 40% 40% at 15% 70%, rgba(99,102,241,0.09), transparent 60%);
    pointer-events: none;
}
.work-showcases-chips {
    position: absolute;
    top: 1.25rem; left: 1.25rem;
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    z-index: 2;
}
.work-showcases-chips span {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(34,211,238,0.85);
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(34,211,238,0.22);
    border-radius: 999px; padding: 3px 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.work-subtitle {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.48);
    margin: 0.25rem 0 0;
    line-height: 1.5;
}

.work-img,
.work-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    transition: transform 0.75s var(--spring);
    will-change: transform;
}
.work-card:hover .work-img,
.work-card:hover .work-bg { transform: scale(1.06); }

/* Always-visible info bar */
.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.75rem 1.75rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.84) 0%,
        rgba(0, 0, 0, 0.45) 55%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    transition: padding var(--t) var(--ease);
}
.work-card:hover .work-info { padding-bottom: 2rem; }

.work-meta { flex: 1; min-width: 0; }

.work-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.work-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.work-card-featured .work-title { font-size: 1.45rem; white-space: normal; }

/* Arrow circle button */
.work-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.82rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--t) var(--ease),
                border-color var(--t) var(--ease),
                transform 0.45s var(--spring);
}
.work-card:hover .work-arrow {
    background: var(--blue);
    border-color: var(--blue);
    transform: rotate(-45deg);
}

/* More strip */
.work-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.1rem;
    padding: 1.4rem 1.75rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--r-md);
    border: 1.5px solid rgba(255,255,255,0.08);
}

.work-more-left {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

/* Preview stack of coloured circles */
.work-preview-stack {
    display: flex;
    align-items: center;
}

.wp {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid var(--ink);
    margin-left: -10px;
    flex-shrink: 0;
}
.wp:first-child { margin-left: 0; }

.wp-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.wp-2 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.wp-3 { background: linear-gradient(135deg, #f093fb, #f5576c); }

.wp-count {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgb(34,211,238);
    border: 2.5px solid var(--ink);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.work-more-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.work-more-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.015em;
}

.work-more-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(34,211,238);
    color: var(--ink);
    text-decoration: none;
    border-radius: 12px;
    padding: 0.7rem 1.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--t), transform var(--t) var(--spring), box-shadow var(--t);
}
.btn-see-all:hover { background: #06b6d4; transform: scale(1.03); box-shadow: 0 10px 28px rgba(34,211,238,0.35); }

.see-all-chev {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: transform var(--t) var(--spring), opacity var(--t);
}
.btn-see-all:hover .see-all-chev {
    transform: translateX(3px);
    opacity: 1;
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */

@media (max-width: 480px) {
    .hero-line { font-size: 2.3rem; }
    .work-more-sub { display: none; }

    .hero-stats { flex-direction: column; gap: 1rem; }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-hero-primary,
    .btn-hero-ghost { justify-content: center; }

    .cta-actions { flex-direction: column; align-items: stretch; }
    .btn-cta-primary,
    .btn-cta-ghost { justify-content: center; }
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */

.reviews-section {
    padding: 7rem 1.5rem;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

/* Theme-colored star watermark layer */
.rev-bg-stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.rev-bg-stars i {
    position: absolute;
    color: rgba(34,211,238,0.07);
}
.rev-bg-stars i:nth-child(1)  { top: 6%;   left: 5%;   font-size: 4.5rem;  transform: rotate(-12deg); }
.rev-bg-stars i:nth-child(2)  { top: 14%;  right: 9%;  font-size: 7rem;    transform: rotate(15deg);  color: rgba(124,58,237,0.06); }
.rev-bg-stars i:nth-child(3)  { top: 42%;  left: 14%;  font-size: 3rem;    transform: rotate(8deg); }
.rev-bg-stars i:nth-child(4)  { bottom: 10%; left: 6%; font-size: 6rem;    transform: rotate(-18deg); color: rgba(16,185,129,0.06); }
.rev-bg-stars i:nth-child(5)  { bottom: 16%; right: 16%; font-size: 4rem;  transform: rotate(20deg); }
.rev-bg-stars i:nth-child(6)  { top: 4%;   left: 42%;  font-size: 2.6rem;  transform: rotate(-6deg); }
.rev-bg-stars i:nth-child(7)  { bottom: 4%; right: 38%; font-size: 3.4rem; transform: rotate(-10deg); color: rgba(124,58,237,0.05); }
.rev-bg-stars i:nth-child(8)  { top: 56%;  right: 4%;  font-size: 5rem;    transform: rotate(-22deg); }
@media (max-width: 900px) {
    .rev-bg-stars i:nth-child(2),
    .rev-bg-stars i:nth-child(4),
    .rev-bg-stars i:nth-child(8) { font-size: 4rem; }
}
.reviews-section .container-xl { position: relative; z-index: 1; }

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-sub {
    font-size: 1rem;
    color: var(--gray);
    max-width: 480px;
    margin: 1rem auto 0;
    line-height: 1.65;
}

/* Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    margin-bottom: 3rem;
}

/* Cards */
.review-card {
    background: var(--white);
    border: 1.5px solid var(--border-lt);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.35s, transform 0.4s var(--spring), border-color 0.3s;
}
.review-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    transform: translateY(-4px);
    border-color: rgba(34,211,238,0.15);
}

/* Featured card — dark, no row-span */
.review-card-featured {
    background: var(--ink);
    border-color: var(--ink);
}
.review-card-featured:hover {
    border-color: var(--ink);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

/* Hidden extra reviews */
.review-extra {
    display: none;
}
.reviews-grid.reviews-expanded .review-extra {
    display: flex;
    animation: fadeUp 0.45s var(--spring) both;
}

/* Show-more button */
.reviews-show-more-wrap {
    text-align: center;
    margin-bottom: 2rem;
}
.reviews-show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 0.65rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    font-family: inherit;
    cursor: pointer;
    transition: background var(--t), border-color var(--t), color var(--t),
                transform 0.3s var(--spring);
}
.reviews-show-more-btn:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}
.reviews-show-more-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s var(--spring);
}
.reviews-show-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Stars */
.review-stars {
    display: flex;
    gap: 3px;
}
.review-stars i {
    color: #f59e0b;
    font-size: 0.78rem;
}
.review-card-featured .review-stars i { color: #fbbf24; }

/* Text */
.review-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
    font-style: italic;
}
.review-card-featured .review-text {
    color: rgba(255,255,255,0.68);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Footer */
.review-footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-lt);
}
.review-card-featured .review-footer {
    border-top-color: rgba(255,255,255,0.1);
}

/* Avatar */
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0;
}

.review-author-info strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}
.review-card-featured .review-author-info strong { color: #fff; }

.review-country {
    font-size: 0.75rem;
    color: var(--gray-2);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.review-card-featured .review-country { color: rgba(255,255,255,0.4); }

.review-flag { font-size: 1rem; line-height: 1; }

/* Trust strip */
.reviews-trust {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1.5px solid var(--border-lt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.reviews-trust-stars {
    display: flex;
    gap: 3px;
}
.reviews-trust-stars i { color: #f59e0b; font-size: 0.9rem; }
.reviews-trust p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}
.reviews-trust strong { color: var(--ink); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .reviews-section { padding: 5rem 1.25rem; }
    .reviews-grid { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* ============================================================
   HOMEPAGE — AI STATEMENT SECTION
   ============================================================ */
.ai-statement-section {
    background: var(--ink);
    padding: 6.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.ai-statement-glow {
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(34,211,238,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.ai-statement-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}
.ai-statement-inner { max-width: 480px; }

/* Dark-mode tuning for the shared mockup stage on this section */
.ai-statement-section .showcase-stage-glow {
    background: radial-gradient(ellipse, rgba(34,211,238,0.22) 0%, transparent 68%);
}
.ai-statement-section .mockup-browser {
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 50px 120px -22px rgba(0,0,0,0.6), 0 0 90px -16px rgba(34,211,238,0.18);
}
.ai-statement-section .mockup-phone {
    border-color: #2c2c2e;
    background: #2c2c2e;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6), 0 0 60px -14px rgba(34,211,238,0.16);
}
.ai-statement-section .mockup-phone::after { background: #2c2c2e; }
.ai-statement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34,211,238,0.15);
    border: 1px solid rgba(34,211,238,0.3);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.ai-statement-badge i { font-size: 0.7rem; }
.ai-statement-title {
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.045em;
    line-height: 1.06;
    margin-bottom: 1.25rem;
}
.ai-statement-title span { color: var(--blue); }
.ai-statement-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    margin: 0 0 2rem;
    line-height: 1.7;
}
.ai-statement-actions {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}
.ai-statement-actions .btn-ai-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue);
    color: #fff;
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    font-size: 0.925rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--t), transform 0.3s var(--spring);
}
.ai-statement-actions .btn-ai-primary:hover { background: var(--blue-hov); transform: translateY(-2px); }
.ai-statement-actions .btn-ai-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    font-size: 0.925rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color var(--t), color var(--t), transform 0.3s var(--spring);
}
.ai-statement-actions .btn-ai-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; transform: translateY(-2px); }

/* ── Capability chips row ── */
.ai-caps-row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.ai-cap-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 0.4rem 0.95rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    transition: background var(--t), border-color var(--t), color var(--t);
}
.ai-cap-chip:hover { background: rgba(34,211,238,0.15); border-color: rgba(34,211,238,0.3); color: #fff; }
.ai-cap-chip i { color: var(--blue); font-size: 0.7rem; }

/* ============================================================
   HOMEPAGE — BEFORE vs AFTER SECTION
   ============================================================ */
.bva-section {
    background: var(--surface);
    padding: 7rem 1.5rem;
    border-top: 1.5px solid var(--border-lt);
}
.bva-header {
    text-align: center;
    margin-bottom: 4rem;
}
.bva-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}
.bva-col {
    border-radius: 24px;
    padding: 2.5rem;
}
.bva-col-before {
    background: var(--white);
    border: 1.5px solid var(--border-lt);
    border-radius: 24px 0 0 24px;
}
.bva-col-after {
    background: var(--ink);
    border-radius: 0 24px 24px 0;
}
.bva-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    background: linear-gradient(to bottom, transparent 0%, var(--border-lt) 20%, var(--border-lt) 80%, transparent 100%);
    position: relative;
}
.bva-vs {
    background: var(--white);
    border: 2px solid var(--border-lt);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gray);
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.bva-col-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.bva-col-before .bva-col-label { color: var(--gray-2); }
.bva-col-after .bva-col-label { color: rgba(255,255,255,0.4); }
.bva-col-label i { font-size: 0.8rem; }
.bva-col-before .bva-col-label i { color: #ff3b30; }
.bva-col-after .bva-col-label i { color: var(--blue); }
.bva-col-heading {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.bva-col-before .bva-col-heading { color: var(--ink); }
.bva-col-after .bva-col-heading { color: #fff; }
.bva-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.bva-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
.bva-col-before .bva-list li { color: var(--gray); }
.bva-col-after .bva-list li { color: rgba(255,255,255,0.65); }
.bva-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.bva-col-before .bva-icon { background: rgba(255,59,48,0.1); color: #ff3b30; }
.bva-col-after .bva-icon { background: rgba(34,211,238,0.2); color: var(--blue); }

@media (max-width: 700px) {
    .bva-grid { grid-template-columns: 1fr; }
    .bva-col-before { border-radius: 20px 20px 0 0; }
    .bva-col-after { border-radius: 0 0 20px 20px; }
    .bva-divider { width: 100%; height: 48px; background: linear-gradient(to right, transparent, var(--border-lt), transparent); }
    .bva-vs { transform: rotate(90deg); }
}
@media (max-width: 980px) {
    .ai-statement-grid { grid-template-columns: 1fr; gap: 3.5rem; text-align: center; }
    .ai-statement-inner { max-width: 100%; margin: 0 auto; }
    .ai-statement-actions, .ai-caps-row { justify-content: center; }
    .ai-statement-sub { margin: 0 auto 2rem; max-width: 560px; }
    .ai-statement-section .showcase-stage { min-height: 460px; }
}
@media (max-width: 480px) {
    .ai-statement-section { padding: 4rem 1.25rem; }
    .bva-section { padding: 5rem 1.25rem; }
}

/* ============================================================
   CUSTOM TECH CURSOR
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
    body, a, button, .btn, [role="button"], input, textarea, select, label {
        cursor: none !important;
    }
}
.glix-cursor-dot,
.glix-cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 100000;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
}
.glix-cursor-dot {
    width: 7px; height: 7px;
    background: var(--blue);
    box-shadow: 0 0 14px rgba(34,211,238,0.85);
    transition: width 0.25s var(--spring), height 0.25s var(--spring),
                background 0.25s ease, opacity 0.2s ease;
}
.glix-cursor-ring {
    width: 38px; height: 38px;
    border: 1.5px solid rgba(34,211,238,0.4);
    transition: width 0.4s var(--spring), height 0.4s var(--spring),
                border-color 0.3s ease, background 0.3s ease, opacity 0.2s ease;
}
.glix-cursor-ring::before {
    content: '';
    position: absolute; inset: -1.5px;
    border-radius: 50%;
    border-top: 1.5px solid var(--blue);
    border-right: 1.5px solid transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: glixCursorSpin 2.2s linear infinite;
}
.glix-cursor-ring.is-spin::before { opacity: 0.8; }
.glix-cursor-ring.is-link {
    width: 60px; height: 60px;
    background: rgba(34,211,238,0.07);
    border-color: rgba(34,211,238,0.65);
}
.glix-cursor-ring.is-link .glix-cursor-glyph { opacity: 1; transform: scale(1); }
.glix-cursor-glyph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'SF Mono', 'Menlo', monospace;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--blue);
    opacity: 0; transform: scale(0.5);
    transition: opacity 0.25s var(--spring), transform 0.25s var(--spring);
}
.glix-cursor-dot.is-hidden,
.glix-cursor-ring.is-hidden { opacity: 0; }
@keyframes glixCursorSpin { to { transform: rotate(360deg); } }

/* ============================================================
   FLOATING TECH ELEMENTS (decorative background glyphs)
   ============================================================ */
.tech-float-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.tech-float {
    position: absolute;
    display: flex; align-items: center; justify-content: center;
    font-family: 'SF Mono', 'Menlo', monospace;
    font-weight: 600;
    color: rgba(34,211,238,0.16);
    white-space: nowrap;
    animation: techFloat var(--fdur, 14s) ease-in-out infinite;
    animation-delay: var(--fdelay, 0s);
    will-change: transform, opacity;
}
.tech-float i { font-size: inherit; }
.hero-section .tech-float,
.ct-hero .tech-float,
.wa-hero .tech-float { color: rgba(255,255,255,0.1); }
@keyframes techFloat {
    0%   { transform: translate3d(0, 0, 0) rotate(0deg);     opacity: 0.5; }
    25%  { transform: translate3d(14px, -26px, 0) rotate(6deg);  opacity: 0.9; }
    50%  { transform: translate3d(-8px, -12px, 0) rotate(-4deg); opacity: 0.6; }
    75%  { transform: translate3d(-16px, -34px, 0) rotate(3deg); opacity: 0.85; }
    100% { transform: translate3d(0, 0, 0) rotate(0deg);     opacity: 0.5; }
}
@media (max-width: 700px) {
    .tech-float-layer { display: none; }
}

/* ============================================================
   DEVICE MOCKUP SHOWCASE
   ============================================================ */
.showcase-section {
    padding: 6.5rem 1.5rem 7.5rem;
    background: var(--surface-2);
    overflow: hidden;
    position: relative;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}
.showcase-eyebrow-block { max-width: 420px; }
.showcase-title {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
    color: var(--ink);
    margin: 0.5rem 0 1rem;
}
.showcase-title span { color: var(--blue-hov); }
.showcase-sub {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}
.showcase-points { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.showcase-point {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.875rem; font-weight: 600; color: var(--ink);
}
.showcase-point i {
    width: 30px; height: 30px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    background: var(--blue-tint); color: var(--blue-hov);
    font-size: 0.78rem; flex-shrink: 0;
}
.showcase-cta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--ink); color: #fff;
    border-radius: 100px; padding: 0.85rem 1.75rem;
    font-size: 0.9rem; font-weight: 600; text-decoration: none;
    transition: background var(--t), transform 0.3s var(--spring), gap 0.25s ease;
}
.showcase-cta:hover { background: var(--blue-hov); gap: 0.9rem; transform: translateY(-2px); color: #fff; }

/* Stage holding the device mockups */
.showcase-stage {
    position: relative;
    min-height: 520px;
}
.showcase-stage-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 640px; height: 480px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(34,211,238,0.16) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

/* Browser / desktop mockup */
.mockup-browser {
    position: absolute;
    top: 6%; left: 0;
    width: 84%;
    border-radius: 14px;
    overflow: hidden;
    background: #1d1d1f;
    box-shadow: 0 50px 110px -24px rgba(15,23,42,0.4);
    animation: mockupFloat 7.5s ease-in-out infinite;
    z-index: 1;
}
.mockup-browser-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 0.65rem 1rem;
    background: #2c2c2e;
}
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.mockup-dot.red    { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green  { background: #28c840; }
.mockup-browser-url {
    margin-left: 0.75rem;
    flex: 1;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 0.32rem 0.8rem;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    display: flex; align-items: center; gap: 0.45rem;
    font-family: 'SF Mono', 'Menlo', monospace;
}
.mockup-browser-url i { font-size: 0.6rem; color: #28c840; }
.mockup-browser-screen { line-height: 0; max-height: 360px; overflow: hidden; }
.mockup-browser-screen img { display: block; width: 100%; height: auto; }

/* Phone mockups */
.mockup-phone {
    position: absolute;
    width: 192px;
    border-radius: 34px;
    border: 6px solid #1d1d1f;
    background: #1d1d1f;
    overflow: hidden;
    box-shadow: 0 36px 90px -18px rgba(15,23,42,0.45);
    z-index: 2;
}
.mockup-phone::after {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 76px; height: 20px;
    background: #1d1d1f;
    border-radius: 0 0 14px 14px;
    z-index: 2;
}
.mockup-phone-screen { line-height: 0; border-radius: 28px; overflow: hidden; }
.mockup-phone-screen img { display: block; width: 100%; height: auto; }
.mockup-phone-1 {
    bottom: -6%; right: 2%;
    animation: mockupFloat 8.5s ease-in-out infinite 0.8s;
}
.mockup-phone-2 {
    top: -2%; right: 30%;
    width: 148px;
    opacity: 0.94;
    animation: mockupFloat 9.5s ease-in-out infinite 1.6s;
}
@keyframes mockupFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50%      { transform: translate3d(0, -20px, 0) rotate(-1deg); }
}

@media (max-width: 980px) {
    .showcase-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .showcase-eyebrow-block { max-width: 100%; }
    .showcase-stage { min-height: 460px; }
    .mockup-browser { width: 92%; }
    .mockup-phone-2 { display: none; }
}
@media (max-width: 560px) {
    .showcase-section { padding: 4.5rem 1.25rem 5rem; }
    .showcase-stage { min-height: 380px; }
    .mockup-browser { width: 100%; top: 2%; }
    .mockup-phone-1 { width: 150px; bottom: -4%; right: -2%; }
}
@media (prefers-reduced-motion: reduce) {
    .tech-float, .mockup-browser, .mockup-phone-1, .mockup-phone-2 { animation: none !important; }
}

/* ============================================================
   DECORATIVE WATERMARK
   ============================================================ */
.glix-wm {
    position: absolute;
    pointer-events: none;
    user-select: none;
    opacity: 0.06;
    z-index: 0;
    line-height: 1;
    display: block;
}
@media (max-width: 768px) {
    .glix-wm { display: none; }
}

/* ============================================================
   PAGE LOADER (shared — referenced by nav.php include)
   ============================================================ */
#glix-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: #1d1d1f;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1.5rem; padding: 2rem;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}
#glix-loader.gl-out { opacity: 0; visibility: hidden; pointer-events: none; }
#glix-loader::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(34,211,238,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 25%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 25%, transparent 75%);
}
.gl-corner { position: absolute; width: 22px; height: 22px; border: 1.5px solid rgba(34,211,238,0.3); }
.gl-corner-tl { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.gl-corner-tr { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.gl-corner-bl { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.gl-corner-br { bottom: 20px; right: 20px; border-left: none; border-top: none; }
.gl-mark-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; position: relative; z-index: 1; }
.gl-mark-stage { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.gl-mark-ring {
    position: absolute; inset: -14px; border-radius: 50%;
    border: 1.5px solid rgba(34,211,238,0.12);
    border-top-color: rgba(34,211,238,0.9);
    border-right-color: rgba(34,211,238,0.4);
    animation: glRingSpin 1s linear infinite;
}
.gl-loader-mark { width: 60px; height: 60px; animation: glMarkIn 0.65s cubic-bezier(0.16,1,0.3,1) both; }
.gl-loader-name {
    font-family: -apple-system, 'Inter', sans-serif;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.22em;
    color: #fff; opacity: 0; text-align: center;
    animation: glNameIn 0.5s 0.28s cubic-bezier(0.16,1,0.3,1) forwards;
}
.gl-cursor { display: inline-block; color: #22d3ee; margin-left: 2px; animation: glCursorBlink 1s step-end infinite; }
.gl-status-row {
    display: flex; align-items: center; justify-content: space-between;
    width: clamp(180px, 55vw, 240px);
    font-family: 'SF Mono', 'Menlo', monospace;
    font-size: 10px; letter-spacing: 0.12em;
    color: rgba(34,211,238,0.55); text-transform: uppercase;
    position: relative; z-index: 1;
}
.gl-status-pct { color: rgba(255,255,255,0.72); font-weight: 600; }
.gl-loader-bar-track {
    width: clamp(180px, 55vw, 240px); height: 2px;
    background: rgba(255,255,255,0.1); border-radius: 99px; overflow: hidden;
    position: relative; z-index: 1;
}
.gl-loader-bar-fill {
    height: 100%; width: 0; background: #22d3ee; border-radius: 99px;
    box-shadow: 0 0 10px 1px rgba(34,211,238,0.7);
    animation: glBarSweep 1.4s 0.1s ease forwards;
}
@keyframes glMarkIn { from { opacity: 0; transform: scale(0.55) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes glNameIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glRingSpin { to { transform: rotate(360deg); } }
@keyframes glCursorBlink { 50% { opacity: 0; } }
@keyframes glBarSweep { 0% { width: 0; } 55% { width: 60%; } 100% { width: 100%; } }

/* ============================================================
   BRAND MARK — HERO FLOATING ANIMATED GLYPH
   ============================================================ */

.hero-brand-mark {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0.09;
    mix-blend-mode: screen;
    filter: invert(1)
            drop-shadow(0 0 70px rgba(34,211,238,0.7))
            drop-shadow(0 0 28px rgba(34,211,238,0.35));
    animation: glixBrandFloat 16s ease-in-out infinite;
    display: block;
}

@keyframes glixBrandFloat {
    0%, 100% { transform: translateY(-50%) translateX(0px)   rotate(0deg);   }
    35%       { transform: translateY(calc(-50% - 26px)) translateX(12px)  rotate(2.2deg);  }
    68%       { transform: translateY(calc(-50% + 14px)) translateX(-9px)  rotate(-1.6deg); }
}

@media (max-width: 1199px) {
    .hero-brand-mark { width: 300px; height: 300px; right: 2%; }
}
@media (max-width: 991px) {
    .hero-brand-mark { display: none; }
}

/* ============================================================
   BRAND MARK — PNG WATERMARK  (dark section backgrounds)
   ============================================================ */

.glix-wm-img {
    width: 440px;
    height: 440px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: invert(1) drop-shadow(0 0 50px rgba(34,211,238,0.45));
}

/* Services section: img replaces the FA globe icon */
img.svc-bg-globe {
    width: 640px;
    height: 640px;
    object-fit: contain;
    opacity: 0.06;
}

/* ============================================================
   SERVICES — tech label chip under each card description
   ============================================================ */
.svc-tab-tech {
    font-family: 'SF Mono', 'Menlo', ui-monospace, monospace;
    font-size: 0.72rem;
    color: rgba(34,211,238,0.55);
    letter-spacing: 0.04em;
    margin: 0.6rem 0 0.9rem;
    line-height: 1.5;
}

/* ============================================================
   SERVICES HERO LANDSCAPE CARD
   ============================================================ */
.svc-tab-hero {
    --accent: 34,211,238;
    --sweep-delay: 0s;
    grid-column: 1 / -1;
}
.svc-hero-badge-pill {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #22d3ee;
    border: 1px solid rgba(34,211,238,0.3);
    border-radius: 999px;
    padding: 2px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.svc-hero-body {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 0;
    align-items: stretch;
    min-height: 220px;
}
.svc-hero-left {
    padding: 2rem 2rem 2rem 1.6rem;
    border-right: 1px solid var(--border-lt);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    justify-content: center;
}
.svc-hero-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0;
}
.svc-hero-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    max-width: 36ch;
}
.svc-hero-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.2rem 0 0.4rem;
}
.svc-hero-tech span {
    font-family: ui-monospace, monospace;
    font-size: 0.67rem;
    font-weight: 600;
    color: rgba(34,211,238,0.7);
    background: rgba(34,211,238,0.05);
    border: 1px solid rgba(34,211,238,0.15);
    border-radius: 6px;
    padding: 2px 8px;
    letter-spacing: 0.02em;
}
.svc-hero-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}
.svc-hero-pillar {
    padding: 1.6rem 1.4rem;
    border-right: 1px solid var(--border-lt);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    transition: background 0.2s;
}
.svc-hero-pillar:last-child { border-right: none; }
.svc-tab-hero:hover .svc-hero-pillar { background: rgba(34,211,238,0.02); }
.svc-hero-pillar-icon {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: rgba(34,211,238,0.08);
    border: 1px solid rgba(34,211,238,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #22d3ee;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    flex-shrink: 0;
}
.svc-hero-pillar-icon--mobile {
    background: rgba(99,102,241,0.08);
    border-color: rgba(99,102,241,0.2);
    color: #818cf8;
}
.svc-hero-pillar-icon--ai {
    background: rgba(16,185,129,0.08);
    border-color: rgba(16,185,129,0.2);
    color: #10b981;
}
.svc-hero-pillar--ai { background: rgba(16,185,129,0.015); }
.svc-hero-pillar-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
}
.svc-hero-pillar-stack {
    font-family: ui-monospace, monospace;
    font-size: 0.67rem;
    color: rgba(34,211,238,0.6);
    margin: 0;
    letter-spacing: 0.02em;
}
.svc-hero-pillar--ai .svc-hero-pillar-stack { color: rgba(16,185,129,0.7); }
.svc-hero-pillar:nth-child(2) .svc-hero-pillar-stack { color: rgba(99,102,241,0.7); }
.svc-hero-pillar-desc {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}
/* Responsive */
@media (max-width: 900px) {
    .svc-hero-body { grid-template-columns: 1fr; }
    .svc-hero-left { border-right: none; border-bottom: 1px solid var(--border-lt); }
    .svc-hero-left .svc-hero-desc { max-width: 100%; }
}
@media (max-width: 600px) {
    .svc-hero-pillars { grid-template-columns: 1fr; }
    .svc-hero-pillar { border-right: none; border-bottom: 1px solid var(--border-lt); }
    .svc-hero-pillar:last-child { border-bottom: none; }
    .svc-hero-left { padding: 1.4rem; }
}

.section-sub-copy {
    color: var(--muted, #98a2b3);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0.75rem auto 0;
}

/* ============================================================
   AI STATEMENT — PIPELINE ARCHITECTURE
   ============================================================ */
.ai-pipeline-block {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ai-pipe-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 0.7rem 1rem;
}
.ai-pipe-row-accent {
    border-color: rgba(34,211,238,0.25);
    background: rgba(34,211,238,0.05);
}
.ai-pipe-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    min-width: 100px;
    flex-shrink: 0;
}
.ai-pipe-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.ai-pipe-chips span {
    font-size: 0.78rem;
    padding: 0.2rem 0.6rem;
    background: rgba(34,211,238,0.08);
    border: 1px solid rgba(34,211,238,0.2);
    border-radius: 6px;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
}
.ai-pipe-arrow {
    text-align: center;
    color: rgba(34,211,238,0.3);
    font-size: 0.75rem;
    padding: 0.25rem 0;
}

.ai-prod-grade {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}
.ai-prod-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
}
.ai-prod-icon {
    color: #22d3ee;
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 0.85rem;
}
.ai-prod-item strong { color: #fff; }

@media (max-width: 600px) {
    .ai-prod-grade { grid-template-columns: 1fr; }
    .ai-pipe-label { min-width: 76px; }
}

/* ============================================================
   TECH STACK SECTION
   ============================================================ */
.stack-section {
    padding: 6rem 0;
    background: #111317;
    position: relative;
}
.stack-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34,211,238,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.stack-group {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
    transition: border-color 0.25s;
}
.stack-group:hover { border-color: rgba(34,211,238,0.2); }
.stack-group-hd {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(34,211,238,0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.stack-tags span {
    font-size: 0.78rem;
    padding: 0.25rem 0.65rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.stack-group:hover .stack-tags span {
    background: rgba(34,211,238,0.07);
    color: rgba(255,255,255,0.85);
}
@media (max-width: 991px) { .stack-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .stack-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0 3.5rem;
}
.cs-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.cs-card:hover {
    border-color: rgba(34,211,238,0.25);
    transform: translateY(-3px);
}
.cs-card-inner {
    padding: 2rem 2rem 1.75rem;
    position: relative;
    z-index: 1;
}
.cs-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    bottom: -100px;
    right: -80px;
    filter: blur(80px);
    opacity: 0.12;
    transition: opacity 0.3s;
}
.cs-card:hover .cs-card-glow { opacity: 0.2; }
.cs-card-glow-cyan   { background: #22d3ee; }
.cs-card-glow-purple { background: #a78bfa; }

.cs-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
}
.cs-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #22d3ee;
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.2);
    padding: 0.2rem 0.65rem;
    border-radius: 99px;
}
.cs-date {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-family: 'SF Mono', ui-monospace, monospace;
}
.cs-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.6rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.cs-problem-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}
.cs-body {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.cs-metrics {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}
.cs-metric-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #22d3ee;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.cs-metric-lbl {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
}
.cs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.cs-tags span {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: rgba(255,255,255,0.45);
}
@media (max-width: 768px) {
    .cs-grid { grid-template-columns: 1fr; }
    .cs-title { font-size: 1.3rem; }
    .cs-metrics { gap: 1rem; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 6rem 0;
    background: var(--ink, #1D1D1F);
    position: relative;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 1000px;
}
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s;
}
.faq-item[open] {
    border-color: rgba(34,211,238,0.2);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    font-size: 0.925rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    cursor: pointer;
    list-style: none;
    line-height: 1.45;
    transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: #fff; }
.faq-item[open] .faq-q { color: #22d3ee; }
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    transition: transform 0.25s, border-color 0.25s, color 0.25s;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    border-color: rgba(34,211,238,0.4);
    color: #22d3ee;
}
.faq-a {
    padding: 0 1.25rem 1.1rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 0.85rem;
}
@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO — 2-LINE LAYOUT, SLIGHTLY SMALLER
   ============================================================ */
.hero-line {
    font-size: clamp(2.2rem, 5.5vw, 4.6rem);
}
@media (max-width: 767px) {
    .hero-line { font-size: clamp(1.9rem, 8vw, 2.8rem); }
}

/* ============================================================
   SHOWCASE — FULL STAGE (2 desktops + 3 phones)
   ============================================================ */
.showcase-stage-full {
    position: relative;
    min-height: 520px;
}
.mockup-browser-primary {
    position: absolute;
    top: 0; left: 0;
    width: 62%;
    z-index: 2;
}
.mockup-browser-secondary {
    position: absolute;
    top: 48px; right: 0;
    width: 56%;
    z-index: 1;
    opacity: 0.88;
}
.showcase-stage-full .mockup-phone-1 {
    bottom: -10px; left: 2%;
    z-index: 3;
}
.showcase-stage-full .mockup-phone-2 {
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}
.showcase-stage-full .mockup-phone-3 {
    bottom: -10px; right: 2%;
    z-index: 3;
}
/* Mobile: hide desktops + phones, show mobile strip instead */
@media (max-width: 768px) {
    .showcase-stage-full { min-height: 0 !important; position: static !important; }
    .mockup-browser-primary,
    .mockup-browser-secondary { display: none; }
    .showcase-desktop-only { display: none; }
}

/* ============================================================
   AI DASHBOARD MOCKUP
   ============================================================ */
.ai-dash-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-dash-mockup {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #0e1117;
    border: 1px solid rgba(34,211,238,0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(34,211,238,0.06) inset,
        0 40px 100px -20px rgba(0,0,0,0.7),
        0 0 80px -20px rgba(34,211,238,0.15);
    font-size: 0.78rem;
}

/* Moving gradient orb */
.ai-dash-gradient {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,0.18) 0%, rgba(99,102,241,0.12) 45%, transparent 70%);
    top: -80px; right: -80px;
    animation: aiDashOrb 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes aiDashOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
    33%       { transform: translate(-40px, 30px) scale(1.12); opacity: 0.7; }
    66%       { transform: translate(20px, -20px) scale(0.92); opacity: 1; }
}

.ai-dash-mockup > * { position: relative; z-index: 1; }
.ai-dash-gradient { position: absolute !important; z-index: 0 !important; }

/* Top bar */
.ai-dash-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}
.ai-dash-dots { display: flex; gap: 5px; }
.ai-dash-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.ai-dash-title {
    flex: 1;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ai-dash-title i { color: #22d3ee; font-size: 0.65rem; }
.ai-dash-live {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #4ade80;
    text-transform: uppercase;
}
.ai-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
    50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}

/* Top metrics */
.ai-dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ai-dash-metric {
    padding: 0.9rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.ai-dash-metric:last-child { border-right: none; }
.ai-metric-accent { background: rgba(34,211,238,0.04); }
.ai-metric-num {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.ai-metric-accent .ai-metric-num { color: #22d3ee; }
.ai-metric-lbl {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* Mid row: integrations + sparkline */
.ai-dash-mid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ai-dash-integrations {
    padding: 0.85rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.ai-dash-sparkline { padding: 0.85rem 1rem; }
.ai-dash-section-hd {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.6rem;
}
.ai-int-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.28rem 0;
}
.ai-int-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ai-dot-active {
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74,222,128,0.6);
    animation: livePulse 2s ease-in-out infinite;
}
.ai-dot-idle { background: rgba(255,255,255,0.2); }
.ai-int-name {
    flex: 1;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ai-int-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 4px;
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.2);
    color: #22d3ee;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.ai-badge-trace {
    background: rgba(167,139,250,0.1);
    border-color: rgba(167,139,250,0.25);
    color: #a78bfa;
}

/* Sparkline */
.ai-spark-svg {
    display: block;
    width: 100%;
    height: 44px;
    margin-top: 0.25rem;
}
.ai-spark-dot { animation: livePulse 1.5s ease-in-out infinite; }

/* Agents */
.ai-dash-agents {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ai-agent-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.28rem 0;
}
.ai-agent-name {
    flex: 1;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.72);
}
.ai-agent-tools {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.28);
    font-family: ui-monospace, monospace;
}
.ai-agent-status {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.ai-status-run {
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.2);
    color: #4ade80;
}
.ai-status-idle {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.3);
}

/* Progress bars */
.ai-dash-bars { padding: 0.85rem 1rem 1rem; }
.ai-bar-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.28rem 0;
}
.ai-bar-lbl {
    width: 80px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.38);
    flex-shrink: 0;
}
.ai-bar-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 99px;
    overflow: hidden;
}
.ai-bar-fill {
    height: 100%;
    width: var(--w);
    background: linear-gradient(90deg, #22d3ee, #67e8f9);
    border-radius: 99px;
    animation: barGrow 1.4s cubic-bezier(0.16,1,0.3,1) both;
}
.ai-bar-fill-amber { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.ai-bar-fill-green { background: linear-gradient(90deg, #4ade80, #86efac); }
@keyframes barGrow {
    from { width: 0; }
    to   { width: var(--w); }
}
.ai-bar-val {
    width: 38px;
    text-align: right;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    font-family: ui-monospace, monospace;
    flex-shrink: 0;
}

/* ============================================================
   AI SECTION — 2-COL TOP, FULL-WIDTH PIPELINE + TRUST
   ============================================================ */
.ai-grid-v2 {
    grid-template-columns: 1fr 1.05fr;
    row-gap: 3rem;
}
.ai-span-full {
    grid-column: 1 / -1;
}
@media (max-width: 980px) {
    .ai-grid-v2 { grid-template-columns: 1fr; }
    .ai-span-full { grid-column: 1; }
}

/* Horizontal pipeline diagram */
.ai-pipeline-diagram {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0 0 3rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    overflow: hidden;
}
.ai-pnode {
    flex: 1;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    position: relative;
    transition: background 0.25s;
}
.ai-pnode:hover { background: rgba(34,211,238,0.04); }
.ai-pnode + .ai-pnode { border-left: 1px solid rgba(255,255,255,0.06); }
.ai-pnode-agent {
    background: rgba(34,211,238,0.04);
    border-left: 1px solid rgba(34,211,238,0.15) !important;
    border-right: 1px solid rgba(34,211,238,0.15);
}
.ai-pnode-rag {
    background: rgba(167,139,250,0.04);
}
.ai-pnode-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #22d3ee;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}
.ai-pnode-agent .ai-pnode-icon {
    background: rgba(34,211,238,0.15);
    border-color: rgba(34,211,238,0.35);
}
.ai-pnode-rag .ai-pnode-icon {
    background: rgba(167,139,250,0.12);
    border-color: rgba(167,139,250,0.3);
    color: #a78bfa;
}
.ai-pnode-output .ai-pnode-icon {
    background: rgba(74,222,128,0.1);
    border-color: rgba(74,222,128,0.25);
    color: #4ade80;
}
.ai-pnode-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.ai-pnode-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.25rem;
}
.ai-pnode-chips span {
    font-size: 0.75rem;
    padding: 0.2rem 0.55rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
}
.ai-pnode-agent .ai-pnode-chips span {
    background: rgba(34,211,238,0.08);
    border-color: rgba(34,211,238,0.2);
    color: rgba(255,255,255,0.8);
}
/* Hide connector arrows — borders do the work */
.ai-pconn { display: none; }

/* Architecture of Trust */
.ai-trust-grid {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    overflow: hidden;
}
.ai-trust-hd {
    padding: 1rem 1.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(34,211,238,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(34,211,238,0.04);
}
.ai-trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.ai-trust-item {
    padding: 1.75rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.25s;
}
.ai-trust-item:last-child { border-right: none; }
.ai-trust-item:hover { background: rgba(255,255,255,0.02); }
.ai-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(34,211,238,0.08);
    border: 1px solid rgba(34,211,238,0.18);
    color: #22d3ee;
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
}
.ai-trust-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}
.ai-trust-item p {
    font-size: 0.825rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 900px) {
    .ai-trust-items { grid-template-columns: 1fr 1fr; }
    .ai-trust-item:nth-child(2) { border-right: none; }
    .ai-trust-item:nth-child(1),
    .ai-trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 600px) {
    .ai-pipeline-diagram { flex-direction: column; }
    .ai-pnode + .ai-pnode { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
    .ai-trust-items { grid-template-columns: 1fr; }
    .ai-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .ai-trust-item:last-child { border-bottom: none; }
}

/* ============================================================
   DARK-SECTION TITLE/EYEBROW/COPY OVERRIDES
   (body is white; dark sections must explicitly set text to white)
   ============================================================ */
.stack-section .section-title,
.faq-section .section-title,
.founders-section .section-title,
.ai-statement-section .section-title { color: #fff !important; }

.stack-section .eyebrow,
.faq-section .eyebrow,
.founders-section .eyebrow { color: rgba(34,211,238,0.85) !important; }

.stack-section .section-sub-copy,
.faq-section .section-sub-copy,
.founders-section .section-sub-copy { color: rgba(255,255,255,0.55) !important; }

/* Process section — light bg, dark text to match site palette */
.process-section .section-title  { color: var(--ink) !important; }
.process-section .eyebrow         { color: #22d3ee !important; }
.process-section .section-sub-copy { color: var(--gray) !important; }

/* Dark backgrounds for new sections */
.founders-section { background: var(--ink, #1D1D1F); }
.process-section  { background: #191b22; border-top: 1px solid rgba(255,255,255,0.05); }

/* ============================================================
   HERO STATS — SINGLE LINE
   ============================================================ */
.hero-stats-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.hero-stats-row .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.2rem;
    flex-shrink: 0;
}
.hero-stats-row .stat-num {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.1;
}
.hero-stats-row .stat-lbl {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    white-space: nowrap;
}
.hero-stats-row .stat-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .hero-stats-row .hero-stat { padding: 0 0.7rem; }
    .hero-stats-row .stat-num { font-size: 1rem; }
    .hero-stats-row .stat-lbl { font-size: 0.58rem; }
    .hero-stats-row .stat-sep { height: 22px; }
}

/* ============================================================
   SHOWCASE — RESPONSIVE FIX
   ============================================================ */
.showcase-hide-mobile { /* shown by default, hidden on mobile */ }
.showcase-show-mobile { display: none; }

/* Medium screens: tighten browser positions */
@media (max-width: 1100px) and (min-width: 769px) {
    .showcase-stage-full { min-height: 400px; }
    .mockup-browser-primary { width: 66%; }
    .mockup-browser-secondary { top: 36px; width: 58%; }
    .showcase-stage-full .mockup-phone-1 { left: 0; }
    .showcase-stage-full .mockup-phone-2 { left: 50%; }
    .showcase-stage-full .mockup-phone-3 { right: 0; }
}

/* Mobile: show strip of 3 mini mockups */
@media (max-width: 768px) {
    .showcase-hide-mobile { display: none !important; }
    .showcase-show-mobile { display: flex !important; flex-direction: column; gap: 0.75rem; }
    .showcase-stage-full {
        min-height: auto !important;
        position: static !important;
    }
}
/* Always-available styles for mobile strip elements (hidden by default on desktop) */
.showcase-mobile-strip { display: none; width: 100%; }
.sms-browser {
    background: #10131a;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.sms-browser-bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    background: #1a1d27;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sms-dot { width: 7px; height: 7px; border-radius: 50%; display: block; flex-shrink: 0; }
.sms-url {
    flex: 1;
    font-size: 0.58rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
    font-family: ui-monospace, monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}
.sms-browser-screen { height: 100px; overflow: hidden; }
.sms-browser-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.sms-phones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.sms-phone {
    background: #10131a;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    padding-top: 0.5rem;
}
.sms-phone-notch {
    width: 28px; height: 4px;
    background: rgba(255,255,255,0.12);
    border-radius: 99px;
    margin: 0 auto 0.35rem;
    display: block;
}
.sms-phone-screen { height: 150px; overflow: hidden; }
.sms-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ============================================================
   AI SECTION — RESTRUCTURED (text left, dashboard right)
   ============================================================ */
.ai-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    column-gap: 3.5rem;
    row-gap: 2.5rem;
    align-items: start;
}
/* First 2 children = left/right columns. Remaining = full-width */
.ai-grid-v2 > *:nth-child(n+3) {
    grid-column: 1 / -1;
}
@media (max-width: 960px) {
    .ai-grid-v2 { grid-template-columns: 1fr; column-gap: 0; row-gap: 2rem; }
    .ai-grid-v2 > *:nth-child(n+3) { grid-column: 1; }
}

/* Cloud infra banner */
.ai-cloud-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(34,211,238,0.04);
    border: 1px solid rgba(34,211,238,0.15);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.ai-cloud-banner > i { color: #22d3ee; font-size: 1rem; flex-shrink: 0; }
.ai-cloud-label {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: #22d3ee;
    text-transform: uppercase;
    flex-shrink: 0;
}
.ai-cloud-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ai-cloud-chips span {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    font-family: ui-monospace, monospace;
}

/* AI outcome note */
.ai-outcome-note { margin-top: 0.5rem; }
.ai-outcome-inner {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(34,211,238,0.05), rgba(99,102,241,0.03));
    border: 1px solid rgba(34,211,238,0.18);
    border-left: 3px solid #22d3ee;
    border-radius: 0 14px 14px 0;
}
.ai-outcome-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #22d3ee;
    margin-bottom: 0.55rem;
}
.ai-outcome-inner p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
}

/* ============================================================
   CASE STUDY MODAL
   ============================================================ */
.cs-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cs-modal.open {
    opacity: 1;
    pointer-events: all;
}
.cs-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.cs-modal-window {
    position: relative;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    background: #0e1117;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 120px -20px rgba(0,0,0,0.8);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.cs-modal.open .cs-modal-window { transform: translateY(0); }
.cs-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 10;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.cs-modal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.cs-modal-frame {
    display: block;
    width: 100%;
    height: 85vh;
    border: none;
}

/* Case study read button */
.cs-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    background: rgba(34,211,238,0.08);
    border: 1px solid rgba(34,211,238,0.25);
    color: #22d3ee;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.cs-read-btn:hover {
    background: rgba(34,211,238,0.14);
    border-color: rgba(34,211,238,0.4);
    transform: translateY(-1px);
}
.cs-read-btn i { transition: transform 0.2s; }
.cs-read-btn:hover i { transform: translateX(3px); }

/* ============================================================
   STACK — V2 DETAILED LAYOUT
   ============================================================ */
.stack-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.stack-group-v2 {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.5rem;
    transition: border-color 0.2s;
}
.stack-group-v2:hover { border-color: rgba(34,211,238,0.15); }
.stack-group-v2 .stack-group-hd {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #22d3ee;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.stack-group-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin: 0 0 1rem;
}
.stack-group-v2 .stack-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.stack-group-v2 .stack-tags span {
    font-size: 0.72rem;
    padding: 0.25rem 0.65rem;
    border-radius: 5px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    cursor: default;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    font-family: ui-monospace, monospace;
}
.stack-group-v2 .stack-tags span:hover {
    background: rgba(34,211,238,0.08);
    border-color: rgba(34,211,238,0.25);
    color: #22d3ee;
}
@media (max-width: 900px) { .stack-grid-v2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .stack-grid-v2 { grid-template-columns: 1fr; gap: 1rem; } }

/* ============================================================
   WHY FUNDED FOUNDERS — COMPARISON TABLE
   ============================================================ */
.founders-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
.founders-bg-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.founders-glow {
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse at center, rgba(34,211,238,0.04) 0%, transparent 65%);
}
.founders-section .container-xl { position: relative; z-index: 1; }

.founders-table {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin: 3rem 0 4rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
}
.ft-col {
    padding: 0;
}
.ft-col-bad { background: rgba(255,59,48,0.03); }
.ft-col-good { background: rgba(34,211,238,0.03); }
.ft-col-hd {
    padding: 1.25rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ft-col-hd-bad { color: rgba(255,100,90,0.8); background: rgba(255,59,48,0.06); }
.ft-col-hd-good { color: #22d3ee; background: rgba(34,211,238,0.06); }
.ft-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ft-row:last-child { border-bottom: none; }
.ft-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.ft-icon-bad { background: rgba(255,59,48,0.1); color: rgba(255,100,90,0.8); border: 1px solid rgba(255,59,48,0.2); }
.ft-icon-good { background: rgba(34,211,238,0.08); color: #22d3ee; border: 1px solid rgba(34,211,238,0.2); }
.ft-row > div:last-child strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}
.ft-row > div:last-child p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
}
.ft-divider {
    background: rgba(255,255,255,0.04);
    border-left: 1px solid rgba(255,255,255,0.07);
    border-right: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft-vs {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.25);
    writing-mode: vertical-rl;
}

/* Principles grid */
.founders-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.fp-item {
    padding: 1.75rem 1.5rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    transition: border-color 0.2s, background 0.2s;
}
.fp-item:hover {
    border-color: rgba(34,211,238,0.18);
    background: rgba(34,211,238,0.03);
}
.fp-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #22d3ee;
    margin-bottom: 0.75rem;
    font-family: ui-monospace, monospace;
}
.fp-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.65rem;
    line-height: 1.3;
}
.fp-body {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 1100px) { .founders-principles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
    .founders-table { grid-template-columns: 1fr; }
    .ft-divider { display: none; }
    .ft-col-bad { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .founders-principles { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 600px) {
    .founders-section { padding: 4rem 0; }
    .founders-table { margin: 2rem 0 2.5rem; }
    .founders-principles { grid-template-columns: 1fr; }
    .fp-item { padding: 1.25rem; }
}

/* ============================================================
   PROCESS SECTION — LIGHT BG, SITE-MATCHED AESTHETIC
   ============================================================ */
.process-section {
    padding: 7rem 0 5rem;
    background: var(--surface, #F5F5F7);
    border-top: 1px solid var(--border-lt, #E5E5E7);
    position: relative;
    overflow: hidden;
}

/* Subtle dot-grid watermark */
.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
/* Cyan top-edge glow to tie into site accent */
.process-section::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34,211,238,0.4), transparent);
    pointer-events: none;
    z-index: 0;
}
.process-section .container-xl { position: relative; z-index: 1; }

.process-pipeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 3rem 0 2.5rem;
}
.pp-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white, #fff);
    border: 1px solid var(--border-lt, #E5E5E7);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
/* Cyan left-edge accent line that slides in on hover */
.pp-step::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: #22d3ee;
    border-radius: 99px 0 0 99px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.pp-step:hover::before { transform: scaleY(1); }
.pp-step:hover {
    border-color: rgba(34,211,238,0.3);
    box-shadow: 0 6px 24px rgba(34,211,238,0.08), 0 2px 8px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.pp-step-num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(34,211,238,0.08);
    border: 1px solid rgba(34,211,238,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pp-step-num span {
    font-size: 0.68rem;
    font-weight: 800;
    color: #22d3ee;
    letter-spacing: 0.08em;
    font-family: ui-monospace, monospace;
}
.pp-step-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink, #1D1D1F);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pp-step-title i { color: #22d3ee; font-size: 0.8rem; }
.pp-step-sub {
    font-size: 0.7rem;
    color: #22d3ee;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.45rem;
}
.pp-step-desc {
    font-size: 0.8rem;
    color: var(--gray, #6E6E73);
    line-height: 1.7;
    margin: 0;
}
.process-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--white, #fff);
    border: 1px solid rgba(34,211,238,0.25);
    border-left: 3px solid #22d3ee;
    border-radius: 0 14px 14px 0;
    font-size: 0.875rem;
    color: var(--gray, #6E6E73);
    line-height: 1.7;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.process-guarantee > i {
    color: #22d3ee;
    font-size: 1.3rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}
.process-guarantee strong { color: var(--ink, #1D1D1F); }
@media (max-width: 900px) { .process-pipeline { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
    .process-section { padding: 4rem 0 3rem; }
    .process-pipeline { gap: 1rem; margin: 2rem 0 1.5rem; }
    .pp-step { padding: 1.25rem; gap: 1rem; }
}

/* ============================================================
   FAQ — SPLIT LAYOUT
   ============================================================ */
.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: start;
}
.faq-hd-col { position: sticky; top: 6rem; }
.faq-hd-col .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.faq-hd-sub {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.faq-contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.faq-contact-link:hover {
    border-color: rgba(34,211,238,0.25);
    background: rgba(34,211,238,0.04);
}
.faq-contact-link > i {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(34,211,238,0.08);
    border: 1px solid rgba(34,211,238,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22d3ee;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.faq-contact-link strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
}
.faq-contact-link span {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
}
.faq-offices {
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}
.faq-office {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.faq-office i { color: rgba(34,211,238,0.5); font-size: 0.65rem; }
.faq-office strong { color: rgba(255,255,255,0.7); }
.faq-items-col { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.faq-list li {
    padding-left: 1rem;
    position: relative;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
}
.faq-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-size: 0.75rem;
}
.faq-list li strong { color: rgba(255,255,255,0.8); }
@media (max-width: 1024px) {
    .faq-layout { grid-template-columns: 280px 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .faq-hd-col { position: static; }
}

/* ============================================================
   MOBILE-RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 768px) {
    .founders-section { padding: 4rem 0; }
    .process-section { padding: 4rem 0 3rem; }
    .ft-col-hd { padding: 1rem 1.25rem; }
    .ft-row { padding: 1rem 1.25rem; }
    .ai-cloud-banner { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
    .cs-modal-window { max-height: 95vh; border-radius: 12px; }
    .cs-modal-frame { height: 90vh; }
}
