/*
Theme Name: Cybernetix IT — v2.0
Theme URI: https://cybernetixit.com
Description: World-class custom WordPress theme for Cybernetix IT. Software Engineering Since 2017.
Version: 2.0
Author: Cybernetix IT
Author URI: https://cybernetixit.com
License: GNU General Public License v2 or later
Text Domain: cybernetix-theme
*/

/* ==========================================================================
   CYBERNETIX IT DESIGN SYSTEM v2.0
   Precision Engineering. Human Design.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONTS
   -------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS — DARK MODE (Default)
   -------------------------------------------------------------------------- */

:root {
    /* --- Backgrounds (6 depth levels) --- */
    --bg-void:        #05070E;
    --bg-base:        #07090F;
    --bg-surface:     #0C0F1A;
    --bg-card:        #101420;
    --bg-elevated:    #181D2E;
    --bg-overlay:     #202640;

    /* --- Brand Blue (full scale) --- */
    --blue-950:       #060C2A;
    --blue-900:       #0B1645;
    --blue-800:       #112065;
    --blue-700:       #182E88;
    --blue-600:       #2040B0;
    --blue-500:       #2952D8;   /* Primary action */
    --blue-400:       #4A6EE8;
    --blue-300:       #7290F0;
    --blue-200:       #9DB5F8;
    --blue-100:       #C9D9FF;

    /* --- Sky Accent (highlights, links, interactive) --- */
    --sky-700:        #0369A1;
    --sky-600:        #0284C7;
    --sky-500:        #0EA5E9;   /* Primary accent */
    --sky-400:        #38BDF8;
    --sky-300:        #7DD3FC;
    --sky-200:        #BAE6FD;

    /* --- Semantic Colors --- */
    --color-success:  #10B981;
    --color-error:    #EF4444;
    --color-warning:  #F59E0B;
    --color-info:     #3B82F6;

    /* --- Text (5 levels of hierarchy) --- */
    --text-0:         #FFFFFF;
    --text-1:         #F1F5F9;   /* Primary text */
    --text-2:         #CBD5E1;   /* Body text */
    --text-3:         #94A3B8;   /* Secondary text */
    --text-4:         #64748B;   /* Muted text */
    --text-5:         #475569;   /* Very muted */

    /* --- Borders --- */
    --border-subtle:  rgba(148, 163, 184, 0.06);
    --border-default: rgba(148, 163, 184, 0.11);
    --border-strong:  rgba(148, 163, 184, 0.22);
    --border-focus:   rgba(41, 82, 216, 0.6);
    --border-brand:   rgba(41, 82, 216, 0.35);
    --border-sky:     rgba(14, 165, 233, 0.3);

    /* --- Glows / Shadows --- */
    --glow-blue:      rgba(41, 82, 216, 0.22);
    --glow-sky:       rgba(14, 165, 233, 0.14);
    --glow-subtle:    rgba(14, 165, 233, 0.06);
    --shadow-sm:      0 1px 3px rgba(0, 0, 0, 0.5);
    --shadow-md:      0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg:      0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-xl:      0 20px 80px rgba(0, 0, 0, 0.7);
    --shadow-glow-sm: 0 0 20px var(--glow-blue);
    --shadow-glow-md: 0 0 60px var(--glow-blue);

    /* --- Typography --- */
    --font-display:   'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
    --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:      'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    /* --- Spacing (8px base unit) --- */
    --sp-1:  4px;
    --sp-2:  8px;
    --sp-3:  12px;
    --sp-4:  16px;
    --sp-5:  20px;
    --sp-6:  24px;
    --sp-8:  32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;
    --sp-24: 96px;
    --sp-32: 128px;

    /* --- Border Radius --- */
    --r-xs:   3px;
    --r-sm:   6px;
    --r-md:   10px;
    --r-lg:   16px;
    --r-xl:   24px;
    --r-full: 9999px;

    /* --- Transitions --- */
    --t-fast:   0.14s cubic-bezier(0.4, 0, 0.2, 1);
    --t-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow:   0.45s cubic-bezier(0.4, 0, 0.2, 1);
    --t-enter:  0.4s cubic-bezier(0, 0, 0.2, 1);

    /* --- Layout --- */
    --max-w:        1280px;
    --max-w-narrow: 780px;
    --max-w-wide:   1440px;
    --nav-h:        72px;
    --px:           clamp(20px, 5vw, 80px);

    /* --- Section vertical rhythm --- */
    --section-py:   clamp(80px, 10vw, 160px);
    --section-py-sm: clamp(60px, 7vw, 100px);
}

/* --------------------------------------------------------------------------
   3. LIGHT MODE TOKENS
   -------------------------------------------------------------------------- */

.light-theme {
    --bg-void:        #F1F5F9;
    --bg-base:        #F8FAFC;
    --bg-surface:     #FFFFFF;
    --bg-card:        #FFFFFF;
    --bg-elevated:    #F1F5F9;
    --bg-overlay:     #E2E8F0;

    --text-0:         #0F172A;
    --text-1:         #1E293B;
    --text-2:         #334155;
    --text-3:         #475569;
    --text-4:         #64748B;
    --text-5:         #94A3B8;

    --border-subtle:  rgba(15, 23, 42, 0.08);
    --border-default: rgba(15, 23, 42, 0.12);
    --border-strong:  rgba(15, 23, 42, 0.22);
    --border-brand:   rgba(41, 82, 216, 0.35);
    --border-sky:     rgba(14, 165, 233, 0.35);

    --shadow-sm:      0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md:      0 4px 12px rgba(0, 0, 0, 0.07);
    --shadow-lg:      0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl:      0 20px 50px rgba(0, 0, 0, 0.1);
    --glow-blue:      rgba(41, 82, 216, 0.12);
    --glow-sky:       rgba(14, 165, 233, 0.1);
    --shadow-glow-sm: 0 0 20px rgba(41, 82, 216, 0.12);
    --shadow-glow-md: 0 0 60px rgba(41, 82, 216, 0.1);
}

/* --------------------------------------------------------------------------
   4. RESET & BASE
   -------------------------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-base);
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    transition: background-color var(--t-slow), color var(--t-slow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--blue-600);
    color: #fff;
}

/* --------------------------------------------------------------------------
   5. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */

/* Display — Hero headlines */
.display-xl {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-0);
}

.display-lg {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.03em;
    color: var(--text-0);
}

/* Section headings */
.heading-xl {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text-1);
}

.heading-lg {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-1);
}

.heading-md {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--text-1);
}

.heading-sm {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--text-1);
}

/* Body text */
.body-lg {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-2);
}

.body-md {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-2);
}

.body-sm {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-3);
}

/* Label / eyebrow */
.label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky-500);
}

/* Mono */
.mono {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--text-3);
}

/* Gradient text — used very sparingly */
.text-gradient {
    background: linear-gradient(135deg, var(--blue-300) 0%, var(--sky-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Measure (line length control) */
.measure {
    max-width: 65ch;
}

.measure-narrow {
    max-width: 48ch;
}

/* --------------------------------------------------------------------------
   6. LAYOUT SYSTEM
   -------------------------------------------------------------------------- */

.container {
    width: 100%;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--px);
    padding-right: var(--px);
}

.container-narrow {
    width: 100%;
    max-width: var(--max-w-narrow);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--px);
    padding-right: var(--px);
}

.section {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.section-sm {
    padding-top: var(--section-py-sm);
    padding-bottom: var(--section-py-sm);
}

.section-surface {
    background-color: var(--bg-surface);
}

.section-card-bg {
    background-color: var(--bg-card);
}

/* Section header pattern */
.section-header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header-center {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header-center .measure {
    margin-left: auto;
    margin-right: auto;
}

/* Eyebrow label + heading combo */
.section-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sky-500);
    margin-bottom: var(--sp-4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text-1);
    margin-bottom: var(--sp-5);
}

.section-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-3);
    max-width: 58ch;
}

/* Grid utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-8);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
}

/* Split layout — text + visual */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.split-text-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.split-text-right .split-text {
    order: 2;
}

.split-text-right .split-visual {
    order: 1;
}

/* Dividers */
.divider {
    width: 100%;
    height: 1px;
    background: var(--border-default);
    border: none;
}

/* --------------------------------------------------------------------------
   7. NAVIGATION — MEGA MENU
   -------------------------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(7, 9, 15, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
}

.light-theme .site-header {
    background: rgba(250, 251, 253, 0.9);
}

.site-header.scrolled {
    background: rgba(7, 9, 15, 0.95);
    border-bottom-color: var(--border-default);
    box-shadow: var(--shadow-md);
}

.light-theme .site-header.scrolled {
    background: rgba(250, 251, 253, 0.98);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-shrink: 0;
    z-index: 1;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Main nav links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
    padding: var(--sp-2) var(--sp-3);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-3);
    border-radius: var(--r-sm);
    transition: color var(--t-fast), background var(--t-fast);
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}

.nav-link:hover {
    color: var(--text-1);
    background: var(--bg-card);
}

.nav-link.active {
    color: var(--text-1);
}

.nav-link svg.nav-chevron {
    width: 14px;
    height: 14px;
    color: var(--text-5);
    transition: transform var(--t-fast), color var(--t-fast);
    flex-shrink: 0;
}

.nav-item.open .nav-link svg.nav-chevron {
    transform: rotate(180deg);
    color: var(--text-3);
}

/* Mega menu dropdown */
.mega-menu {
    position: absolute;
    top: calc(var(--nav-h) - 4px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--sp-6);
    min-width: 480px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast);
}

