/* =========================================================================
   Rocket Tint — Magnet-DNA design tokens
   Lifted directly from Marketing_by_magnet/index.html. Same shapes, same
   rhythm, same cinematic energy. Purple → Red. That is the only swap.
   ========================================================================= */

:root {
  /* Brand — Rocket Tint red replaces Magnet purple */
  --r1: #7a0f1f;
  --r2: #c8102e;          /* primary red */
  --r3: #ff2542;          /* highlight red */
  --r4: #ff6e7f;          /* pink-tint accent */
  --grad: linear-gradient(135deg, #c8102e, #ff2542);
  --grad-fire: linear-gradient(135deg, #c8102e, #ff2542, #ff38c1);

  /* Surfaces (matches Magnet's #050208 / #0a0514 / #0f0a1a stack) */
  --bg: #060305;
  --bg2: #0c0509;
  --bg3: #12080d;
  --card: rgba(255,255,255,0.025);
  --card2: rgba(200,16,46,0.06);
  --border: rgba(255,255,255,0.07);
  --border2: rgba(200,16,46,0.22);

  /* Text */
  --t1: #ffffff;
  --t2: rgba(255,255,255,0.78);
  --t3: rgba(255,255,255,0.5);

  /* Accents */
  --green: #22c55e;
  --amber: #f59e0b;
  --red:   #e50914;
  --neon:  #ff38c1;

  /* Radii */
  --r: 16px;
  --r2-rad: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
}
* { min-width: 0; }
img, video, iframe { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; height: auto; }
table { max-width: 100%; }
/* Anything plain-text that could be one long unbreakable string (URLs, slugs)
   gets to wrap on mobile instead of forcing horizontal scroll. */
pre, code, .break-anywhere { overflow-wrap: anywhere; word-break: break-word; }
h1, h2, h3, h4, h5, p { overflow-wrap: break-word; word-wrap: break-word; }
a { color: inherit; text-decoration: none; transition: all .25s; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(6,3,5,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--t2); padding: 6px 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--t1); }
.nav-call { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--t2); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ============================ BUTTONS ============================ */
.btn-g {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px; background: var(--grad); border-radius: 100px;
  font-size: 14px; font-weight: 700; color: #fff;
  box-shadow: 0 4px 25px rgba(200,16,46,.32);
  transition: all .3s; border: 0; cursor: pointer;
}
.btn-g:hover { transform: translateY(-2px); box-shadow: 0 8px 35px rgba(200,16,46,.5); }
.btn-g:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.btn-o {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px; background: transparent; border-radius: 100px;
  font-size: 14px; font-weight: 700; color: #fff;
  border: 1px solid var(--border2);
  transition: all .3s; cursor: pointer;
}
.btn-o:hover { background: var(--card2); border-color: var(--r3); transform: translateY(-2px); }
.btn-lg { font-size: 15px; padding: 20px 44px; gap: 14px; }

/* ============================ HERO ============================ */
.hero { padding: 90px 0 70px; position: relative; text-align: center; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200,16,46,.22), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255,56,193,.06), transparent 50%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.32);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700; color: #4ade80;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 24px; position: relative;
}
.hero-eyebrow .pulse { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 10px #22c55e; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero h1 {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(52px, 9vw, 112px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: .95;
  margin-bottom: 22px;
  max-width: 1000px; margin-left: auto; margin-right: auto;
  position: relative;
}
.hero h1 .red {
  color: var(--r3);
}
.hero p.sub {
  font-size: 19px; color: var(--t2);
  max-width: 640px; margin: 0 auto 36px;
  line-height: 1.55; position: relative;
}

