/* =====================================================
   Hot slice slot — Brand stylesheet
   ===================================================== */

:root {
  /* Surfaces */
  --bg: #1a0505;
  --bg-header: #4a0404;
  --bg-footer: #2b0202;
  --bg-card: #3d0a0a;
  --bg-surf: #660e0e;
  --bg-surf2: #8b1818;

  /* Accents */
  --accent: #ffb700;
  --accent2: #ff4d00;
  --accent-red: #ff2a2a;
  --neon: #fffb00;
  --success: #26d926;

  /* Text */
  --text: #ffffff;
  --text-light: #ffd700;
  --text2: #ffc0c0;

  /* Decor */
  --border: rgba(255, 215, 0, 0.2);
  --border-strong: rgba(255, 215, 0, 0.45);
  --shadow: 0 4px 20px rgba(255, 77, 0, 0.4);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.55);

  /* Type scale */
  --f-display: "Anton", "Arial Narrow", sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 77, 0, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 30%, rgba(139, 24, 24, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 70%, rgba(255, 183, 0, 0.08), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent2); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--bg-header) 0%, #380303 100%);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a:not(.play-btn) {
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 6px 2px;
  position: relative;
}

.main-nav a:not(.play-btn):hover { color: var(--accent); }

.main-nav a:not(.play-btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .2s ease;
}
.main-nav a:not(.play-btn):hover::after { width: 100%; }

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #ffd54a 0%, var(--accent) 50%, #d99500 100%);
  color: #2b0202 !important;
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 400;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15) inset, 0 6px 18px rgba(255, 183, 0, 0.45);
  border: 1px solid rgba(255, 251, 0, 0.5);
  transition: transform .15s ease, box-shadow .15s ease;
}
.play-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25) inset, 0 8px 24px rgba(255, 77, 0, 0.65);
  color: #1a0202 !important;
}
.play-btn::before { content: "🔥"; font-size: 16px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--accent);
  margin: 4px 0;
  transition: all .2s;
}

/* ---------- Hero ---------- */
.hero {
  padding: 70px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 183, 0, 0.05);
  margin-bottom: 22px;
}

h1.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 22px;
  text-transform: uppercase;
  color: var(--text);
}

h1.hero-title .accent {
  background: linear-gradient(180deg, #fff 0%, var(--accent) 55%, var(--accent2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(255, 77, 0, 0.45));
}

.hero p.hero-lead {
  font-size: 18px;
  color: var(--text2);
  margin: 0 0 30px;
  max-width: 540px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, #ffd54a 0%, var(--accent) 50%, #d99500 100%);
  color: #2b0202;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15) inset, 0 8px 24px rgba(255, 183, 0, 0.4);
  border: 1px solid rgba(255, 251, 0, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25) inset, 0 12px 32px rgba(255, 77, 0, 0.6);
  color: #1a0202;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  padding: 13px 28px;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(255, 183, 0, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
}

.hero-stat .num {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-stat .lbl {
  font-size: 12px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card), 0 0 80px rgba(255, 77, 0, 0.2);
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,5,5,0.7) 100%);
  pointer-events: none;
}
.hero-visual-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--f-display);
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* ---------- Sections ---------- */
section { padding: 56px 0; position: relative; }
section.tight { padding: 36px 0; }

.section-head { margin-bottom: 36px; max-width: 760px; }
.section-eyebrow {
  font-family: var(--f-display);
  letter-spacing: 0.25em;
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--accent);
}

h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  margin: 28px 0 12px;
  color: var(--text-light);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

p { margin: 0 0 16px; }

ul, ol { margin: 0 0 20px; padding-left: 22px; }
li { margin-bottom: 10px; color: var(--text); }
ul li::marker { color: var(--accent); }
ol li::marker { color: var(--accent); font-weight: 700; font-family: var(--f-display); }

strong { color: var(--text-light); font-weight: 600; }

/* ---------- Stats strip (reel-style) ---------- */
.reel-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background:
    repeating-linear-gradient(90deg,
      rgba(255,215,0,0.03) 0 1px,
      transparent 1px 24px),
    linear-gradient(180deg, var(--bg-card), #2c0707);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.reel-strip::before, .reel-strip::after {
  content: "";
  position: absolute;
  top: 8px; bottom: 8px; width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-radius: 4px;
}
.reel-strip::before { left: 8px; }
.reel-strip::after { right: 8px; }

.reel-cell {
  padding: 14px 8px;
  text-align: center;
  border-right: 1px dashed var(--border);
}
.reel-cell:last-child { border-right: none; }
.reel-cell .icon { font-size: 28px; margin-bottom: 6px; line-height: 1; }
.reel-cell .num {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
}
.reel-cell .lbl {
  font-size: 11px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 6px;
}

/* ---------- Two-col content ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, #2a0606 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.feature-card .ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--bg-surf), #4a0a0a);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-card h3 { margin: 0 0 8px; font-size: 22px; }
.feature-card p { color: var(--text2); margin: 0; font-size: 15px; }

/* ---------- Table ---------- */
.spec-table-wrap {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}
table.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.spec-table th, .spec-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.spec-table th {
  background: linear-gradient(180deg, var(--bg-surf), #5a0c0c);
  font-family: var(--f-display);
  letter-spacing: 0.05em;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-light);
  text-transform: uppercase;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: rgba(255, 183, 0, 0.05); }