.mega-menu.mega-sm {
    min-width: 200px;
}

.nav-item.open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
}

.mega-menu-single {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

.mega-link {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--r-md);
    transition: background var(--t-fast);
    cursor: pointer;
}

.mega-link:hover {
    background: var(--bg-overlay);
}

.mega-link-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    background: var(--bg-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sky-500);
    font-size: 0.875rem;
    margin-top: 1px;
    transition: background var(--t-fast), color var(--t-fast);
}

.mega-link:hover .mega-link-icon {
    background: var(--blue-900);
    color: var(--sky-400);
}

.mega-link-content {
    flex: 1;
    min-width: 0;
}

.mega-link-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-2);
    line-height: 1.3;
    margin-bottom: 2px;
    transition: color var(--t-fast);
}

.mega-link:hover .mega-link-title {
    color: var(--text-1);
}

.mega-link-desc {
    font-size: 0.775rem;
    color: var(--text-4);
    line-height: 1.4;
}

.mega-menu-heading {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-5);
    padding: var(--sp-2) var(--sp-4) var(--sp-3);
}

/* Nav right side */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-shrink: 0;
}

.nav-theme-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-4);
    transition: all var(--t-fast);
    flex-shrink: 0;
}

.nav-theme-btn:hover {
    background: var(--bg-elevated);
    color: var(--text-2);
    border-color: var(--border-strong);
}

.nav-theme-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobile menu button */
.nav-mobile-btn {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    transition: all var(--t-fast);
}

.nav-mobile-btn:hover {
    background: var(--bg-elevated);
    color: var(--text-1);
}

.nav-mobile-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
}

.mobile-drawer.open {
    visibility: visible;
    pointer-events: all;
}

.mobile-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 14, 0.8);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--t-normal);
}

.mobile-drawer.open .mobile-drawer-overlay {
    opacity: 1;
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100%;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border-default);
    transform: translateX(100%);
    transition: transform var(--t-enter);
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open .mobile-drawer-panel {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-5) var(--sp-6);
    border-bottom: 1px solid var(--border-subtle);
    min-height: var(--nav-h);
}

.mobile-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: var(--bg-overlay);
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    transition: all var(--t-fast);
}

.mobile-drawer-close svg {
    width: 16px;
    height: 16px;
}

.mobile-nav-body {
    flex: 1;
    padding: var(--sp-4) var(--sp-6);
    overflow-y: auto;
}

.mobile-nav-section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-5);
    padding: var(--sp-4) 0 var(--sp-2);
}

.mobile-nav-link {
    display: block;
    padding: var(--sp-3) var(--sp-2);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-3);
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link:hover {
    color: var(--text-1);
    background: var(--bg-overlay);
    border-bottom-color: transparent;
}

.mobile-drawer-footer {
    padding: var(--sp-6);
    border-top: 1px solid var(--border-subtle);
}

/* --------------------------------------------------------------------------
   8. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0 var(--sp-6);
    height: 44px;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    cursor: pointer;
    transition: all var(--t-fast);
    white-space: nowrap;
    border: 1px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform var(--t-fast);
}

.btn:hover svg.btn-arrow {
    transform: translateX(3px);
}

/* Primary — filled blue */
.btn-primary {
    background: var(--blue-500);
    color: #fff;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 0 rgba(41, 82, 216, 0);
}

.btn-primary:hover {
    background: var(--blue-400);
    border-color: var(--blue-400);
    box-shadow: 0 4px 20px rgba(41, 82, 216, 0.4);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Ghost — outlined */
.btn-ghost {
    background: transparent;
    color: var(--text-2);
    border-color: var(--border-strong);
}

.btn-ghost:hover {
    background: var(--bg-card);
    color: var(--text-1);
    border-color: var(--border-brand);
}

/* Sky — sky blue variant */
.btn-sky {
    background: var(--sky-500);
    color: #fff;
    border-color: var(--sky-500);
}

.btn-sky:hover {
    background: var(--sky-400);
    border-color: var(--sky-400);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
    transform: translateY(-1px);
}

/* Large */
.btn-lg {
    height: 52px;
    padding: 0 var(--sp-8);
    font-size: 0.975rem;
    border-radius: var(--r-lg);
}

/* Small */
.btn-sm {
    height: 34px;
    padding: 0 var(--sp-4);
    font-size: 0.8rem;
    border-radius: var(--r-sm);
}

/* Text link style */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sky-400);
    padding: 0;
    height: auto;
    background: transparent;
    border: none;
    text-decoration: none;
    transition: gap var(--t-fast), color var(--t-fast);
}

.btn-link:hover {
    color: var(--sky-300);
    gap: var(--sp-3);
}

.btn-link svg {
    width: 15px;
    height: 15px;
    transition: transform var(--t-fast);
}

.btn-link:hover svg {
    transform: translateX(2px);
}

/* --------------------------------------------------------------------------
   9. BADGES & TAGS
   -------------------------------------------------------------------------- */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.badge-default {
    background: var(--bg-card);
    color: var(--text-3);
    border-color: var(--border-default);
}

.badge-blue {
    background: rgba(41, 82, 216, 0.12);
    color: var(--blue-200);
    border-color: rgba(41, 82, 216, 0.25);
}

.badge-sky {
    background: rgba(14, 165, 233, 0.1);
    color: var(--sky-400);
    border-color: rgba(14, 165, 233, 0.2);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border-color: rgba(16, 185, 129, 0.2);
}

.badge-dot::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* Tags — for technology, industry labels */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 3px var(--sp-3);
    border-radius: var(--r-xs);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-4);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
}

/* --------------------------------------------------------------------------
   10. FORMS
   -------------------------------------------------------------------------- */

.form-field {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
}

.form-label-required::after {
    content: ' *';
    color: var(--color-error);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--r-md);
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-5);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(41, 82, 216, 0.15);
    background: var(--bg-elevated);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--border-strong);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748B' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
    cursor: pointer;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
}

.form-error {
    font-size: 0.8rem;
    color: var(--color-error);
    margin-top: var(--sp-1);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-4);
    margin-top: var(--sp-1);
}

/* --------------------------------------------------------------------------
   10. WORLD-CLASS HERO — Inspired by Linear, Vercel, Stripe, Framer
   -------------------------------------------------------------------------- */

/* ── Canvas ─────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #050810;
    padding-top: var(--nav-h);
}

/* ── Radial aurora glow (centered, behind everything) ────────────────────── */
.hero-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-aurora::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(41, 82, 216, 0.3) 0%,
        rgba(14, 165, 233, 0.12) 40%,
        transparent 70%
    );
    animation: aurora-pulse 8s ease-in-out infinite alternate;
}

.hero-aurora::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, #050810 100%);
    z-index: 1;
}

@keyframes aurora-pulse {
    0%   { opacity: 0.8; transform: translateX(-50%) scale(1); }
    100% { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

/* ── Fine dot-grid texture ───────────────────────────────────────────────── */
.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(99,120,190,0.18) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 75%);
}

/* ── Inner container — centered editorial block ──────────────────────────── */
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(72px, 9vw, 120px) var(--px) clamp(48px, 6vw, 80px);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

/* ── Eyebrow pill ────────────────────────────────────────────────────────── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 6px;
    background: rgba(41, 82, 216, 0.1);
    border: 1px solid rgba(41, 82, 216, 0.32);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #93C5FD;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
}

.hero-eyebrow:hover {
    background: rgba(41, 82, 216, 0.18);
    border-color: rgba(41, 82, 216, 0.5);
    color: #BAE6FD;
}

.hero-eyebrow-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2952D8 0%, #0EA5E9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #fff;
    flex-shrink: 0;
}

/* ── Display Headline ────────────────────────────────────────────────────── */
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.9rem, 6.5vw, 5.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: #FFFFFF;
    margin-bottom: 26px;
    max-width: 900px;
}

.hero-headline-gradient {
    background: linear-gradient(105deg, #60A5FA 0%, #38BDF8 45%, #818CF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

/* ── Subheadline ─────────────────────────────────────────────────────────── */
.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.72;
    color: #94A3B8;
    max-width: 580px;
    margin: 0 auto 44px;
}

/* ── CTA Row ─────────────────────────────────────────────────────────────── */
.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-hero-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    height: 50px;
    background: #2952D8;
    color: #fff;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 0 0 1px rgba(41,82,216,0.5), 0 8px 24px rgba(41,82,216,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
    transition: all 0.18s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-hero-solid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.btn-hero-solid:hover {
    background: #3563E9;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(41,82,216,0.6), 0 14px 36px rgba(41,82,216,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
    color: #fff;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    height: 50px;
    background: rgba(255,255,255,0.04);
    color: #CBD5E1;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.18s ease;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    color: #F1F5F9;
    transform: translateY(-2px);
}

/* ── Social proof bar ────────────────────────────────────────────────────── */
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: #64748B;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.hero-proof-item i {
    color: #10B981;
    font-size: 0.85rem;
}

