/* ---------- SECTION DIVIDER (thin accent line, glow sweeps side to side) ---------- */
  .section-divider{
    height:4px;
    width:100%;
    position:relative;
    background:var(--red-dim);
    overflow:hidden;
  }
  .section-divider::before{
    content:'';
    position:absolute;
    top:0; bottom:0;
    left:0;
    width:35%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,0.9) 50%, transparent);
    filter:blur(1px);
    animation:dividerSweep 2.4s ease-in-out infinite;
  }
  @keyframes dividerSweep{
    0%{ transform:translateX(-120%); }
    100%{ transform:translateX(385%); }
  }

  /* ---------- ALTERNATING COLOR BAND ---------- */
  .band-alt{
    position:relative;
    border-top:none;
  }
  .band-alt::before{
    content:'';
    position:absolute;
    top:0; bottom:0;
    left:50%;
    width:100vw;
    transform:translateX(-50%);
    background:linear-gradient(160deg, #241109 0%, #180c08 100%);
    z-index:0;
  }
  .band-alt > *{
    position:relative;
    z-index:1;
  }

  @media (max-width:860px){
    nav ul{ justify-content:center; gap:16px 24px; }
  }
  @media (max-width:480px){
    nav ul{ gap:12px 16px; justify-content:center; }
    nav a{ font-size:11px; letter-spacing:1px; }
  }

  /* ---------- BUTTONS (shared) ---------- */
  .btn{
    font-family:'Oswald',sans-serif;
    font-weight:600;
    font-size:14px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    padding:18px 34px;
    border-radius:2px;
    text-decoration:none;
    display:inline-block;
    transition:transform .15s ease, box-shadow .15s ease;
    border:none;
    cursor:pointer;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-solid{
    background:var(--red);
    color:var(--white);
    box-shadow:0 8px 24px rgba(217,43,28,0.35);
  }
  .btn-solid:hover{ box-shadow:0 10px 30px rgba(217,43,28,0.5); }
  .btn-outline{
    background:transparent;
    color:var(--white);
    border:1px solid rgba(242,239,233,0.4);
  }
  .btn-outline:hover{ border-color:var(--white); }

  /* ---------- INTRO ---------- */
  .intro{
    max-width:720px;
    padding:64px 0 40px;
  }
  .eyebrow{
    font-family:'Oswald',sans-serif;
    font-size:13px;
    font-weight:500;
    letter-spacing:4px;
    text-transform:uppercase;
    color:var(--red);
    margin-bottom:18px;
  }
  h1{
    font-family:'Oswald',sans-serif;
    font-weight:700;
    font-size:clamp(32px, 4.4vw, 50px);
    line-height:1.05;
    letter-spacing:-0.5px;
    text-transform:uppercase;
    color:var(--white);
    margin-bottom:20px;
  }
  .intro p{
    font-family:'Inter',sans-serif;
    font-size:15.5px;
    line-height:1.75;
    color:#cfccc6;
  }

  /* ---------- MODELS "CARD FAN" (hand of overlapping cards; the active one comes forward) ---------- */
  .models-grid-section{
    padding:8px 0 56px;
  }
  .fan-hint{
    text-align:center;
    font-family:'Oswald',sans-serif;
    font-size:11.5px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gray);
    margin-bottom:8px;
  }
  /* Two hint variants, swapped by input type rather than screen width — a
     mouse+trackpad user with a narrow window still gets real :hover, so they
     should see the hover copy even though the layout below is the vertical one. */
  .fan-hint-touch{ display:none; }
  @media (pointer:coarse){
    .fan-hint-hover{ display:none; }
    .fan-hint-touch{ display:block; }
  }

  /* Base layout (phones / narrow windows): cards cascade top to bottom,
     overlapping like a hand of cards fanned vertically. Tapping a card
     (touch) or hovering it (mouse) brings it to the front and unfolds its
     details; tapping/clicking again follows the link. */
  .card-fan{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:44px 0 60px;
  }
  .model-tile{
    display:block;
    position:relative;
    text-decoration:none;
    color:inherit;
    width:min(84vw, 320px);
    margin-top:-150px;
    border:1px solid var(--line);
    border-radius:10px;
    overflow:hidden;
    background:var(--bg-1);
    box-shadow:0 14px 28px rgba(0,0,0,0.45);
    transform-origin:center;
    transition:transform .35s cubic-bezier(.22,.8,.32,1), box-shadow .35s ease;
  }
  .model-tile:first-child{ margin-top:0; }

  /* alternating tilt + drift so the stack reads as a cascade, not a pile */
  .card-fan .model-tile:nth-child(1){ transform:rotate(-7deg) translateX(-14px); z-index:1; }
  .card-fan .model-tile:nth-child(2){ transform:rotate(4deg) translateX(16px); z-index:2; }
  .card-fan .model-tile:nth-child(3){ transform:rotate(-4deg) translateX(-16px); z-index:3; }
  .card-fan .model-tile:nth-child(4){ transform:rotate(7deg) translateX(14px); z-index:4; }

  /* the active card: straighten, lift, come forward, unfold its details.
     Same selector specificity as the nth-child rules above, so source order
     (this comes after) is what makes it win — no !important needed for the
     touch/.is-active path, though :hover keeps one as a safety net below. */
  .model-tile.is-active,
  .model-tile:hover,
  .model-tile:focus-visible{
    transform:translateY(-14px) rotate(0deg) translateX(0) scale(1.05) !important;
    z-index:20 !important;
    box-shadow:0 28px 52px rgba(0,0,0,0.6), 0 0 0 1px var(--red);
  }
  .model-tile.is-active .tile-face img,
  .model-tile:hover .tile-face img,
  .model-tile:focus-visible .tile-face img{
    transform:scale(1.06);
  }

  .tile-face{
    position:relative;
    aspect-ratio:3/4;
    overflow:hidden;
    background:rgba(255,255,255,0.03);
  }
  .tile-face img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
  }
  /* Text sits at the TOP of the card, not the bottom: in the vertical cascade
     each card's bottom edge is the part the next card overlaps and covers,
     so the top is the only region guaranteed to stay visible in the peek. */
  .tile-scrim{
    position:absolute;
    inset:0;
    background:linear-gradient(0deg, rgba(10,9,8,0) 45%, rgba(10,9,8,0.92) 100%);
  }
  .tile-face-text{
    position:absolute;
    left:0; right:0; top:0;
    padding:18px 20px;
  }
  .tile-eyebrow{
    font-family:'Oswald',sans-serif;
    font-size:10.5px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--red);
    margin-bottom:5px;
  }
  .tile-title-row{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    gap:10px;
    flex-wrap:wrap;
  }
  .tile-title-row h3{
    font-family:'Oswald',sans-serif;
    font-weight:700;
    font-size:21px;
    text-transform:uppercase;
    letter-spacing:-0.3px;
    color:var(--white);
  }
  .tile-price{
    font-family:'Oswald',sans-serif;
    font-size:12px;
    font-weight:500;
    color:var(--gray);
    white-space:nowrap;
  }
  .model-tile.coming-soon .tile-title-row h3{ color:var(--gray); }
  .model-tile.coming-soon .tile-price{ color:var(--red); }

  /* Full detail panel: collapsed until the card is active (tap on touch,
     hover/focus with a mouse or keyboard). */
  .tile-expand{
    max-height:0;
    padding:0 20px;
    overflow:hidden;
    transition:max-height .35s ease, padding .35s ease;
  }
  .model-tile.is-active .tile-expand,
  .model-tile:hover .tile-expand,
  .model-tile:focus-visible .tile-expand{
    max-height:240px;
    padding:16px 20px 20px;
  }
  .tile-tagline{
    font-family:'Inter',sans-serif;
    font-size:13.5px;
    line-height:1.6;
    color:var(--gray);
    margin-bottom:14px;
  }
  .tile-specs{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    padding-top:14px;
    border-top:1px solid var(--line);
    margin-bottom:14px;
  }
  .tile-specs .ts{ font-family:'Oswald',sans-serif; }
  .tile-specs .ts .num{ font-size:14px; font-weight:600; color:var(--white); }
  .tile-specs .ts .label{
    font-family:'Inter',sans-serif;
    font-size:10.5px;
    letter-spacing:0.8px;
    text-transform:uppercase;
    color:var(--gray);
    margin-top:2px;
  }
  .tile-cta{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-family:'Oswald',sans-serif;
    font-weight:600;
    font-size:11.5px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--white);
    border-bottom:1px solid var(--red);
    padding-bottom:2px;
  }

  /* Wide desktop with real hover: switch the cascade from vertical to
     horizontal — a hand of cards fanned sideways instead of stacked
     top-to-bottom. Everything else (the active-card reveal, the collapsed
     tile-expand) is inherited unchanged from the base rules above; this
     block only repositions the cards. */
  @media (hover:hover) and (pointer:fine) and (min-width:860px){
    .card-fan{
      flex-direction:row;
      justify-content:center;
      align-items:flex-end;
      padding:36px 0 64px;
    }
    .model-tile{
      flex:0 0 auto;
      width:250px;
      margin-top:0;
      margin-left:-86px;
      transform-origin:bottom center;
    }
    .model-tile:first-child{ margin-left:0; }

    /* fan rotation + gentle arc, card 1 of 4 through 4 of 4 — overrides the
       vertical-stack rotations set in the base rules above */
    .card-fan .model-tile:nth-child(1){ transform:rotate(-10deg) translateY(18px); z-index:1; }
    .card-fan .model-tile:nth-child(2){ transform:rotate(-3deg) translateY(0); z-index:2; }
    .card-fan .model-tile:nth-child(3){ transform:rotate(4deg) translateY(2px); z-index:3; }
    .card-fan .model-tile:nth-child(4){ transform:rotate(11deg) translateY(20px); z-index:4; }

    /* neighbors ease apart to make room for the card coming forward */
    .card-fan:has(.model-tile:nth-child(1):hover) .model-tile:nth-child(2){ transform:rotate(-3deg) translateY(0) translateX(24px); }
    .card-fan:has(.model-tile:nth-child(1):hover) .model-tile:nth-child(3){ transform:rotate(4deg) translateY(2px) translateX(24px); }
    .card-fan:has(.model-tile:nth-child(1):hover) .model-tile:nth-child(4){ transform:rotate(11deg) translateY(20px) translateX(24px); }

    .card-fan:has(.model-tile:nth-child(2):hover) .model-tile:nth-child(1){ transform:rotate(-10deg) translateY(18px) translateX(-16px); }
    .card-fan:has(.model-tile:nth-child(2):hover) .model-tile:nth-child(3){ transform:rotate(4deg) translateY(2px) translateX(24px); }
    .card-fan:has(.model-tile:nth-child(2):hover) .model-tile:nth-child(4){ transform:rotate(11deg) translateY(20px) translateX(24px); }

    .card-fan:has(.model-tile:nth-child(3):hover) .model-tile:nth-child(1){ transform:rotate(-10deg) translateY(18px) translateX(-24px); }
    .card-fan:has(.model-tile:nth-child(3):hover) .model-tile:nth-child(2){ transform:rotate(-3deg) translateY(0) translateX(-24px); }
    .card-fan:has(.model-tile:nth-child(3):hover) .model-tile:nth-child(4){ transform:rotate(11deg) translateY(20px) translateX(16px); }

    .card-fan:has(.model-tile:nth-child(4):hover) .model-tile:nth-child(1){ transform:rotate(-10deg) translateY(18px) translateX(-24px); }
    .card-fan:has(.model-tile:nth-child(4):hover) .model-tile:nth-child(2){ transform:rotate(-3deg) translateY(0) translateX(-24px); }
    .card-fan:has(.model-tile:nth-child(4):hover) .model-tile:nth-child(3){ transform:rotate(4deg) translateY(2px) translateX(-24px); }

    /* the hovered card: straighten, lift, come forward. Same selector
       specificity as the nth-child rules above, so source order (this comes
       after) is what makes it win — overrides the vertical lift in the base
       rules with a horizontal-fan-appropriate one. */
    .model-tile.is-active,
    .model-tile:hover,
    .model-tile:focus-visible{
      transform:translateY(-36px) rotate(0deg) translateX(0) scale(1.06) !important;
    }
  }

  .cta-row{
    display:flex;
    gap:16px;
    margin-bottom:36px;
    flex-wrap:wrap;
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    padding:72px 0;
    text-align:center;
  }
  .final-cta h2{
    font-family:'Oswald',sans-serif;
    font-weight:700;
    font-size:clamp(26px, 3.4vw, 40px);
    text-transform:uppercase;
    letter-spacing:-0.3px;
    margin-bottom:14px;
  }
  .final-cta p{
    font-family:'Inter',sans-serif;
    font-size:15px;
    color:var(--gray);
    margin-bottom:30px;
  }
  .final-cta .cta-row{
    justify-content:center;
    margin-bottom:0;
  }

  footer{ position:relative; padding:22px 0; }
  footer::before{
    content:'';
    position:absolute;
    top:0; bottom:0;
    left:50%;
    width:100vw;
    transform:translateX(-50%);
    background:var(--bg-0);
    z-index:0;
  }
  footer > *{
    position:relative;
    z-index:1;
  }
  .footer-explore-row{
    display:flex;
    align-items:center;
    flex-wrap:nowrap;
    gap:20px;
    padding:16px 0 20px;
    border-bottom:1px solid var(--line);
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .footer-explore-row a{
    font-family:'Inter',sans-serif;
    font-size:13.5px;
    color:var(--gray);
    text-decoration:none;
    transition:color .2s ease;
    white-space:nowrap;
  }
  .footer-explore-row a:hover{ color:var(--white); }
  @media (max-width:480px){
    .footer-explore-row{ gap:12px; font-size:12px; }
    .footer-explore-row a{ font-size:12px; }
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:32px;
    padding:28px 0 32px;
  }
  .social-row{
    display:flex;
    gap:10px;
  }
  .social-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border:1px solid var(--line);
    border-radius:50%;
    color:var(--gray);
    text-decoration:none;
    font-family:'Oswald',sans-serif;
    font-size:10.5px;
    font-weight:600;
    letter-spacing:0.5px;
    transition:all .2s ease;
  }
  .social-btn:hover{
    color:var(--white);
    border-color:var(--red);
  }
  .footer-head{
    font-family:'Oswald',sans-serif;
    font-weight:600;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--red);
    margin-bottom:14px;
  }
  .footer-col{
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .footer-col a{
    font-family:'Inter',sans-serif;
    font-size:13.5px;
    color:var(--gray);
    text-decoration:none;
    transition:color .2s ease;
  }
  .footer-col a:hover{ color:var(--white); }
  footer .foot-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
  }
  footer p{
    font-family:'Inter',sans-serif;
    font-size:12px;
    color:var(--gray);
    letter-spacing:0.3px;
  }

  /* ---------- SCROLL ARROW (fixed, bottom-center, flips at page bottom) ---------- */
  #scrollArrow{
    position:fixed;
    bottom:24px;
    left:50%;
    transform:translateX(-50%);
    z-index:500;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
  }
  @keyframes bob{
    0%, 100%{ transform:translateY(0); opacity:0.7; }
    50%{ transform:translateY(8px); opacity:1; }
  }
  #scrollArrow .scroll-arrow{
    animation:bob 1.8s ease-in-out infinite;
    filter:drop-shadow(0 0 3px rgba(217,43,28,0.6));
    transition:transform .35s ease;
    transform-origin:center;
  }
  #scrollArrow.at-bottom .scroll-arrow{
    transform:rotate(180deg);
  }


  /* ---------- FINANCING CALLOUT ---------- */
  .financing-callout{
    max-width:1400px;
    margin:0 auto;
    padding:40px 48px 56px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
  }
  .financing-callout p{
    font-family:'Inter',sans-serif;
    color:var(--gray);
    font-size:15px;
    margin:0;
  }
  .financing-link{
    font-family:'Oswald',sans-serif;
    font-weight:600;
    font-size:13px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--red);
    text-decoration:none;
    border-bottom:1px solid var(--red);
    padding-bottom:2px;
    transition:opacity .2s ease;
    white-space:nowrap;
  }
  .financing-link:hover{ opacity:0.75; }
  @media (max-width:600px){
    .financing-callout{ padding:32px 24px 40px; flex-direction:column; align-items:flex-start; }
  }

  /* ---------- FOOTER (merged in) ---------- */

  @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&family=Share+Tech+Mono&display=swap');

  :root{
    --bg-0:#0a0908;
    --bg-1:#141210;
    --red:#d92b1c;
    --red-dim:#7a1810;
    --white:#f2efe9;
    --gray:#8d8983;
    --line:#2a2724;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }

  html{ scroll-behavior:smooth; }

  body{
    background:
      radial-gradient(ellipse 900px 500px at 78% 55%, rgba(217,43,28,0.16), transparent 60%),
      radial-gradient(ellipse 700px 700px at 10% 0%, rgba(217,43,28,0.06), transparent 55%),
      var(--bg-0);
    color:var(--white);
    font-family:'Inter',sans-serif;
    min-height:100vh;
  }

  .wrap{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 48px;
    box-sizing:border-box;
  }
  @media (max-width:600px){
    .wrap{ padding:0 20px; }
  }


  /* ---------- FOOTER LOGO BADGE ---------- */
  .footer-badge-wrap{
    position:relative;
    height:0;
  }
  .footer-badge{
    position:absolute;
    top:-50px;
    left:50%;
    transform:translateX(-50%);
    width:100px;
    height:100px;
    z-index:2;
    border-radius:50%;
    overflow:hidden;
    border:2px solid var(--red);
    box-shadow:0 8px 24px rgba(0,0,0,0.6), 0 0 20px rgba(217,43,28,0.35);
    background:var(--bg-0);
  }
  .footer-badge img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