/* ============================ SECTIONS ============================ */
.section { padding: 90px 0; position: relative; }
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700; color: var(--r3);
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow.center { text-align: center; display: block; }
.section-h {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section-h.center { text-align: center; }
.section-h .red { color: var(--r3); }
.section-sub { font-size: 17px; color: var(--t2); line-height: 1.6; }
.section-sub.center { text-align: center; max-width: 680px; margin: 0 auto 50px; }

/* Tinted blocks (alt background section like Magnet's mp-block) */
.alt-block { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ============================ CINEMA / FILMSTRIP ============================ */
.cinema-head { padding: 0 24px; max-width: 1180px; margin: 0 auto 38px; text-align: center; }
.cinema-head .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  color: var(--r3); font-size: 11px; letter-spacing: .4em;
  text-transform: uppercase; margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.cinema-head .eyebrow::before, .cinema-head .eyebrow::after {
  content: ''; width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--r3));
}
.cinema-head .eyebrow::after { background: linear-gradient(90deg, var(--r3), transparent); }
.cinema-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 6.5vw, 76px);
  letter-spacing: .01em; line-height: .95; margin-bottom: 16px;
  font-weight: 400;
}
.cinema-head h2 .red { color: var(--r3); }
.cinema-head p { color: var(--t2); font-size: 17px; max-width: 660px; margin: 0 auto; line-height: 1.5; }

/* ============================ CARDS ============================ */
.feat-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
@media (max-width: 1024px) { .feat-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (max-width: 680px)  { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  display: flex; flex-direction: column;
  padding: 32px 30px;
  background: linear-gradient(160deg, rgba(200,16,46,.10), rgba(10,5,9,.95));
  border: 1px solid var(--border2);
  border-radius: var(--r2-rad);
  transition: all .3s; position: relative; overflow: hidden;
  min-height: 280px;
  text-decoration: none; color: inherit;
}
.feat-card:hover { transform: translateY(-4px); border-color: var(--r3); box-shadow: 0 20px 60px rgba(200,16,46,.20); }
.feat-card.hero-feature { grid-row: span 2; }
@media (max-width: 1024px) { .feat-card.hero-feature { grid-row: span 1; grid-column: span 2; } }
@media (max-width: 680px)  { .feat-card.hero-feature { grid-column: span 1; } }
.feat-card .label { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; color: var(--r3); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 14px; }
.feat-card .metric {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900; line-height: 1;
  color: var(--r3);
  margin-bottom: 8px; letter-spacing: -.02em;
}
.feat-card .metric-label { font-size: 13px; color: var(--t2); margin-bottom: 18px; }
.feat-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--t1); line-height: 1.2; margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: var(--t2); line-height: 1.55; margin-bottom: 20px; flex: 1; }
.feat-card .read { font-size: 13px; font-weight: 700; color: var(--r3); margin-top: auto; display: inline-flex; align-items: center; gap: 6px; }
.feat-card .read::after { content: '→'; transition: transform .25s; }
.feat-card:hover .read::after { transform: translateX(4px); }
.feat-card.hero-feature .metric { font-size: clamp(48px, 7vw, 84px); }
.feat-card.hero-feature h3 { font-size: 28px; }

/* Photo cards */
.photo-card {
  display: flex; flex-direction: column;
  border-radius: var(--r2-rad); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
  text-decoration: none; color: inherit;
  transition: all .3s;
}
.photo-card:hover { transform: translateY(-4px); border-color: var(--r3); box-shadow: 0 20px 60px rgba(200,16,46,.2); }
.photo-card .img { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.photo-card .img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.6) 100%); }
.photo-card .body { padding: 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.photo-card .body .label { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; color: var(--r3); letter-spacing: .14em; text-transform: uppercase; }
.photo-card .body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -.015em; }
.photo-card .body p { font-size: 14px; color: var(--t2); line-height: 1.55; }
.photo-card .body .price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--r3); letter-spacing: 0.04em; }
.photo-card .body .row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 6px; }