.hero-proof-divider {
    width: 1px;
    height: 14px;
    background: rgba(148,163,184,0.18);
}

/* ── Product Mockup wrapper ───────────────────────────────────────────────── */
.hero-visual-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--px) clamp(60px, 8vw, 100px);
}

.hero-visual-glow {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(41,82,216,0.3) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
    z-index: 0;
}

/* ── The app mockup frame ────────────────────────────────────────────────── */
.hero-mockup {
    position: relative;
    z-index: 2;
    background: #0A0D1A;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(41,82,216,0.2),
        0 40px 120px rgba(0,0,0,0.8),
        0 0 80px rgba(41,82,216,0.12);
}

/* Chrome titlebar */
.mockup-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    background: rgba(255,255,255,0.025);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mockup-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.mockup-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.mockup-dot-r { background: #EF4444; }
.mockup-dot-y { background: #F59E0B; }
.mockup-dot-g { background: #10B981; }

.mockup-url-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: #475569;
    max-width: 340px;
    margin: 0 auto;
}

.mockup-url-bar i { color: #10B981; font-size: 0.65rem; }

.mockup-status-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 0.67rem;
    font-weight: 700;
    color: #10B981;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 4px;
    padding: 3px 9px;
    flex-shrink: 0;
}

.mockup-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse-dot 2s infinite;
}

/* ── App layout inside mockup ────────────────────────────────────────────── */
.mockup-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 380px;
}

/* Sidebar */
.mockup-sidebar {
    background: rgba(0,0,0,0.25);
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
}

.mockup-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 8px;
}

.mockup-brand-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: linear-gradient(135deg, #2952D8, #0EA5E9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-display);
    flex-shrink: 0;
    letter-spacing: -0.03em;
}

.mockup-brand-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #CBD5E1;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.mockup-nav-section {
    padding: 4px 6px;
}

.mockup-nav-section-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #334155;
    padding: 8px 8px 3px;
}

.mockup-nav-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    color: #475569;
    cursor: default;
}

.mockup-nav-row i {
    width: 13px;
    font-size: 0.7rem;
    text-align: center;
    flex-shrink: 0;
}

.mockup-nav-row.is-active {
    background: rgba(41,82,216,0.14);
    color: #93C5FD;
}

.mockup-nav-row.is-active i { color: #60A5FA; }

/* Main panel */
.mockup-main {
    background: rgba(5,8,16,0.7);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mockup-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-page-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: #E2E8F0;
    letter-spacing: -0.02em;
}

.mockup-header-actions {
    display: flex;
    gap: 8px;
}

.mockup-header-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: default;
}

.mockup-header-btn.primary {
    background: rgba(41,82,216,0.8);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
}

.mockup-header-btn.secondary {
    background: rgba(255,255,255,0.04);
    color: #64748B;
    border: 1px solid rgba(255,255,255,0.07);
}

/* KPI cards */
.mockup-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mockup-kpi-card {
    background: rgba(12,17,30,0.9);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 12px 14px;
}

.mockup-kpi-label {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #475569;
    margin-bottom: 5px;
}

.mockup-kpi-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: #F1F5F9;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.mockup-kpi-delta {
    font-size: 0.62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.delta-up   { color: #10B981; }
.delta-info { color: #38BDF8; }
.delta-warn { color: #F59E0B; }

/* Transaction feed */
.mockup-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-feed-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #CBD5E1;
    font-family: var(--font-display);
}

.mockup-feed-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #10B981;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.18);
    padding: 2px 8px;
    border-radius: 999px;
}

.feed-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse-dot 1.5s infinite;
}

.mockup-feed-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mockup-feed-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 10px;
    align-items: center;
    padding: 7px 10px;
    border-radius: 7px;
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
    transition: background 0.12s, border-color 0.12s;
    font-size: 0.7rem;
}

.mockup-feed-row:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.05);
}

.mockup-feed-row.feed-highlight {
    background: rgba(41,82,216,0.07);
    border-color: rgba(41,82,216,0.15);
}

.feed-name { color: #CBD5E1; font-weight: 500; }
.feed-sku  { font-family: var(--font-mono); color: #475569; font-size: 0.64rem; }
.feed-amt  { font-family: var(--font-mono); color: #F1F5F9; font-weight: 700; }

.feed-status-pill {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}

.pill-done   { background: rgba(16,185,129,0.1);  color: #34D399; border: 1px solid rgba(16,185,129,0.2); }
.pill-proc   { background: rgba(59,130,246,0.1);  color: #60A5FA; border: 1px solid rgba(59,130,246,0.2); }
.pill-ship   { background: rgba(245,158,11,0.1);  color: #FCD34D; border: 1px solid rgba(245,158,11,0.2); }

/* Light-mode mockup overrides */
.light-theme .hero {
    background: #F5F7FF;
}

.light-theme .hero-aurora::before {
    background: radial-gradient(ellipse at center,
        rgba(41,82,216,0.1) 0%,
        rgba(14,165,233,0.05) 40%,
        transparent 70%
    );
}

.light-theme .hero-aurora::after {
    background: linear-gradient(to bottom, transparent 0%, #F5F7FF 100%);
}

.light-theme .hero-grid {
    background-image: radial-gradient(circle, rgba(41,82,216,0.1) 1px, transparent 1px);
}

.light-theme .hero-headline { color: #0F172A; }
.light-theme .hero-sub { color: #475569; }

.light-theme .hero-eyebrow {
    background: rgba(41,82,216,0.07);
    border-color: rgba(41,82,216,0.2);
    color: #1D4ED8;
}

.light-theme .hero-proof { color: #64748B; }
.light-theme .hero-proof-divider { background: rgba(15,23,42,0.1); }

.light-theme .btn-hero-outline {
    background: rgba(15,23,42,0.04);
    border-color: rgba(15,23,42,0.13);
    color: #334155;
}

.light-theme .btn-hero-outline:hover {
    background: rgba(15,23,42,0.07);
    border-color: rgba(15,23,42,0.22);
    color: #0F172A;
}

.light-theme .hero-mockup {
    background: #FFFFFF;
    border-color: rgba(15,23,42,0.1);
    box-shadow:
        0 0 0 1px rgba(41,82,216,0.08),
        0 40px 80px rgba(0,0,0,0.08);
}

.light-theme .mockup-chrome {
    background: #F1F5F9;
    border-bottom-color: rgba(15,23,42,0.08);
}

.light-theme .mockup-url-bar {
    background: rgba(15,23,42,0.04);
    border-color: rgba(15,23,42,0.07);
    color: #94A3B8;
}

.light-theme .mockup-sidebar {
    background: #F8FAFC;
    border-right-color: rgba(15,23,42,0.07);
}

.light-theme .mockup-brand-name { color: #1E293B; }
.light-theme .mockup-nav-section-label { color: #94A3B8; }
.light-theme .mockup-nav-row { color: #94A3B8; }
.light-theme .mockup-nav-row.is-active { background: rgba(41,82,216,0.08); color: #1D4ED8; }
.light-theme .mockup-nav-row.is-active i { color: #2563EB; }

.light-theme .mockup-main { background: rgba(248,250,252,0.97); }
.light-theme .mockup-page-title { color: #1E293B; }
.light-theme .mockup-header-btn.secondary { background: #FFFFFF; color: #64748B; border-color: rgba(15,23,42,0.12); }

.light-theme .mockup-kpi-card { background: #FFFFFF; border-color: rgba(15,23,42,0.09); }
.light-theme .mockup-kpi-label { color: #94A3B8; }
.light-theme .mockup-kpi-value { color: #0F172A; }

.light-theme .mockup-feed-title { color: #1E293B; }
.light-theme .feed-name { color: #334155; }
.light-theme .feed-sku  { color: #94A3B8; }
.light-theme .feed-amt  { color: #0F172A; }

.light-theme .mockup-feed-row {
    background: rgba(15,23,42,0.02);
    border-color: transparent;
}

.light-theme .mockup-feed-row:hover {
    background: rgba(15,23,42,0.04);
    border-color: rgba(15,23,42,0.06);
}

.light-theme .mockup-feed-row.feed-highlight {
    background: rgba(41,82,216,0.04);
    border-color: rgba(41,82,216,0.1);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .mockup-body { grid-template-columns: 1fr; }
    .mockup-sidebar { display: none; }
    .mockup-kpi-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .hero-headline { font-size: clamp(2.1rem, 8.5vw, 2.8rem); }
    .hero-proof-divider { display: none; }
    .hero-proof { gap: 14px; }
    .mockup-kpi-row { grid-template-columns: repeat(2, 1fr); }
    .mockup-main { padding: 12px; }
    .mockup-feed-row { grid-template-columns: 1fr auto; }
    .feed-sku, .feed-status-pill { display: none; }
}


/* --------------------------------------------------------------------------
   12. SCROLL STORY (GSAP sticky section)
   -------------------------------------------------------------------------- */

.scroll-story {
    position: relative;
}

.scroll-story-sticky {
    position: sticky;
    top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
}

.scroll-story-visual-side {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-12);
}

.scroll-story-text-side {
    padding: var(--sp-12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scroll-chapter {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    max-width: 480px;
}

.scroll-chapter.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.scroll-chapter-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--sky-500);
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-4);
}

.scroll-chapter-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-4);
}

.scroll-chapter-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-3);
}

.scroll-spacer {
    height: 500vh;
}

/* Progress indicator */
.scroll-progress-bar {
    position: absolute;
    left: var(--px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    z-index: 2;
}

.scroll-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-strong);
    transition: background var(--t-normal), transform var(--t-normal);
    cursor: pointer;
}

.scroll-progress-dot.active {
    background: var(--sky-500);
    transform: scale(1.4);
}

/* --------------------------------------------------------------------------
   13. SERVICES EXPLORER
   -------------------------------------------------------------------------- */

.services-explorer {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--sp-8);
    align-items: start;
}

.services-nav-panel {
    position: sticky;
    top: calc(var(--nav-h) + var(--sp-8));
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

.service-tab-btn {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-3);
    cursor: pointer;
    transition: all var(--t-fast);
    background: transparent;
    border: 1px solid transparent;
    text-align: left;
    width: 100%;
}

.service-tab-btn:hover {
    background: var(--bg-card);
    color: var(--text-2);
    border-color: var(--border-subtle);
}

.service-tab-btn.active {
    background: var(--bg-card);
    color: var(--text-1);
    border-color: var(--border-brand);
    box-shadow: inset 3px 0 0 var(--blue-500);
}

.service-tab-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--r-sm);
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-4);
    font-size: 0.875rem;
    transition: all var(--t-fast);
}

.service-tab-btn.active .service-tab-icon {
    background: var(--blue-900);
    color: var(--sky-400);
}

/* Service content panel */
.services-content-panel {
    position: relative;
    min-height: 480px;
}

.service-panel {
    display: none;
    animation: panel-in 0.3s ease;
}

.service-panel.active {
    display: block;
}

@keyframes panel-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.service-panel-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.service-panel-header {
    padding: clamp(32px, 4vw, 56px);
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border-bottom: 1px solid var(--border-subtle);
}

.service-panel-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    background: var(--blue-900);
    border: 1px solid rgba(41, 82, 216, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-400);
    font-size: 1.5rem;
    margin-bottom: var(--sp-5);
}

.service-panel-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-3);
}

.service-panel-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-3);
    max-width: 56ch;
}

.service-panel-body {
    padding: clamp(24px, 3vw, 40px) clamp(32px, 4vw, 56px);
}

.service-deliverables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
    margin-bottom: var(--sp-8);
}

.service-deliverable {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: 0.875rem;
    color: var(--text-2);
}

.service-deliverable::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sky-500);
    flex-shrink: 0;
}

/* ── Service Panel 2-Column Grid with High-Res Visual ───────────────────── */
.service-panel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 3vw, 40px);
    align-items: center;
}

.service-panel-media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
}

.service-panel-media:hover {
    transform: translateY(-4px);
    border-color: var(--border-brand);
    box-shadow: 0 20px 48px rgba(0,0,0,0.45), 0 0 24px var(--glow-blue);
}

.service-panel-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}

.service-panel-media:hover img {
    transform: scale(1.04);
}

.service-media-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(10, 15, 30, 0.88);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #93C5FD;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
}

