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

    :root {
      --bg: #fafafa;
      --bg-warm: #f5f4f1;
      --bg-dark: #0a0f1e;
      --bg-dark-card: #141a2e;
      --bg-card: #ffffff;
      --border: rgba(0,0,0,0.06);
      --border-hover: rgba(0,0,0,0.12);
      --text: #0a0a0a;
      --text-muted: #52525b;
      --text-faint: #52525b;
      --text-on-dark: #f4f4f5;
      --text-muted-dark: rgba(255,255,255,0.55);
      --accent: #0044fe;
      --accent-glow: rgba(0,68,254,0.10);
      --green: #00B67A;
      --r-sm: 12px;
      --r-md: 16px;
      --r-lg: 24px;
      --r-xl: 32px;
      --font-h: 'Manrope', sans-serif;
      --font-b: 'Inter', sans-serif;
      --max-w: 1200px;
      --wide-w: 1400px;
    }

    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    body { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }
    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
      border-radius: 4px;
    }

    .route-loading-overlay {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(250, 250, 250, 0.8);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      opacity: 1;
      visibility: visible;
      transition: opacity 180ms ease, visibility 180ms ease;
    }
    .route-loading-overlay.is-hidden {
      opacity: 0;
      visibility: hidden;
      display: none;
      pointer-events: none;
    }
    .route-loading-sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .route-loading-logo {
      position: relative;
      width: 156px;
      height: 156px;
      overflow: visible;
    }
    .route-loading-logo-inner {
      position: absolute;
      inset: 0;
      overflow: visible;
    }
    .route-loading-svg {
      display: block;
      width: 100%;
      height: 100%;
      overflow: visible;
    }
    .route-loading-led-glow {
      filter: blur(2px) drop-shadow(0 0 20px rgba(29, 78, 216, 0.8));
      transform-box: fill-box;
      transition: filter 500ms ease;
    }
    .route-loading-led-ring {
      fill: rgb(29, 78, 216);
      transition: fill 500ms ease;
    }
    .route-loading-dot {
      animation: route-loading-pulse 3s linear infinite;
      animation-delay: var(--route-loading-idle-delay);
    }
    .route-loading-overlay.is-spraying .route-loading-led-glow {
      filter: blur(2px) drop-shadow(0 0 20px rgba(34, 197, 94, 0.8));
    }
    .route-loading-overlay.is-spraying .route-loading-led-ring {
      fill: rgb(34, 197, 94);
    }
    .route-loading-overlay.is-spraying .route-loading-dot {
      animation-duration: 0.6s;
      animation-delay: var(--route-loading-spray-delay);
    }
    @keyframes route-loading-pulse {
      0% { opacity: 1; }
      60%, 100% { opacity: 0.15; }
    }
    @media (prefers-reduced-motion: reduce) {
      .route-loading-overlay,
      .route-loading-led-glow,
      .route-loading-led-ring {
        transition: none;
      }
      .route-loading-dot {
        animation: none;
      }
    }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .container-wide { max-width: var(--wide-w); margin: 0 auto; padding: 0 24px; }

    /* ═══ NAV ═══ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px;
      background: rgba(255,255,255,0.86);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid var(--border);
      transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav.scrolled {
      background: rgba(255,255,255,0.94);
      box-shadow: 0 1px 12px rgba(0,0,0,0.05);
    }
    .nav-pill {
      max-width: var(--max-w); margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px; padding: 0;
    }
    .nav-logo img { height: 18px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a {
      font-size: 13px; font-weight: 500; color: var(--text-muted);
      padding: 6px 14px; border-radius: 980px;
      transition: color 0.2s ease, background 0.2s ease;
    }
    .nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
    .nav-right { display: flex; align-items: center; gap: 6px; }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 18px; height: 36px;
      background: var(--text); color: #fff;
      border-radius: 980px; font-size: 13px; font-weight: 600;
      transition: opacity 0.2s ease;
      cursor: pointer;
    }
    .nav-cta:hover { opacity: 0.85; }
    .nav-cta svg { width: 12px; height: 12px; }

    .lang-selector { position: relative; }
    .lang-toggle {
      display: flex; align-items: center; gap: 4px;
      background: none; border: none; cursor: pointer;
      font-size: 13px; font-weight: 600; color: var(--text-muted);
      padding: 6px 10px; border-radius: 980px;
      transition: color 0.2s ease, background 0.2s ease;
    }
    .lang-toggle:hover { color: var(--text); background: rgba(0,0,0,0.04); }
    .lang-dropdown {
      display: none; position: absolute; top: 100%; right: 0;
      padding-top: 8px; min-width: 120px; z-index: 100;
    }
    .lang-dropdown-inner {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--r-sm); box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      overflow: hidden;
    }
    .lang-selector:hover .lang-dropdown { display: block; }
    .lang-option {
      display: block; padding: 10px 16px;
      font-size: 14px; font-weight: 500; color: var(--text-muted);
      transition: background 0.15s ease, color 0.15s ease;
    }
    .lang-option:hover { background: rgba(0,0,0,0.03); color: var(--text); }
    .lang-option.active { color: var(--text); font-weight: 600; }

    .mobile-menu-btn {
      display: none; background: none; border: none; cursor: pointer;
      width: 32px; height: 32px; position: relative;
    }
    .mobile-menu-btn span {
      display: block; width: 18px; height: 1.5px; background: var(--text);
      position: absolute; left: 7px; transition: all 0.3s ease;
    }
    .mobile-menu-btn span:nth-child(1) { top: 10px; }
    .mobile-menu-btn span:nth-child(2) { top: 16px; }
    .mobile-menu-btn span:nth-child(3) { top: 22px; }

    /* ═══ HERO ═══ */
    .hero {
      position: relative; overflow: hidden;
      padding: 140px 24px 64px;
      background: var(--bg);
    }
    .hero::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0,68,254,0.04) 0%, transparent 100%),
        radial-gradient(ellipse 40% 60% at 80% 80%, rgba(0,182,122,0.03) 0%, transparent 100%);
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      max-width: var(--wide-w); margin: 0 auto;
      display: grid; grid-template-columns: 1.06fr 1fr;
      gap: 16px; align-items: center;
      padding-left: clamp(16px, 3vw, 48px);
    }
    .hero-text {
      position: relative; z-index: 5;
      padding: 0 8px;
      max-width: 620px;
      transform: translateX(clamp(8px, 2vw, 32px));
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--text-faint);
      margin-bottom: 24px;
    }
    .hero-eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 8px var(--green);
      animation: pulse 2.5s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 4px var(--green); }
      50% { box-shadow: 0 0 16px var(--green), 0 0 32px rgba(0,182,122,0.4); }
    }
    .hero h1 {
      position: relative;
      z-index: 3;
      font-family: var(--font-h);
      font-size: clamp(38px, 4.6vw, 70px);
      font-weight: 800; line-height: 1.05;
      letter-spacing: -0.035em;
      width: auto;
      margin-right: 0;
      margin-bottom: 24px;
      text-shadow: 0 10px 36px rgba(250,250,250,0.95), 0 2px 12px rgba(250,250,250,0.75);
    }
    .hero h1 .thin {
      font-weight: 300; color: var(--text-muted);
    }
    .hero-sub {
      position: relative; z-index: 5;
      font-size: clamp(15px, 1.3vw, 17px);
      color: var(--text-muted); line-height: 1.7;
      max-width: 440px; margin-bottom: 36px;
    }
    .hero-actions {
      position: relative; z-index: 5;
      display: flex; gap: 12px; flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 26px; border-radius: 980px;
      background: var(--text); color: #fff;
      font-size: 14px; font-weight: 600;
      border: none; cursor: pointer;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
    .btn-primary svg { width: 14px; height: 14px; }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 26px; border-radius: 980px;
      background: transparent; color: var(--text);
      font-size: 14px; font-weight: 500;
      border: 1px solid var(--border-hover); cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .btn-ghost:hover { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.18); }

    .hero-proof {
      position: relative; z-index: 5;
      display: flex; align-items: center; gap: 16px;
    }
    .hero-tp {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 8px 16px 8px 12px; border-radius: var(--r-sm);
      background: rgba(0,0,0,0.03); border: 1px solid var(--border);
      cursor: pointer;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .hero-tp:hover { border-color: var(--border-hover); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
    .tp-stars { display: flex; gap: 2px; }
    .tp-stars svg { width: 18px; height: 18px; }
    .tp-text { font-size: 13px; font-weight: 600; }
    .tp-sub { font-size: 11px; color: var(--text-faint); }
    .hero-features-inline {
      position: relative; z-index: 5;
      display: flex; gap: 20px; flex-wrap: wrap;
      list-style: none; margin-top: 12px;
    }
    .hero-features-inline li {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; color: var(--text-muted); font-weight: 500;
    }
    .hero-features-inline li svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

    .hero-media {
      position: relative;
      z-index: 1;
      margin-left: 0;
      pointer-events: none;
    }
    .hero-video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: var(--r-xl);
      overflow: hidden;
      background: rgba(0, 0, 0, 0.04);
    }
    .hero-video-wrap video,
    .hero-video-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      object-position: center;
    }
    .hero-float-badge {
      position: absolute; bottom: -16px; left: 24px;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 18px; border-radius: var(--r-sm);
      background: var(--bg-card); border: 1px solid var(--border);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      font-size: 13px; font-weight: 600;
    }
    .hero-float-badge .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--green);
    }

    /* ═══ LOGOS ═══ */
    .logos-section {
      padding: 48px 0;
      overflow: hidden;
    }
    .logos-label {
      text-align: center; font-size: 11px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--text-faint); margin-bottom: 28px;
    }
    .logos-track {
      display: flex; gap: 56px; align-items: center;
      animation: scrollLogos 50s linear infinite;
      width: max-content;
    }
    .logos-track img {
      height: 24px; width: auto;
      filter: grayscale(1); opacity: 0.3;
      transition: opacity 0.3s ease;
    }
    .logos-track img:hover { opacity: 0.6; }
    @keyframes scrollLogos {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ═══ DARK STATS SECTION ═══ */
    .stats-section {
      background: var(--bg-dark);
      color: var(--text-on-dark);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    .stats-section::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse 50% 80% at 30% 50%, rgba(0,68,254,0.08) 0%, transparent 100%),
        radial-gradient(ellipse 40% 60% at 70% 30%, rgba(0,182,122,0.05) 0%, transparent 100%);
      pointer-events: none;
    }
    .stats-header { text-align: center; margin-bottom: 72px; position: relative; }
    .stats-header .eyebrow {
      font-size: 12px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.12em; color: var(--text-muted-dark);
      margin-bottom: 16px;
    }
    .stats-header h2 {
      font-family: var(--font-h);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700; line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .stats-header p {
      font-size: 17px; color: var(--text-muted-dark);
      max-width: 480px; margin: 16px auto 0;
      line-height: 1.6;
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: rgba(255,255,255,0.06);
      border-radius: var(--r-lg); overflow: hidden;
      border: 1px solid rgba(255,255,255,0.06);
      position: relative;
    }
    .stat-card {
      background: var(--bg-dark);
      padding: 48px 36px; text-align: center;
      transition: background 0.3s ease;
    }
    .stat-card:hover { background: var(--bg-dark-card); }
    .stat-number {
      font-family: var(--font-h);
      font-size: clamp(48px, 5.5vw, 80px);
      font-weight: 800; line-height: 1;
      margin-bottom: 12px;
      background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.5) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-label { font-size: 15px; font-weight: 500; margin-bottom: 8px; color: rgba(255,255,255,0.85); }
    .stat-source { font-size: 12px; color: var(--text-muted-dark); line-height: 1.5; }

    /* ═══ PILLARS ═══ */
    .pillars-section {
      padding: 120px 0;
      background: var(--bg);
    }
    .section-eyebrow {
      font-size: 12px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.12em; color: var(--text-faint);
      margin-bottom: 16px; text-align: center;
    }
    .section-heading {
      font-family: var(--font-h);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700; line-height: 1.1;
      letter-spacing: -0.02em; text-align: center;
      margin-bottom: 16px;
    }
    .section-sub {
      text-align: center; max-width: 620px; margin: 0 auto 64px;
      font-size: 16px; color: var(--text-muted); line-height: 1.6;
    }
    .pillars-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .pillar-card {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 22px; padding: 32px 28px 30px;
      box-shadow: 0 10px 36px rgba(15, 23, 42, 0.04);
      transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .pillar-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(120% 80% at 0% 0%, rgba(0,68,254,0.06) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.35s ease;
      z-index: -1;
    }
    .pillar-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, rgba(0,182,122,0.9), rgba(0,68,254,0.65));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .pillar-card:hover {
      border-color: rgba(0,68,254,0.18);
      box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
      transform: translateY(-4px);
    }
    .pillar-card:hover::before { opacity: 1; }
    .pillar-card:hover::after { transform: scaleX(1); }
    .pillar-card { display: flex; flex-direction: column; }
    .pillar-card p { margin-bottom: 24px; }
    .pillar-visual {
      position: relative;
      width: 100%;
      height: 152px;
      border-radius: 16px;
      background: #f4f4f5;
      border: 1px solid rgba(0,0,0,0.05);
      display: flex; align-items: center; justify-content: center;
      padding: 50px 12px 14px;
      color: #71717a;
      margin-top: auto;
      overflow: hidden;
    }
    .pillar-visual svg {
      width: 92px;
      height: auto;
      max-height: 100%;
    }
    .pillar-battery-fill {
      transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                  fill 0.45s ease,
                  fill-opacity 0.45s ease;
      transform-origin: left center;
    }
    .pillar-card:hover .pillar-battery-fill {
      animation: battery-drain 2.6s linear infinite;
    }
    @keyframes battery-drain {
      0%   { width: 52px; fill: var(--green); fill-opacity: 0.85; }
      18%  { width: 44px; fill: var(--green); fill-opacity: 0.85; }
      32%  { width: 34px; fill: #84cc16; fill-opacity: 0.88; }
      45%  { width: 24px; fill: #f59e0b; fill-opacity: 0.9; }
      58%  { width: 14px; fill: #ef4444; fill-opacity: 0.95; }
      62%  { width: 10px; fill: #ef4444; fill-opacity: 0.95; }
      69%  { width: 10px; fill: #ef4444; fill-opacity: 0.4;  }
      76%  { width: 10px; fill: #ef4444; fill-opacity: 0.95; }
      83%  { width: 10px; fill: #ef4444; fill-opacity: 0.4;  }
      90%  { width: 10px; fill: #ef4444; fill-opacity: 0.95; }
      94%  { width: 10px; fill: #ef4444; fill-opacity: 0;    }
      95%  { width: 52px; fill: var(--green); fill-opacity: 0; }
      100% { width: 52px; fill: var(--green); fill-opacity: 0.85; }
    }
    .pillar-liquid-fill {
      transform: translateY(18px);
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                  fill 0.45s ease,
                  fill-opacity 0.45s ease;
    }
    .pillar-card:hover .pillar-liquid-fill {
      animation: liquid-drain 2.6s linear infinite;
    }
    @keyframes liquid-drain {
      0%   { transform: translateY(22px); fill: #3b82f6; fill-opacity: 0.65; }
      18%  { transform: translateY(28px); fill: #3b82f6; fill-opacity: 0.62; }
      32%  { transform: translateY(36px); fill: #3b82f6; fill-opacity: 0.6;  }
      45%  { transform: translateY(44px); fill: #3b82f6; fill-opacity: 0.58; }
      58%  { transform: translateY(52px); fill: #3b82f6; fill-opacity: 0.55; }
      62%  { transform: translateY(54px); fill: #ef4444; fill-opacity: 0.95; }
      69%  { transform: translateY(54px); fill: #ef4444; fill-opacity: 0.4;  }
      76%  { transform: translateY(54px); fill: #ef4444; fill-opacity: 0.95; }
      83%  { transform: translateY(54px); fill: #ef4444; fill-opacity: 0.4;  }
      90%  { transform: translateY(54px); fill: #ef4444; fill-opacity: 0.95; }
      94%  { transform: translateY(54px); fill: #ef4444; fill-opacity: 0;    }
      95%  { transform: translateY(22px); fill: #3b82f6; fill-opacity: 0;    }
      100% { transform: translateY(22px); fill: #3b82f6; fill-opacity: 0.65; }
    }
    .pillar-bar {
      transition: height 0.4s ease, y 0.4s ease, fill 0.4s ease, fill-opacity 0.4s ease;
    }
    .pillar-card:hover .pillar-bar-1 { animation: usage-bar-1 2.6s ease-in-out infinite; }
    .pillar-card:hover .pillar-bar-2 { animation: usage-bar-2 2.6s ease-in-out infinite 0.15s; }
    .pillar-card:hover .pillar-bar-3 { animation: usage-bar-3 2.6s ease-in-out infinite 0.3s; }
    .pillar-card:hover .pillar-bar-4 { animation: usage-bar-4 2.6s ease-in-out infinite 0.45s; }
    @keyframes usage-bar-1 {
      0%, 100% { y: 32px; height: 18px; fill: #3b82f6; fill-opacity: 0.5; }
      30%      { y: 26px; height: 24px; fill: #3b82f6; fill-opacity: 0.65; }
      60%      { y: 36px; height: 14px; fill: #3b82f6; fill-opacity: 0.4; }
    }
    @keyframes usage-bar-2 {
      0%, 100% { y: 22px; height: 28px; fill: #3b82f6; fill-opacity: 0.7; }
      35%      { y: 16px; height: 34px; fill: #3b82f6; fill-opacity: 0.85; }
      70%      { y: 28px; height: 22px; fill: #3b82f6; fill-opacity: 0.55; }
    }
    @keyframes usage-bar-3 {
      0%, 100% { y: 10px; height: 40px; fill: #3b82f6; fill-opacity: 0.95; }
      40%      { y: 6px;  height: 44px; fill: #3b82f6; fill-opacity: 1; }
      75%      { y: 18px; height: 32px; fill: #3b82f6; fill-opacity: 0.8; }
    }
    @keyframes usage-bar-4 {
      0%, 100% { y: 20px; height: 30px; fill: #3b82f6; fill-opacity: 0.75; }
      30%      { y: 14px; height: 36px; fill: #3b82f6; fill-opacity: 0.9; }
      65%      { y: 26px; height: 24px; fill: #3b82f6; fill-opacity: 0.6; }
    }
    .pillar-toast {
      position: absolute;
      top: 8px;
      left: 10px;
      right: 10px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 9px;
      background: #ffffff;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 12px;
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.10);
      color: #18181b;
      pointer-events: none;
      opacity: 0;
      transform: translateY(-160%);
    }
    .pillar-toast-app {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: #18181b;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-h);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .pillar-toast-body {
      flex: 1;
      min-width: 0;
      line-height: 1.2;
    }
    .pillar-toast-title {
      font-size: 9.5px;
      font-weight: 700;
      color: #18181b;
      letter-spacing: -0.005em;
    }
    .pillar-toast-msg {
      font-size: 9px;
      font-weight: 500;
      color: rgba(24, 24, 27, 0.65);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-top: 1px;
    }
    .pillar-toast-time {
      flex-shrink: 0;
      font-size: 8.5px;
      font-weight: 500;
      color: rgba(24, 24, 27, 0.45);
      align-self: flex-start;
      margin-top: 1px;
    }
    .pillar-card:hover .pillar-toast {
      animation: toast-pop 2.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    }
    @keyframes toast-pop {
      0%, 58%   { opacity: 0; transform: translateY(-160%); }
      64%       { opacity: 1; transform: translateY(0); }
      90%       { opacity: 1; transform: translateY(0); }
      96%, 100% { opacity: 0; transform: translateY(-160%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .pillar-card:hover .pillar-battery-fill,
      .pillar-card:hover .pillar-liquid-fill,
      .pillar-card:hover .pillar-bar,
      .pillar-card:hover .pillar-toast { animation: none; }
      .pillar-toast { opacity: 0; }
    }
    .pillar-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 30px;
      border-radius: 999px;
      background: rgba(0,68,254,0.10);
      color: var(--accent);
      font-family: var(--font-h); font-size: 14px; font-weight: 800;
      letter-spacing: -0.01em;
      line-height: 1; margin-bottom: 18px;
    }
    .pillar-icon {
      width: 44px; height: 44px;
      background: linear-gradient(160deg, rgba(0,68,254,0.12), rgba(0,68,254,0.05));
      border: 1px solid rgba(0,68,254,0.14);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      box-shadow: 0 6px 14px rgba(0,68,254,0.12);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .pillar-card:hover .pillar-icon {
      transform: translateY(-1px) scale(1.04);
      box-shadow: 0 10px 18px rgba(0,68,254,0.18);
    }
    .pillar-icon svg { width: 20px; height: 20px; color: var(--accent); }
    .pillar-card h3 {
      font-family: var(--font-h);
      font-size: 21px; font-weight: 700;
      margin-bottom: 12px; letter-spacing: -0.015em;
      line-height: 1.25;
    }
    .pillar-card p {
      font-size: 15px; color: var(--text-muted); line-height: 1.65;
      max-width: 36ch;
    }

    /* ═══ VIDEO ═══ */
    .video-section {
      padding: 120px 0;
    }
    .video-section .section-heading { margin-bottom: 8px; }
    .video-section .section-sub { margin-bottom: 48px; }
    .video-box {
      position: relative;
      border-radius: var(--r-xl); overflow: hidden;
      border: 1px solid var(--border); background: #000;
      box-shadow: 0 8px 48px rgba(0,0,0,0.08);
    }
    .video-box video { width: 100%; display: block; }

    /* ═══ CUSTOM DESIGN ═══ */
    .custom-section {
      padding: 120px 0;
      background: var(--bg-warm);
    }
    .custom-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
      align-items: center; margin-bottom: 64px;
    }
    .custom-text .section-eyebrow { text-align: left; }
    .custom-text h2 {
      font-family: var(--font-h);
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700; line-height: 1.1;
      letter-spacing: -0.02em; margin-bottom: 20px;
    }
    .custom-text p {
      font-size: 15px; color: var(--text-muted); line-height: 1.7;
      margin-bottom: 32px; max-width: 440px;
    }
    .custom-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .custom-img {
      border-radius: var(--r-xl); overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
    .custom-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .custom-img:hover img { transform: scale(1.03); }

    .custom-cta-card {
      text-align: center; padding: 56px 40px;
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--r-lg);
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    .custom-cta-card h3 {
      font-family: var(--font-h);
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 700; margin-bottom: 12px;
    }
    .custom-cta-card p {
      font-size: 15px; color: var(--text-muted); line-height: 1.6;
      max-width: 400px; margin: 0 auto 24px;
    }

    /* ═══ TESTIMONIALS ═══ */
    .testimonials-section {
      padding: 120px 0;
      background: var(--bg);
    }
    .testimonial-carousel {
      position: relative;
      display: flex; align-items: center; gap: 16px;
    }
    .testimonial-carousel-viewport { overflow: hidden; flex: 1; }
    .testimonial-carousel-track {
      display: flex; gap: 20px;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .testimonial-card {
      flex: 0 0 calc(50% - 10px); min-width: 0;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .testimonial-card:hover {
      border-color: var(--border-hover);
      box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    }
    .testimonial-flip-card { height: 300px; perspective: 1000px; }
    .testimonial-flip-inner {
      position: relative; width: 100%; height: 100%;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      transform-style: preserve-3d;
    }
    .testimonial-flip-card:hover .testimonial-flip-inner { transform: rotateY(180deg); }
    .testimonial-flip-front,
    .testimonial-flip-back {
      position: absolute; inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: var(--r-lg); overflow: hidden;
    }
    .testimonial-flip-back { transform: rotateY(180deg); }
    .testimonial-flip-front .testimonial-content {
      padding: 28px; height: 100%;
      display: flex; flex-direction: column;
    }
    .testimonial-image { border-radius: var(--r-lg); overflow: hidden; height: 100%; background: #f8f9fa; }
    .testimonial-image img { width: 100%; height: 100%; object-fit: cover; }
    .testimonial-flip-back .testimonial-image img {
      object-fit: contain;
      object-position: center;
    }
    .testimonial-quote-block { position: relative; margin-bottom: 16px; flex: 1; min-height: 0; }
    .testimonial-quote-icon {
      position: absolute; top: -8px; left: 0;
      font-size: 56px; font-weight: 700;
      color: var(--accent); opacity: 0.15;
      font-family: var(--font-h); line-height: 1;
    }
    .testimonial-quote {
      font-size: 14px; line-height: 1.6; font-weight: 400; color: var(--text);
      padding-left: 4px; padding-top: 24px;
      display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 16px;
    }
    .testimonial-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      object-fit: cover; flex-shrink: 0;
      border: 2px solid var(--border);
    }
    .testimonial-author-name { font-size: 14px; font-weight: 600; }
    .testimonial-author-role { font-size: 12px; color: var(--text-faint); }
    .testimonial-footer {
      display: flex; align-items: center; gap: 12px;
      margin-top: auto; padding-top: 12px;
      border-top: 1px solid var(--border);
    }
    .testimonial-logo { height: 24px; width: auto; opacity: 0.7; }
    .testimonial-stat {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 4px 10px; border-radius: 8px;
      background: rgba(0,0,0,0.03); border: 1px solid var(--border);
      font-size: 12px; font-weight: 500; color: var(--text-muted);
    }
    .testimonial-stat strong { font-size: 13px; color: var(--text); }
    .testimonial-company-text {
      font-size: 12px; font-weight: 600; letter-spacing: 0.05em; color: var(--text-faint);
    }
    .testimonial-carousel-btn {
      flex-shrink: 0; width: 44px; height: 44px;
      border-radius: 50%; border: 1px solid var(--border);
      background: var(--bg-card); color: var(--text);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .testimonial-carousel-btn:hover { background: rgba(0,0,0,0.03); border-color: var(--border-hover); }
    .testimonial-carousel-btn svg { width: 20px; height: 20px; }
    .testimonial-carousel-btn.disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }

    /* ═══ PRICING ═══ */
    .pricing-section {
      padding: 120px 0;
      background: var(--bg-warm);
    }
    .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 44px;
      display: flex; flex-direction: column;
      position: relative; overflow: hidden;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .pricing-card:hover {
      border-color: var(--border-hover);
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    }
    .pricing-card.featured {
      border-color: var(--accent);
    }
    .pricing-type {
      font-size: 12px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 8px;
    }
    .pricing-name {
      font-family: var(--font-h); font-size: 24px;
      font-weight: 700; margin-bottom: 8px;
    }
    .pricing-price { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
    .pricing-price strong {
      font-size: 36px; font-weight: 800; color: var(--text);
      font-family: var(--font-h); letter-spacing: -0.02em;
    }
    .pricing-features { list-style: none; margin-bottom: 32px; flex: 1; }
    .pricing-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--text-muted);
      padding: 10px 0; border-bottom: 1px solid var(--border);
    }
    .pricing-features li:last-child { border-bottom: none; }
    .pricing-features li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
    .pricing-card .btn-primary { width: 100%; justify-content: center; }
    .pricing-card .btn-ghost { width: 100%; justify-content: center; }

    /* ═══ FINAL CTA ═══ */
    .final-cta {
      padding: 140px 0;
      background: var(--bg-dark);
      color: var(--text-on-dark);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,68,254,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .final-cta h2 {
      font-family: var(--font-h);
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 700; line-height: 1.05;
      letter-spacing: -0.03em; margin-bottom: 16px;
      position: relative;
    }
    .final-cta p {
      font-size: 17px; color: var(--text-muted-dark);
      max-width: 460px; margin: 0 auto 36px;
      line-height: 1.6; position: relative;
    }
    .final-cta-buttons {
      display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
      margin-bottom: 32px; position: relative;
    }
    .btn-primary-light {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: 980px;
      background: #fff; color: var(--bg-dark);
      font-size: 14px; font-weight: 600;
      border: none; cursor: pointer;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .btn-primary-light:hover { opacity: 0.9; transform: translateY(-1px); }
    .btn-ghost-dark {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: 980px;
      background: transparent; color: var(--text-on-dark);
      font-size: 14px; font-weight: 500;
      border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .btn-ghost-dark:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.25); }
    .final-cta-contact {
      display: flex; gap: 24px; justify-content: center;
      font-size: 13px; color: var(--text-muted-dark);
      position: relative;
    }
    .final-cta-contact a { transition: color 0.2s ease; }
    .final-cta-contact a:hover { color: var(--text-on-dark); }

    /* ═══ FOOTER ═══ */
    .footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand p {
      font-size: 13px; color: var(--text-faint);
      margin-top: 16px; line-height: 1.6; max-width: 280px;
    }
    .footer-brand img { height: 18px; width: auto; }
    .footer-col-title {
      font-size: 11px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.12em; color: var(--text-faint); margin-bottom: 16px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a {
      font-size: 13px; color: var(--text-muted);
      transition: color 0.2s ease;
    }
    .footer-links a:hover { color: var(--text); }
    .footer-bottom {
      border-top: 1px solid var(--border); padding-top: 20px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-copy { font-size: 12px; color: var(--text-faint); }
    .footer-legal { display: flex; gap: 16px; }
    .footer-legal a { font-size: 12px; color: var(--text-faint); transition: color 0.2s ease; }
    .footer-legal a:hover { color: var(--text-muted); }

    /* ═══ ANIMATIONS ═══ */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    .hero-text > * {
      opacity: 0; transform: translateY(20px);
      animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .hero-text > *:nth-child(1) { animation-delay: 0.1s; }
    .hero-text > *:nth-child(2) { animation-delay: 0.2s; }
    .hero-text > *:nth-child(3) { animation-delay: 0.3s; }
    .hero-text > *:nth-child(4) { animation-delay: 0.4s; }
    .hero-text > *:nth-child(5) { animation-delay: 0.5s; }
    .hero-text > *:nth-child(6) { animation-delay: 0.6s; }
    .hero-media {
      opacity: 0; transform: translateY(20px);
      animation: fadeInUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-text > *, .hero-media, .reveal { animation: none !important; transition: none !important; opacity: 1; transform: none; }
      .logos-track { animation: none; }
      .hero-eyebrow-dot { animation: none; }
    }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 28px; padding-left: 0; }
      .hero-text { text-align: center; align-items: center; display: flex; flex-direction: column; max-width: none; transform: none; }
      .hero h1 { width: auto; margin-right: 0; }
      .hero-sub { margin-inline: auto; }
      .hero-actions { justify-content: center; }
      .hero-proof { justify-content: center; }
      .hero-features-inline { justify-content: center; }
      .hero-media { max-width: 640px; margin: -22px auto 0; }
      .hero-float-badge { left: 50%; transform: translateX(-50%); }
      .stats-grid { grid-template-columns: 1fr; gap: 0; }
      .stats-grid .stat-card { border-bottom: 1px solid rgba(255,255,255,0.06); }
      .stats-grid .stat-card:last-child { border-bottom: none; }
      .pillars-grid { grid-template-columns: 1fr; gap: 12px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .custom-inner { grid-template-columns: 1fr; gap: 40px; }
      .custom-text h2 { text-align: center; }
      .custom-text .section-eyebrow { text-align: center; }
      .custom-text p { max-width: none; text-align: center; }
      .custom-actions { justify-content: center; }
      .testimonial-card { flex: 0 0 100%; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .container,
      .container-wide {
        padding-left: 18px;
        padding-right: 18px;
      }
      .nav {
        padding-left: 18px;
        padding-right: 18px;
      }
      .nav-links { display: none; }
      .nav-links.is-open {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        padding: 32px 18px max(32px, env(safe-area-inset-bottom));
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        overflow-y: auto;
      }
      .nav-links.is-open a {
        width: 100%;
        padding: 14px 18px;
        text-align: center;
        font-size: 18px;
        color: var(--text);
        background: rgba(0,0,0,0.03);
      }
      .nav-cta { display: none; }
      .mobile-menu-btn { display: block; }
      .nav-pill { height: 64px; }
      .mobile-menu-btn.is-open span:nth-child(1) { transform: translate(0, 6px) rotate(45deg); }
      .mobile-menu-btn.is-open span:nth-child(2) { opacity: 0; }
      .mobile-menu-btn.is-open span:nth-child(3) { transform: translate(0, -6px) rotate(-45deg); }
      .nav.menu-open {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255,255,255,0.97);
      }
      body.menu-open { overflow: hidden; }
      .hero { padding: 120px 18px 56px; }
      .hero h1 { font-size: clamp(32px, 8vw, 44px); }
      .hero-features-inline { flex-direction: column; align-items: center; gap: 8px; }
      .stats-section { padding: 80px 0; }
      .video-section { padding: 80px 0; }
      .pillars-section { padding: 80px 0; }
      .custom-section { padding: 80px 0; }
      .testimonials-section { padding: 80px 0; }
      .pricing-section { padding: 80px 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }
    @media (max-width: 480px) {
      .hero-actions,
      .custom-actions,
      .final-cta-buttons {
        flex-direction: column;
        width: 100%;
      }
      .hero-actions a,
      .hero-actions button,
      .custom-actions a,
      .custom-actions button,
      .final-cta-buttons a,
      .final-cta-buttons button {
        width: 100%;
        justify-content: center;
      }
      .hero-proof {
        width: 100%;
      }
      .hero-tp {
        width: 100%;
        justify-content: center;
      }
      .pricing-card { padding: 32px; }
      .custom-cta-card { padding: 40px 24px; }
      .final-cta { padding: 100px 0; }
    }
  