/* ============================ FORMS ============================ */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 10px; font-weight: 700; color: var(--t3); letter-spacing: .14em; text-transform: uppercase; }
.input-wrap {
  display: flex; align-items: center;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .25s;
}
.input-wrap:focus-within { border-color: var(--r3); background: rgba(0,0,0,.6); box-shadow: 0 0 0 3px rgba(200,16,46,.15); }
.input-wrap input, .input-wrap select {
  flex: 1; width: 100%;
  background: transparent; border: 0;
  padding: 14px 16px; color: #fff;
  font-family: inherit; font-size: 15px; outline: none;
  appearance: none;
}
.input-wrap input::placeholder { color: var(--t3); }
.input-wrap select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23999' d='M1.5 1.5L6 6l4.5-4.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 38px;
  cursor: pointer;
}
.input-wrap select:disabled { opacity: .35; cursor: not-allowed; }
.input-wrap select option { background: #0c0509; color: #fff; }

/* ============================ FINAL CTA ============================ */
.final { padding: 90px 0 110px; position: relative; text-align: center; }
.final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,16,46,.14), transparent 60%);
  pointer-events: none;
}
.final h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 14px; position: relative;
}
.final h2 .red { color: var(--r3); }
.final p { font-size: 17px; color: var(--t2); max-width: 540px; margin: 0 auto 32px; position: relative; }
.final-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.final-cta-row .btn-g, .final-cta-row .btn-o { font-size: 15px; padding: 14px 32px; }

/* ============================ FOOTER ============================ */
.site-footer { padding: 40px 0; border-top: 1px solid var(--border); margin-top: auto; background: var(--bg2); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-left { font-size: 13px; color: var(--t3); display: flex; flex-direction: column; gap: 16px; max-width: 540px; }
.footer-left a { color: var(--r3); font-weight: 600; }
.footer-badge { display: flex; align-items: center; gap: 14px; }
.footer-badge img { height: 48px; width: auto; opacity: .95; }
.footer-badge-meta { display: flex; flex-direction: column; gap: 2px; }
.footer-badge-meta .lbl { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--t3); }
.footer-badge-meta .val { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: #fff; letter-spacing: .03em; line-height: 1; }
.footer-meta { font-size: 13px; color: var(--t3); line-height: 1.55; display: flex; flex-direction: column; gap: 14px; }
.footer-locs { display: flex; flex-wrap: wrap; gap: 12px 32px; }
.footer-loc { display: flex; flex-direction: column; gap: 3px; }
.footer-loc .loc-name { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--r3); }
.footer-loc .loc-addr { font-size: 13px; color: var(--t3); line-height: 1.4; }
.footer-legal { font-size: 12px; color: var(--t3); }
.footer-right { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-right a { font-size: 13px; color: var(--t3); transition: color .2s; }
.footer-right a:hover { color: var(--t1); }

/* ============================ MOBILE ============================ */
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; padding: 20px; gap: 8px; background: rgba(6,3,5,.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 10px; font-size: 15px; }
  .nav-links a:hover { background: var(--card2); }
  .nav-links .btn-g { width: 100%; justify-content: center; }
  .nav-toggle { display: block; }
  .nav-call { display: none; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 60px 0; }
  .final { padding: 70px 0; }
}
@media (max-width: 768px) { .nav-logo img { height: 44px !important; } }
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: clamp(36px, 12vw, 68px); }
  .hero p.sub { font-size: 16px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: .14em; padding: 6px 13px; }
  .section-h { font-size: clamp(28px, 7vw, 38px); }
  .feat-card { padding: 22px 20px; min-height: auto; }
  .feat-card .metric { font-size: clamp(34px, 9vw, 48px); overflow-wrap: break-word; }
  .feat-card.hero-feature .metric { font-size: clamp(40px, 10vw, 56px); }
  .feat-card h3 { font-size: 20px; }
  .feat-card.hero-feature h3 { font-size: 24px; }
}

/* Reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }

/* ─────────────── Keyboard focus rings on chip-style radios ───────────────
   The chip pattern (across film-opts, pkg-opts, ws-opts, loc-opts, body-types,
   body-pick-options, goal-chips, qe-chips, sun-chips) hides the actual radio
   input via `position: absolute; opacity: 0` and styles the adjacent label
   element instead. Without these rules, keyboard users get NO focus indicator.
   We attach the visible focus ring to whichever element follows the input —
   `.opt` for film tier / windshield / windows chips, `.chip` for body / quote
   chips. Site-wide a11y fix in one place. */
input[type="radio"]:focus-visible + .opt,
input[type="radio"]:focus-visible + .chip,
input[type="checkbox"]:focus-visible + .opt,
input[type="checkbox"]:focus-visible + .chip {
  outline: 2px solid var(--r3, #ff2542);
  outline-offset: 2px;
}