.service-media-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 8px var(--color-success);
}

/* ── Industry Panel 2-Column Grid with Real Setup Visual ─────────────────── */
.industry-panel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 4vw, 44px);
    align-items: center;
}

.industry-panel-media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    transition: transform var(--t-normal), border-color var(--t-normal);
}

.industry-panel-media:hover {
    transform: translateY(-4px);
    border-color: var(--border-brand);
}

.industry-panel-media img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}

.industry-panel-media:hover img {
    transform: scale(1.04);
}

/* ── Story Section Split Layout with Visual Studio Card ─────────────────── */
.story-split-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    margin-top: var(--sp-10);
}

.story-media-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.story-media-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.story-media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(5,8,16,0.95) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-media-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.story-media-tag i {
    color: var(--sky-400);
}

@media (max-width: 900px) {
    .service-panel-grid,
    .industry-panel-grid,
    .story-split-layout {
        grid-template-columns: 1fr;
    }
    .story-media-wrap {
        margin-top: var(--sp-6);
    }
}

/* --------------------------------------------------------------------------
   14. "WHAT WE BUILD" SHOWCASE
   -------------------------------------------------------------------------- */

.build-showcase {
    position: relative;
}

.build-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.build-type {
    background: var(--bg-card);
    padding: var(--sp-8) var(--sp-6);
    transition: background var(--t-fast);
    cursor: default;
}

.build-type:hover {
    background: var(--bg-elevated);
}

.build-type-icon {
    font-size: 1.5rem;
    margin-bottom: var(--sp-4);
    display: block;
}

.build-type-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-2);
    margin-bottom: var(--sp-2);
    letter-spacing: -0.01em;
}

.build-type-desc {
    font-size: 0.825rem;
    color: var(--text-4);
    line-height: 1.5;
}

/* Animated word rotator */
.word-rotator-container {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}

.word-rotator {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.word-rotator-word {
    display: block;
    color: var(--sky-400);
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   15. CASE STUDY PREVIEW (Editorial)
   -------------------------------------------------------------------------- */

.case-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-default);
    border: 1px solid var(--border-default);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.case-item {
    background: var(--bg-card);
    padding: clamp(32px, 4vw, 56px);
    transition: background var(--t-fast);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

.case-item:hover {
    background: var(--bg-elevated);
}

.case-item-top {
    flex: 1;
}

.case-item-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky-500);
    margin-bottom: var(--sp-4);
}

.case-item-title {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: var(--sp-4);
}

.case-item-desc {
    font-size: 0.9rem;
    color: var(--text-3);
    line-height: 1.6;
    max-width: 48ch;
    margin-bottom: var(--sp-6);
}

.case-item-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-4);
}

.case-item-result {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-0);
    letter-spacing: -0.03em;
    line-height: 1;
}

.case-item-result-label {
    font-size: 0.8rem;
    color: var(--text-4);
    margin-top: var(--sp-1);
}

/* Case study full page */
.case-study-full {
    position: relative;
}

.case-study-hero {
    padding: clamp(60px, 8vw, 120px) 0;
    border-bottom: 1px solid var(--border-default);
}

.case-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: var(--sp-12);
}

.case-meta-item {
    background: var(--bg-card);
    padding: var(--sp-6);
}

.case-meta-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-5);
    margin-bottom: var(--sp-2);
}

.case-meta-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-2);
}

.case-content-block {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--sp-24) 0;
}

.case-content-block h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-5);
    margin-top: var(--sp-12);
}

.case-content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-3);
    margin-bottom: var(--sp-5);
}

/* --------------------------------------------------------------------------
   16. TECHNOLOGY ECOSYSTEM
   -------------------------------------------------------------------------- */

.tech-ecosystem {
    position: relative;
}

.tech-layers {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    border: 1px solid var(--border-default);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.tech-layer {
    display: grid;
    grid-template-columns: 140px 1fr;
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--t-fast);
}

.tech-layer:last-child {
    border-bottom: none;
}

.tech-layer:hover {
    background: var(--bg-card);
}

.tech-layer-label {
    padding: var(--sp-5) var(--sp-6);
    background: var(--bg-card);
    border-right: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
}

.tech-layer-label-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-4);
}

.tech-layer-items {
    padding: var(--sp-5) var(--sp-6);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-3);
}

.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-2) var(--sp-3);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-3);
    cursor: default;
    transition: all var(--t-fast);
    position: relative;
}

.tech-chip:hover {
    background: var(--bg-overlay);
    border-color: var(--border-brand);
    color: var(--text-1);
    transform: translateY(-1px);
}

.tech-chip-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   17. PROCESS TIMELINE
   -------------------------------------------------------------------------- */

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(100% / 14);
    right: calc(100% / 14);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong) 15%, var(--border-strong) 85%, transparent);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--sp-3);
    position: relative;
}

.process-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-4);
    margin-bottom: var(--sp-5);
    position: relative;
    z-index: 1;
    transition: all var(--t-normal);
}

.process-step:hover .process-step-num {
    background: var(--bg-elevated);
    border-color: var(--border-brand);
    color: var(--sky-400);
}

.process-step-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-2);
    margin-bottom: var(--sp-2);
    letter-spacing: -0.01em;
}

.process-step-desc {
    font-size: 0.775rem;
    color: var(--text-4);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   18. WHY CYBERNETIX / VALUE PILLARS
   -------------------------------------------------------------------------- */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.pillar {
    background: var(--bg-card);
    padding: clamp(32px, 3vw, 48px);
    transition: background var(--t-fast);
}

.pillar:hover {
    background: var(--bg-elevated);
}

.pillar-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-5);
    letter-spacing: 0.06em;
    margin-bottom: var(--sp-6);
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.015em;
    margin-bottom: var(--sp-3);
}

