/* ===================================================================
   TireVans — page-specific styles
   Shared brand tokens, nav, footer, and buttons live in shared.css
   =================================================================== */


  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

  :root {
    --black: #0B0B0B;
    --charcoal: #141414;
    --card-dark: #1B1B1B;
    --muted-dark: #B8B8BC;
    --border-dark: rgba(255,255,255,.10);
    --border-dark-strong: rgba(255,255,255,.18);

    --bg: #FFFFFF;
    --bg-alt: #F6F6F3;
    --bg-soft: #FBFBF9;
    --ink: #15151A;
    --ink-soft: #46464C;
    --muted: #6B6B72;
    --card: #FFFFFF;
    --border: rgba(17,17,17,.09);
    --border-strong: rgba(17,17,17,.16);

    --white: #FFFFFF;
    --gold: #F7C600;
    --gold-dim: #D4A800;
    --gold-pale: rgba(247,198,0,0.10);
    --accent: #FFD84D;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(20,20,15,0.06);
    --shadow-lg: 0 24px 60px rgba(20,20,15,0.10);
    --shadow-dark-lg: 0 24px 70px rgba(0,0,0,0.55);
    --glow: 0 0 0 1px rgba(247,198,0,0.14), 0 8px 28px rgba(247,198,0,0.12);
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--bg); overflow-x: hidden; }
  ::selection { background: var(--gold); color: var(--black); }

  .icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; }


  /* ============================================================
     HERO + GALLERY — merged immersive configurator experience
     ============================================================ */
  @property --hg-ang { syntax: '<angle>'; inherits: false; initial-value: 0deg; }

  .btn-hero-primary {
    padding: 16px 30px; background: var(--gold); border: none; border-radius: 10px;
    color: var(--black); font-family: inherit; font-size: 15.5px; font-weight: 700;
    cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  }
  .btn-hero-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(247,198,0,0.35); }
  .btn-hero-secondary {
    padding: 16px 30px; background: rgba(255,255,255,0.08); border: 1.5px solid var(--border-dark-strong);
    border-radius: 10px; color: var(--white); font-family: inherit; font-size: 15.5px; font-weight: 600;
    cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    backdrop-filter: blur(8px);
  }
  .btn-hero-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,.3); }

  @keyframes pulseDot { 0%,100%{opacity:1;} 50%{opacity:.5;} }
  @keyframes bounceDown { 0%,100%{ transform: translateY(0); opacity:.5; } 50%{ transform: translateY(7px); opacity:1; } }
  @keyframes rotateRing { to { --hg-ang: 360deg; } }
  @keyframes floatUp { from{ opacity:0; transform: translateY(16px); } to{ opacity:1; transform: translateY(0); } }

  .hero-gallery { position: relative; height: 178vh; background: var(--black); }
  .hg-sticky {
    position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
    display: flex; flex-direction: column; padding-top: 128px;
  }

  /* --- media / crossfading photo stack --- */
  .hg-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--black); }
  .hg-media-inner { position: absolute; inset: -8% 0; will-change: transform; }
  .hg-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.07); filter: blur(14px) brightness(.9);
    transition: opacity 1.2s cubic-bezier(.22,.61,.36,1), transform 1.7s cubic-bezier(.22,.61,.36,1), filter 1.1s ease;
    will-change: opacity, transform, filter;
  }
  .hg-slide.active { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); z-index: 2; }
  .hg-scrim {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
    background:
      linear-gradient(180deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.18) 30%, rgba(8,8,8,.04) 46%, rgba(8,8,8,.5) 72%, rgba(8,8,8,.94) 100%),
      radial-gradient(ellipse 900px 500px at 78% 8%, rgba(247,198,0,.10) 0%, transparent 60%);
  }
  .hg-glow {
    position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; transition: opacity .4s ease;
    background: radial-gradient(circle 380px at var(--gx,50%) var(--gy,50%), rgba(247,198,0,.16), transparent 70%);
  }
  .hg-media:hover .hg-glow { opacity: 1; }

  .hg-cursor {
    position: fixed; top: 0; left: 0; width: 70px; height: 70px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center;
    font-size: 9.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #fff;
    pointer-events: none; z-index: 60; mix-blend-mode: difference;
    opacity: 0; transform: translate(-50%,-50%) scale(.55);
    transition: opacity .25s ease, transform .4s cubic-bezier(.16,1,.3,1);
  }
  .hg-cursor.show { opacity: 1; transform: translate(-50%,-50%) scale(1); }

  /* --- headline content --- */
  .hg-content {
    position: relative; z-index: 4; flex: 1; display: flex; flex-direction: column; justify-content: center;
    padding: 0 80px; max-width: 800px;
    transition: opacity .4s cubic-bezier(.16,1,.3,1), transform .4s cubic-bezier(.16,1,.3,1);
  }
  .hg-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; width: fit-content;
    background: rgba(247,198,0,0.12); border: 1px solid rgba(247,198,0,0.28);
    border-radius: 100px; padding: 7px 16px; margin-bottom: 24px;
    color: var(--gold); font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  }
  .hg-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: block; animation: pulseDot 2s ease-in-out infinite; }
  .hg-headline {
    font-family: 'Space Grotesk', sans-serif; font-size: clamp(34px, 4.3vw, 60px); font-weight: 700; line-height: 1.06;
    color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; text-shadow: 0 4px 40px rgba(0,0,0,.4);
    transition: opacity .35s ease, transform .35s ease;
  }
  .hg-headline em { color: var(--gold); font-style: normal; }
  .hg-sub {
    font-size: 17.5px; line-height: 1.68; color: rgba(255,255,255,.8); margin-bottom: 34px; max-width: 580px; font-weight: 400;
    transition: opacity .35s ease, transform .35s ease;
  }
  .hg-fade-swap { opacity: 0 !important; transform: translateY(10px) !important; }
  .hg-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
  .hg-scrolldown {
    display: flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.55); width: fit-content; transition: opacity .3s ease;
  }
  .hg-scrolldown svg { width: 13px; height: 13px; animation: bounceDown 1.8s ease-in-out infinite; }

  /* --- dock: infocard + roadmap + filmstrip --- */
  .hg-dock { position: relative; z-index: 4; padding: 0 80px 42px; }
  .hg-dock-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; margin-bottom: 20px; }

  .hg-infocard {
    position: relative; width: 360px; max-width: 100%; padding: 22px 24px 20px; border-radius: 18px;
    background: linear-gradient(160deg, rgba(30,30,30,.68), rgba(9,9,9,.6));
    backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255,255,255,.14); box-shadow: 0 26px 60px rgba(0,0,0,.55); overflow: hidden;
    transition: opacity .35s ease, transform .35s ease;
  }
  .hg-infocard::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
    background: conic-gradient(from var(--hg-ang,0deg), transparent 0deg, rgba(247,198,0,.9) 26deg, transparent 100deg);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: rotateRing 7s linear infinite;
  }
  .hg-info-index { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
  .hg-info-index .hg-count-total { color: rgba(255,255,255,.4); font-weight: 600; }
  .hg-info-tier { font-family: 'Space Grotesk', sans-serif; font-size: 16.5px; font-weight: 700; color: #fff; margin-bottom: 3px; }
  .hg-info-name { font-size: 12.5px; color: rgba(255,255,255,.55); margin-bottom: 16px; }
  .hg-info-price-row { display: flex; align-items: baseline; gap: 9px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.12); flex-wrap: wrap; }
  .hg-info-price { font-family: 'Space Grotesk', sans-serif; font-size: 23px; font-weight: 700; color: var(--gold); }
  .hg-info-price-note { font-size: 11px; color: rgba(255,255,255,.45); }
  .hg-info-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
  .hg-info-features li { font-size: 12.5px; color: rgba(255,255,255,.85); padding-left: 19px; position: relative; line-height: 1.42; }
  .hg-info-features li::before { content: ''; position: absolute; left: 1px; top: 5px; width: 6px; height: 10px; border: solid var(--gold); border-width: 0 2px 2px 0; transform: rotate(45deg); }
  .hg-info-cta {
    display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--black);
    background: var(--gold); padding: 11px 17px; border-radius: 9px; text-decoration: none;
    transition: background .25s, transform .25s cubic-bezier(.16,1,.3,1);
  }
  .hg-info-cta:hover { background: var(--accent); transform: translateX(3px); }
  .hg-info-cta svg { width: 12px; height: 12px; }

  .hg-roadmap { display: flex; gap: 9px; flex-wrap: wrap; justify-content: flex-end; align-self: flex-end; max-width: 380px; }
  .hg-roadmap a {
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.18);
    padding: 8px 15px; border-radius: 100px; text-decoration: none; white-space: nowrap;
    background: rgba(255,255,255,.045); backdrop-filter: blur(10px); transition: all .22s;
  }
  .hg-roadmap a:hover, .hg-roadmap a.hg-route-active { color: var(--black); background: var(--gold); border-color: var(--gold); }

  .hg-filmstrip-row { display: flex; align-items: center; gap: 10px; }
  .hg-arrow {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-dark-strong);
    background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); color: var(--white);
    font-size: 21px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all .22s;
  }
  .hg-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
  .hg-filmstrip { display: flex; gap: 10px; overflow-x: auto; flex: 1; padding: 5px 2px 9px; scroll-behavior: smooth; scrollbar-width: none; }
  .hg-filmstrip::-webkit-scrollbar { display: none; }
  .hg-thumb {
    position: relative; flex: 0 0 112px; height: 74px; border-radius: 10px; overflow: hidden; cursor: pointer;
    border: 1.5px solid rgba(255,255,255,.16); background: var(--charcoal); opacity: .58; padding: 0;
    transition: opacity .3s cubic-bezier(.16,1,.3,1), border-color .3s, transform .35s cubic-bezier(.16,1,.3,1);
  }
  .hg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.16,1,.3,1); }
  .hg-thumb:hover { opacity: 1; transform: translateY(-3px); }
  .hg-thumb:hover img { transform: scale(1.12); }
  .hg-thumb.active { opacity: 1; border-color: var(--gold); box-shadow: 0 10px 24px rgba(247,198,0,.25); }
  .hg-thumb-cap {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 5px 8px 4px; font-size: 9.5px; font-weight: 700;
    letter-spacing: .02em; color: #fff; background: linear-gradient(0deg, rgba(0,0,0,.8), transparent);
    opacity: 0; transform: translateY(4px); transition: all .25s;
  }
  .hg-thumb:hover .hg-thumb-cap, .hg-thumb.active .hg-thumb-cap { opacity: 1; transform: translateY(0); }
  .hg-thumb-progress { position: absolute; left: 0; bottom: 0; height: 2.5px; background: var(--gold); width: 0%; z-index: 2; transition: width linear; }

  /* --- mobile swipe gallery (hidden on desktop) --- */
  .hg-mobile-gallery { display: none; }

  /* --- lightbox (shared) --- */
  .lightbox {
    position: fixed; inset: 0; background: rgba(6,6,6,0.95); z-index: 300;
    display: none; align-items: center; justify-content: center; flex-direction: column; padding: 40px;
  }
  .lightbox.open { display: flex; }
  .lightbox-img { max-width: min(1200px, 92vw); max-height: 78vh; border-radius: 8px; box-shadow: 0 30px 90px rgba(0,0,0,0.6); object-fit: contain; margin: 0 auto; display: block; }
  .lightbox-caption { color: var(--gold); font-size: 14px; margin-top: 18px; text-align: center; max-width: 720px; }
  .lightbox-close { position: absolute; top: 26px; right: 32px; background: none; border: none; color: var(--white); font-size: 34px; line-height: 1; cursor: pointer; transition: color .2s; }
  .lightbox-close:hover { color: var(--gold); }
  .lightbox-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 52px; height: 52px; border-radius: 50%;
    border: 1px solid var(--border-dark-strong); background: rgba(255,255,255,0.06); color: var(--white); font-size: 28px;
    line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s;
  }
  .lightbox-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
  .lightbox-arrow-left { left: 24px; }
  .lightbox-arrow-right { right: 24px; }

  /* --- the page "peels" forward over the hero as it releases --- */
  #builds.builds-section {
    position: relative; z-index: 5; margin-top: -36px; border-radius: 30px 30px 0 0;
    box-shadow: 0 -40px 70px rgba(0,0,0,.28);
  }

  @media (prefers-reduced-motion: reduce) {
    .hg-slide, .hg-headline, .hg-sub, .hg-infocard, .hg-content { transition: none !important; }
    .hg-eyebrow::before, .hg-scrolldown svg, .hg-infocard::before { animation: none !important; }
  }

  @media (max-width: 1240px) {
    .hg-content, .hg-dock { padding-left: 48px; padding-right: 48px; }
    .hg-infocard { width: 320px; }
  }

  @media (max-width: 1080px) {
    .hg-dock-top { flex-direction: column; align-items: stretch; }
    .hg-roadmap { justify-content: flex-start; align-self: stretch; max-width: none; }
    .hg-infocard { width: 100%; }
  }

  @media (max-width: 760px) {
    .hero-gallery { height: auto; }
    .hg-sticky { position: relative; height: auto; min-height: 100svh; min-height: 100vh; padding-top: 84px; }
    .hg-content { padding: 26px 22px 6px; flex: none; max-width: none; }
    .hg-headline { font-size: clamp(28px, 8vw, 38px); }
    .hg-sub { font-size: 15.5px; margin-bottom: 26px; }
    .hg-ctas .btn-hero-primary, .hg-ctas .btn-hero-secondary { flex: 1 1 auto; justify-content: center; padding: 15px 20px; }
    .hg-scrolldown { display: none; }
    .hg-cursor, .hg-glow { display: none !important; }
    .hg-dock { display: none; }
    .hg-mobile-gallery { display: block; position: relative; z-index: 4; padding-bottom: 30px; }
    .hg-mobile-track {
      display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 22px 8px; scrollbar-width: none;
    }
    .hg-mobile-track::-webkit-scrollbar { display: none; }
    .hg-mobile-card {
      flex: 0 0 82vw; scroll-snap-align: center; border-radius: 18px; overflow: hidden; position: relative;
      aspect-ratio: 4 / 5; background: var(--charcoal); border: 1px solid rgba(255,255,255,.14);
      box-shadow: 0 20px 50px rgba(0,0,0,.45);
    }
    .hg-mobile-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hg-mobile-card-info {
      position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 20px 18px;
      background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 55%, transparent 100%);
    }
    .hg-mobile-tier { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 5px; }
    .hg-mobile-name { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .hg-mobile-price { font-size: 13.5px; color: rgba(255,255,255,.82); margin-bottom: 12px; }
    .hg-mobile-cta {
      display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--black);
      background: var(--gold); padding: 11px 16px; border-radius: 9px; text-decoration: none;
    }
    .hg-mobile-dots { display: flex; justify-content: center; gap: 7px; margin-top: 16px; }
    .hg-mobile-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.3); transition: all .3s; }
    .hg-mobile-dot.active { background: var(--gold); width: 20px; border-radius: 4px; }
    .hg-mobile-roadmap { display: flex; gap: 8px; overflow-x: auto; padding: 20px 22px 0; scrollbar-width: none; }
    .hg-mobile-roadmap::-webkit-scrollbar { display: none; }
    .hg-mobile-roadmap a {
      flex: 0 0 auto; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.18);
      padding: 9px 16px; border-radius: 100px; text-decoration: none; white-space: nowrap; background: rgba(255,255,255,.05);
    }
    #builds.builds-section { margin-top: -22px; border-radius: 20px 20px 0 0; box-shadow: 0 -24px 50px rgba(0,0,0,.26); }
  }
  /* SECTION COMMON */
  section { padding: 100px 80px; }
  section[id] { scroll-margin-top: 132px; }
  .section-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold-dim); margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 700; line-height: 1.14; letter-spacing: -0.02em; color: var(--ink);
    margin-bottom: 18px;
  }
  .section-sub { font-size: 16.5px; color: var(--muted); line-height: 1.7; max-width: 640px; }

  /* BUILDS / PRICING */
  .builds-section { background: var(--bg-alt); }
  .builds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
  .build-card {
    border-radius: var(--radius); border: 1px solid var(--border); background: var(--card);
    box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative; transition: all .3s;
  }
  .build-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .build-card.featured { border-color: var(--gold); box-shadow: var(--shadow-lg); }
  .build-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--black); font-size: 11px; font-weight: 800;
    padding: 5px 14px; border-radius: 100px; white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase; z-index: 2;
  }
  .build-head { background: var(--black); padding: 26px 22px 20px; border-radius: var(--radius) var(--radius) 0 0; }
  .build-card.featured .build-head { background: linear-gradient(160deg, var(--charcoal), var(--black)); }
  .build-num { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
  .build-name { font-family: 'Space Grotesk', sans-serif; font-size: 16.5px; font-weight: 600; color: var(--white); line-height: 1.3; }
  .build-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
  .build-price-wrap { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border); }
  .build-price-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
  .build-price { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.1; }
  .build-price-note { font-size: 12px; color: var(--muted); margin-top: 4px; }
  .build-list { list-style: none; flex: 1; margin-bottom: 18px; }
  .build-list li { font-size: 13px; color: var(--ink-soft); padding: 5px 0 5px 22px; position: relative; line-height: 1.45; }
  .build-list li::before {
    content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 11px;
    border: solid var(--gold-dim); border-width: 0 2px 2px 0; transform: rotate(45deg);
  }
  .build-list li.no { color: #9C9CA3; }
  .build-list li.no::before { top: 12px; left: 1px; width: 9px; height: 0; border: none; border-top: 2px solid var(--border-strong); transform: none; }
  .build-tag { font-size: 11px; font-weight: 700; color: var(--gold-dim); background: var(--gold-pale); border: 1px solid rgba(247,198,0,.3); padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 16px; width: fit-content; }
  .btn-build { width: 100%; padding: 13px; border-radius: 10px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; text-align: center; text-decoration: none; display: block; }
  .build-card.featured .btn-build { background: var(--gold); border: none; color: var(--black); }
  .build-card.featured .btn-build:hover { background: var(--accent); }
  .build-card:not(.featured) .btn-build { background: none; border: 1.5px solid var(--border-strong); color: var(--ink); }
  .build-card:not(.featured) .btn-build:hover { border-color: var(--gold-dim); color: var(--gold-dim); }

  /* CALLOUT (dark) */
  .callout {
    background: linear-gradient(160deg, var(--charcoal), var(--black)); border: 1px solid var(--border-dark);
    border-radius: var(--radius); padding: 44px 48px; margin-top: 48px; position: relative; overflow: hidden;
  }
  .callout::before { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(247,198,0,0.14) 0%, transparent 70%); pointer-events: none; }
  .callout-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; position: relative; }
  .callout-title { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.3; position: relative; }
  .callout-body { font-size: 15px; color: var(--muted-dark); line-height: 1.75; max-width: 720px; position: relative; }

  /* COMPARISON TABLE */
  .comparison-section { background: var(--bg); }
  .compare-wrap { margin-top: 48px; overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
  table.compare { width: 100%; border-collapse: collapse; min-width: 760px; background: var(--card); }
  table.compare th, table.compare td { padding: 15px 18px; text-align: left; font-size: 13.5px; border-bottom: 1px solid var(--border); }
  table.compare thead th { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); font-weight: 700; background: var(--black); white-space: nowrap; }
  table.compare thead th:first-child { color: rgba(255,255,255,0.55); background: var(--charcoal); }
  table.compare tbody tr:nth-child(even) td { background: var(--bg-alt); }
  table.compare tbody td:first-child { font-weight: 600; color: var(--ink); }
  table.compare tbody tr:last-child td { border-bottom: none; background: var(--gold-pale); font-weight: 700; color: var(--ink); font-size: 14.5px; }
  table.compare td.mark { text-align: center; }
  .check { display: inline-block; width: 7px; height: 12px; border: solid var(--gold-dim); border-width: 0 2px 2px 0; transform: rotate(45deg); }
  .dash { display: inline-block; width: 11px; height: 0; border-top: 2px solid #C4C8CD; vertical-align: middle; }

  /* INVESTMENT GRID */
  .investment-section { background: var(--bg-alt); }
  .investment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
  .invest-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 24px; border-top: 3px solid var(--gold); transition: all .25s; }
  .invest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .invest-icon-wrap { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-pale); color: var(--gold-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
  .invest-icon-wrap svg { width: 20px; height: 20px; }
  .invest-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
  .invest-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

  .value-note { background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 26px 30px; margin-top: 32px; box-shadow: var(--shadow); }
  .value-note p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; }

  /* ADDONS */
  .addons-section { background: var(--bg); }
  .addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
  .addon-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; display: flex; gap: 16px; align-items: flex-start; transition: all .25s; }
  .addon-card:hover { border-color: rgba(247,198,0,.4); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .addon-dot { width: 11px; height: 11px; border-radius: 3px; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
  .addon-name { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
  .addon-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
  .addon-price { font-size: 14px; font-weight: 700; color: var(--gold-dim); }

  /* SOFTWARE */
  .software-section { background: var(--bg-alt); }
  .software-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; margin-top: 48px; align-items: start; }
  .software-price-tag { display: inline-block; margin-top: 10px; background: var(--black); color: var(--gold); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; padding: 8px 16px; border-radius: 8px; }
  .software-desc { font-size: 14.5px; color: var(--muted); line-height: 1.75; margin-top: 18px; }
  .sf-list { display: flex; flex-direction: column; gap: 14px; }
  .sf-item { display: flex; gap: 14px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 18px 20px; transition: all .2s; }
  .sf-item:hover { border-color: rgba(247,198,0,.4); box-shadow: var(--shadow-lg); }
  .sf-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--gold-pale); color: var(--gold-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .sf-icon svg { width: 17px; height: 17px; }
  .sf-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
  .sf-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

  /* SPECS */
  .specs-section { background: var(--bg); }
  .spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
  .spec-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
  .spec-card-head { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
  .spec-card-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--gold); flex-shrink: 0; }
  .spec-card-title { font-size: 13.5px; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; }
  .spec-table { width: 100%; border-collapse: collapse; }
  .spec-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
  .spec-table td { padding: 11px 20px; font-size: 12.5px; }
  .spec-item { font-weight: 600; color: var(--ink); white-space: nowrap; width: 42%; }
  .spec-detail { color: var(--muted); }

  /* FINAL CTA */
  .final-cta { padding: 110px 80px; background: var(--black); text-align: center; position: relative; overflow: hidden; }
  .final-cta::before { content: ''; position: absolute; width: 640px; height: 640px; border-radius: 50%; background: radial-gradient(circle, rgba(247,198,0,0.14) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
  .final-cta .section-title { color: var(--white); position: relative; max-width: 720px; margin: 0 auto 18px; }
  .final-cta .section-sub { color: var(--muted-dark); position: relative; margin: 0 auto; max-width: 600px; }
  .final-cta-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 38px; position: relative; flex-wrap: wrap; }

  /* FOOTER */

  /* RESPONSIVE */
  @media (max-width: 1080px) {
    .builds-grid { grid-template-columns: repeat(2, 1fr); }
    .investment-grid { grid-template-columns: repeat(2, 1fr); }
    .spec-grid { grid-template-columns: 1fr; }
    .software-split { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 720px) {
    section { padding: 70px 24px; }
    .hero { padding: 140px 24px 70px; }
    .builds-grid { grid-template-columns: 1fr; }
    .investment-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .callout { padding: 32px 26px; }
  }
