
    /* ════════════════════════════════════════
       DESIGN TOKENS
    ════════════════════════════════════════ */
    :root {
      --primary: #635BFF;
      --primary-dim: rgba(99,91,255,0.12);
      --primary-glow: rgba(99,91,255,0.25);
      --tertiary: #00647a;
      --tertiary-dim: rgba(0,100,122,0.1);
      --on-surface: #001c37;
      --on-surface-variant: #464555;
      --surface: #f8f9ff;
      --surface-low: #eff4ff;
      --surface-container: #e5eeff;
      --outline-variant: #c7c4d8;
      --white: #ffffff;
      --shadow-primary: 0 20px 60px rgba(99,91,255,0.18);
      --shadow-card: 0 4px 32px rgba(0,28,55,0.06);
      --shadow-float: 0 20px 40px rgba(0,28,55,0.06);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-2xl: 32px;
      --radius-full: 9999px;
      --font-headline: 'Manrope', sans-serif;
      --font-body: 'Inter', sans-serif;
      --font-mono: 'Source Code Pro', monospace;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--on-surface);
      background: #ffffff;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      vertical-align: middle;
    }

    /* ════════════════════════════════════════
       ACCESSIBILITY — focus-visible ring
    ════════════════════════════════════════ */
    :focus-visible {
      outline: 3px solid var(--primary);
      outline-offset: 3px;
      border-radius: var(--radius-sm);
    }
    a:focus-visible, button:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

    /* ════════════════════════════════════════
       SCROLL MARGIN — offset for fixed nav
    ════════════════════════════════════════ */
    [id] { scroll-margin-top: 80px; }

    /* ════════════════════════════════════════
       INCLUDE SLOTS — header & footer inject here
    ════════════════════════════════════════ */
    #header-slot { position: relative; z-index: 100; }
    #footer-slot {}

    /* ════════════════════════════════════════
       SHARED LAYOUT
    ════════════════════════════════════════ */
    .section-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
    @media (min-width: 640px) { .section-inner { padding: 0 2rem; } }
    @media (min-width: 1024px) { .section-inner { padding: 0 2.5rem; } }

    .section-label {
      font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary);
      margin-bottom: 1rem; display: block;
    }
    .section-h2 {
      font-family: var(--font-headline);
      font-size: clamp(1.75rem, 5vw, 3.5rem);
      font-weight: 900; letter-spacing: -0.035em;
      color: var(--on-surface); text-transform: uppercase; line-height: 1.05;
      margin-bottom: 1rem;
    }
    .section-sub { font-size: 1.1rem; font-weight: 500; color: #64748b; line-height: 1.6; }

    /* ════════════════════════════════════════
       NAV LOGO
    ════════════════════════════════════════ */
    .nav-logo img {
      height: 40px;
      width: auto;
      display: block;
    }
    @media (min-width: 768px) {
      .nav-logo img { height: 50px; }
    }

    /* ════════════════════════════════════════
       HERO
    ════════════════════════════════════════ */
    .hero {
      position: relative; padding: 6rem 0 4rem;
      overflow: hidden; min-height: 100svh;
      display: flex; align-items: center;
    }
    @media (min-width: 768px) { .hero { padding: 9rem 0 7rem; } }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 15% 25%, rgba(99,91,255,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 85% 75%, rgba(0,100,122,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(99,91,255,0.04) 0%, transparent 50%);
    }
    .hero-grid-dots {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 1px 1px, rgba(99,91,255,0.08) 1px, transparent 0);
      background-size: 44px 44px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    }
    .hero-inner {
      position: relative; z-index: 2;
      max-width: 1280px; margin: 0 auto; padding: 0 1.25rem;
      display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
    }
    @media (min-width: 640px) { .hero-inner { padding: 0 2rem; } }
    @media (min-width: 1024px) {
      .hero-inner {
        padding: 0 2.5rem;
        grid-template-columns: 1fr 1fr; gap: 6rem;
      }
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.75rem;
      padding: 0.375rem 1rem; border-radius: var(--radius-full);
      background: rgba(99,91,255,0.08); border: 1px solid rgba(99,91,255,0.15);
      margin-bottom: 1.5rem;
    }
    @media (min-width: 768px) { .hero-badge { margin-bottom: 2rem; } }

    .hero-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--primary); animation: pulse 2s infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

    .hero-badge-label {
      font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.15em; color: var(--primary); text-transform: uppercase;
    }
    .hero-badge-text { font-size: 0.7rem; font-weight: 600; color: var(--on-surface-variant); }

    .hero-h1 {
      font-family: var(--font-headline);
      font-size: clamp(2.25rem, 8vw, 6.5rem); font-weight: 900;
      letter-spacing: -0.04em; line-height: 0.95;
      color: var(--on-surface); text-transform: uppercase; margin-bottom: 1.5rem;
    }
    @media (min-width: 768px) { .hero-h1 { margin-bottom: 1.75rem; } }
    .hero-h1 em { font-style: italic; color: var(--primary); }

    .hero-sub {
      font-size: 1rem; font-weight: 400; line-height: 1.7;
      color: #64748b; max-width: 28rem; margin-bottom: 2rem;
    }
    @media (min-width: 768px) { .hero-sub { font-size: 1.15rem; margin-bottom: 2.5rem; } }

    .hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
    @media (min-width: 480px) { .hero-btns { gap: 1rem; } }

    .btn-hero-primary {
      font-family: var(--font-headline); font-weight: 700;
      padding: 0.875rem 1.5rem; background: var(--primary); color: #fff;
      border: none; cursor: pointer; border-radius: var(--radius-lg);
      display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem;
      box-shadow: 0 12px 36px rgba(99,91,255,0.28);
      transition: transform 0.15s, box-shadow 0.2s;
      text-decoration: none; white-space: nowrap;
    }
    @media (min-width: 768px) {
      .btn-hero-primary { padding: 1rem 2rem; font-size: 0.95rem; gap: 0.6rem; }
    }
    .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(99,91,255,0.35); }

    .btn-hero-secondary {
      font-family: var(--font-headline); font-weight: 700;
      padding: 0.875rem 1.5rem; background: #fff; color: var(--on-surface);
      border: 1px solid rgba(199,196,216,0.6); cursor: pointer;
      border-radius: var(--radius-lg); font-size: 0.9rem;
      transition: background 0.2s; text-decoration: none; white-space: nowrap;
    }
    @media (min-width: 768px) { .btn-hero-secondary { padding: 1rem 2rem; font-size: 0.95rem; } }
    .btn-hero-secondary:hover { background: var(--surface-low); }

    .hero-card {
      background: rgba(255,255,255,0.75); backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: var(--radius-2xl);
      border: 1px solid rgba(255,255,255,0.9);
      box-shadow: 0 24px 80px rgba(0,28,55,0.08), 0 0 0 1px rgba(199,196,216,0.25);
      padding: 2rem; position: relative;
    }
    @media (min-width: 1024px) { .hero-card { padding: 2.4rem; } }

    .hero-card::before {
      content: ''; position: absolute; top: -40px; right: -40px;
      width: 300px; height: 200px;
      background: radial-gradient(circle, rgba(99,91,255,0.12) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none;
    }
    .hero-card-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: var(--primary-dim); display: flex; align-items: center; justify-content: center;
      color: var(--primary);
    }
    .hero-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
    .hero-card-code { font-family: var(--font-mono); font-size: 0.65rem; color: #94a3b8; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
    .hero-card-title { font-family: var(--font-headline); font-size: 1.3rem; font-weight: 800; color: var(--on-surface); margin-bottom: 0.5rem; }
    @media (min-width: 1024px) { .hero-card-title { font-size: 1.4rem; } }
    .hero-card-body { font-size: 0.9rem; line-height: 1.6; color: #64748b; margin-bottom: 1.75rem; }
    .hero-divider { height: 1px; background: linear-gradient(90deg, rgba(199,196,216,0.5) 0%, transparent 100%); margin-bottom: 1.5rem; }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .hero-stat {
      background: #fff; border-radius: 14px;
      border: 1px solid rgba(199,196,216,0.3);
      padding: 0.875rem 1rem;
      box-shadow: 0 2px 12px rgba(0,28,55,0.04);
    }
    @media (min-width: 1024px) { .hero-stat { padding: 1rem 1.25rem; } }
    .hero-stat-label { font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; color: #94a3b8; text-transform: uppercase; margin-bottom: 0.35rem; }
    .hero-stat-value { font-family: var(--font-headline); font-size: 1.5rem; font-weight: 900; color: var(--primary); letter-spacing: -0.03em; }
    @media (min-width: 1024px) { .hero-stat-value { font-size: 1.75rem; } }

    /* ════════════════════════════════════════
       AI SOLUTIONS
    ════════════════════════════════════════ */
    .solutions { padding: 4rem 0; background: #fff; }
    @media (min-width: 768px) { .solutions { padding: 7rem 0; } }

    .solutions-bg {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 1px 1px, #e2e8f0 1px, transparent 0);
      background-size: 40px 40px; opacity: 0.4;
    }
    .solutions-header { max-width: 36rem; margin-bottom: 3rem; position: relative; z-index: 2; }
    @media (min-width: 768px) { .solutions-header { margin-bottom: 4.5rem; } }

    .cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; position: relative; z-index: 2; }
    @media (min-width: 640px) { .cards-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

    .solution-card {
      padding: 1.75rem; border-radius: var(--radius-xl);
      background: #fff; border: 1px solid rgba(226,232,240,0.8);
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; cursor: default;
      will-change: transform;
    }
    @media (min-width: 768px) { .solution-card { padding: 2.75rem; } }
    .solution-card:hover { border-color: rgba(99,91,255,0.2); box-shadow: 0 20px 60px rgba(0,28,55,0.07); transform: translateY(-2px); }
    .solution-card:hover .card-icon { background: var(--primary); color: #fff; }

    .card-icon {
      width: 52px; height: 52px; border-radius: 16px;
      background: var(--surface-low); color: var(--on-surface-variant);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem; transition: background 0.3s, color 0.3s;
    }
    @media (min-width: 768px) { .card-icon { width: 60px; height: 60px; margin-bottom: 2rem; } }
    .card-icon .material-symbols-outlined { font-size: 1.75rem; }
    @media (min-width: 768px) { .card-icon .material-symbols-outlined { font-size: 2rem; } }

    .card-title { font-family: var(--font-headline); font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; color: var(--on-surface); margin-bottom: 0.875rem; }
    @media (min-width: 768px) { .card-title { font-size: 1.2rem; margin-bottom: 1rem; } }
    .card-body { font-size: 0.9rem; line-height: 1.7; color: #64748b; margin-bottom: 1.25rem; }
    @media (min-width: 768px) { .card-body { margin-bottom: 1.5rem; } }
    .card-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; transition: gap 0.2s; }
    .solution-card:hover .card-link { gap: 0.75rem; }

    /* ════════════════════════════════════════
       WORKFORCE STATS
    ════════════════════════════════════════ */
    .workforce { padding: 4rem 0; background: var(--on-surface); color: #fff; overflow: hidden; }
    @media (min-width: 768px) { .workforce { padding: 7rem 0; } }

    .workforce-inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
    }
    @media (min-width: 1024px) { .workforce-inner { grid-template-columns: 1fr 1fr; gap: 6rem; } }

    .workforce-bg-shape { position: absolute; right: 0; top: 0; bottom: 0; width: 33%; background: rgba(99,91,255,0.06); transform: skewX(-12deg) translateX(25%); }
    .workforce-h2 { font-family: var(--font-headline); font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.035em; text-transform: uppercase; line-height: 1.05; margin-bottom: 1rem; color: #fff; }
    .workforce-sub { font-size: 1rem; color: rgba(255,255,255,0.55); font-weight: 400; margin-bottom: 2.5rem; line-height: 1.7; }
    @media (min-width: 768px) { .workforce-sub { margin-bottom: 3rem; } }

    .stat-row { display: flex; gap: 1.25rem; align-items: flex-start; }
    @media (min-width: 480px) { .stat-row { gap: 1.5rem; } }
    .stat-row + .stat-row { margin-top: 2rem; }
    @media (min-width: 768px) { .stat-row + .stat-row { margin-top: 2.5rem; } }

    .stat-num { font-family: var(--font-headline); font-size: 2.25rem; font-weight: 900; color: var(--primary); letter-spacing: -0.04em; line-height: 1; min-width: 4.5rem; }
    @media (min-width: 768px) { .stat-num { font-size: 2.75rem; min-width: 5rem; } }
    .stat-info h4 { font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; color: #fff; }
    .stat-info p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

    .metric-cards { display: flex; flex-direction: column; gap: 1rem; }
    @media (min-width: 480px) { .metric-cards { gap: 1.25rem; } }

    .metric-big { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 1.5rem 1.75rem; transition: background 0.3s; will-change: transform; }
    @media (min-width: 768px) { .metric-big { padding: 2rem 2.25rem; } }
    .metric-big:hover { background: rgba(255,255,255,0.1); }
    .metric-big-num { font-family: var(--font-headline); font-size: 2.75rem; font-weight: 900; color: var(--primary); letter-spacing: -0.04em; margin-bottom: 0.5rem; }
    @media (min-width: 768px) { .metric-big-num { font-size: 3.25rem; } }
    .metric-big h4 { font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 0.35rem; }
    .metric-big p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

    .metric-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (min-width: 480px) { .metric-small-grid { gap: 1.25rem; } }

    .metric-small { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 1.25rem; transition: background 0.3s; will-change: transform; }
    @media (min-width: 768px) { .metric-small { padding: 1.5rem; } }
    .metric-small:hover { background: rgba(255,255,255,0.1); }
    .metric-small-num { font-family: var(--font-headline); font-size: 1.75rem; font-weight: 900; color: var(--primary); letter-spacing: -0.03em; margin-bottom: 0.4rem; }
    @media (min-width: 768px) { .metric-small-num { font-size: 2rem; } }
    .metric-small h4 { font-weight: 700; font-size: 0.9rem; color: #fff; margin-bottom: 0.25rem; }
    .metric-small p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

    /* ════════════════════════════════════════
       MAP
    ════════════════════════════════════════ */
    .map-section { padding: 4rem 0; background: var(--surface-low); }
    @media (min-width: 768px) { .map-section { padding: 7rem 0; } }
    .map-header { text-align: center; margin-bottom: 2.5rem; }
    @media (min-width: 768px) { .map-header { margin-bottom: 3.5rem; } }

    .map-container {
      background: #fff; border-radius: var(--radius-xl); border: 1px solid rgba(199,196,216,0.3);
      box-shadow: var(--shadow-card); overflow: hidden;
      aspect-ratio: 16/9; position: relative;
    }
    @media (min-width: 768px) {
      .map-container { aspect-ratio: 21/9; border-radius: var(--radius-2xl); }
    }
    .map-svg { width: 100%; height: 100%; }
    .map-overlay-card {
      position: absolute; bottom: 1rem; right: 1rem;
      background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
      border-radius: var(--radius-md); padding: 1rem 1.25rem;
      border: 1px solid rgba(199,196,216,0.3); box-shadow: var(--shadow-float);
    }
    @media (min-width: 768px) {
      .map-overlay-card { bottom: 1.5rem; right: 1.5rem; padding: 1.25rem 1.5rem; }
    }
    .map-overlay-label { font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; color: #94a3b8; text-transform: uppercase; margin-bottom: 0.4rem; }
    .map-overlay-val { font-family: var(--font-headline); font-size: 1.25rem; font-weight: 900; color: var(--on-surface); }
    @media (min-width: 768px) { .map-overlay-val { font-size: 1.5rem; } }

    /* ════════════════════════════════════════
       IMPACT
    ════════════════════════════════════════ */
    .impact { padding: 4rem 0; background: #fff; }
    @media (min-width: 768px) { .impact { padding: 7rem 0; } }
    .impact-header { margin-bottom: 2.5rem; }
    @media (min-width: 768px) { .impact-header { margin-bottom: 3.5rem; } }
    .impact-rows { display: flex; flex-direction: column; gap: 0.75rem; }
    @media (min-width: 480px) { .impact-rows { gap: 1rem; } }

    .impact-row {
      display: grid;
      grid-template-columns: 64px 1fr;
      align-items: center; gap: 1rem; padding: 1.25rem;
      border-radius: var(--radius-lg);
      background: linear-gradient(90deg, #fff 0%, var(--surface) 100%);
      border: 1px solid rgba(226,232,240,0.8);
      transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
      will-change: transform;
    }
    @media (min-width: 480px) {
      .impact-row { grid-template-columns: 80px 1fr auto; gap: 1.5rem; padding: 1.5rem; }
    }
    @media (min-width: 768px) {
      .impact-row { grid-template-columns: 100px 1fr auto; gap: 2rem; padding: 1.75rem 2rem; border-radius: var(--radius-xl); }
    }
    .impact-row:hover { box-shadow: 0 12px 40px rgba(0,28,55,0.07); transform: translateX(4px); border-color: rgba(99,91,255,0.15); }

    .impact-icon {
      width: 56px; height: 56px; border-radius: var(--radius-md);
      background: #fff; border: 1px solid rgba(226,232,240,0.6);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(0,28,55,0.04);
    }
    @media (min-width: 768px) { .impact-icon { width: 80px; height: 80px; border-radius: var(--radius-lg); } }
    .impact-icon .material-symbols-outlined { font-size: 1.75rem; color: var(--primary); font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
    @media (min-width: 768px) { .impact-icon .material-symbols-outlined { font-size: 2.25rem; } }

    .impact-info h4 { font-family: var(--font-headline); font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: -0.01em; color: var(--on-surface); margin-bottom: 0.2rem; }
    @media (min-width: 768px) { .impact-info h4 { font-size: 1rem; margin-bottom: 0.25rem; } }
    .impact-info p { font-size: 0.8rem; color: #64748b; }
    @media (min-width: 768px) { .impact-info p { font-size: 0.85rem; } }

    .impact-arrow { flex: 1; height: 2px; background: linear-gradient(90deg, var(--primary) 0%, transparent 100%); position: relative; margin-top: 0.75rem; }
    .impact-metric { text-align: right; }
    .impact-metric-val { font-family: var(--font-headline); font-size: 1.5rem; font-weight: 900; color: var(--primary); letter-spacing: -0.03em; display: flex; align-items: center; justify-content: flex-end; gap: 0.4rem; }
    @media (min-width: 768px) { .impact-metric-val { font-size: 2rem; gap: 0.5rem; } }
    .impact-metric-val .material-symbols-outlined { font-size: 1.2rem; }
    @media (min-width: 768px) { .impact-metric-val .material-symbols-outlined { font-size: 1.4rem; } }
    .impact-metric-label { font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; color: #94a3b8; text-transform: uppercase; margin-top: 0.25rem; }

    /* ════════════════════════════════════════
       PRODUCTS
    ════════════════════════════════════════ */
    .products { padding: 4rem 0; background: var(--surface-low); }
    @media (min-width: 768px) { .products { padding: 7rem 0; } }

    .products-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
    @media (min-width: 640px) { .products-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

    .product-card {
      display: flex; gap: 1.25rem; align-items: flex-start;
      padding: 1.5rem; border-radius: var(--radius-xl);
      background: #fff; border: 1px solid rgba(226,232,240,0.7);
      box-shadow: var(--shadow-card); transition: box-shadow 0.3s, transform 0.3s;
      will-change: transform;
    }
    @media (min-width: 768px) { .product-card { gap: 1.75rem; padding: 2rem 2.25rem; } }
    .product-card:hover { box-shadow: 0 16px 48px rgba(0,28,55,0.09); transform: translateY(-2px); }
    .product-card:hover .product-icon { background: var(--primary); color: #fff; }

    .product-icon {
      width: 56px; height: 56px; min-width: 56px; border-radius: var(--radius-lg);
      background: var(--primary-dim); color: var(--primary);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, color 0.3s;
    }
    @media (min-width: 768px) { .product-icon { width: 72px; height: 72px; min-width: 72px; } }
    .product-icon .material-symbols-outlined { font-size: 1.6rem; }
    @media (min-width: 768px) { .product-icon .material-symbols-outlined { font-size: 2rem; } }
    .product-title { font-family: var(--font-headline); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; color: var(--on-surface); margin-bottom: 0.4rem; }
    @media (min-width: 768px) { .product-title { font-size: 1.1rem; margin-bottom: 0.5rem; } }
    .product-body { font-size: 0.88rem; line-height: 1.65; color: #64748b; }
    @media (min-width: 768px) { .product-body { font-size: 0.9rem; } }

    /* ════════════════════════════════════════
       ADVANTAGE
    ════════════════════════════════════════ */
    .advantage { padding: 4rem 0; background: #fff; }
    @media (min-width: 768px) { .advantage { padding: 7rem 0; } }

    .advantage-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
    @media (min-width: 768px) { .advantage-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

    .advantage-rule { width: 3rem; height: 3px; margin-bottom: 1.5rem; }
    @media (min-width: 768px) { .advantage-rule { margin-bottom: 1.75rem; } }
    .advantage-rule.primary { background: var(--primary); }
    .advantage-rule.tertiary { background: var(--tertiary); }
    .advantage-h3 { font-family: var(--font-headline); font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.025em; color: var(--on-surface); margin-bottom: 1rem; }
    @media (min-width: 768px) { .advantage-h3 { font-size: 1.75rem; margin-bottom: 1.25rem; } }
    .advantage-body { font-size: 1rem; line-height: 1.8; color: #64748b; }
    @media (min-width: 768px) { .advantage-body { font-size: 1.05rem; } }

    /* ════════════════════════════════════════
       ANIMATIONS
    ════════════════════════════════════════ */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
    .fade-up { animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.35s; }
    .delay-4 { animation-delay: 0.5s; }

    /* ════════════════════════════════════════
       REDUCED MOTION — respect system 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;
      }
      .hero-badge-dot { animation: none; }
      .fade-up { animation: none; opacity: 1; transform: none; }
    }

    /* ════════════════════════════════════════
       PRINT STYLES
    ════════════════════════════════════════ */
    @media print {
      .site-nav, #header-slot, #footer-slot { display: none !important; }
      .hero { min-height: auto; padding: 2rem 0; }
      body { color: #000; background: #fff; }
      a { color: inherit; text-decoration: underline; }
    }