.pillar-desc {
    font-size: 0.875rem;
    color: var(--text-3);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   19. INDUSTRIES INTERACTIVE
   -------------------------------------------------------------------------- */

.industries-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--sp-6);
}

.industry-nav {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

.industry-btn {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--r-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-3);
    cursor: pointer;
    transition: all var(--t-fast);
    background: transparent;
    border: 1px solid transparent;
    text-align: left;
    width: 100%;
}

.industry-btn:hover {
    background: var(--bg-card);
    color: var(--text-2);
}

.industry-btn.active {
    background: var(--bg-card);
    color: var(--text-1);
    border-color: var(--border-brand);
}

.industry-panel {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--r-xl);
    padding: clamp(32px, 4vw, 48px);
    animation: panel-in 0.3s ease;
}

.industry-panel.active {
    display: block;
}

.industry-flow {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-wrap: wrap;
    margin-top: var(--sp-6);
}

.industry-flow-item {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: 0.875rem;
    color: var(--text-2);
}

.industry-flow-arrow {
    color: var(--border-strong);
    font-size: 0.8rem;
}

.industry-flow-badge {
    padding: var(--sp-2) var(--sp-4);
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--r-sm);
    font-weight: 500;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   20. SUPER STATS & PERFORMANCE SHOWCASE
   -------------------------------------------------------------------------- */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
}

.stat-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--r-2xl);
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal), background var(--t-normal);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-500), var(--sky-400));
    opacity: 0.8;
    transition: opacity var(--t-fast);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-brand);
    box-shadow: var(--shadow-xl), 0 0 24px var(--glow-blue);
    background: var(--bg-elevated);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-4);
}

.stat-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: transform var(--t-fast);
}

.stat-card:hover .stat-icon-badge {
    transform: scale(1.1);
}

.stat-icon-blue {
    background: rgba(41, 82, 216, 0.12);
    color: var(--blue-400);
    border: 1px solid rgba(41, 82, 216, 0.25);
}

.stat-icon-emerald {
    background: rgba(16, 185, 129, 0.12);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.stat-icon-sky {
    background: rgba(14, 165, 233, 0.12);
    color: var(--sky-400);
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.stat-icon-purple {
    background: rgba(147, 51, 234, 0.12);
    color: #A855F7;
    border: 1px solid rgba(147, 51, 234, 0.25);
}

.stat-badge-tag {
    font-size: 0.675rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-4);
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    padding: 3px 8px;
    border-radius: var(--r-full);
}

.stat-tag-success {
    color: #059669;
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
}

.stat-tag-sky {
    color: #0284C7;
    background: rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.25);
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text-0);
    margin-bottom: var(--sp-3);
}

.stat-counter {
    font-variant-numeric: tabular-nums;
    transition: color var(--t-fast);
}

.stat-suffix {
    color: var(--sky-400);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    margin-left: 2px;
    font-weight: 800;
}

.stat-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: var(--sp-1);
    letter-spacing: -0.01em;
}

.stat-subtext {
    font-size: 0.8125rem;
    color: var(--text-4);
    line-height: 1.45;
}

/* Backward compatibility */
.stat-item {
    padding: clamp(24px, 3vw, 36px);
    background: var(--bg-card);
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-0);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: var(--sp-2);
}

.stat-value-suffix {
    color: var(--sky-500);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-4);
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   21. ARCHITECTURE VISUALIZATION
   -------------------------------------------------------------------------- */

.arch-diagram {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--r-xl);
    padding: clamp(32px, 4vw, 56px);
    overflow-x: auto;
}

.arch-layers {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    position: relative;
    min-width: 640px;
}

.arch-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--border-strong), var(--border-subtle));
    margin: 0 auto;
}

.arch-layer {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
}

.arch-layer-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-5);
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
}

.arch-layer-nodes {
    display: flex;
    gap: var(--sp-3);
    flex: 1;
}

.arch-node {
    flex: 1;
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--r-md);
    padding: var(--sp-3) var(--sp-4);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-3);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--t-fast);
    position: relative;
}

.arch-node:hover {
    background: var(--bg-overlay);
    border-color: var(--border-brand);
    color: var(--text-1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.arch-node.arch-node-primary {
    border-color: var(--border-brand);
    background: var(--blue-950);
}

.arch-node.arch-node-highlight {
    border-color: rgba(14, 165, 233, 0.3);
    background: rgba(14, 165, 233, 0.06);
    color: var(--sky-400);
}

/* --------------------------------------------------------------------------
   22. FINAL CTA SECTION
   -------------------------------------------------------------------------- */

.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--bg-card);
    border-top: 1px solid var(--border-default);
    border-bottom: 1px solid var(--border-default);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(41, 82, 216, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-0);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--sp-5);
}

.cta-desc {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--text-3);
    line-height: 1.7;
    margin-bottom: var(--sp-10);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   23. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.footer-main {
    padding: clamp(60px, 7vw, 100px) 0 clamp(48px, 5vw, 64px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 280px repeat(4, 1fr);
    gap: var(--sp-12);
}

.footer-brand-col {
    grid-column: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.775rem;
    font-weight: 500;
    color: var(--text-5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--sp-5);
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: var(--text-4);
    line-height: 1.65;
    margin-bottom: var(--sp-6);
}

.footer-social {
    display: flex;
    gap: var(--sp-3);
}

.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-4);
    transition: all var(--t-fast);
    font-size: 0.875rem;
}

.footer-social-link:hover {
    background: var(--bg-elevated);
    border-color: var(--border-default);
    color: var(--text-2);
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-5);
    margin-bottom: var(--sp-5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer-link {
    font-size: 0.875rem;
    color: var(--text-4);
    transition: color var(--t-fast);
}

.footer-link:hover {
    color: var(--text-2);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: var(--sp-6) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-5);
}

.footer-legal-links {
    display: flex;
    gap: var(--sp-6);
}

.footer-legal-link {
    font-size: 0.8rem;
    color: var(--text-5);
    transition: color var(--t-fast);
}

.footer-legal-link:hover {
    color: var(--text-3);
}

/* Contact info in footer */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: 0.8rem;
    color: var(--text-4);
    line-height: 1.5;
    margin-bottom: var(--sp-3);
}

.footer-contact-icon {
    color: var(--text-5);
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   24. PAGE: SOLUTIONS
   -------------------------------------------------------------------------- */

.solutions-hero {
    padding: calc(var(--nav-h) + clamp(60px, 8vw, 100px)) 0 clamp(60px, 8vw, 100px);
    border-bottom: 1px solid var(--border-default);
}

.service-detail-block {
    padding: clamp(60px, 7vw, 100px) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.service-detail-block:last-child {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   25. PAGE: ABOUT
   -------------------------------------------------------------------------- */

.about-hero {
    padding: calc(var(--nav-h) + clamp(60px, 8vw, 120px)) 0 clamp(60px, 8vw, 100px);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-600), var(--border-subtle));
}

.timeline-item {
    position: relative;
    padding-bottom: clamp(40px, 5vw, 64px);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue-500);
    border: 2px solid var(--bg-base);
    box-shadow: 0 0 0 2px var(--blue-700);
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--sky-500);
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: var(--sp-3);
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: var(--sp-2);
    letter-spacing: -0.015em;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-3);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   26. PAGE: CONTACT
   -------------------------------------------------------------------------- */

.contact-page {
    padding-top: calc(var(--nav-h) + clamp(60px, 8vw, 100px));
    padding-bottom: clamp(80px, 10vw, 140px);
}

.contact-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: clamp(48px, 7vw, 100px);
    align-items: start;
}

.contact-info-side {
    position: sticky;
    top: calc(var(--nav-h) + var(--sp-8));
}

.contact-info-block {
    margin-top: var(--sp-10);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-500);
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-5);
    margin-bottom: var(--sp-1);
}

.contact-info-value {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.5;
}

.contact-info-value a {
    transition: color var(--t-fast);
}

.contact-info-value a:hover {
    color: var(--sky-400);
}

/* Project type selector */
.project-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
    margin-bottom: var(--sp-8);
}

.project-type-btn {
    padding: var(--sp-4) var(--sp-3);
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all var(--t-fast);
    text-align: center;
}

.project-type-btn:hover {
    border-color: var(--border-brand);
    background: var(--bg-elevated);
}

.project-type-btn.selected {
    border-color: var(--blue-500);
    background: var(--blue-950);
    box-shadow: 0 0 0 2px rgba(41, 82, 216, 0.15);
}

.project-type-icon {
    font-size: 1.25rem;
    margin-bottom: var(--sp-2);
    display: block;
}

.project-type-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-3);
    transition: color var(--t-fast);
}

.project-type-btn.selected .project-type-label {
    color: var(--blue-200);
}

/* Contact form card */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--r-xl);
    padding: clamp(32px, 4vw, 56px);
}

