  @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; }
  }

  /* ---------- SECTION DIVIDER ---------- */
  .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); }

  /* ---------- BREADCRUMB ---------- */
  .breadcrumb{
    padding:24px 0 0;
  }
  .breadcrumb a{
    font-family:'Oswald',sans-serif;
    font-size:12px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--gray);
    text-decoration:none;
    transition:color .2s ease;
  }
  .breadcrumb a:hover{ color:var(--red); }

  /* ---------- MODEL HERO (full-bleed banner image) ---------- */
  .model-hero{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    max-height:520px;
    overflow:hidden;
    background:rgba(255,255,255,0.03);
  }
  .model-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .model-hero .hero-scrim{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(10,9,8,0.05) 55%, rgba(10,9,8,0.75) 100%);
  }
  @media (max-width:700px){
    .model-hero{ aspect-ratio:4/3; max-height:380px; }
  }

  /* ---------- INTRO (eyebrow + title) ---------- */
  .model-intro{
    padding:36px 0 0;
  }
  .eyebrow{
    font-family:'Oswald',sans-serif;
    font-size:13px;
    font-weight:500;
    letter-spacing:4px;
    text-transform:uppercase;
    color:var(--red);
    margin-bottom:14px;
  }
  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);
  }

  /* ---------- MODEL COPY (price / tagline / cta / quick specs) ---------- */
  .model-copy{
    max-width:720px;
    padding:20px 0 32px;
    border-bottom:1px solid var(--line);
    margin-bottom:8px;
  }
  .price{
    font-family:'Oswald',sans-serif;
    font-weight:600;
    font-size:20px;
    color:var(--gray);
    margin-bottom:16px;
  }
  .price span{ color:var(--white); font-size:24px; }
  .model-tagline{
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.6;
    color:var(--gray);
    max-width:560px;
    margin:0 0 28px;
  }
  .cta-row{
    display:flex;
    gap:16px;
    margin-bottom:32px;
    flex-wrap:wrap;
  }
  .quick-specs{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
    padding-top:24px;
    border-top:1px solid var(--line);
  }
  .quick-specs .qs{ font-family:'Oswald',sans-serif; }
  .quick-specs .qs .num{
    font-size:16px;
    font-weight:600;
    color:var(--white);
  }
  .quick-specs .qs .label{
    font-family:'Inter',sans-serif;
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--gray);
    margin-top:4px;
  }

  /* ---------- SECTION HEADINGS ---------- */
  .section-head{
    font-family:'Oswald',sans-serif;
    font-weight:600;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--red);
    margin-bottom:20px;
  }

  /* ---------- DESCRIPTION ---------- */
  .description{
    padding:40px 0;
    border-top:1px solid var(--line);
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
  }
  @media (max-width:900px){
    .description{ grid-template-columns:1fr; gap:24px; }
  }
  .description p{
    font-family:'Inter',sans-serif;
    font-size:15.5px;
    line-height:1.75;
    color:#cfccc6;
    margin-bottom:16px;
  }

  /* ---------- SPEC TABLE ---------- */
  .specs{
    padding:40px 0;
    border-top:1px solid var(--line);
  }
  .spec-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:0 60px;
  }
  @media (max-width:700px){
    .spec-grid{ grid-template-columns:1fr; }
  }
  .spec-row{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    padding:16px 0;
    border-bottom:1px solid var(--line);
    gap:20px;
  }
  .spec-row .k{
    font-family:'Oswald',sans-serif;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--gray);
    white-space:nowrap;
  }
  .spec-row .v{
    font-family:'Inter',sans-serif;
    font-size:14.5px;
    color:var(--white);
    text-align:right;
  }

  /* ---------- FEATURES ---------- */
  .features{
    padding:40px 0 8px;
    border-top:1px solid var(--line);
  }
  .feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:28px;
  }
  .feature{
    padding:24px;
    background:rgba(255,255,255,0.02);
    border:1px solid var(--line);
    border-radius:4px;
  }
  .feature .f-title{
    font-family:'Oswald',sans-serif;
    font-weight:600;
    font-size:14px;
    letter-spacing:0.5px;
    text-transform:uppercase;
    color:var(--white);
    margin-bottom:8px;
  }
  .feature .f-title::before{
    content:'';
    display:inline-block;
    width:8px;
    height:8px;
    background:var(--red);
    margin-right:10px;
    transform:rotate(45deg);
  }
  .feature p{
    font-family:'Inter',sans-serif;
    font-size:13.5px;
    line-height:1.6;
    color:var(--gray);
  }

  .model-cta{
    padding-top:8px;
  }

  /* ---------- RELATED MODELS (compact tiles) ---------- */
  .related-models{
    padding:56px 0 64px;
  }
  .related-models h2{
    font-family:'Oswald',sans-serif;
    font-weight:700;
    font-size:clamp(24px, 3vw, 34px);
    text-transform:uppercase;
    letter-spacing:-0.3px;
    color:var(--white);
    margin-bottom:28px;
  }
  .models-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:24px;
  }
  .model-tile{
    display:block;
    text-decoration:none;
    color:inherit;
    border:1px solid var(--line);
    border-radius:8px;
    overflow:hidden;
    background:rgba(255,255,255,0.02);
    transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .model-tile:hover{
    transform:translateY(-4px);
    border-color:var(--red);
    box-shadow:0 12px 30px rgba(0,0,0,0.35);
  }
  .tile-image{
    aspect-ratio:4/3;
    overflow:hidden;
    background:rgba(255,255,255,0.03);
  }
  .tile-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
  }
  .model-tile:hover .tile-image img{ transform:scale(1.05); }
  .tile-body{ padding:18px 20px 22px; }
  .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:6px;
  }
  .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:19px;
    text-transform:uppercase;
    letter-spacing:-0.2px;
    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); }

  /* ---------- 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;
  }

  /* ---------- 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 ---------- */
  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; }
  }
  .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 .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;
  }