.spec-table td strong { color: var(--accent); }

/* ---------- Callout ---------- */
.callout {
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--accent);
  background: linear-gradient(90deg, rgba(255, 183, 0, 0.08), transparent 80%);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 28px 0;
}
.callout strong { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 50px 22px 4px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text);
  position: relative;
  list-style: none;
  text-transform: uppercase;
  transition: color .15s ease;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body {
  padding: 0 4px 22px;
  color: var(--text2);
  font-size: 16px;
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 77, 0, 0.35), transparent 60%),
    linear-gradient(180deg, var(--bg-surf), var(--bg-card));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "🍒";
  position: absolute;
  font-size: 80px;
  opacity: 0.14;
  filter: hue-rotate(-10deg);
}
.cta-banner::before { top: -10px; left: 20px; }
.cta-banner::after { bottom: -20px; right: 20px; }
.cta-banner h2 { position: relative; }
.cta-banner p { color: var(--text2); max-width: 600px; margin: 0 auto 24px; position: relative; }

/* ---------- Author block ---------- */
.author-block {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-card), #2c0707);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px;
  margin: 56px 0 0;
}
.author-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 0 30px rgba(255, 183, 0, 0.35);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-meta .role {
  font-family: var(--f-display);
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.author-meta h4 {
  font-family: var(--f-display);
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.author-meta p {
  color: var(--text2);
  font-size: 15px;
  margin: 0;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 16px 0 0;
  font-size: 13px;
  color: var(--text2);
  letter-spacing: 0.04em;
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumbs li { margin: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: 8px; color: var(--accent); }
.breadcrumbs a { color: var(--text2); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current="page"] { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-strong);
  padding: 50px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
.footer-col h5 {
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: var(--text2); font-size: 14px; }
.footer-col a:hover { color: var(--accent); }
.footer-about p { color: var(--text2); font-size: 14px; }

.footer-bar {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.footer-bar small { color: var(--text2); font-size: 13px; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent-red);
  color: var(--accent-red);
  font-family: var(--f-display);
  font-size: 15px;
  background: rgba(255, 42, 42, 0.08);
}
.footer-disclaimer {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 42, 42, 0.06);
  border-left: 3px solid var(--accent-red);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text2);
}

/* ---------- 404 ---------- */
.error-wrap {
  display: grid;
  place-items: center;
  min-height: 60vh;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-family: var(--f-display);
  font-size: clamp(120px, 22vw, 240px);
  line-height: 0.85;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 12px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 50px 0 30px;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: 0.02em;
  margin: 14px 0 16px;
  line-height: 1;
  text-transform: uppercase;
}
.page-hero p.lead {
  color: var(--text2);
  font-size: 17px;
  max-width: 680px;
}
.page-hero-img {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  max-height: 380px;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; max-height: 380px; }

/* ---------- Article prose ---------- */
.prose { max-width: 880px; }
.prose p { color: var(--text2); font-size: 16px; }
.prose ul li, .prose ol li { color: var(--text2); }
.prose ul li strong, .prose ol li strong { color: var(--text-light); }

/* ---------- External link icon ---------- */
a.ext::after {
  content: " ↗";
  font-size: 0.85em;
  color: var(--accent);
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card h3 { margin-top: 0; }
.contact-card .row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.contact-card .row:last-child { border-bottom: none; }
.contact-card .row .ic {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--bg-surf);
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-card .row .meta { font-size: 14px; color: var(--text2); }
.contact-card .row .meta strong { display: block; color: var(--text-light); margin-bottom: 2px; font-family: var(--f-display); letter-spacing: 0.05em; font-size: 15px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse > :first-child { order: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reel-strip { grid-template-columns: repeat(2, 1fr); }
  .reel-cell:nth-child(2) { border-right: none; }
  .reel-cell:nth-child(-n+2) { border-bottom: 1px dashed var(--border); padding-bottom: 18px; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-strong);
    flex-direction: column;
    align-items: stretch;
    padding: 16px var(--gutter);
    gap: 14px;
    transform: translateY(-200%);
    transition: transform .25s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.6);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a:not(.play-btn) { padding: 10px 0; border-bottom: 1px dashed var(--border); }
  .main-nav .play-btn { align-self: flex-start; }
  .hero { padding: 40px 0; }
  section { padding: 40px 0; }
  .author-block { grid-template-columns: 1fr; text-align: center; }
  .author-avatar { margin: 0 auto; width: 120px; height: 120px; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat:last-child { grid-column: 1 / -1; }
  .btn { font-size: 16px; padding: 12px 22px; }
  h1.hero-title { font-size: 44px; }
  .cta-banner { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .reel-strip { grid-template-columns: 1fr 1fr; padding: 16px; }
  .spec-table th, .spec-table td { padding: 10px 12px; font-size: 14px; }
  .faq-item summary { font-size: 18px; padding-right: 40px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* Focus states for a11y */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