/* Form sections */
.form-section {
    margin-bottom: var(--sp-8);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--border-subtle);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-5);
    margin-bottom: var(--sp-5);
}

/* --------------------------------------------------------------------------
   27. PAGE: PORTFOLIO / CASE STUDIES
   -------------------------------------------------------------------------- */

.portfolio-hero {
    padding: calc(var(--nav-h) + clamp(60px, 8vw, 100px)) 0 clamp(60px, 6vw, 80px);
    border-bottom: 1px solid var(--border-default);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
    margin-top: clamp(48px, 6vw, 80px);
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}

.portfolio-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.portfolio-card-visual {
    aspect-ratio: 16/9;
    background: var(--bg-elevated);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-subtle);
}

.portfolio-card-body {
    padding: var(--sp-8) clamp(24px, 3vw, 36px);
}

.portfolio-card-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky-500);
    margin-bottom: var(--sp-3);
}

.portfolio-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-3);
}

.portfolio-card-desc {
    font-size: 0.9rem;
    color: var(--text-3);
    line-height: 1.6;
    margin-bottom: var(--sp-6);
}

.portfolio-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
}

/* --------------------------------------------------------------------------
   28. REVEAL ANIMATIONS (Intersection Observer)
   -------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.reveal-fade.visible {
    opacity: 1;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* --------------------------------------------------------------------------
   29. UTILITY CLASSES
   -------------------------------------------------------------------------- */

.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-right    { text-align: right; }

.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.items-end     { align-items: flex-end; }
.justify-center{ justify-content: center; }
.justify-between{ justify-content: space-between; }
.gap-3         { gap: var(--sp-3); }
.gap-4         { gap: var(--sp-4); }
.gap-5         { gap: var(--sp-5); }
.gap-6         { gap: var(--sp-6); }
.gap-8         { gap: var(--sp-8); }
.flex-wrap     { flex-wrap: wrap; }

.mt-3  { margin-top: var(--sp-3); }
.mt-4  { margin-top: var(--sp-4); }
.mt-5  { margin-top: var(--sp-5); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mt-12 { margin-top: var(--sp-12); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }

.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* --------------------------------------------------------------------------
   29B. SUPER CLIENT & PARTNER CAROUSEL MARQUEE
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   29B. CLIENTS SECTION — Premium Pill Cards + Infinite Marquee
   -------------------------------------------------------------------------- */

.clients-section {
    padding: clamp(72px, 9vw, 120px) 0 clamp(56px, 7vw, 96px);
    position: relative;
    overflow: hidden;
    background: var(--bg-base);
}

/* Top border line */
.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-brand), transparent);
}

/* ── Section header ──────────────────────────────────────────────────────── */
.clients-section-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.clients-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.775rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sky-400);
    margin-bottom: 14px;
}

.clients-section-eyebrow::before,
.clients-section-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--sky-400);
    opacity: 0.5;
}

.clients-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-0);
    margin-bottom: 14px;
    line-height: 1.1;
}

.clients-section-sub {
    font-size: 1rem;
    color: var(--text-3);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── Marquee wrapper — left/right edge fade ──────────────────────────────── */
.clients-marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
    margin-bottom: clamp(48px, 6vw, 72px);
}

.clients-track-row {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.clients-track {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
    gap: 12px;
    will-change: transform;
}

.clients-track-left  { animation: marquee-left  42s linear infinite; }
.clients-track-right { animation: marquee-right 48s linear infinite; }

.clients-track-row:hover .clients-track { animation-play-state: paused; }

@keyframes marquee-left {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
@keyframes marquee-right {
    0%   { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

/* ── Client pill card ────────────────────────────────────────────────────── */
.client-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 14px;
    white-space: nowrap;
    cursor: default;
    transition: transform 0.18s ease, border-color 0.18s, box-shadow 0.18s, background 0.18s;
    flex-shrink: 0;
}

.client-pill:hover {
    transform: translateY(-3px);
    border-color: var(--border-brand);
    background: var(--bg-elevated);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 1px var(--border-brand);
}

/* Logo initial circle */
.client-pill-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-pill-logo span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Uploaded logo image inside pill */
.client-pill-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

/* Text body */
.client-pill-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.client-pill-name {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.015em;
    line-height: 1;
}

.client-pill-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--text-4);
    line-height: 1;
}

.client-pill-industry {
    color: var(--text-3);
    font-weight: 500;
}

.client-pill-dot {
    opacity: 0.35;
    font-size: 0.9rem;
}

.client-pill-location {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
    color: var(--sky-400);
}

.client-pill-location i {
    font-size: 0.65rem;
}

/* ── Bottom stat strip ───────────────────────────────────────────────────── */
.clients-stat-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border: 1px solid var(--border-default);
    border-radius: 16px;
    background: var(--bg-card);
    overflow: hidden;
    margin-top: 0;
}

.clients-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 40px;
    gap: 4px;
    flex: 1;
}

.clients-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-0);
    letter-spacing: -0.04em;
    line-height: 1;
}

.clients-stat-plus {
    color: var(--sky-400);
}

.clients-stat-label {
    font-size: 0.775rem;
    font-weight: 500;
    color: var(--text-4);
    text-align: center;
}

.clients-stat-sep {
    width: 1px;
    height: 48px;
    background: var(--border-default);
    flex-shrink: 0;
}

/* ── Light mode overrides ────────────────────────────────────────────────── */
.light-theme .clients-section {
    background: #F8FAFC;
}

.light-theme .clients-section::before {
    background: linear-gradient(90deg, transparent, rgba(41,82,216,0.2), transparent);
}

