/* ── APPLE ABOUT PAGE — BESPOKE OVERRIDES ── */
    :root {
      --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Inter, ui-sans-serif, system-ui, sans-serif;
      --page-bg: #f5f5f7;
      --surface: #ffffff;
      --ink: #1d1d1f;
      --ink-2: #424245;
      --ink-3: #6e6e73;
      --ink-4: #86868b;
      --line: rgba(0, 0, 0, 0.08);
      --line-strong: rgba(0, 0, 0, 0.12);
      --accent: #E31E24;
      --accent-soft: rgba(227, 30, 36, 0.08);
      --accent-mid: rgba(227, 30, 36, 0.15);
      --teal: #17a9e2;
      --teal-soft: rgba(23, 169, 226, 0.08);
      --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.09), 0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.13), 0 8px 24px rgba(0, 0, 0, 0.06);
      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 18px;
      --r-xl: 24px;
      --r-2xl: 32px;
      --r-pill: 999px;
      --ease: cubic-bezier(0.28, 0.11, 0.32, 1);
    }
  
    [data-theme="dark"] {
      --page-bg: #000000;
      --surface: #1c1c1e;
      --ink: #f5f5f7;
      --ink-2: #d1d1d6;
      --ink-3: #98989d;
      --ink-4: #636366;
      --line: rgba(255, 255, 255, 0.09);
      --line-strong: rgba(255, 255, 255, 0.14);
      --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.36);
      --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
      --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.7);
    }
  
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
  
    html {
      scroll-behavior: smooth;
    }
  
    body {
      font-family: var(--font-system) !important;
      background: var(--page-bg) !important;
      color: var(--ink) !important;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
  
    /* ══ Apple Nav — index.html style floating capsule override ══════════════════════════════════ */
    .site-header,
    [data-theme="light"] .site-header,
    [data-theme="dark"] .site-header {
      position: sticky !important;
      top: 0 !important;
      z-index: 100 !important;
      height: 92px !important;
      padding: 12px 0 8px !important;
      background: transparent !important;
      border-bottom: 0 !important;
      box-shadow: none !important;
      transition: height 0.28s ease, padding 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease !important;
    }
  
    [data-theme="dark"] .site-header {
      background: transparent !important;
      box-shadow: none !important;
    }
  
    /* Container */
    .site-header .container {
      width: min(100% - 48px, 1200px) !important;
      margin-inline: auto !important;
      padding: 0 !important;
    }
  
    /* Navbar */
    .site-header .navbar {
      position: relative !important;
      min-height: 64px !important;
      height: 64px !important;
      padding: 8px 12px !important;
      border: 1px solid rgba(215, 222, 232, 0.92) !important;
      border-radius: 20px !important;
      background: rgba(255, 255, 255, 0.86) !important;
      box-shadow: 0 18px 48px rgba(16, 24, 40, 0.1) !important;
      backdrop-filter: blur(22px) saturate(170%) !important;
      -webkit-backdrop-filter: blur(22px) saturate(170%) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 0 !important;
      transition: min-height 0.28s ease, height 0.28s ease, padding 0.28s ease, border-radius 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease !important;
    }
  
    [data-theme="dark"] .site-header .navbar {
      border-color: rgba(148, 163, 184, 0.24) !important;
      background: rgba(15, 23, 42, 0.82) !important;
      box-shadow: 0 20px 54px rgba(0, 0, 0, 0.3) !important;
    }
  
    .site-header.is-scrolled {
      height: 72px !important;
      padding: 8px 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      border: 0 !important;
    }
  
    [data-theme="dark"] .site-header.is-scrolled {
      background: transparent !important;
      box-shadow: none !important;
      border: 0 !important;
    }
  
    .site-header.is-scrolled .navbar {
      min-height: 56px !important;
      height: 56px !important;
      padding: 6px 10px !important;
      border-radius: 16px !important;
      box-shadow: 0 12px 34px rgba(16, 24, 40, 0.12) !important;
      transform: translateY(-1px) !important;
    }
  
    /* ── Brand ─────────────────────────────────────────────── */
    .navbar .brand {
      display: inline-flex !important;
      align-items: center !important;
      gap: 8px !important;
      font-size: 1rem !important;
      font-weight: 700 !important;
      letter-spacing: -0.01em !important;
      color: var(--a-ink, #1d1d1f) !important;
      text-decoration: none !important;
      min-width: 0 !important;
      flex-shrink: 0 !important;
    }
  
    .navbar .brand img {
      width: 29px !important;
      height: 29px !important;
      border-radius: 6px !important;
      border: none !important;
      background: transparent !important;
      box-shadow: none !important;
      padding: 0 !important;
      object-fit: contain !important;
    }
  
    .navbar .brand span {
      background: linear-gradient(to right,
          #a4161a,
          /* Deep crimson */
          #e5383b,
          /* Coral red */
          #330101,
          /* Saturated violet */
          #ff002b,
          /* Electric red */
          #ba181b,
          /* Vibrant red */
          #660708,
          /* Deep maroon */
          #a4161a
          /* Loop */
        );
      background-size: 200% auto;
      -webkit-background-clip: text !important;
      background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      animation: chromaticScroll 9s linear infinite !important;
      display: inline-block !important;
      line-height: 1.1 !important;
      padding-bottom: 0.05em !important;
      margin-bottom: -0.05em !important;
    }
  
    [data-theme="dark"] .navbar .brand span {
      background: linear-gradient(to right,
          #ff002b,
          /* Electric red */
          #ff5e62,
          /* Glowing coral */
          #b19ffb,
          /* Radiant lavender/violet */
          #ff8282,
          /* Pastel rose */
          #ffba08,
          /* Honey gold */
          #ff2d55,
          /* System pink */
          #ff002b

          
    #247ba0
#70c1b3
#b2dbbf
#f3ffbd
#ff1654
          /* Loop */
        );
    }
  
    [data-theme="dark"] .navbar .brand {
      color: #f5f5f7 !important;
    }
  
    /* ── Nav links — centered, no capsule wrapper ───────────── */
    .navbar .nav-links,
    [data-theme="light"] .navbar .nav-links,
    [data-theme="dark"] .navbar .nav-links {
      position: absolute !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      display: flex !important;
      align-items: center !important;
      gap: 0 !important;
      padding: 0 !important;
      border: none !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
    }
  
    .navbar .nav-links a,
    [data-theme="light"] .navbar .nav-links a,
    [data-theme="dark"] .navbar .nav-links a {
      display: inline-flex !important;
      align-items: center !important;
      height: 52px !important;
      padding: 0 13px !important;
      border-radius: 0 !important;
      font-size: 0.8125rem !important;
      font-weight: 500 !important;
      color: rgba(0, 0, 0, 0.72) !important;
      text-decoration: none !important;
      white-space: nowrap !important;
      background: transparent !important;
      transition: color 0.15s ease !important;
      letter-spacing: 0 !important;
    }
  
    [data-theme="dark"] .navbar .nav-links a {
      color: rgba(255, 255, 255, 0.72) !important;
    }
  
    .navbar .nav-links a:hover,
    [data-theme="light"] .navbar .nav-links a:hover,
    [data-theme="dark"] .navbar .nav-links a:hover,
    .navbar .nav-links a.active {
      color: var(--a-blue, #FF3B30) !important;
      background: transparent !important;
    }
  
    /* ── Nav actions ─────────────────────────────────────────── */
    .navbar .nav-actions {
      display: flex !important;
      align-items: center !important;
      gap: 8px !important;
      min-width: 0 !important;
      flex-shrink: 0 !important;
    }
  
    /* Log In — text button */
    #nav-login-btn,
    .ab-nav-ghost,
    .finger-btn-container {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      height: 30px !important;
      padding: 0 14px !important;
      width: auto !important;
      border-radius: 999px !important;
      background: transparent !important;
      border: 1px solid rgba(0, 0, 0, 0.16) !important;
      color: rgba(0, 0, 0, 0.72) !important;
      font-size: 0.8125rem !important;
      font-weight: 500 !important;
      text-decoration: none !important;
      cursor: pointer !important;
      transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease !important;
      white-space: nowrap !important;
    }
  
    [data-theme="dark"] #nav-login-btn,
    [data-theme="dark"] .ab-nav-ghost,
    [data-theme="dark"] .finger-btn-container {
      border-color: rgba(255, 255, 255, 0.2) !important;
      color: rgba(255, 255, 255, 0.72) !important;
      background: transparent !important;
    }
  
    #nav-login-btn:hover,
    .ab-nav-ghost:hover,
    .finger-btn-container:hover {
      border-color: var(--a-blue, #FF3B30) !important;
      color: var(--a-blue, #FF3B30) !important;
      background: transparent !important;
      transform: none !important;
    }
  
    .finger-btn-text {
      position: static !important;
      opacity: 1 !important;
      font-size: 0.8125rem !important;
      font-weight: 500 !important;
      color: inherit !important;
    }

    /* Register — solid blue pill */
    #nav-register-btn,
    .ab-nav-cta,
    a#nav-register-btn {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      height: 30px !important;
      padding: 0 16px !important;
      border-radius: 999px !important;
      background: var(--a-blue, #FF3B30) !important;
      color: #ffffff !important;
      font-size: 0.8125rem !important;
      font-weight: 600 !important;
      text-decoration: none !important;
      border: none !important;
      white-space: nowrap !important;
      transition: background 0.15s ease, transform 0.15s ease !important;
    }

    #nav-register-btn:hover,
    .ab-nav-cta:hover,
    a#nav-register-btn:hover {
      background: #e11d48 !important;
      color: #ffffff !important;
      transform: none !important;
    }

    /* ── Hamburger (mobile) ──────────────────────────────────── */
    .menu-toggle {
      display: none !important;
      width: 36px !important;
      height: 36px !important;
      border: none !important;
      background: transparent !important;
      box-shadow: none !important;
      border-radius: 8px !important;
      padding: 0 !important;
      cursor: pointer !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 5px !important;
    }

    .menu-toggle span,
    .menu-toggle .hamburger-line {
      display: block !important;
      width: 18px !important;
      height: 1.5px !important;
      background: rgba(0, 0, 0, 0.72) !important;
      border-radius: 2px !important;
      margin: 0 !important;
      transition: transform 0.22s ease, opacity 0.18s ease !important;
    }

    [data-theme="dark"] .menu-toggle span,
    [data-theme="dark"] .menu-toggle .hamburger-line {
      background: rgba(255, 255, 255, 0.72) !important;
    }

    /* ── Mobile nav ──────────────────────────────────────────── */
    @media (max-width: 900px) {
      .site-header .container {
        width: min(100% - 32px, 1200px) !important;
      }

      .site-header,
      [data-theme="light"] .site-header,
      [data-theme="dark"] .site-header {
        height: auto !important;
      }

      .site-header .navbar {
        height: auto !important;
        min-height: 52px !important;
        flex-wrap: wrap !important;
        padding: 0 16px !important;
        position: relative !important;
      }

      /* Brand stays left */
      .navbar .brand {
        order: 1 !important;
        flex: 0 0 auto !important;
      }

      /* Hamburger shows right */
      .menu-toggle {
        display: inline-flex !important;
        order: 2 !important;
        margin-left: auto !important;
      }

      /* Nav links hidden until open */
      .navbar .nav-links,
      [data-theme="light"] .navbar .nav-links,
      [data-theme="dark"] .navbar .nav-links {
        position: static !important;
        transform: none !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        order: 4 !important;
        padding: 8px 0 16px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
        gap: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
      }

      [data-theme="dark"] .navbar .nav-links {
        border-top-color: rgba(255, 255, 255, 0.08) !important;
      }

      .navbar.open .nav-links,
      [data-theme="light"] .navbar.open .nav-links,
      [data-theme="dark"] .navbar.open .nav-links {
        display: flex !important;
      }

      .navbar .nav-links a,
      [data-theme="light"] .navbar .nav-links a,
      [data-theme="dark"] .navbar .nav-links a {
        height: 44px !important;
        padding: 0 4px !important;
        font-size: 0.9375rem !important;
        border-radius: 10px !important;
        width: 100% !important;
      }

      .navbar .nav-links a:hover {
        background: rgba(0, 113, 227, 0.06) !important;
      }

      /* Nav actions hidden until open */
      .navbar .nav-actions {
        display: none !important;
        order: 5 !important;
        width: 100% !important;
        padding: 8px 0 16px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
      }

      [data-theme="dark"] .navbar .nav-actions {
        border-top-color: rgba(255, 255, 255, 0.08) !important;
      }

      .navbar.open .nav-actions {
        display: flex !important;
      }

      #nav-login-btn,
      .ab-nav-ghost,
      .finger-btn-container {
        width: 100% !important;
        height: 44px !important;
        border-radius: 12px !important;
        justify-content: center !important;
      }

      #nav-register-btn,
      .ab-nav-cta,
      a#nav-register-btn {
        width: 100% !important;
        height: 44px !important;
        border-radius: 12px !important;
        justify-content: center !important;
      }

      /* Hamburger → X animation */
      .navbar.open .menu-toggle span:nth-child(1),
      .navbar.open .menu-toggle .hamburger-line:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg) !important;
      }

      .navbar.open .menu-toggle span:nth-child(2),
      .navbar.open .menu-toggle .hamburger-line:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
      }

      .navbar.open .menu-toggle span:nth-child(3),
      .navbar.open .menu-toggle .hamburger-line:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg) !important;
      }

      /* Nav controls (theme toggle area) */
      .nav-controls {
        order: 3 !important;
      }
    }

    /* ── Theme toggle in nav ─────────────────────────────────── */
    .theme-toggle {
      height: 30px !important;
      min-height: 30px !important;
      padding: 0 10px !important;
      border: 1px solid rgba(0, 0, 0, 0.16) !important;
      border-radius: 999px !important;
      background: transparent !important;
      color: rgba(0, 0, 0, 0.72) !important;
      font-size: 0.8125rem !important;
      font-weight: 500 !important;
      box-shadow: none !important;
      cursor: pointer !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    [data-theme="dark"] .theme-toggle {
      border-color: rgba(255, 255, 255, 0.2) !important;
      color: rgba(255, 255, 255, 0.72) !important;
      background: transparent !important;
    }

    .theme-toggle:hover {
      border-color: var(--a-blue, #FF3B30) !important;
      color: var(--a-blue, #FF3B30) !important;
      transform: none !important;
    }

    /* Kill the old nav capsule pill visual on all screen sizes */
    .site-header .navbar .nav-controls .menu-toggle {
      background: transparent !important;
      box-shadow: none !important;
    }

    /* Ensure nav-controls is always visible — it wraps the hamburger */
    .nav-controls {
      display: flex !important;
      align-items: center !important;
    }

    @media (min-width: 901px) {

      /* Hide hamburger and its container on desktop */
      .menu-toggle,
      .nav-controls {
        display: none !important;
      }

      /* Show nav-links and actions on desktop */
      .navbar .nav-links {
        display: flex !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
      }

      .navbar .nav-actions {
        display: flex !important;
      }
    }

    /* Logo and brand name transitions when scrolled */
    .site-header.is-scrolled .navbar .brand {
      gap: 10px !important;
      font-size: 1.4rem !important;
    }

    /* Keep Bloomeor visible and larger */
    .site-header.is-scrolled .navbar .brand span {
      max-width: 200px !important;
      opacity: 1 !important;
      margin-left: 8px !important;
      pointer-events: auto !important;
      font-size: 1.4rem !important;
      font-weight: 700 !important;
      letter-spacing: -0.02em !important;
    }

    /* Logo size */
    .site-header.is-scrolled .navbar .brand img {
      width: 38px !important;
      height: 38px !important;
      border-radius: 10px !important;
    }

    /* Default (non-scrolled) logo text */
    .navbar .brand span {
      font-size: 1.4rem !important;
      font-weight: 700 !important;
      letter-spacing: -0.02em !important;
    }

    /* Smooth transitions */
    .navbar .brand img {
      transition:
        width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-radius 0.4s ease !important;
    }

    .navbar .brand span {
      transition:
        max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease,
        margin 0.4s ease,
        font-size 0.4s ease !important;
    }

    /* Adjust link height to align inside the capsule */
    .site-header.is-scrolled .navbar .nav-links a {
      height: 52px !important;
    }

    /* Logo and brand name transitions when scrolled */
    .site-header.is-scrolled .navbar .brand {
      gap: 0 !important;
    }

    /* Hide Bloomeor text on scroll */
    .site-header.is-scrolled .navbar .brand span {
      max-width: 0 !important;
      opacity: 0 !important;
      margin-left: 0 !important;
      overflow: hidden !important;
      pointer-events: none !important;
      white-space: nowrap !important;
      transition:
        max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease,
        margin 0.4s ease !important;
    }

    /* Show larger logo when scrolled */
    .site-header.is-scrolled .navbar .brand img {
      width: 38px !important;
      height: 38px !important;
      border-radius: 10px !important;
    }

    /* Default brand text style */
    .navbar .brand span {
      font-size: 1.4rem !important;
      font-weight: 700 !important;
      letter-spacing: -0.02em !important;
      white-space: nowrap !important;
    }

    /* Smooth logo animation */
    .navbar .brand img {
      transition:
        width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-radius 0.4s ease !important;
    }

    /* Smooth text animation */
    .navbar .brand span {
      transition:
        max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease,
        margin 0.4s ease !important;
    }

    /* Mobile overrides for scrolled navbar */
    @media (max-width: 900px) {
      .site-header.is-scrolled {
        height: auto !important;
        padding: 8px 0 !important;
      }

      .site-header.is-scrolled .navbar,
      [data-theme="light"] .site-header.is-scrolled .navbar,
      [data-theme="dark"] .site-header.is-scrolled .navbar {
        min-height: 52px !important;
        height: auto !important;
        padding: 8px 16px !important;
        border-radius: 20px !important;
        /* Smooth box/capsule shape for mobile card */
        margin-inline: 16px !important;
        /* Float off screen edges */
        width: calc(100% - 32px) !important;
      }

      [data-theme="light"] .site-header.is-scrolled .navbar {
        background: rgba(255, 255, 255, 0.78) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
      }

      [data-theme="dark"] .site-header.is-scrolled .navbar {
        background: rgba(22, 22, 23, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
      }
    }

    /* ── CONTAINER ── */
    .container {
      width: min(100% - 48px, 1120px);
      margin-inline: auto;
    }

    /* ══════════════════════════════════════════════════════
       HERO — Apple-grade minimal. "Less. But better."
       Reference: apple.com/vision-pro, apple.com/intelligence
    ══════════════════════════════════════════════════════ */

    /* One single, breathable, almost-invisible radial warmth.
       No blobs. No teal. No noise. Just air.                  */
    .ab-hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 0 80px;
      position: relative;
      overflow: hidden;
      background: #fbfbfd;
    }

    [data-theme="dark"] .ab-hero {
      background: #000;
    }

    /* Single ghost radial — opacity 3%, invisible unless you look */
    .ab-hero::before {
      content: "";
      position: absolute;
      width: 900px;
      height: 900px;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -55%);
      background: radial-gradient(circle, rgba(227, 30, 36, 0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    .ab-hero::after {
      display: none;
    }

    /* ── Content wrapper ── */
    .ab-hero-inner {
      position: relative;
      z-index: 1;
      width: min(100% - 48px, 680px);
      margin-inline: auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* ── Launch line — tiny hairline above eyebrow ──
       Apple Vision Pro page uses this exact detail      */
    .ab-hero-launch-line {
      width: 1px;
      height: 32px;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.14));
      margin-bottom: 16px;
      animation: heroLineIn 0.6s cubic-bezier(0.28, 0.11, 0.32, 1) both;
    }

    [data-theme="dark"] .ab-hero-launch-line {
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18));
    }

    @keyframes heroLineIn {
      from {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
      }

      to {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
      }
    }

    /* ── Eyebrow — SF Pro Text, 13px, medium, light grey ── */
    .ab-eyebrow {
      display: inline-block;
      font-family: var(--font-system);
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-3);
      letter-spacing: 0;
      text-transform: none;
      margin-bottom: 20px;
      /* no pill, no border, no background — pure type */
      background: none;
      border: none;
      padding: 0;
      backdrop-filter: none;
      box-shadow: none;
      animation: heroFadeUp 0.6s 0.08s cubic-bezier(0.28, 0.11, 0.32, 1) both;
    }

    /* ── Headline — SF Pro Display, 96px, -0.06em ── */
    .ab-hero h1 {
      font-family: 'Naston', sans-serif !important;
      font-size: clamp(44px, 8vw, 96px) !important;
      font-weight: 400 !important;
      letter-spacing: -0.06em !important;
      line-height: 0.92 !important;
      color: #1d1d1f !important;
      margin-bottom: 0 !important;
      text-wrap: balance !important;
      animation: heroFadeUp 0.6s 0.16s cubic-bezier(0.28, 0.11, 0.32, 1) both !important;
    }

    [data-theme="dark"] .ab-hero h1 {
      color: #f5f5f7 !important;
    }

    /* ── Chromatic Text Effect for "engineers" ── */
    .chromatic-engineers {
      font-family: 'Naston', sans-serif !important;
      font-weight: 400 !important;
      background: linear-gradient(to right,
          #4361EE,
          /* Space Indigo */
          #b2b2c8,
          /* Lavender Grey */
          #e5e5e594,
          /* Platinum */
          #ff2d55,
          /* Punch Red */
          #E31E24,
          /* Flag Red */
          #ffba08,
          /* #ffba08 */
          #4361EE
          /* Loop back to Space Indigo */
        );
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: chromaticScroll 4s linear infinite;
      display: inline-block;
      line-height: 1.1;
      padding-bottom: 0.12em;
      margin-bottom: -0.12em;
    }

    @keyframes chromaticScroll {
      0% {
        background-position: 0% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    /* ── Rotating sub-lines below h1 ── */
    .ab-hero-sub {
      margin-top: 20px;
      height: 1.4em;
      position: relative;
      overflow: hidden;
      animation: heroFadeUp 0.6s 0.24s cubic-bezier(0.28, 0.11, 0.32, 1) both;
    }

    .ab-hero-sub span {
      position: absolute;
      left: 0;
      right: 0;
      text-align: center;
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(16px, 2vw, 21px);
      font-weight: 300;
      color: #6e6e73;
      letter-spacing: -0.02em;
      line-height: 1.3;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s cubic-bezier(0.28, 0.11, 0.32, 1),
        transform 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
      pointer-events: none;
    }

    .ab-hero-sub span.sub-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .ab-hero-sub span.sub-exit {
      opacity: 0;
      transform: translateY(-16px);
      pointer-events: none;
    }

    [data-theme="dark"] .ab-hero-sub span {
      color: #86868b;
    }

    /* ── Description — max 2 lines ── */
    .ab-hero-lead {
      font-size: 17px;
      font-weight: 400;
      color: #6e6e73;
      line-height: 1.52941;
      max-width: 528px;
      margin: 32px auto 0;
      letter-spacing: -0.01em;
      animation: heroFadeUp 0.6s 0.30s cubic-bezier(0.28, 0.11, 0.32, 1) both;
    }

    [data-theme="dark"] .ab-hero-lead {
      color: #86868b;
    }

    /* ── CTA row ── */
    .ab-hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      margin-top: 40px;
      flex-wrap: wrap;
      animation: heroFadeUp 0.6s 0.38s cubic-bezier(0.28, 0.11, 0.32, 1) both;
    }

    /* Primary — filled pill, no shadow */
    .ab-btn-primary {
      height: 44px;
      padding: 0 22px;
      border-radius: 980px;
      background: #E31E24;
      color: #fff !important;
      font-size: 17px;
      font-weight: 400;
      letter-spacing: -0.022em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s cubic-bezier(0.28, 0.11, 0.32, 1),
        transform 0.2s cubic-bezier(0.28, 0.11, 0.32, 1);
    }

    .ab-btn-primary:hover {
      background: #c4171c;
      transform: none;
    }

    .ab-btn-primary:active {
      transform: scale(0.98);
    }

    a.ab-btn-primary,
    a.acta-btn-primary,
    a.ab-mobile-menu .ab-btn-primary {
      color: #ffffff !important;
    }

    /* Secondary — text-only link, Apple blue-style */
    .ab-btn-secondary {
      height: 44px;
      padding: 0;
      background: none;
      border: none;
      box-shadow: none;
      font-size: 17px;
      font-weight: 400;
      letter-spacing: -0.022em;
      color: #E31E24 !important;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.18s;
    }

    .ab-btn-secondary:hover {
      opacity: 0.78;
    }

    [data-theme="dark"] .ab-btn-secondary {
      color: #ff6961 !important;
    }

    /* ── Trust row — footer-style, tiny separators ── */
    .ab-hero-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
      margin-top: 56px;
      list-style: none;
      animation: heroFadeUp 0.6s 0.46s cubic-bezier(0.28, 0.11, 0.32, 1) both;
    }

    .ab-hero-trust li {
      font-size: 12px;
      font-weight: 400;
      color: #86868b;
      letter-spacing: 0;
      padding: 0 12px;
      position: relative;
    }

    /* Separator dot between items */
    .ab-hero-trust li+li::before {
      content: "·";
      position: absolute;
      left: 0;
      transform: translateX(-50%);
      color: #c7c7cc;
      font-size: 14px;
      line-height: 1;
      top: 50%;
      margin-top: -7px;
    }

    [data-theme="dark"] .ab-hero-trust li {
      color: #636366;
    }

    [data-theme="dark"] .ab-hero-trust li+li::before {
      color: #3a3a3c;
    }

    /* ── Scroll indicator — Apple mouse-scroll style ── */
    .ab-hero-scroll {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      animation: heroFadeIn 0.6s 1.1s cubic-bezier(0.28, 0.11, 0.32, 1) both;
    }

    @keyframes heroFadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* Mouse shell */
    .ab-scroll-mouse {
      width: 20px;
      height: 30px;
      border: 1.5px solid rgba(0, 0, 0, 0.2);
      border-radius: 10px;
      position: relative;
      overflow: hidden;
    }

    [data-theme="dark"] .ab-scroll-mouse {
      border-color: rgba(255, 255, 255, 0.2);
    }

    /* Scroll wheel inside */
    .ab-scroll-wheel {
      width: 2px;
      height: 5px;
      background: rgba(0, 0, 0, 0.28);
      border-radius: 1px;
      position: absolute;
      top: 5px;
      left: 50%;
      transform: translateX(-50%);
      animation: scrollWheel 1.8s cubic-bezier(0.28, 0.11, 0.32, 1) infinite;
    }

    [data-theme="dark"] .ab-scroll-wheel {
      background: rgba(255, 255, 255, 0.3);
    }

    @keyframes scrollWheel {
      0% {
        top: 5px;
        opacity: 1;
      }

      60% {
        top: 15px;
        opacity: 0;
      }

      61% {
        top: 5px;
        opacity: 0;
      }

      100% {
        top: 5px;
        opacity: 1;
      }
    }

    /* ── Shared fade-up keyframe ── */
    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .ab-hero {
        min-height: auto;
        padding: 100px 0 80px;
      }

      .ab-hero h1 {
        font-size: clamp(44px, 12vw, 64px);
        letter-spacing: -0.05em;
      }

      .ab-hero-lead {
        font-size: 15px;
      }

      .ab-hero-scroll {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .ab-hero {
        padding: 96px 0 72px;
      }

      .ab-hero h1 {
        font-size: 44px;
        letter-spacing: -0.04em;
        line-height: 0.96;
      }

      .ab-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .ab-btn-primary {
        width: 100%;
        justify-content: center;
      }
    }

    /* ── SECTION SCAFFOLD ── */
    .ab-section {
      padding: 96px 0;
    }

    .ab-section-sm {
      padding: 64px 0;
    }

    .ab-section-heading {
      text-align: center;
      max-width: 680px;
      margin-inline: auto;
      margin-bottom: 56px;
    }

    .ab-section-heading .ab-eyebrow {
      display: inline-block;
    }

    .ab-section-heading h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      letter-spacing: -0.035em;
      line-height: 1.06;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .ab-section-heading p {
      font-size: clamp(1rem, 1.6vw, 1.125rem);
      color: var(--ink-3);
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════════════════
       STORY SECTION — Apple / Stripe / Linear editorial
       "Built from real-world problems."
    ══════════════════════════════════════════════════════ */
    .as-story-section {
      padding: 160px 0;
      background: #fafafa;
      position: relative;
      overflow: hidden;
    }

    [data-theme="dark"] .as-story-section {
      background: #050505;
    }

    /* Ambient — single very faint radial, invisible unless searching */
    .as-story-section::before {
      content: "";
      position: absolute;
      width: 800px;
      height: 800px;
      border-radius: 50%;
      top: 50%;
      right: -200px;
      transform: translateY(-50%);
      background: radial-gradient(circle, rgba(227, 30, 36, 0.028) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Two-column editorial grid ── */
    .as-story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 120px;
      align-items: start;
      max-width: 1280px;
      margin-inline: auto;
    }

    /* ── LEFT — Copy ── */
    .as-story-copy {
      /* Entrance — handled by JS */
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s cubic-bezier(0.28, 0.11, 0.32, 1),
        transform 0.7s cubic-bezier(0.28, 0.11, 0.32, 1);
    }

    .as-story-copy.as-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Section label */
    .as-story-label {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #86868b;
      margin-bottom: 24px;
    }

    [data-theme="dark"] .as-story-label {
      color: #48484a;
    }

    /* Headline */
    .as-story-copy h2 {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(36px, 4.5vw, 64px);
      font-weight: 400;
      font-weight: 800;
      letter-spacing: -0.05em;
      line-height: 0.96;
      color: #1d1d1f;
      margin: 0 0 48px;
    }

    [data-theme="dark"] .as-story-copy h2 {
      color: #f5f5f7;
    }

    /* Body paragraphs */
    .as-story-body {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 560px;
    }

    .as-story-body p {
      font-size: 17px;
      font-weight: 400;
      color: #6e6e73;
      line-height: 1.65;
      letter-spacing: -0.01em;
      margin: 0;
    }

    [data-theme="dark"] .as-story-body p {
      color: #86868b;
    }

    /* ── RIGHT — Minimal vertical timeline ── */
    .as-timeline-col {
      padding-top: 8px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s 0.15s cubic-bezier(0.28, 0.11, 0.32, 1),
        transform 0.7s 0.15s cubic-bezier(0.28, 0.11, 0.32, 1);
    }

    .as-timeline-col.as-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* The track — thin line that draws itself */
    .as-timeline-track {
      position: relative;
      padding-left: 28px;
    }

    /* Vertical rule — grows from top via scaleY */
    .as-timeline-track::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 1px;
      bottom: 8px;
      background: #d2d2d7;
      transform-origin: top;
      transform: scaleY(0);
      transition: transform 0.8s cubic-bezier(0.28, 0.11, 0.32, 1);
    }

    [data-theme="dark"] .as-timeline-track::before {
      background: #2c2c2e;
    }

    .as-timeline-track.tl-drawn::before {
      transform: scaleY(1);
    }

    /* ── Individual milestone ── */
    .as-milestone {
      position: relative;
      padding: 0 0 48px;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.55s cubic-bezier(0.28, 0.11, 0.32, 1),
        transform 0.55s cubic-bezier(0.28, 0.11, 0.32, 1);
    }

    .as-milestone:last-child {
      padding-bottom: 0;
    }

    .as-milestone.ms-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Red dot on the line */
    .as-milestone::before {
      content: "";
      position: absolute;
      left: -32px;
      top: 7px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #E31E24;
      box-shadow: 0 0 0 2px #fafafa, 0 0 0 3.5px rgba(227, 30, 36, 0.2);
      transition: box-shadow 0.2s;
    }

    [data-theme="dark"] .as-milestone::before {
      box-shadow: 0 0 0 2px #050505, 0 0 0 3.5px rgba(227, 30, 36, 0.25);
    }

    /* Year label */
    .as-milestone-year {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #E31E24;
      letter-spacing: -0.01em;
      margin-bottom: 6px;
      transition: opacity 0.2s;
    }

    .as-milestone:hover .as-milestone-year {
      opacity: 0.72;
    }

    /* Milestone text */
    .as-milestone-text {
      font-size: 17px;
      font-weight: 400;
      color: #1d1d1f;
      line-height: 1.52941;
      letter-spacing: -0.01em;
      margin: 0;
    }

    [data-theme="dark"] .as-milestone-text {
      color: #e5e5ea;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .as-story-grid {
        grid-template-columns: 1fr;
        gap: 80px;
      }

      .as-story-section {
        padding: 120px 0;
      }
    }

    @media (max-width: 768px) {
      .as-story-section {
        padding: 96px 0;
      }

      .as-story-copy h2 {
        font-size: clamp(32px, 9vw, 48px);
      }

      .as-story-body p {
        font-size: 15px;
      }

      .as-milestone-text {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .as-story-grid {
        gap: 64px;
      }

      .as-story-copy h2 {
        font-size: 36px;
        letter-spacing: -0.04em;
      }

      .as-milestone {
        padding-bottom: 36px;
      }
    }

    /* ── PRINCIPLES GRID (old — replaced) ── */
    .ab-bg-alt {
      background: #f5f5f7;
    }

    [data-theme="dark"] .ab-bg-alt {
      background: #0a0a0a;
    }

    /* ══════════════════════════════════════════════════════
       PRINCIPLES — Apple editorial panel system
       Reference: apple.com/environment, /vision-pro values
    ══════════════════════════════════════════════════════ */
    .ap-principles-section {
      background: #f5f5f7;
      padding: 120px 0 140px;
      position: relative;
    }

    [data-theme="dark"] .ap-principles-section {
      background: #0a0a0a;
    }

    /* ── Section header ── */
    .ap-principles-header {
      text-align: center;
      max-width: 600px;
      margin-inline: auto;
      margin-bottom: 80px;
    }

    .ap-principles-kicker {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: #86868b;
      letter-spacing: 0;
      margin-bottom: 16px;
    }

    [data-theme="dark"] .ap-principles-kicker {
      color: #636366;
    }

    .ap-principles-header h2 {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(40px, 5.5vw, 72px);
      font-weight: 400;
      font-weight: 700;
      letter-spacing: -0.05em;
      line-height: 1.0;
      color: #1d1d1f;
      margin: 0 0 20px;
    }

    [data-theme="dark"] .ap-principles-header h2 {
      color: #f5f5f7;
    }

    .ap-principles-header p {
      font-size: clamp(15px, 1.5vw, 19px);
      font-weight: 400;
      color: #6e6e73;
      line-height: 1.52941;
      letter-spacing: -0.01em;
      margin: 0;
    }

    [data-theme="dark"] .ap-principles-header p {
      color: #86868b;
    }

    /* ── Panel grid — 3-column bento style ── */
    .ap-panels {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1120px;
      margin-inline: auto;
    }

    /* ── Individual panel ── */
    .ap-panel {
      position: relative;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 20px;
      padding: 40px 32px;
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
      transition:
        transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 400ms cubic-bezier(0.16, 1, 0.3, 1);
      /* Scroll reveal — starts hidden */
      opacity: 0;
      transform: translateY(20px);
    }

    [data-theme="dark"] .ap-panel {
      background: rgba(28, 28, 30, 0.6);
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    }

    .ap-panel.ap-visible {
      opacity: 1;
      transform: translateY(0);
      transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 400ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .ap-panel:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
      border-color: rgba(227, 30, 36, 0.15);
    }

    [data-theme="dark"] .ap-panel:hover {
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
      border-color: rgba(255, 69, 58, 0.25);
    }

    /* ── Header container inside panel ── */
    .ap-panel-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 28px;
      width: 100%;
    }

    .ap-panel-icon-wrap {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(227, 30, 36, 0.05);
      display: grid;
      place-items: center;
      color: #E31E24;
      transition: background 0.3s, color 0.3s;
    }

    [data-theme="dark"] .ap-panel-icon-wrap {
      background: rgba(255, 69, 58, 0.1);
      color: #ff453a;
    }

    .ap-panel-icon-wrap svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .ap-panel:hover .ap-panel-icon-wrap {
      background: #E31E24;
      color: #ffffff;
    }

    [data-theme="dark"] .ap-panel:hover .ap-panel-icon-wrap {
      background: #ff453a;
      color: #ffffff;
    }

    .ap-panel-meta {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .ap-panel-index {
      font-family: var(--apple-font-mono), SFMono-Regular, Consolas, monospace;
      font-size: 11px;
      font-weight: 600;
      color: #E31E24;
      opacity: 0.8;
    }

    [data-theme="dark"] .ap-panel-index {
      color: #ff453a;
    }

    .ap-panel-name {
      font-size: 11px;
      font-weight: 600;
      color: #86868b;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    [data-theme="dark"] .ap-panel-name {
      color: #636366;
    }

    /* ── Panel content ── */
    .ap-panel-body {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
      gap: 24px;
    }

    .ap-panel-headline {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 24px;
      font-weight: 300;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: #1d1d1f;
      margin: 0;
    }

    [data-theme="dark"] .ap-panel-headline {
      color: #f5f5f7;
    }

    /* Indian Flag Word Styling */
    .flag-india {
      display: inline;
      font-weight: 700;
    }

    .flag-india .saffron {
      color: #FF9933 !important;
    }

    .flag-india .navy {
      color: #000080 !important;
    }

    .flag-india .green {
      color: #138808 !important;
    }

    /* Brand Red Accent */
    .ab-brand-red {
      color: #E31E24 !important;
      font-weight: 600;
    }

    [data-theme="dark"] .ab-brand-red {
      color: #ff453a !important;
    }

    /* Vertical features list */
    .ap-panel-features {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding-top: 20px;
    }

    [data-theme="dark"] .ap-panel-features {
      border-top-color: rgba(255, 255, 255, 0.05);
    }

    .ap-panel-features li {
      font-size: 14px;
      font-weight: 400;
      color: #6e6e73;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    [data-theme="dark"] .ap-panel-features li {
      color: #86868b;
    }

    .ap-panel-features li::before {
      content: "";
      display: inline-block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(227, 30, 36, 0.4);
      flex-shrink: 0;
    }

    [data-theme="dark"] .ap-panel-features li::before {
      background: rgba(255, 69, 58, 0.5);
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .ap-principles-section {
        padding: 96px 0 112px;
      }

      .ap-panels {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      .ap-principles-section {
        padding: 80px 0 96px;
      }

      .ap-panels {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 500px;
      }

      .ap-panel {
        padding: 32px 24px;
        min-height: 300px;
      }
    }

    /* ══════════════════════════════════════════════════════
       PRODUCTS SECTION — Apple alternating editorial layout
       Reference: apple.com/mac-pro, /iphone, /services
    ══════════════════════════════════════════════════════ */
    .apo-section {
      padding: 180px 0;
      background: #FFFFFF;
      position: relative;
    }

    [data-theme="dark"] .apo-section {
      background: #000;
    }

    /* ── Header ── */
    .apo-header {
      text-align: center;
      max-width: 600px;
      margin-inline: auto;
      margin-bottom: 120px;
    }

    .apo-kicker {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #86868b;
      margin-bottom: 20px;
    }

    [data-theme="dark"] .apo-kicker {
      color: #48484a;
    }

    .apo-header h2 {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(44px, 6vw, 88px);
      font-weight: 400;
      letter-spacing: -0.04em;
      line-height: 0.96;
      color: #1d1d1f;
      margin: 0 0 24px;
    }

    [data-theme="dark"] .apo-header h2 {
      color: #f5f5f7;
    }

    .apo-header p {
      font-size: clamp(16px, 1.5vw, 19px);
      font-weight: 400;
      color: #6e6e73;
      line-height: 1.52941;
      letter-spacing: -0.01em;
      margin: 0;
    }

    [data-theme="dark"] .apo-header p {
      color: #86868b;
    }

    /* ── Product rows ── */
    .apo-products {
      display: flex;
      flex-direction: column;
      gap: 160px;
      max-width: 1200px;
      margin-inline: auto;
    }

    /* ── Single product row ── */
    .apo-product {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      /* Scroll reveal */
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .apo-product.apo-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Flip: even rows reverse column order (visual right, text left) */
    .apo-product:nth-child(even) {
      direction: rtl;
    }

    .apo-product:nth-child(even)>* {
      direction: ltr;
    }

    /* ── Text side ── */
    .apo-copy {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .apo-product-label {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #E31E24;
      margin-bottom: 20px;
    }

    .apo-copy h3 {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 300;
      letter-spacing: -0.03em;
      line-height: 1.04;
      color: #1d1d1f;
      margin: 0 0 20px;
    }

    [data-theme="dark"] .apo-copy h3 {
      color: #f5f5f7;
    }

    .apo-copy p {
      font-size: 17px;
      font-weight: 400;
      color: #6e6e73;
      line-height: 1.65;
      letter-spacing: -0.01em;
      margin: 0 0 32px;
      max-width: 440px;
    }

    [data-theme="dark"] .apo-copy p {
      color: #86868b;
    }

    /* Learn more link — text only, arrow slides */
    .apo-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 17px;
      font-weight: 400;
      color: #E31E24 !important;
      text-decoration: none;
      letter-spacing: -0.01em;
      width: fit-content;
      position: relative;
      transition: gap 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-theme="dark"] .apo-link {
      color: #ff453a !important;
    }

    .apo-link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -2px;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .apo-link:hover {
      gap: 8px;
    }

    .apo-link:hover::after {
      transform: scaleX(1);
    }

    .apo-link-arrow {
      display: inline-block;
      transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .apo-link:hover .apo-link-arrow {
      transform: translateX(4px);
    }

    /* ── Visual side ── */
    .apo-visual {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 4/3;
      /* Subtle ambient glow behind image */
      background: #FFFFFF;
      border: none;
      box-shadow: none;
      transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-theme="dark"] .apo-visual {
      background: #000000;
    }

    .apo-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: radial-gradient(circle at 50% 50%,
          rgba(227, 30, 36, 0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .apo-product.apo-visible .apo-visual:hover {
      transform: scale(1.01);
      box-shadow: none;
    }

    /* Screenshot image fills the visual */
    .apo-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: inherit;
    }

    /* Frosted caption badge on visual */
    .apo-visual-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      z-index: 2;
      padding: 6px 12px;
      border-radius: 980px;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 0, 0, 0.08);
      font-size: 12px;
      font-weight: 600;
      color: #1d1d1f;
      letter-spacing: -0.01em;
    }

    [data-theme="dark"] .apo-visual-badge {
      background: rgba(0, 0, 0, 0.6);
      border-color: rgba(255, 255, 255, 0.1);
      color: #f5f5f7;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .apo-section {
        padding: 140px 0;
      }

      .apo-products {
        gap: 120px;
      }

      .apo-product {
        grid-template-columns: 1fr;
        gap: 48px;
        direction: ltr !important;
      }

      .apo-product>* {
        direction: ltr !important;
      }

      .apo-visual {
        aspect-ratio: 16/9;
      }
    }

    @media (max-width: 768px) {
      .apo-section {
        padding: 100px 0;
      }

      .apo-header {
        margin-bottom: 80px;
      }

      .apo-products {
        gap: 96px;
      }

      .apo-copy h3 {
        font-size: 28px;
      }

      .apo-copy p {
        font-size: 15px;
      }

      .apo-link {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .apo-section {
        padding: 80px 0;
      }

      .apo-products {
        gap: 80px;
      }

      .apo-visual {
        aspect-ratio: 4/3;
        border-radius: 20px;
      }
    }

    /* ══════════════════════════════════════════════════════
       FOUNDER / TEAM — Apple Leadership editorial layout
       Reference: apple.com/leadership, Linear team page
    ══════════════════════════════════════════════════════ */
    .aft-section {
      padding: 180px 0;
      background: #ffffff;
      position: relative;
      overflow: hidden;
    }

    [data-theme="dark"] .aft-section {
      background: #000;
    }

    /* Faint ambient — warm left-side glow */
    .aft-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 60%;
      background: radial-gradient(circle at 20% 50%,
          rgba(227, 30, 36, 0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    /* ── Two-column grid ── */
    .aft-grid {
      display: grid;
      grid-template-columns: minmax(340px, 0.9fr) 1fr;
      gap: 120px;
      align-items: center;
      max-width: 1200px;
      margin-inline: auto;
    }

    /* ── IMAGE COLUMN ── */
    .aft-image {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      aspect-ratio: 3/4;
      background: #ffffff;
      /* fallback until image loads */
      /* Subtle shadow only — no border */
      border: none;
      box-shadow: none;
      /* Parallax — JS will apply translateY */
      will-change: transform;
      /* Entrance zoom */
      opacity: 0;
      transform: scale(1.04);
      transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-theme="dark"] .aft-image {
      background: #000000;
    }

    .aft-image.aft-visible {
      opacity: 1;
      transform: scale(1.0);
    }

    .aft-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: inherit;
      /* Slight desaturation for Apple editorial feel */
      filter: saturate(0.88) contrast(1.02);
      transition: filter 0.4s;
    }

    .aft-image:hover img {
      filter: saturate(1) contrast(1);
    }

    /* ── COPY COLUMN ── */
    .aft-copy {
      opacity: 0;
      transform: translateY(20px);
      transition:
        opacity 0.8s 0.12s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s 0.12s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .aft-copy.aft-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Section kicker */
    .aft-kicker {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #86868b;
      margin-bottom: 24px;
    }

    [data-theme="dark"] .aft-kicker {
      color: #48484a;
    }

    /* Headline */
    .aft-copy h2 {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(44px, 5.5vw, 80px);
      font-weight: 500;
      font-weight: 700;
      letter-spacing: -0.055em;
      line-height: 0.95;
      color: #1d1d1f;
      margin: 0 0 36px;
    }

    [data-theme="dark"] .aft-copy h2 {
      color: #f5f5f7;
    }

    /* Body — 2 paragraphs max, 520px wide */
    .aft-body {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 520px;
      margin-bottom: 48px;
    }

    .aft-body p {
      font-size: 17px;
      font-weight: 400;
      color: #6e6e73;
      line-height: 1.65;
      letter-spacing: -0.01em;
      margin: 0;
    }

    [data-theme="dark"] .aft-body p {
      color: #86868b;
    }

    /* Trust statement — single line, small, quiet */
    .aft-trust {
      display: block;
      font-size: 13px;
      font-weight: 400;
      color: #86868b;
      letter-spacing: -0.01em;
      margin-bottom: 40px;
    }

    [data-theme="dark"] .aft-trust {
      color: #48484a;
    }

    /* CTA — text link only, arrow slides */
    .aft-cta {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 17px;
      font-weight: 400;
      color: #E31E24 !important;
      text-decoration: none;
      letter-spacing: -0.01em;
      position: relative;
      transition: gap 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-theme="dark"] .aft-cta {
      color: #ff453a !important;
    }

    .aft-cta::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .aft-cta:hover {
      gap: 8px;
    }

    .aft-cta:hover::after {
      transform: scaleX(1);
    }

    .aft-cta-arrow {
      display: inline-block;
      transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .aft-cta:hover .aft-cta-arrow {
      transform: translateX(4px);
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .aft-section {
        padding: 140px 0;
      }

      .aft-grid {
        grid-template-columns: 1fr;
        gap: 64px;
      }

      .aft-image {
        aspect-ratio: 16/9;
        border-radius: 24px;
      }
    }

    @media (max-width: 768px) {
      .aft-section {
        padding: 100px 0;
      }

      .aft-copy h2 {
        font-size: clamp(36px, 9vw, 52px);
      }

      .aft-body p {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .aft-section {
        padding: 80px 0;
      }

      .aft-image {
        aspect-ratio: 4/3;
        border-radius: 20px;
      }

      .aft-copy h2 {
        font-size: 40px;
        letter-spacing: -0.04em;
      }
    }

    /* ══════════════════════════════════════════════════════
       TRUST SECTION — Apple / Linear / Stripe editorial
       "Trust built into every decision."
    ══════════════════════════════════════════════════════ */
    .atr-section {
      padding: 160px 0 140px;
      background: #ffffff;
      position: relative;
    }

    [data-theme="dark"] .atr-section {
      background: #000;
    }

    /* ── Header block ── */
    .atr-header {
      text-align: center;
      max-width: 720px;
      margin-inline: auto;
      margin-bottom: 100px;
    }

    .atr-kicker {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #86868b;
      margin-bottom: 20px;
    }

    [data-theme="dark"] .atr-kicker {
      color: #48484a;
    }

    .atr-header h2 {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(40px, 5.5vw, 72px);
      font-weight: 400;
      letter-spacing: -0.04em;
      line-height: 1.0;
      color: #1d1d1f;
      margin: 0 0 24px;
    }

    [data-theme="dark"] .atr-header h2 {
      color: #f5f5f7;
    }

    .atr-header p {
      font-size: clamp(16px, 1.5vw, 19px);
      font-weight: 400;
      color: #6e6e73;
      line-height: 1.52941;
      letter-spacing: -0.01em;
      margin: 0;
    }

    [data-theme="dark"] .atr-header p {
      color: #86868b;
    }

    /* ── Three-column feature row ── */
    .atr-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      max-width: 1200px;
      margin-inline: auto;
    }

    /* ── Single feature column ── */
    .atr-col {
      padding: 0 56px;
      position: relative;
      /* Scroll reveal */
      opacity: 0;
      transform: translateY(20px);
      transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .atr-col.atr-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Thin 1px vertical separator between columns */
    .atr-col+.atr-col::before {
      content: "";
      position: absolute;
      left: 0;
      top: 4px;
      bottom: 0;
      width: 1px;
      background: rgba(0, 0, 0, 0.07);
    }

    [data-theme="dark"] .atr-col+.atr-col::before {
      background: rgba(255, 255, 255, 0.06);
    }

    /* Icon — monochrome, 20px, top-aligned */
    .atr-icon {
      display: block;
      width: 20px;
      height: 20px;
      margin-bottom: 24px;
      color: #1d1d1f;
      opacity: 0.7;
      transition: opacity 0.2s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-theme="dark"] .atr-icon {
      color: #f5f5f7;
    }

    .atr-col:hover .atr-icon {
      opacity: 1;
      transform: translateY(-2px);
    }

    .atr-icon svg {
      width: 20px;
      height: 20px;
      display: block;
    }

    /* Feature number — Apple-style ordinal */
    .atr-num {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: #E31E24;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    [data-theme="dark"] .atr-num {
      color: #ff453a;
    }

    /* Feature title */
    .atr-col h3 {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 19px;
      font-weight: 300;
      letter-spacing: -0.015em;
      line-height: 1.2;
      color: #1d1d1f;
      margin: 0 0 14px;
      transition: opacity 0.2s;
    }

    [data-theme="dark"] .atr-col h3 {
      color: #f5f5f7;
    }

    /* Feature body */
    .atr-col p {
      font-size: 15px;
      font-weight: 400;
      color: #6e6e73;
      line-height: 1.6;
      letter-spacing: -0.01em;
      margin: 0;
      opacity: 0.85;
      transition: opacity 0.2s;
    }

    [data-theme="dark"] .atr-col p {
      color: #86868b;
    }

    .atr-col:hover h3,
    .atr-col:hover p {
      opacity: 1;
    }

    /* ── Bottom trust statement ── */
    .atr-statement {
      text-align: center;
      margin-top: 96px;
      /* Reveal */
      opacity: 0;
      transition: opacity 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .atr-statement.atr-visible {
      opacity: 1;
    }

    .atr-statement p {
      font-size: 13px;
      font-weight: 400;
      color: #86868b;
      letter-spacing: 0.06em;
      margin: 0;
    }

    [data-theme="dark"] .atr-statement p {
      color: #48484a;
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .atr-cols {
        grid-template-columns: 1fr;
        gap: 64px;
      }

      .atr-col {
        padding: 0;
      }

      .atr-col+.atr-col::before {
        display: none;
      }

      .atr-section {
        padding: 120px 0 100px;
      }
    }

    @media (max-width: 600px) {
      .atr-section {
        padding: 96px 0 80px;
      }

      .atr-header {
        margin-bottom: 72px;
      }

      .atr-statement {
        margin-top: 72px;
      }
    }

    /* ══════════════════════════════════════════════════════
       CTA SECTION — Apple-style closing statement
       Reference: apple.com footer CTA, Linear, Stripe
    ══════════════════════════════════════════════════════ */
    .acta-section {
      padding: 160px 0 180px;
      background: #f5f5f7;
      position: relative;
      overflow: hidden;
    }

    /* Faint radial — barely visible warmth */
    .acta-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 60%,
          rgba(227, 30, 36, 0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Inner content ── */
    .acta-inner {
      position: relative;
      z-index: 1;
      max-width: 680px;
      margin-inline: auto;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .acta-inner.acta-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Eyebrow */
    .acta-kicker {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #86868b;
      margin-bottom: 24px;
    }

    /* Headline */
    .acta-inner h2 {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(40px, 5.5vw, 72px);
      font-weight: 400;
      letter-spacing: -0.04em;
      line-height: 1.0;
      color: #1d1d1f;
      margin: 0 0 24px;
    }

    /* Sub */
    .acta-inner p {
      font-size: clamp(15px, 1.5vw, 17px);
      font-weight: 400;
      color: #6e6e73;
      line-height: 1.6;
      letter-spacing: -0.01em;
      margin: 0 0 52px;
    }

    /* CTA row */
    .acta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    /* Primary — red filled pill */
    .acta-btn-primary {
      height: 50px;
      padding: 0 28px;
      border-radius: 980px;
      background: #E31E24;
      color: #ffffff !important;
      font-family: var(--font-system);
      font-size: 17px;
      font-weight: 500;
      letter-spacing: -0.022em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(227, 30, 36, 0.2);
      transition: background 0.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.2s;
    }

    .acta-btn-primary:hover {
      background: #c4171c;
      transform: scale(1.02);
      box-shadow: 0 4px 16px rgba(227, 30, 36, 0.26);
    }

    .acta-btn-primary:active {
      transform: scale(0.98);
    }

    /* Secondary — text link */
    .acta-btn-ghost {
      font-family: var(--font-system);
      font-size: 17px;
      font-weight: 400;
      letter-spacing: -0.022em;
      color: #E31E24 !important;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      position: relative;
      transition: gap 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .acta-btn-ghost::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .acta-btn-ghost:hover {
      gap: 8px;
    }

    .acta-btn-ghost:hover::after {
      transform: scaleX(1);
    }

    .acta-btn-ghost-arrow {
      display: inline-block;
      transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .acta-btn-ghost:hover .acta-btn-ghost-arrow {
      transform: translateX(4px);
    }

    /* Reassurance strip */
    .acta-reassurance {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      margin-top: 48px;
      list-style: none;
      padding: 0;
    }

    .acta-reassurance li {
      font-size: 12px;
      font-weight: 400;
      color: #86868b;
      padding: 0 14px;
      position: relative;
      letter-spacing: 0;
    }

    .acta-reassurance li+li::before {
      content: "·";
      position: absolute;
      left: 0;
      transform: translateX(-50%);
      color: #c7c7cc;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .acta-section {
        padding: 120px 0 140px;
      }

      .acta-actions {
        flex-direction: column;
        gap: 20px;
      }

      .acta-btn-primary {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .acta-section {
        padding: 96px 0 120px;
      }

      .acta-reassurance {
        flex-direction: column;
        gap: 8px;
      }

      .acta-reassurance li+li::before {
        display: none;
      }
    }

    /* ── Closing CTA Section Dark Mode ── */
    [data-theme="dark"] .acta-section {
      background: #000000;
    }

    [data-theme="dark"] .acta-section::before {
      background: radial-gradient(ellipse 60% 50% at 50% 60%,
          rgba(255, 69, 58, 0.05) 0%, transparent 70%);
    }

    [data-theme="dark"] .acta-inner h2 {
      color: #f5f5f7;
    }

    [data-theme="dark"] .acta-inner p {
      color: #86868b;
    }

    [data-theme="dark"] .acta-btn-ghost {
      color: #ff453a !important;
    }

    /* ══════════════════════════════════════════════════════
       FOOTER — Apple.com minimal editorial footer
    ══════════════════════════════════════════════════════ */
    .ab-footer {
      background: #ffffff;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      padding: 80px 0 40px;
    }

    [data-theme="dark"] .ab-footer {
      background: #000;
      border-top-color: rgba(255, 255, 255, 0.08);
    }

    /* 5-column grid */
    .ab-footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(4, 1fr);
      gap: clamp(24px, 4vw, 56px);
      margin-bottom: 64px;
    }

    /* Brand column */
    .ab-footer-brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9375rem;
      font-weight: 700;
      color: #1d1d1f !important;
      text-decoration: none;
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }

    [data-theme="dark"] .ab-footer-brand-logo {
      color: #f5f5f7 !important;
    }

    .ab-footer-brand-logo img {
      width: 24px;
      height: 24px;
      border-radius: 5px;
      object-fit: contain;
    }

    .ab-footer-brand-desc {
      font-size: 0.8125rem;
      color: #86868b;
      line-height: 1.65;
      margin-bottom: 24px;
      max-width: 260px;
      letter-spacing: -0.01em;
    }

    /* Social icons — minimal, no borders */
    .ab-footer-social {
      display: flex;
      gap: 16px;
    }

    .ab-footer-social a {
      width: auto;
      height: auto;
      border: none;
      border-radius: 0;
      background: none;
      box-shadow: none;
      color: #86868b !important;
      text-decoration: none;
      font-size: 0.9375rem;
      transition: color 0.18s;
    }

    .ab-footer-social a:hover {
      color: #1d1d1f !important;
      transform: none;
    }

    [data-theme="dark"] .ab-footer-social a {
      color: #636366 !important;
    }

    [data-theme="dark"] .ab-footer-social a:hover {
      color: #f5f5f7 !important;
    }

    /* Nav columns */
    .ab-footer-col h5 {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #1d1d1f;
      margin-bottom: 16px;
    }

    [data-theme="dark"] .ab-footer-col h5 {
      color: #f5f5f7;
    }

    .ab-footer-col a {
      display: block;
      font-size: 0.875rem;
      color: #6e6e73 !important;
      text-decoration: none;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
      transition: color 0.18s;
    }

    .ab-footer-col a:hover {
      color: #1d1d1f !important;
      transform: none;
    }

    [data-theme="dark"] .ab-footer-col a {
      color: #86868b !important;
    }

    [data-theme="dark"] .ab-footer-col a:hover {
      color: #f5f5f7 !important;
    }

    /* Bottom bar */
    .ab-footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 28px;
      border-top: 1px solid rgba(0, 0, 0, 0.07);
    }

    [data-theme="dark"] .ab-footer-bottom {
      border-top-color: rgba(255, 255, 255, 0.07);
    }

    .ab-footer-bottom p {
      font-size: 0.8125rem;
      color: #86868b;
      letter-spacing: -0.01em;
    }

    .ab-footer-legal {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .ab-footer-legal a {
      font-size: 0.8125rem;
      color: #86868b !important;
      text-decoration: none;
      transition: color 0.18s;
    }

    .ab-footer-legal a:hover {
      color: #1d1d1f !important;
    }

    [data-theme="dark"] .ab-footer-legal a {
      color: #86868b !important;
    }

    [data-theme="dark"] .ab-footer-legal a:hover {
      color: #f5f5f7 !important;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .ab-footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
      }

      .ab-footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 640px) {
      .ab-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .ab-footer-brand {
        grid-column: 1 / -1;
      }
    }

    /* Removed max-width: 400px footer grid column override to preserve 2-column grid layout */

    /* ── DIVIDER ── */
    .ab-divider {
      height: 1px;
      background: var(--line);
    }

    /* ── Mobile menu drawer removed, handled dynamically in navbar ── */

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .ab-footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .ab-hero {
        min-height: auto;
        padding: 96px 0 72px;
      }

      .ab-section {
        padding: 72px 0;
      }

      .ab-footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 540px) {
      .container {
        width: min(100% - 32px, 1120px);
      }
    }

    /* ── SCROLL REVEAL ── */
    .ab-reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    }

    .ab-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .ab-reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .ab-reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .ab-reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .ab-reveal-delay-4 {
      transition-delay: 0.4s;
    }

    .ab-reveal-delay-5 {
      transition-delay: 0.5s;
    }

    /* ══════════════════════════════════════════════════════
       GLOBAL SECTION — Apple minimal, dark editorial
       "Built in India. Trusted beyond borders."
    ══════════════════════════════════════════════════════ */
    .globe-section {
      padding: 160px 0 180px;
      background: #ffffff;
      position: relative;
      overflow: hidden;
    }

    /* Single very faint radial — barely there */
    .globe-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 55%,
          rgba(227, 30, 36, 0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Header ── */
    .globe-header {
      text-align: center;
      max-width: 640px;
      margin-inline: auto;
      margin-bottom: 96px;
      position: relative;
      z-index: 1;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .globe-header.gl-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .globe-eyebrow {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #86868b;
      margin-bottom: 20px;
    }

    .globe-header h2 {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(40px, 5.5vw, 72px);
      font-weight: 400;
      letter-spacing: -0.04em;
      line-height: 1.0;
      color: #1d1d1f;
      margin: 0 0 20px;
    }

    .globe-header h2 em {
      font-style: normal;
      color: #1d1d1f;
      opacity: 0.4;
    }

    .globe-header p {
      font-size: clamp(15px, 1.5vw, 17px);
      font-weight: 400;
      color: #6e6e73;
      line-height: 1.6;
      letter-spacing: -0.01em;
      margin: 0;
    }

    /* ── Map canvas wrapper ── */
    .globe-map-wrap {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin-inline: auto;
      margin-bottom: 64px;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.9s 0.1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s 0.1s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .globe-map-wrap.gl-visible {
      opacity: 1;
      transform: translateY(0);
    }

    #globeCanvas {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
      border: 1px solid rgba(0, 0, 0, 0.07);
      box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 16px 48px rgba(0, 0, 0, 0.07),
        0 40px 80px rgba(0, 0, 0, 0.04);
    }

    /* Frosted badge */
    .globe-origin-badge {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border-radius: 980px;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(0, 0, 0, 0.08);
      color: #1d1d1f;
      font-size: 0.75rem;
      font-weight: 500;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }

    .globe-origin-badge span.pulse {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #34c759;
      flex-shrink: 0;
      box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.25);
      animation: glPulse 2s ease-in-out infinite;
    }

    @keyframes glPulse {

      0%,
      100% {
        box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.25);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(52, 199, 89, 0.08);
      }
    }

    /* ── Metrics row ── */
    .globe-metrics {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 80px;
      flex-wrap: wrap;
      max-width: 900px;
      margin-inline: auto;
      margin-bottom: 96px;
      position: relative;
      z-index: 1;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .globe-metrics.gl-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .globe-metric-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
      text-align: center;
      transition: opacity 0.2s;
    }

    .globe-metric-card:hover {
      opacity: 0.72;
    }

    .globe-metric-num {
      display: block;
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 300;
      letter-spacing: -0.04em;
      line-height: 1;
      color: #1d1d1f;
    }

    .globe-metric-label {
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 13px;
      font-weight: 300;
      color: #86868b;
      letter-spacing: 0;
      max-width: 100px;
      line-height: 1.4;
    }

    /* ── Quote ── */
    .globe-quote {
      position: relative;
      z-index: 1;
      max-width: 680px;
      margin-inline: auto;
      text-align: center;
      padding: 0 24px;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .globe-quote.gl-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .globe-quote::before {
      content: "";
      display: block;
      width: 1px;
      height: 48px;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12));
      margin: 0 auto 36px;
    }

    .globe-quote blockquote {
      font-family: 'Melthin', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(18px, 2.2vw, 26px);
      font-weight: 400;
      letter-spacing: -0.01em;
      line-height: 1.45;
      color: #1d1d1f;
      margin: 0 0 20px;
      font-style: normal;
    }

    .globe-quote blockquote::before,
    .globe-quote blockquote::after {
      display: none;
    }

    .globe-quote cite {
      display: block;
      font-size: 12px;
      font-weight: 500;
      font-style: normal;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #86868b;
    }

    .globe-quote cite::before {
      content: "— ";
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .globe-section {
        padding: 120px 0 140px;
      }

      .globe-metrics {
        gap: 48px;
      }

      .globe-header {
        margin-bottom: 72px;
      }
    }

    @media (max-width: 480px) {
      .globe-section {
        padding: 96px 0 120px;
      }

      .globe-metrics {
        gap: 36px;
      }

      .globe-metric-num {
        font-size: 36px;
      }

      #globeCanvas {
        border-radius: 14px;
      }
    }

    /* ── Globe Section Dark Mode ── */
    [data-theme="dark"] .globe-section {
      background: #000000;
    }

    [data-theme="dark"] .globe-section::before {
      background: radial-gradient(ellipse 60% 50% at 50% 55%,
          rgba(255, 69, 58, 0.05) 0%, transparent 70%);
    }

    [data-theme="dark"] .globe-header h2 {
      color: #f5f5f7;
    }

    [data-theme="dark"] .globe-header h2 em {
      color: #f5f5f7;
    }

    [data-theme="dark"] .globe-header p {
      color: #86868b;
    }

    [data-theme="dark"] #globeCanvas {
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 16px 48px rgba(0, 0, 0, 0.7),
        0 40px 80px rgba(0, 0, 0, 0.6);
    }

    [data-theme="dark"] .globe-origin-badge {
      background: rgba(28, 28, 30, 0.85);
      border-color: rgba(255, 255, 255, 0.1);
      color: #f5f5f7;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }

    [data-theme="dark"] .globe-metric-num {
      color: #f5f5f7;
    }

    [data-theme="dark"] .globe-metric-label {
      color: #86868b;
    }

    [data-theme="dark"] .globe-quote::before {
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15));
    }

    [data-theme="dark"] .globe-quote blockquote {
      color: #f5f5f7;
    }

    [data-theme="dark"] .globe-quote cite {
      color: #86868b;
    }
    
    /* ── Timeline spacing fix ── */
    .as-timeline-track {
      display: flex;
      flex-direction: column;
      gap: 0;                      /* remove any flex gap */
    }
    
    .as-milestone {
      padding-top: 12px;
      padding-bottom: 12px;        /* was likely 32px+ from base styles */
    }
    
    .as-milestone-year {
      display: block;
      margin-bottom: 2px;
    }
