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

    :root {
      --black:   #07070a;
      --black2:  #0d0c0f;
      --brown:   #1c130a;
      --tan:     #d6b890;
      --tan-dim: rgba(214,184,144,0.7);
      --cream:   #f4ecdc;
      --white:   #fefcf8;
      --accent:  #ff8c3a;          /* electric copper */
      --accent2: #ffa850;
      --accent3: #ffd9a8;
      --kicker:  #4dd8ff;          /* cyan kicker */
      --kicker-dim: rgba(77,216,255,0.6);
      --border:  rgba(214,184,144,0.14);
      --glow:    0 0 60px rgba(255,140,58,0.35);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--cream);
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      overflow-x: hidden;
    }

    /* noise overlay */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.022;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 52px;
      transition: background 0.3s, border-bottom-color 0.3s, padding 0.3s, backdrop-filter 0.3s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      background: rgba(8,8,10,0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom-color: var(--border);
      padding: 14px 52px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none;
    }
    .nav-logo img {
      width: 34px; height: 34px; border-radius: 7px;
      object-fit: cover; display: block;
    }
    .nav-logo span {
      font-size: 17px; font-weight: 700; letter-spacing: 0.1em;
      color: var(--white); text-transform: uppercase;
    }
    .nav-links {
      display: flex; align-items: center; gap: 40px; list-style: none;
    }
    .nav-links a { text-decoration: none; }
    .nav-links a:not(.nav-cta) {
      color: var(--tan); text-decoration: none; font-size: 12px;
      font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a:not(.nav-cta)::after {
      content: ''; position: absolute;
      left: 0; bottom: -6px;
      width: 100%; height: 1px;
      background: var(--accent);
      transform: scaleX(0); transform-origin: right;
      transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
    }
    .nav-links a:not(.nav-cta):hover { color: var(--white); }
    .nav-links a:not(.nav-cta):hover::after {
      transform: scaleX(1); transform-origin: left;
    }
    .nav-cta {
      background: var(--cream); color: var(--black) !important;
      padding: 10px 22px; border-radius: 6px;
      font-weight: 700 !important; letter-spacing: 0.07em !important;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
      box-shadow: 0 2px 16px rgba(212,134,58,0.18);
      text-decoration: none;
    }
    .nav-cta:hover {
      background: var(--white) !important; transform: translateY(-1px) !important;
      box-shadow: 0 4px 24px rgba(212,134,58,0.28) !important;
    }

    /* Mobile hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
      background: none; border: none;
      min-width: 44px; min-height: 44px;
      align-items: center; justify-content: center;
    }
    :focus-visible {
      outline: 2px solid var(--accent2);
      outline-offset: 3px;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--tan); border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile-drawer {
      display: none;
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(8,8,10,0.97);
      backdrop-filter: blur(20px);
      z-index: 99;
      flex-direction: column; align-items: center; justify-content: center;
      gap: 36px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s;
    }
    .nav-mobile-drawer.open {
      opacity: 1; pointer-events: all;
    }
    .nav-mobile-drawer a {
      font-size: 28px; font-weight: 700;
      color: var(--cream); text-decoration: none;
      letter-spacing: 0.06em; text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-mobile-drawer a:hover { color: var(--accent); }

    /* ─── HERO (SPLIT LAYOUT WITH 3D) ─── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      align-items: center;
      position: relative; overflow: hidden;
      padding: 130px 64px 60px;
      gap: 48px;
      max-width: 1500px;
      margin: 0 auto;
    }
    .hero-left {
      position: relative; z-index: 3;
      display: flex; flex-direction: column;
      align-items: flex-start;
      max-width: 620px;
    }
    .hero-right {
      position: relative; z-index: 2;
      height: auto;
      width: 100%;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-3d-wrap {
      position: relative;
      width: 100%; max-width: 400px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 16px;
      border-radius: 24px;
      background: radial-gradient(ellipse at 50% 45%, rgba(255,140,58,0.08), transparent 72%);
    }
    .hero-3d-inner {
      position: absolute; inset: 0;
      border-radius: 24px;
      overflow: hidden;
      background: radial-gradient(ellipse at 50% 40%, rgba(42,26,14,0.8) 0%, transparent 65%);
    }
    .hero-3d-inner spline-viewer {
      width: 100% !important;
      height: 100% !important;
      display: block;
      filter: saturate(1.18) contrast(1.08) brightness(1.05);
      position: relative; z-index: 1;
    }

    /* ─── ROBOT LOADBARE GEAR OVERLAY ─── */
    /* Chest patch, circular Loadbare badge positioned over robot's chest */
    .robot-chest-patch {
      position: absolute;
      top: 56%; left: 50%;
      transform: translate(-50%, -50%);
      width: 96px; height: 96px;
      z-index: 4;
      pointer-events: none;
      animation: patch-float 6s ease-in-out infinite;
    }
    @keyframes patch-float {
      0%, 100% { transform: translate(-50%, -50%) rotate(-3deg); }
      50% { transform: translate(-50%, -52%) rotate(2deg); }
    }
    .robot-chest-patch::before {
      content: '';
      position: absolute; inset: -8px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,134,58,0.4) 0%, transparent 70%);
      filter: blur(8px);
      z-index: -1;
    }
    .robot-chest-patch-inner {
      width: 100%; height: 100%;
      border-radius: 50%;
      background: var(--cream);
      border: 3px solid var(--accent);
      box-shadow:
        0 0 0 1px rgba(0,0,0,0.4),
        0 8px 24px rgba(0,0,0,0.5),
        inset 0 2px 6px rgba(255,255,255,0.4),
        inset 0 -4px 12px rgba(0,0,0,0.15);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .robot-chest-patch-inner img {
      width: 82%; height: 82%;
      object-fit: contain;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
    }
    /* Subtle reflective sheen on patch */
    .robot-chest-patch-inner::after {
      content: '';
      position: absolute; top: 0; left: -50%;
      width: 50%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      animation: patch-sheen 4s ease-in-out infinite;
    }
    @keyframes patch-sheen {
      0%, 100% { transform: translateX(0); opacity: 0; }
      30% { opacity: 0.8; }
      60% { transform: translateX(300%); opacity: 0; }
      100% { transform: translateX(300%); opacity: 0; }
    }

    /* "LOADBARE GEAR" wordmark stencil below patch */
    .robot-gear-label {
      position: absolute;
      top: 73%; left: 50%;
      transform: translate(-50%, 0);
      z-index: 4;
      pointer-events: none;
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.32em;
      color: var(--accent2);
      text-shadow: 0 0 8px rgba(212,134,58,0.6), 0 2px 4px rgba(0,0,0,0.8);
      white-space: nowrap;
    }

    /* Floating HUD callouts */
    .robot-hud {
      position: absolute;
      z-index: 4;
      pointer-events: none;
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent2);
      opacity: 0.85;
    }
    .robot-hud::before {
      content: '';
      display: inline-block;
      width: 14px; height: 1px;
      background: var(--accent);
      margin-right: 8px;
      vertical-align: middle;
    }
    .robot-hud-tl { top: 28px; left: 24px; animation: hud-blink 3.5s ease-in-out infinite; }
    .robot-hud-tr { top: 28px; right: 24px; animation: hud-blink 3.5s ease-in-out 0.6s infinite; }
    .robot-hud-bl { bottom: 64px; left: 24px; animation: hud-blink 3.5s ease-in-out 1.2s infinite; }
    @keyframes hud-blink {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }
    .robot-hud-status {
      display: flex; align-items: center; gap: 8px;
    }
    .robot-hud-status::after {
      content: ''; display: inline-block;
      width: 6px; height: 6px; border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 8px #4ade80;
      animation: status-pulse 1.5s ease-in-out infinite;
    }
    @keyframes status-pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    /* Hard hat above robot's head (CSS-drawn) */
    .robot-hardhat {
      position: absolute;
      top: 7%; left: 50%;
      transform: translate(-50%, 0);
      width: 130px; height: 70px;
      z-index: 4;
      pointer-events: none;
      animation: hardhat-bob 5s ease-in-out infinite;
    }
    @keyframes hardhat-bob {
      0%, 100% { transform: translate(-50%, 0) rotate(-2deg); }
      50% { transform: translate(-50%, -4px) rotate(1deg); }
    }
    .robot-hardhat-shell {
      position: absolute; bottom: 0;
      left: 0; right: 0;
      height: 56px;
      background: linear-gradient(180deg, var(--accent2) 0%, var(--accent) 60%, #a06024 100%);
      border-radius: 50% 50% 12% 12% / 80% 80% 12% 12%;
      box-shadow:
        inset -8px -4px 16px rgba(0,0,0,0.35),
        inset 8px 4px 12px rgba(255,200,140,0.4),
        0 6px 14px rgba(0,0,0,0.4);
    }
    .robot-hardhat-brim {
      position: absolute;
      bottom: -4px; left: -10px; right: -10px;
      height: 14px;
      background: linear-gradient(180deg, var(--accent) 0%, #8a4d20 100%);
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    }
    .robot-hardhat-stripe {
      position: absolute;
      top: 8px; left: 50%;
      transform: translateX(-50%);
      width: 22px; height: 22px;
      background: var(--cream);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: inset 0 -2px 4px rgba(0,0,0,0.2);
      overflow: hidden;
    }
    .robot-hardhat-stripe img {
      width: 100%; height: 100%; object-fit: contain;
    }
    .hero-3d-loader {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
      z-index: 1;
    }
    .hero-3d-loader::before {
      content: '';
      width: 40px; height: 40px;
      border: 2px solid rgba(212,134,58,0.2);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: spinner 0.8s linear infinite;
    }
    /* Hide Spline logo */
    .hero-3d-wrap::after {
      content: '';
      display: none;
      position: absolute;
      right: 8px; bottom: 8px;
      width: 150px; height: 50px;
      background: radial-gradient(ellipse at bottom right, var(--black) 30%, transparent 80%);
      border-radius: 12px;
      z-index: 5;
      pointer-events: none;
    }

    /* ─── ORBITAL AI ACTIVITY CARDS AROUND ROBOT ─── */
    .ai-card {
      position: relative;
      z-index: 4;
      background: rgba(15,14,16,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 16px 20px;
      box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,140,58,0.06) inset,
        0 0 40px rgba(255,140,58,0.18);
      width: 100%;
      display: flex; flex-direction: column; gap: 6px;
      pointer-events: auto;
      opacity: 0; transform: translateY(20px) scale(0.94);
      will-change: transform;
    }
    .ai-card-row {
      display: flex; align-items: center; gap: 10px;
    }
    .ai-card-icon {
      width: 30px; height: 30px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }
    .ai-card-icon.copper {
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      color: var(--black);
      box-shadow: 0 0 16px rgba(255,140,58,0.5);
    }
    .ai-card-icon.cyan {
      background: linear-gradient(135deg, #7be4ff, var(--kicker));
      color: var(--black);
      box-shadow: 0 0 16px rgba(77,216,255,0.5);
    }
    .ai-card-icon.green {
      background: linear-gradient(135deg, #6ee9a0, #2dbb6e);
      color: var(--black);
      box-shadow: 0 0 16px rgba(110,233,160,0.5);
    }
    .ai-card-label {
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 9px; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--tan-dim);
      font-weight: 700;
    }
    .ai-card-title {
      font-size: 14px; font-weight: 600;
      color: var(--white);
      line-height: 1.2;
    }
    .ai-card-value {
      font-size: 18px; font-weight: 700;
      color: var(--accent2);
      letter-spacing: -0.01em;
    }
    .ai-card-meta {
      font-size: 11px;
      color: rgba(240,232,216,0.5);
      line-height: 1.3;
    }
    .ai-card-bar {
      height: 4px; border-radius: 2px;
      background: rgba(255,255,255,0.08);
      overflow: hidden;
      position: relative;
      margin-top: 4px;
    }
    .ai-card-bar::after {
      content: '';
      position: absolute; inset: 0;
      width: var(--w, 60%);
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      border-radius: 2px;
      box-shadow: 0 0 12px var(--accent);
      animation: bar-pulse 3s ease-in-out infinite;
    }
    @keyframes bar-pulse {
      0%, 100% { filter: brightness(1); }
      50% { filter: brightness(1.3); }
    }
    /* Floating animation patterns */
    @keyframes card-float-1 {
      0%, 100% { transform: translateY(0) translateX(0); }
      50% { transform: translateY(-10px) translateX(4px); }
    }
    @keyframes card-float-2 {
      0%, 100% { transform: translateY(0) translateX(0); }
      50% { transform: translateY(8px) translateX(-3px); }
    }
    @keyframes card-float-3 {
      0%, 100% { transform: translateY(0) translateX(0); }
      50% { transform: translateY(-6px) translateX(-5px); }
    }
    @keyframes card-enter {
      from { opacity: 0; transform: translateY(30px) scale(0.92); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .ai-card-1 { top: 4%; left: 0; animation: card-enter 0.8s cubic-bezier(0.16,1,0.3,1) 1.6s both, card-float-1 7s ease-in-out 2.4s infinite; }
    .ai-card-2 { top: 36%; right: 0; animation: card-enter 0.8s cubic-bezier(0.16,1,0.3,1) 1.9s both, card-float-2 6s ease-in-out 2.7s infinite; }
    .ai-card-3 { bottom: 6%; left: 4%; animation: card-enter 0.8s cubic-bezier(0.16,1,0.3,1) 2.2s both, card-float-3 8s ease-in-out 3s infinite; }

    /* Connector dots from cards to robot center */
    .ai-card::before {
      content: '';
      display: none;
      position: absolute;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px var(--accent);
      animation: dot-pulse 2s ease-in-out infinite;
    }
    .ai-card-1::before { right: -4px; bottom: -4px; }
    .ai-card-2::before { left: -4px; top: 50%; }
    .ai-card-3::before { right: -4px; top: -4px; }
    @keyframes dot-pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.6; }
    }

    /* Robot has a radial spotlight behind it */
    .hero-3d-spotlight {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 80%; height: 80%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,140,58,0.18) 0%, rgba(255,140,58,0.06) 35%, transparent 65%);
      z-index: 0;
      pointer-events: none;
      animation: spotlight-breathe 5s ease-in-out infinite;
    }
    @keyframes spotlight-breathe {
      0%, 100% { transform: translate(-50%,-50%) scale(0.95); opacity: 0.7; }
      50% { transform: translate(-50%,-50%) scale(1.05); opacity: 1; }
    }

    /* Mesh gradient backdrop */
    .hero-mesh {
      position: absolute;
      inset: -20%;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(at 20% 30%, rgba(255,140,58,0.15) 0px, transparent 40%),
        radial-gradient(at 80% 70%, rgba(77,216,255,0.08) 0px, transparent 45%),
        radial-gradient(at 50% 50%, rgba(255,140,58,0.04) 0px, transparent 50%);
      filter: blur(60px);
      animation: mesh-drift 22s ease-in-out infinite;
    }
    @keyframes mesh-drift {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(4%, -3%) scale(1.05); }
      66% { transform: translate(-3%, 4%) scale(0.96); }
    }
    @media (max-width: 1024px) {
      #hero {
        grid-template-columns: 1fr;
        padding: 130px 24px 60px;
        gap: 24px;
      }
      .hero-left { align-items: center; text-align: center; max-width: 100%; }
      /* Below desktop the WebGL scene is not loaded: hide the empty 3D stage and
         reflow the proof cards into a clean centered stack so nothing overlaps. */
      .hero-right { height: auto; width: 100%; }
      .hero-3d-inner { display: none; }
      .hero-3d-wrap {
        position: static; height: auto; width: 100%; max-width: 360px;
        margin: 0 auto; display: flex; flex-direction: column; gap: 14px;
      }
      .hero-3d-wrap::after { display: none; }
      .ai-card, .ai-card-1, .ai-card-2, .ai-card-3 {
        position: static; inset: auto; width: 100%;
        opacity: 1 !important; transform: none !important; animation: none !important;
      }
    }

    /* Radial glow behind hero */
    .hero-bg-glow {
      position: absolute; inset: 0; z-index: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(42,26,14,0.8) 0%, transparent 70%);
      pointer-events: none;
      transition: background-position 0.4s ease-out;
      will-change: background-position;
    }
    /* Pointer-tracking accent light */
    .hero-pointer-light {
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,134,58,0.10) 0%, transparent 60%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: opacity 0.4s;
      opacity: 0;
      z-index: 1;
      mix-blend-mode: screen;
    }
    #hero:hover .hero-pointer-light { opacity: 1; }

    /* orbit rings */
    .orbit-wrap {
      position: absolute; inset: 0; z-index: 1;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
    }
    .orbit-svg { width: 860px; height: 860px; opacity: 0.35; }

    /* center logo */
    .hero-logo-wrap {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; align-items: center;
      gap: 0;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(212,134,58,0.12);
      border: 1px solid rgba(212,134,58,0.3);
      color: var(--accent2);
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 10px; letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 7px 16px; border-radius: 100px;
      margin-bottom: 36px;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }

    .hero-logo {
      width: 210px; height: auto;
    }

    /* ── Continuous ambient animations ── */
    @keyframes logo-float {
      0%, 100% { transform: translateY(0px) scale(1); }
      50% { transform: translateY(-10px) scale(1.015); }
    }
    @keyframes logo-glow-pulse {
      0%, 100% { filter: drop-shadow(0 0 32px rgba(212,134,58,0.25)); }
      50% { filter: drop-shadow(0 0 72px rgba(212,134,58,0.55)); }
    }
    @keyframes wordmark-shimmer {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.92; }
    }
    @keyframes star-twinkle {
      0%, 100% { opacity: 0; transform: scale(0.5); }
      50% { opacity: 1; transform: scale(1); }
    }

    /* ── Entry animations ── */
    @keyframes fade-in-up {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pop-in {
      from { opacity: 0; transform: scale(0.82); }
      to   { opacity: 1; transform: scale(1); }
    }
    @keyframes slide-down {
      from { opacity: 0; transform: translateY(-10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes badge-in {
      from { opacity: 0; transform: translateY(10px) scale(0.95); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    #nav, #hero-badge, #hero-headline, #hero-tagline, #hero-desc, #hero-actions, #hero-trust, #hero-3d-wrap {
      opacity: 0;
    }

    /* Subpages run no entry-animation JS, so the opacity:0 above would hide their nav.
       Keep the nav (tab bar) visible on any page that uses .subpage-main. */
    body:has(.subpage-main) #nav {
      opacity: 1;
    }

    body.anim-play #nav {
      animation: slide-down 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
    }
    body.anim-play #hero-badge {
      animation: badge-in 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both;
    }
    body.anim-play #hero-headline {
      animation: fade-in-up 0.9s cubic-bezier(0.16,1,0.3,1) 0.35s both,
                 gradient-shift 8s ease-in-out 1s infinite;
    }
    body.anim-play #hero-tagline {
      animation: fade-in-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.55s both;
    }
    body.anim-play #hero-desc {
      animation: fade-in-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.7s both;
    }
    body.anim-play #hero-actions {
      animation: fade-in-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.85s both;
    }
    body.anim-play #hero-trust {
      animation: fade-in-up 0.7s cubic-bezier(0.16,1,0.3,1) 1.05s both;
    }
    body.anim-play #hero-3d-wrap {
      animation: scale-fade-in 1.2s cubic-bezier(0.16,1,0.3,1) 0.4s both;
    }
    @keyframes scale-fade-in {
      from { opacity: 0; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1); }
    }

    .star { position: absolute; width: 2px; height: 2px; background: rgba(196,168,130,0.7); border-radius: 50%; animation: star-twinkle var(--dur,3s) ease-in-out infinite var(--delay,0s); }

    .hero-headline {
      margin-top: 28px;
      font-size: clamp(48px, 6.5vw, 88px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 0.96;
      background: linear-gradient(135deg, var(--white) 0%, var(--cream) 50%, var(--tan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200% 200%;
      animation: gradient-shift 8s ease-in-out infinite;
    }
    @keyframes gradient-shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    .hero-headline .accent {
      background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-style: italic;
      font-weight: 500;
    }
    .hero-tagline {
      margin-top: 14px;
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: clamp(10px, 1.2vw, 12px);
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--tan-dim);
    }
    .hero-desc {
      margin-top: 26px;
      max-width: 480px;
      font-size: 17px;
      line-height: 1.7;
      color: rgba(240,232,216,0.62);
    }
    .hero-actions {
      margin-top: 40px;
      display: flex; gap: 14px; flex-wrap: wrap;
    }
    /* Avatar trust row */
    .hero-trust {
      margin-top: 36px;
      display: flex; align-items: center; gap: 14px;
    }
    .hero-trust-avatars {
      display: flex;
    }
    .hero-trust-avatars div {
      width: 32px; height: 32px; border-radius: 50%;
      border: 2px solid var(--black);
      margin-left: -10px;
      background: linear-gradient(135deg, var(--brown), var(--accent));
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700; color: var(--white);
    }
    .hero-trust-avatars div:first-child { margin-left: 0; }
    .hero-trust-text {
      font-size: 12px; color: rgba(240,232,216,0.55);
      line-height: 1.4;
    }
    .hero-trust-text strong { color: var(--cream); font-weight: 600; }
    .btn-primary {
      background: var(--cream); color: var(--black);
      padding: 16px 38px; border-radius: 8px;
      font-weight: 700; font-size: 14px; letter-spacing: 0.08em;
      text-decoration: none; text-transform: uppercase;
      transition: background 0.2s, transform 0.18s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s;
      box-shadow: 0 4px 28px rgba(240,232,216,0.18);
      will-change: transform;
      position: relative; overflow: hidden;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-primary::after {
      content: '→';
      display: inline-block;
      transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
      font-size: 16px;
      transform: translateX(-4px);
      opacity: 0.6;
    }
    .btn-primary:hover {
      background: var(--white); transform: translateY(-3px);
      box-shadow: 0 12px 44px rgba(212,134,58,0.32);
    }
    .btn-primary:hover::after { transform: translateX(2px); opacity: 1; }
    .btn-secondary {
      border: 1px solid rgba(196,168,130,0.3); color: var(--tan);
      padding: 16px 38px; border-radius: 8px;
      font-weight: 600; font-size: 14px; letter-spacing: 0.08em;
      text-decoration: none; text-transform: uppercase;
      transition: border-color 0.2s, color 0.2s, transform 0.15s, background 0.2s;
      will-change: transform;
    }
    .btn-secondary:hover {
      border-color: rgba(196,168,130,0.6); color: var(--cream);
      background: rgba(196,168,130,0.06);
      transform: translateY(-2px);
    }

    #scroll-ind {
      position: absolute; bottom: 110px;
      display: flex; flex-direction: column; align-items: center;
      gap: 8px; opacity: 0.5;
      transition: opacity 0.4s;
    }
    #scroll-ind span {
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 9px; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--tan);
    }
    .scroll-line {
      width: 1px; height: 32px;
      background: linear-gradient(to bottom, var(--tan), transparent);
      animation: scroll-pulse 2.2s ease-in-out infinite;
      transform-origin: top;
    }
    @keyframes scroll-pulse {
      0% { transform: scaleY(0.3); opacity: 0.3; }
      50% { transform: scaleY(1); opacity: 1; }
      100% { transform: scaleY(0.3); opacity: 0.3; transform-origin: bottom; }
    }

    /* ─── DIVIDER ─── */
    .section-divider {
      width: 100%; height: 1px;
      background: linear-gradient(to right, transparent, rgba(196,168,130,0.15), transparent);
    }

    /* ─── MARQUEE ─── */
    #marquee {
      padding: 22px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: rgba(15,14,11,0.5);
      overflow: hidden;
      position: relative;
    }
    #marquee::before, #marquee::after {
      content: '';
      position: absolute; top: 0; bottom: 0; width: 120px;
      pointer-events: none; z-index: 2;
    }
    #marquee::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
    #marquee::after { right: 0; background: linear-gradient(to left, var(--black), transparent); }
    .marquee-track {
      display: flex; gap: 56px;
      width: max-content;
      animation: marquee-scroll 38s linear infinite;
    }
    .marquee-item {
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 12px; letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--tan-dim);
      white-space: nowrap;
      display: flex; align-items: center; gap: 56px;
    }
    .marquee-item::after {
      content: '★';
      color: var(--accent);
      font-size: 8px;
      opacity: 0.6;
    }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── SECTION SHARED ─── */
    .section-label {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 10px; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 20px;
    }
    .section-label::before {
      content: '';
      width: 20px; height: 1px;
      background: var(--accent);
    }
    .section-title {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700; line-height: 1.08;
      color: var(--white);
      max-width: 600px;
      letter-spacing: -0.01em;
    }

    /* ─── HOW IT WORKS ─── */
    #how {
      padding: 128px 52px;
      max-width: 1200px; margin: 0 auto;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 72px;
      position: relative;
    }
    /* connector line */
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 28px; left: calc(25% / 2);
      right: calc(25% / 2);
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(196,168,130,0.2) 10%, rgba(196,168,130,0.2) 90%, transparent);
      z-index: 0;
    }
    .step {
      display: flex; flex-direction: column; gap: 18px;
      padding: 0 28px 0 0;
      position: relative; z-index: 1;
      transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
    }
    .step:last-child { padding-right: 0; }
    .step:hover { transform: translateY(-4px); }
    .step-circle {
      width: 56px; height: 56px; border-radius: 50%;
      border: 1px solid rgba(196,168,130,0.25);
      background: var(--black2);
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
      position: relative;
    }
    .step-circle::after {
      content: '';
      position: absolute; inset: -1px; border-radius: 50%;
      background: conic-gradient(from 0deg, var(--accent), transparent 30%);
      opacity: 0; transition: opacity 0.3s;
      z-index: -1;
      filter: blur(4px);
    }
    .step:hover .step-circle {
      border-color: rgba(212,134,58,0.5);
      background: rgba(212,134,58,0.08);
      box-shadow: 0 0 24px rgba(212,134,58,0.18);
    }
    .step:hover .step-circle::after { opacity: 1; }
    .step-num {
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 13px; font-weight: 700;
      color: var(--accent);
    }
    .step h3 {
      font-size: 19px; font-weight: 700;
      color: var(--white); line-height: 1.2;
    }
    .step p {
      font-size: 14px; line-height: 1.75;
      color: rgba(240,232,216,0.55);
    }

    /* ─── FEATURES ─── */
    #features {
      padding: 128px 52px;
      background: var(--brown);
      position: relative; overflow: hidden;
    }
    /* subtle diagonal lines */
    #features::before {
      content: '';
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(196,168,130,0.025) 40px,
        rgba(196,168,130,0.025) 41px
      );
      pointer-events: none;
    }
    .features-inner {
      max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 72px;
      background: rgba(196,168,130,0.08);
      border-radius: 16px;
      overflow: hidden;
    }
    .feature-card {
      background: rgba(8,8,10,0.7);
      padding: 44px 40px;
      display: flex; flex-direction: column; gap: 16px;
      transition: background 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
      position: relative; overflow: hidden;
      will-change: transform;
    }
    .feature-card::after {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 3px; height: 0;
      background: linear-gradient(to bottom, var(--accent2), var(--accent));
      transition: height 0.4s cubic-bezier(0.16,1,0.3,1);
      box-shadow: 0 0 14px rgba(212,134,58,0.6);
    }
    .feature-card::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle 200px at var(--mx,50%) var(--my,50%), rgba(212,134,58,0.08), transparent 65%);
      opacity: 0; transition: opacity 0.3s;
      pointer-events: none;
    }
    .feature-card:hover { background: rgba(8,8,10,0.95); transform: translateY(-4px); }
    .feature-card:hover::after { height: 100%; }
    .feature-card:hover::before { opacity: 1; }
    .feature-icon-wrap {
      width: 44px; height: 44px; border-radius: 10px;
      border: 1px solid rgba(196,168,130,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      transition: border-color 0.3s;
    }
    .feature-card:hover .feature-icon-wrap { border-color: rgba(212,134,58,0.4); }
    .feature-icon-wrap { color: var(--accent2); }
    .feature-icon-wrap svg { width: 24px; height: 24px; }
    .trade-icon { color: var(--accent2); line-height: 1; }
    .trade-icon svg { width: 28px; height: 28px; }
    .feature-card h3 {
      font-size: 18px; font-weight: 700; color: var(--white);
      letter-spacing: -0.01em;
    }
    .feature-card p {
      font-size: 14px; line-height: 1.75;
      color: rgba(240,232,216,0.5);
    }

    /* ─── 3D SHOWCASE ─── */
    #showcase {
      padding: 128px 52px 88px;
      max-width: 1300px; margin: 0 auto;
      position: relative;
    }
    .showcase-card {
      position: relative;
      width: 100%;
      height: 520px;
      background: rgba(8,8,10,0.96);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(196,168,130,0.05) inset;
    }
    .showcase-card::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 50% at 30% 30%, rgba(212,134,58,0.06), transparent 70%);
      pointer-events: none;
    }
    /* Animated spotlight */
    .spotlight {
      position: absolute;
      width: 138%; height: 169%;
      top: -40%; left: 0;
      pointer-events: none;
      z-index: 1;
      animation: spotlight-anim 7s ease-in-out 0.5s 1 forwards;
      opacity: 0;
    }
    @keyframes spotlight-anim {
      0% { opacity: 0; transform: translate(-72%, -62%); }
      50% { opacity: 1; transform: translate(-50%, -40%); }
      100% { opacity: 1; transform: translate(-50%, -40%); }
    }
    .showcase-content {
      flex: 1;
      padding: 56px 56px 56px 56px;
      position: relative; z-index: 2;
      display: flex; flex-direction: column; justify-content: center;
    }
    .showcase-label {
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 10px; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 18px;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .showcase-label::before {
      content: ''; width: 20px; height: 1px; background: var(--accent);
    }
    .showcase-title {
      font-size: clamp(36px, 4.5vw, 56px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.02em;
      background: linear-gradient(180deg, #fafaf9 0%, #a8a29e 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .showcase-desc {
      margin-top: 22px;
      font-size: 16px; line-height: 1.7;
      color: rgba(240,232,216,0.65);
      max-width: 460px;
    }
    .showcase-cta {
      margin-top: 32px;
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--accent2);
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 12px; letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      transition: gap 0.25s, color 0.2s;
      align-self: flex-start;
    }
    .showcase-cta::after {
      content: '→';
      transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
    }
    .showcase-cta:hover { color: var(--white); gap: 14px; }
    .showcase-cta:hover::after { transform: translateX(2px); }

    .showcase-3d {
      flex: 1.1;
      position: relative;
      min-height: 100%;
    }
    .showcase-3d spline-viewer {
      width: 100% !important; height: 100% !important;
      display: block;
    }
    .showcase-3d::after {
      content: '';
      position: absolute;
      right: 8px; bottom: 8px;
      width: 150px; height: 50px;
      background: var(--black);
      border-radius: 12px;
      z-index: 3;
      pointer-events: none;
    }
    .showcase-loader {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
    }
    .showcase-loader::before {
      content: '';
      width: 36px; height: 36px;
      border: 2px solid rgba(212,134,58,0.2);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: spinner 0.8s linear infinite;
    }
    @keyframes spinner {
      to { transform: rotate(360deg); }
    }

    /* ─── BUILT FOR YOUR TRADE ─── */
    #trades {
      padding: 128px 52px;
      max-width: 1200px; margin: 0 auto;
    }
    .trades-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 64px;
    }
    .trade-card {
      background: linear-gradient(180deg, rgba(20,17,13,0.7) 0%, rgba(8,8,10,0.85) 100%);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px 28px;
      position: relative;
      overflow: hidden;
      transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
      cursor: default;
    }
    .trade-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }
    .trade-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,140,58,0.3);
      box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6), 0 0 32px rgba(255,140,58,0.08);
    }
    .trade-card:hover::before { transform: scaleX(1); }
    .trade-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(255,168,80,0.18), rgba(255,140,58,0.08));
      border: 1px solid rgba(255,140,58,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
      margin-bottom: 22px;
    }
    .trade-name {
      font-size: 22px; font-weight: 700; color: var(--white);
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }
    .trade-tag {
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 10px; letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 18px;
    }
    .trade-bullets {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 10px;
    }
    .trade-bullets li {
      font-size: 13px; line-height: 1.5;
      color: rgba(244,236,220,0.62);
      padding-left: 22px;
      position: relative;
    }
    .trade-bullets li::before {
      content: '→';
      position: absolute; left: 0;
      color: var(--accent);
      font-weight: 700;
    }
    @media (max-width: 1024px) {
      .trades-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .trades-grid { grid-template-columns: 1fr; }
    }

    /* ─── TESTIMONIAL ─── */
    #testimonial {
      padding: 100px 52px;
      max-width: 900px; margin: 0 auto;
      text-align: center;
    }
    .quote-mark {
      font-family: Georgia, serif;
      font-size: 80px; line-height: 0.6;
      color: var(--accent);
      opacity: 0.5;
      margin-bottom: 8px;
      display: block;
    }
    .quote-text {
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 600;
      line-height: 1.5;
      color: var(--white);
      letter-spacing: -0.01em;
    }
    .quote-attr {
      margin-top: 32px;
      display: flex; align-items: center; justify-content: center;
      gap: 12px;
    }
    .quote-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      border: 2px solid var(--border);
      background: linear-gradient(135deg, var(--brown), var(--accent));
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 700; color: var(--white);
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      flex-shrink: 0;
    }
    .quote-name {
      font-size: 14px; font-weight: 700; color: var(--cream);
    }
    .quote-role {
      font-size: 12px; color: var(--tan-dim);
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      letter-spacing: 0.08em;
    }

    /* ─── STATS ─── */
    #stats {
      background: var(--black2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 88px 52px;
    }
    .stats-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .stat {
      display: flex; flex-direction: column; gap: 10px;
      padding: 0 48px 0 0;
      border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: none; padding-right: 0; }
    .stat:not(:first-child) { padding-left: 48px; }
    .stat-num {
      font-size: clamp(40px, 4.5vw, 60px);
      font-weight: 700;
      background: linear-gradient(135deg, var(--white) 0%, var(--tan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }
    .stat-label {
      font-size: 11px; color: var(--accent);
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      letter-spacing: 0.15em; text-transform: uppercase;
    }
    .stat-desc {
      font-size: 13px; color: rgba(240,232,216,0.6);
      line-height: 1.65;
    }

    /* ─── PRICING COMPARE ─── */
    #pricing {
      padding: 120px 52px;
      max-width: 1100px; margin: 0 auto;
      text-align: center;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 60px;
      text-align: left;
    }
    .price-card {
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 34px 30px;
      background: rgba(20,17,13,0.4);
      position: relative;
      transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
    }
    .price-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,140,58,0.4);
      box-shadow: 0 20px 50px -24px rgba(0,0,0,0.6);
    }
    .price-card.featured {
      border-color: rgba(255,140,58,0.5);
      background: linear-gradient(180deg, rgba(255,140,58,0.08), rgba(8,8,10,0.6));
      box-shadow: 0 30px 70px -18px rgba(255,140,58,0.35);
      transform: scale(1.04);
      z-index: 2;
    }
    .price-card.featured:hover {
      transform: scale(1.04) translateY(-4px);
      border-color: rgba(255,140,58,0.6);
      box-shadow: 0 36px 80px -18px rgba(255,140,58,0.4);
    }
    .price-card.featured::before {
      content: 'MOST POPULAR';
      position: absolute; top: 18px; right: 18px;
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 9px; letter-spacing: 0.2em;
      color: var(--black);
      background: var(--accent);
      padding: 4px 10px; border-radius: 100px;
      font-weight: 700;
    }
    .price-name {
      font-size: 14px; font-weight: 600; color: var(--tan);
      letter-spacing: 0.05em; margin-bottom: 14px;
    }
    .price-amount {
      font-size: 44px; font-weight: 700; color: var(--white);
      letter-spacing: -0.02em; line-height: 1;
    }
    .price-card.featured .price-amount {
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .price-per { font-size: 14px; color: var(--tan-dim); font-weight: 400; }
    .price-desc {
      font-size: 13px; color: rgba(244,236,220,0.5);
      margin-top: 14px; line-height: 1.6;
      padding-bottom: 18px; border-bottom: 1px solid var(--border);
    }
    .price-features { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
    .price-features li { font-size: 13px; color: rgba(244,236,220,0.7); padding-left: 22px; position: relative; }
    .price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
    .price-features li.x { color: rgba(244,236,220,0.35); }
    .price-features li.x::before { content: '✕'; color: rgba(244,236,220,0.25); }

    /* ─── FAQ ─── */
    #faq {
      padding: 100px 52px 120px;
      max-width: 760px; margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 0;
    }
    .faq-q {
      width: 100%; text-align: left;
      background: none; border: none; cursor: pointer;
      padding: 26px 0;
      display: flex; justify-content: space-between; align-items: center;
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 18px; font-weight: 600; color: var(--white);
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--accent2); }
    .faq-q .chev { color: var(--accent); transition: transform 0.3s; font-size: 22px; flex-shrink: 0; margin-left: 16px; }
    .faq-item.open .faq-q .chev { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      font-size: 15px; line-height: 1.7; color: rgba(244,236,220,0.6);
    }
    .faq-item.open .faq-a { max-height: 600px; padding-bottom: 26px; }

    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; }
      .price-card.featured, .price-card.featured:hover { transform: none; }
    }

    /* ─── CTA SECTION ─── */
    #cta {
      padding: 140px 48px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-glow {
      position: absolute;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(212,134,58,0.1) 0%, transparent 65%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .cta-inner {
      position: relative; z-index: 1;
    }
    #cta .section-label { justify-content: center; }
    #cta h2 {
      font-size: clamp(36px, 5vw, 68px);
      font-weight: 700; color: var(--white);
      line-height: 1.08; letter-spacing: -0.02em;
      max-width: 720px; margin: 0 auto 20px;
    }
    #cta p {
      font-size: 17px;
      color: rgba(240,232,216,0.55);
      max-width: 460px; margin: 0 auto 52px;
      line-height: 1.7;
    }
    .cta-form {
      display: flex; gap: 12px; justify-content: center;
      flex-wrap: wrap; max-width: 600px; margin: 0 auto;
    }
    .cta-form .row {
      display: flex; gap: 12px; width: 100%; flex-wrap: wrap;
    }
    .cta-input, .cta-select {
      flex: 1; min-width: 200px;
      background: rgba(240,232,216,0.06);
      border: 1px solid rgba(196,168,130,0.25);
      border-radius: 8px;
      padding: 16px 20px;
      color: var(--cream);
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      -webkit-appearance: none; appearance: none;
    }
    .cta-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c4a882' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 18px center;
      background-size: 10px;
      padding-right: 40px;
      cursor: pointer;
    }
    .cta-select option { background: #14110d; color: var(--cream); }
    .cta-input::placeholder { color: rgba(196,168,130,0.35); }
    .cta-input:focus, .cta-select:focus {
      border-color: rgba(212,134,58,0.5);
      background-color: rgba(240,232,216,0.09);
    }
    .cta-note {
      margin-top: 16px;
      font-size: 12px;
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
      color: rgba(214,184,144,0.6);
      letter-spacing: 0.06em;
    }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 52px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 24px;
      max-width: 100%;
    }
    .footer-logo {
      display: flex; align-items: center; gap: 10px;
    }
    .footer-logo img {
      width: 28px; height: 28px; border-radius: 6px;
      background: #0a0905; display: block;
    }
    .footer-logo span {
      font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--tan);
    }
    .footer-copy {
      font-size: 11px; color: rgba(196,168,130,0.55);
      font-family: Calibri, Carlito, 'Segoe UI', system-ui, sans-serif;
    }
    .footer-links {
      display: flex; gap: 28px; list-style: none;
    }
    .footer-links a {
      font-size: 11px; color: rgba(214,184,144,0.7);
      text-decoration: none; letter-spacing: 0.1em;
      text-transform: uppercase; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--tan); }

    /* Product preview ("See it in action") */
    .see-it-grid {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1.05fr 1.25fr;
      gap: 56px; align-items: center;
    }
    @media (max-width: 900px) {
      .see-it-grid { grid-template-columns: 1fr; gap: 32px; }
    }

    /* ─── SCROLL ANIM ─── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }
    .reveal-stagger > * {
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
    .reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
    .reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
    .reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
    .reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
    .reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
      .steps-grid::before { display: none; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
      .stat { border-right: none; padding-right: 0; }
      .stat:not(:first-child) { padding-left: 0; }
      .showcase-card { flex-direction: column; height: auto; }
      .showcase-content { padding: 44px 36px 24px; }
      .showcase-3d { height: 380px; }
    }
    @media (max-width: 768px) {
      nav { padding: 18px 24px; }
      nav.scrolled { padding: 14px 24px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-mobile-drawer { display: flex; }
      #how, #features, #testimonial, #cta, #trades, #faq { padding: 88px 24px; }
      #stats { padding: 72px 24px; }
      footer { padding: 36px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
      .steps-grid { grid-template-columns: 1fr; gap: 40px; }
      .features-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-form { flex-direction: column; }
      .cta-input { min-width: unset; }
      .hero-badge { font-size: 9px; padding: 6px 14px; }
    }

    /* ─── Respect reduced-motion: kill decorative/infinite motion, keep content visible ─── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
    }
  