.light-theme .clients-section-title { color: #0F172A; }
.light-theme .clients-section-sub { color: #475569; }

.light-theme .client-pill {
    background: #FFFFFF;
    border-color: rgba(15,23,42,0.1);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.light-theme .client-pill:hover {
    background: #FFFFFF;
    border-color: rgba(41,82,216,0.35);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(41,82,216,0.2);
}

.light-theme .client-pill-name { color: #1E293B; }
.light-theme .client-pill-industry { color: #64748B; }
.light-theme .client-pill-location { color: #0284C7; }
.light-theme .client-pill-meta { color: #94A3B8; }

.light-theme .clients-stat-strip {
    background: #FFFFFF;
    border-color: rgba(15,23,42,0.08);
}

.light-theme .clients-stat-number { color: #0F172A; }
.light-theme .clients-stat-label  { color: #64748B; }
.light-theme .clients-stat-sep    { background: rgba(15,23,42,0.08); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .clients-stat-item { padding: 18px 20px; }
    .clients-stat-number { font-size: 1.5rem; }
    .clients-stat-sep { height: 36px; }
}

@media (max-width: 480px) {
    .clients-stat-strip { border-radius: 12px; }
    .clients-stat-item { padding: 16px 12px; }
    .clients-stat-sep { display: none; }
    .clients-stat-item { border-top: 1px solid var(--border-default); }
    .clients-stat-item:first-child { border-top: none; }
}

/* --------------------------------------------------------------------------
   30. LIGHT MODE SPECIFIC OVERRIDES
   -------------------------------------------------------------------------- */

.light-theme {
    background-color: var(--bg-base);
    color: var(--text-1);
}

/* Headings & Display Typography */
.light-theme h1,
.light-theme h2,
.light-theme h3,
.light-theme h4,
.light-theme h5,
.light-theme h6,
.light-theme .hero-headline,
.light-theme .section-title,
.light-theme .display-xl,
.light-theme .display-lg,
.light-theme .heading-xl,
.light-theme .heading-lg,
.light-theme .heading-md,
.light-theme .heading-sm {
    color: var(--text-0);
}

.light-theme p,
.light-theme .hero-desc,
.light-theme .section-desc,
.light-theme .body-lg,
.light-theme .body-md {
    color: var(--text-2);
}

.light-theme .body-sm {
    color: var(--text-3);
}

.light-theme .section-eyebrow,
.light-theme .label,
.light-theme .mono {
    color: var(--text-3);
}

.light-theme .text-gradient {
    background: linear-gradient(135deg, #1D4ED8 0%, #0284C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.light-theme .hero-headline-accent {
    color: #0284C7;
}

/* Header & Navigation */
.light-theme .site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--border-default);
}

.light-theme .site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.light-theme .nav-logo-text {
    color: var(--text-0);
}

.light-theme .nav-link {
    color: var(--text-3);
}

.light-theme .nav-link:hover,
.light-theme .nav-link.active {
    color: var(--text-0);
    background: var(--bg-elevated);
}

.light-theme .mega-menu {
    background: #FFFFFF;
    border-color: var(--border-default);
    box-shadow: var(--shadow-xl);
}

.light-theme .mega-link:hover {
    background: var(--bg-elevated);
}

.light-theme .mega-link-title {
    color: var(--text-0);
}

.light-theme .mega-link-desc {
    color: var(--text-4);
}

.light-theme .mega-link-icon {
    background: #EFF6FF;
    color: var(--blue-600);
}

.light-theme .mega-link:hover .mega-link-icon {
    background: var(--blue-600);
    color: #FFFFFF;
}

.light-theme .mega-menu-heading {
    color: var(--text-4);
}

/* Mobile Drawer */
.light-theme .mobile-drawer-panel {
    background: #FFFFFF;
    border-left-color: var(--border-default);
}

.light-theme .mobile-nav-link {
    color: var(--text-2);
    border-bottom-color: var(--border-subtle);
}

.light-theme .mobile-nav-link:hover {
    color: var(--blue-600);
    background: var(--bg-elevated);
}

.light-theme .mobile-nav-section-label {
    color: var(--text-4);
}

.light-theme .mobile-drawer-close {
    background: var(--bg-elevated);
    color: var(--text-2);
    border-color: var(--border-default);
}

/* Master Hero Section */
.light-theme .hero {
    background: #F8FAFC;
}

.light-theme .glow-orb-primary {
    background: radial-gradient(circle, rgba(41, 82, 216, 0.12) 0%, rgba(14, 165, 233, 0.05) 60%, transparent 80%);
}

.light-theme .glow-orb-secondary {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(147, 51, 234, 0.04) 50%, transparent 80%);
}

.light-theme .hero-grid-overlay {
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
}

.light-theme .hero-live-pill {
    background: #FFFFFF;
    border-color: rgba(41, 82, 216, 0.25);
    color: var(--blue-700);
    box-shadow: var(--shadow-sm);
}

.light-theme .hero-headline {
    color: #0F172A;
}

.light-theme .hero-headline-gradient {
    background: linear-gradient(135deg, #1D4ED8 0%, #0284C7 60%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.light-theme .hero-desc {
    color: #334155;
}

.light-theme .btn-hero-ghost {
    background: #FFFFFF;
    border-color: var(--border-strong);
    color: #1E293B;
}

.light-theme .btn-hero-ghost:hover {
    background: #EFF6FF;
    border-color: var(--blue-600);
    color: var(--blue-600);
}

.light-theme .hero-trust-bar {
    border-top-color: var(--border-default);
    color: #475569;
}

.light-theme .floating-stat-badge {
    background: #FFFFFF;
    border-color: rgba(41, 82, 216, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.light-theme .badge-bold {
    color: #0F172A;
}

.light-theme .badge-muted {
    color: #64748B;
}

.light-theme .system-cockpit-window {
    background: #FFFFFF;
    border-color: var(--border-default);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.light-theme .cockpit-titlebar {
    background: #F1F5F9;
    border-bottom-color: var(--border-default);
}

.light-theme .cockpit-window-title {
    color: #475569;
}

.light-theme .cockpit-nav-tabs {
    background: #F8FAFC;
    border-bottom-color: var(--border-default);
}

.light-theme .cockpit-tab-btn {
    color: #64748B;
}

.light-theme .cockpit-tab-btn:hover {
    color: #0F172A;
    background: #EFF6FF;
}

.light-theme .cockpit-tab-btn.active {
    color: #1D4ED8;
    border-bottom-color: #1D4ED8;
    background: #FFFFFF;
}

.light-theme .cockpit-card {
    background: #F8FAFC;
    border-color: var(--border-default);
}

.light-theme .card-tag {
    color: #64748B;
}

.light-theme .feed-row {
    background: #FFFFFF;
    border-left-color: var(--border-default);
}

.light-theme .feed-row.row-highlight {
    background: #EFF6FF;
    border-left-color: #2563EB;
}

.light-theme .feed-sku {
    color: #64748B;
}

.light-theme .feed-item {
    color: #1E293B;
}

.light-theme .feed-price {
    color: #0F172A;
}

.light-theme .feed-speed {
    color: #0284C7;
}

.light-theme .pos-card-footer {
    border-top-color: var(--border-default);
}

.light-theme .p-val {
    color: #0F172A;
}

.light-theme .p-lbl {
    color: #64748B;
}

.light-theme .node-row {
    background: #FFFFFF;
    border-color: var(--border-default);
}

.light-theme .node-name {
    color: #1E293B;
}

.light-theme .node-latency {
    color: #0284C7;
}

.light-theme .cockpit-code-terminal {
    background: #0F172A;
    border-color: #1E293B;
}

.light-theme .event-item {
    background: #FFFFFF;
    border-color: var(--border-default);
}

.light-theme .event-time {
    color: #64748B;
}

.light-theme .event-desc {
    color: #1E293B;
}

.light-theme .telemetry-box {
    background: #FFFFFF;
    border-color: var(--border-default);
}

.light-theme .t-label {
    color: #64748B;
}

.light-theme .t-val {
    color: #0F172A;
}

.light-theme .cockpit-footer-bar {
    background: #F1F5F9;
    border-top-color: var(--border-default);
    color: #64748B;
}

/* Badges & Tags */
.light-theme .badge-sky {
    background: rgba(14, 165, 233, 0.1);
    color: #0369A1;
    border-color: rgba(14, 165, 233, 0.3);
}

.light-theme .badge-blue {
    background: rgba(41, 82, 216, 0.1);
    color: #1D4ED8;
    border-color: rgba(41, 82, 216, 0.3);
}

.light-theme .badge-success {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.3);
}

.light-theme .badge-default {
    background: #F1F5F9;
    color: var(--text-2);
    border-color: var(--border-default);
}

.light-theme .tag {
    background: #F1F5F9;
    color: var(--text-2);
    border-color: var(--border-default);
}

/* Buttons */
.light-theme .btn-ghost {
    background: #FFFFFF;
    color: var(--text-1);
    border-color: var(--border-strong);
}

.light-theme .btn-ghost:hover {
    background: #EFF6FF;
    border-color: var(--blue-600);
    color: var(--blue-600);
}

.light-theme .btn-primary {
    background: var(--blue-500);
    color: #FFFFFF;
    border-color: var(--blue-500);
}

.light-theme .btn-link {
    color: #0284C7;
}

.light-theme .btn-link:hover {
    color: #0369A1;
}

/* Cards & Surfaces */
.light-theme .card,
.light-theme .portfolio-card,
.light-theme .service-panel-inner,
.light-theme .pillar,
.light-theme .stat-item,
.light-theme .contact-form-card,
.light-theme .build-type,
.light-theme .case-item,
.light-theme .industry-panel {
    background: #FFFFFF;
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}

.light-theme .portfolio-card:hover,
.light-theme .pillar:hover,
.light-theme .case-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.light-theme .build-type:hover {
    background: #F8FAFC;
    box-shadow: var(--shadow-sm);
}

.light-theme .build-type-name {
    color: var(--text-0);
}

.light-theme .build-type-desc {
    color: var(--text-3);
}

/* Services Explorer */
.light-theme .services-explorer {
    background: #FFFFFF;
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}

.light-theme .services-nav-panel {
    background: #F8FAFC;
}

.light-theme .service-tab-btn {
    color: var(--text-3);
}

.light-theme .service-tab-btn:hover {
    background: #EFF6FF;
    color: var(--text-0);
}

.light-theme .service-tab-btn.active {
    background: #FFFFFF;
    color: var(--blue-600);
    border-color: var(--border-brand);
    box-shadow: inset 3px 0 0 var(--blue-500), var(--shadow-sm);
}

.light-theme .service-tab-icon {
    background: #EFF6FF;
    color: var(--blue-600);
}

.light-theme .service-panel-header {
    background: #FFFFFF;
    border-bottom-color: var(--border-subtle);
}

.light-theme .service-panel-icon {
    background: #EFF6FF;
    border-color: rgba(41, 82, 216, 0.2);
    color: var(--blue-600);
}

.light-theme .service-panel-title {
    color: var(--text-0);
}

.light-theme .service-panel-desc {
    color: var(--text-3);
}

.light-theme .service-deliverable {
    color: var(--text-2);
}

/* Tech Layers */
.light-theme .tech-layers {
    border-color: var(--border-default);
    background: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.light-theme .tech-layer {
    border-bottom-color: var(--border-subtle);
}

.light-theme .tech-layer:hover {
    background: #F8FAFC;
}

.light-theme .tech-layer-label {
    background: #F8FAFC;
    border-right-color: var(--border-subtle);
}

.light-theme .tech-layer-label-text {
    color: var(--text-2);
    font-weight: 700;
}

.light-theme .tech-chip {
    background: #FFFFFF;
    border-color: var(--border-default);
    color: var(--text-2);
}

.light-theme .tech-chip:hover {
    background: #EFF6FF;
    border-color: var(--border-brand);
    color: var(--blue-600);
}

/* Process Timeline */
.light-theme .process-step-num {
    background: #FFFFFF;
    border-color: var(--border-default);
    color: var(--blue-600);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.light-theme .process-step:hover .process-step-num {
    background: #EFF6FF;
    border-color: var(--blue-500);
}

.light-theme .process-step-title {
    color: var(--text-0);
}

.light-theme .process-step-desc {
    color: var(--text-4);
}

/* Industry Selector */
.light-theme .industry-btn {
    color: var(--text-3);
}

.light-theme .industry-btn:hover {
    color: var(--text-0);
    background: var(--bg-elevated);
}

.light-theme .industry-btn.active {
    color: var(--blue-600);
    background: #FFFFFF;
    border-color: var(--border-brand);
    box-shadow: var(--shadow-sm);
}

.light-theme .industry-flow-badge {
    background: #F1F5F9;
    border-color: var(--border-default);
    color: var(--text-1);
}

/* Stats & Pillars */
.light-theme .stat-card {
    background: #FFFFFF;
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}

.light-theme .stat-card:hover {
    background: #FFFFFF;
    border-color: var(--blue-500);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(41, 82, 216, 0.12);
}

.light-theme .stat-number-wrap {
    color: #0F172A;
}

.light-theme .stat-heading {
    color: #0F172A;
}

.light-theme .stat-subtext {
    color: #475569;
}

.light-theme .stat-suffix {
    color: #0284C7;
}

.light-theme .stat-badge-tag {
    background: #F1F5F9;
    color: #475569;
    border-color: var(--border-default);
}

.light-theme .stat-icon-blue {
    background: #EFF6FF;
    color: #1D4ED8;
    border-color: rgba(41, 82, 216, 0.25);
}

.light-theme .stat-icon-emerald {
    background: #ECFDF5;
    color: #047857;
    border-color: rgba(16, 185, 129, 0.25);
}

.light-theme .stat-icon-sky {
    background: #F0F9FF;
    color: #0284C7;
    border-color: rgba(14, 165, 233, 0.25);
}

.light-theme .stat-icon-purple {
    background: #FAF5FF;
    color: #7E22CE;
    border-color: rgba(147, 51, 234, 0.25);
}

.light-theme .stat-item {
    background: #FFFFFF;
}

.light-theme .stat-value {
    color: var(--text-0);
}

.light-theme .stat-label {
    color: var(--text-3);
}

.light-theme .pillar-title {
    color: var(--text-0);
}

.light-theme .pillar-desc {
    color: var(--text-3);
}

.light-theme .pillar-num {
    color: var(--blue-600);
}

/* SVG Ecosystem in Hero */
.light-theme .node-bg {
    fill: #FFFFFF !important;
    stroke: rgba(41, 82, 216, 0.35) !important;
}

.light-theme .node-title {
    fill: #0F172A !important;
}

.light-theme .node-text {
    fill: #334155 !important;
}

.light-theme .conn-line {
    stroke: rgba(41, 82, 216, 0.25) !important;
}

/* Architecture Diagram */
.light-theme .arch-diagram {
    background: #FFFFFF;
    border-color: var(--border-default);
}

.light-theme .arch-node {
    background: #F8FAFC;
    border-color: var(--border-default);
    color: var(--text-2);
}

.light-theme .arch-node:hover {
    background: #EFF6FF;
    border-color: var(--blue-500);
    color: var(--blue-600);
}

.light-theme .arch-node.arch-node-primary {
    background: #EFF6FF;
    border-color: rgba(41, 82, 216, 0.35);
    color: var(--blue-700);
}

/* Contact Form */
.light-theme .contact-form-card {
    background: #FFFFFF;
    border-color: var(--border-default);
    box-shadow: var(--shadow-sm);
}

.light-theme .form-label {
    color: var(--text-1);
}

.light-theme .form-input,
.light-theme .form-select,
.light-theme .form-textarea {
    background: #FFFFFF;
    border-color: var(--border-default);
    color: var(--text-0);
}

.light-theme .form-input:focus,
.light-theme .form-select:focus,
.light-theme .form-textarea:focus {
    background: #FFFFFF;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(41, 82, 216, 0.12);
}

.light-theme .project-type-btn {
    background: #FFFFFF;
    border-color: var(--border-default);
}

.light-theme .project-type-btn:hover {
    background: #F8FAFC;
    border-color: var(--border-strong);
}

.light-theme .project-type-btn.selected {
    background: #EFF6FF;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 2px rgba(41, 82, 216, 0.15);
}

.light-theme .project-type-btn.selected .project-type-label {
    color: var(--blue-700);
}

.light-theme .project-type-label {
    color: var(--text-2);
}

.light-theme .form-section-label {
    color: var(--text-4);
}

/* Timeline */
.light-theme .timeline::before {
    background: linear-gradient(to bottom, var(--blue-500), var(--border-default));
}

.light-theme .timeline-dot {
    background: var(--blue-500);
    border-color: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(41, 82, 216, 0.3);
}

.light-theme .timeline-year {
    color: var(--blue-600);
}

.light-theme .timeline-title {
    color: var(--text-0);
}

.light-theme .timeline-desc {
    color: var(--text-3);
}

/* Footer */
.light-theme .site-footer {
    background: #F1F5F9;
    border-top-color: var(--border-default);
}

.light-theme .footer-logo-text {
    color: var(--text-0);
}

.light-theme .footer-tagline {
    color: var(--sky-700);
}

.light-theme .footer-brand-desc,
.light-theme .footer-contact-item,
.light-theme .footer-link {
    color: var(--text-3);
}

.light-theme .footer-link:hover {
    color: var(--text-0);
}

.light-theme .footer-col-title {
    color: var(--text-1);
    font-weight: 700;
}

.light-theme .footer-social-link {
    background: #FFFFFF;
    border-color: var(--border-default);
    color: var(--text-3);
}

.light-theme .footer-social-link:hover {
    background: #EFF6FF;
    color: var(--blue-600);
    border-color: var(--blue-500);
}

.light-theme .footer-bottom {
    border-top-color: var(--border-default);
}

.light-theme .footer-copyright,
.light-theme .footer-legal-link {
    color: var(--text-4);
}

.light-theme .footer-legal-link:hover {
    color: var(--text-1);
}

/* CTA Section */
.light-theme .cta-section {
    background: #FFFFFF;
    border-top-color: var(--border-default);
    border-bottom-color: var(--border-default);
}

.light-theme .cta-headline {
    color: var(--text-0);
}

.light-theme .cta-desc {
    color: var(--text-3);
}

/* --------------------------------------------------------------------------
   31. RESPONSIVE — TABLET (≤ 1024px)
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    :root { --nav-h: 66px; }

    .nav-menu { display: none; }
    .nav-mobile-btn { display: flex; }
    .nav-cta-desktop { display: none; }

    .hero-container {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .hero-visual { display: none; }

    .hero-headline { font-size: clamp(2.25rem, 5vw, 3.5rem); }

    .scroll-story-sticky {
        grid-template-columns: 1fr;
        height: auto;
    }

    .scroll-story-visual-side { display: none; }

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

    .services-nav-panel {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--sp-2);
    }

    .service-tab-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
        padding: var(--sp-3) var(--sp-4);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-10);
    }

    .footer-brand-col { grid-column: 1 / -1; }

    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
        row-gap: var(--sp-10);
    }

    .process-timeline::before { display: none; }

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

    .case-preview { grid-template-columns: 1fr; }

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

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-side { position: static; }

    .split { grid-template-columns: 1fr; }
    .split-text-right { grid-template-columns: 1fr; }

    .split-text-right .split-text { order: 1; }
    .split-text-right .split-visual { order: 2; }

    .industries-layout { grid-template-columns: 1fr; }
    .industry-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tech-layer {
        grid-template-columns: 100px 1fr;
    }

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

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

/* --------------------------------------------------------------------------
   32. RESPONSIVE — MOBILE (≤ 640px)
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
    :root {
        --nav-h: 60px;
        --section-py: clamp(60px, 12vw, 100px);
        --section-py-sm: clamp(48px, 9vw, 80px);
    }

    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }

    .process-timeline { grid-template-columns: 1fr 1fr; }

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

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn { width: 100%; justify-content: center; }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

    .service-deliverables { grid-template-columns: 1fr; }

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

    .tech-layers { overflow-x: auto; }

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

    .build-types-grid { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-legal-links { gap: var(--sp-4); }

    .mega-menu { min-width: calc(100vw - 40px); }

    .case-meta-grid { grid-template-columns: 1fr 1fr; }
}

/* --------------------------------------------------------------------------
   33. ACCESSIBILITY
   -------------------------------------------------------------------------- */

/* Focus styles — visible and elegant */
:focus-visible {
    outline: 2px solid var(--blue-400);
    outline-offset: 3px;
    border-radius: 3px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--blue-400);
    outline-offset: 3px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--sp-4);
    z-index: 9999;
    padding: var(--sp-3) var(--sp-6);
    background: var(--blue-500);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0 0 var(--r-md) var(--r-md);
    transition: top var(--t-fast);
}

.skip-link:focus {
    top: 0;
}

/* Reduced motion — respects user preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-fade,
    .reveal-left,
    .reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }

    .eco-node { opacity: 1; }
    .eco-line { stroke-dashoffset: 0; }
}

/* High contrast mode */
@media (forced-colors: active) {
    .btn-primary { forced-color-adjust: none; }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --------------------------------------------------------------------------
   34. PRINT
   -------------------------------------------------------------------------- */

@media print {
    .site-header,
    .site-footer,
    .mobile-drawer,
    .scroll-story-sticky { display: none !important; }
    body { background: #fff; color: #000; }
}
