:root {
  --bg: #070708;
  --bg-soft: #0d0d10;
  --surface: #121216;
  --surface-2: #19191f;
  --line: rgba(255, 255, 255, .10);
  --text: #f7f7f8;
  --muted: #aaaab4;
  --red: #e50914;
  --red-bright: #ff3340;
  --red-dark: #8f0710;
  --green: #25d366;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 2%, rgba(229, 9, 20, .17), transparent 28%),
    radial-gradient(circle at 0% 46%, rgba(143, 7, 16, .12), transparent 24%),
    linear-gradient(180deg, #08080a, #060607 54%, #09090b);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  color: #fff;
  background: var(--red);
  border-radius: 10px;
}

.skip-link:focus { top: 18px; }

.container { width: var(--container); margin-inline: auto; }

.topbar {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 20px;
  text-align: center;
  background: linear-gradient(90deg, #85030b, var(--red), #85030b);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 8, .82);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 176px; height: auto; }

.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links a { color: #d8d8de; font-size: .92rem; font-weight: 650; transition: .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }

.nav-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: var(--surface);
  cursor: pointer;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--red-bright), var(--red)); box-shadow: 0 12px 30px rgba(229, 9, 20, .25); }
.btn-primary:hover { box-shadow: 0 16px 38px rgba(229, 9, 20, .38); }
.btn-secondary { color: #fff; border-color: var(--line); background: rgba(255, 255, 255, .055); }
.btn-whatsapp { color: #061c0e; background: var(--green); }
.btn-sm { min-height: 43px; padding-inline: 17px; font-size: .9rem; }

.hero {
  position: relative;
  min-height: 715px;
  display: grid;
  align-items: center;
  padding: 92px 0 74px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(transparent, var(--bg));
}

.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #ff767f;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 25px; height: 2px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6.4vw, 6rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 span, .accent { color: var(--red-bright); }

.hero-copy > p { max-width: 650px; margin-bottom: 30px; color: #c2c2ca; font-size: clamp(1rem, 2vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.microproof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 27px; color: #c0c0c8; font-size: .84rem; }
.microproof span { display: inline-flex; align-items: center; gap: 7px; }
.microproof span::before { content: "✓"; color: #ff6c75; font-weight: 900; }

.hero-stage { position: relative; min-height: 520px; }
.hero-photo { position: relative; justify-self: end; width: min(88%, 540px); overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,.13); border-radius: 30px; background: #09090b; box-shadow: 0 35px 110px rgba(0,0,0,.62), 0 0 70px rgba(229,9,20,.12); transform: rotate(1.2deg); }
.hero-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.78)); }
.hero-photo img { width: 100%; min-height: 390px; object-fit: cover; display: block; }
.hero-photo figcaption { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.hero-photo figcaption strong { font-size: 1.05rem; }
.hero-photo figcaption span { color: #c0c0c8; font-size: .75rem; }
.glow { position: absolute; inset: 12% 3% 8%; z-index: -1; border-radius: 50%; background: rgba(229, 9, 20, .25); filter: blur(70px); }

.screen {
  position: absolute;
  inset: 45px 0 58px 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: #0b0b0d;
  box-shadow: var(--shadow), 0 0 0 8px rgba(255,255,255,.025);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.screen-top { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--line); background: #101014; }
.screen-brand { font-size: .92rem; font-weight: 900; }
.screen-brand span { color: var(--red); }
.screen-search { width: 110px; height: 11px; border-radius: 99px; background: #26262d; }
.screen-body { padding: 22px; }
.featured-card { min-height: 190px; display: flex; align-items: flex-end; padding: 24px; border-radius: 18px; background: radial-gradient(circle at 78% 28%, rgba(255,75,84,.75), transparent 16%), linear-gradient(120deg, #19191e 0%, #3c070b 60%, #8a0710); }
.featured-card small { color: #ffb0b5; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.featured-card h3 { max-width: 250px; margin: 6px 0 0; font-size: 1.55rem; line-height: 1.1; }
.poster-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-top: 15px; }
.poster { aspect-ratio: 2 / 3; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: linear-gradient(155deg, var(--poster-a), var(--poster-b)); }
.poster:nth-child(1) { --poster-a:#64111a; --poster-b:#101014; }
.poster:nth-child(2) { --poster-a:#391217; --poster-b:#a40b15; }
.poster:nth-child(3) { --poster-a:#22242d; --poster-b:#55070c; }
.poster:nth-child(4) { --poster-a:#950a13; --poster-b:#16161b; }

.float-pill {
  position: absolute;
  z-index: 3;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(18,18,22,.9);
  box-shadow: 0 16px 40px rgba(0,0,0,.32);
  backdrop-filter: blur(15px);
  font-size: .82rem;
  font-weight: 800;
}
.float-pill.live { top: 19px; right: -6px; }
.float-pill.live::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 6px rgba(255,51,64,.12); }
.float-pill.device { bottom: 18px; left: -10px; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.022); }
.trust-grid { min-height: 94px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 15px 0; }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #ff747d; background: rgba(229,9,20,.11); font-size: 1.1rem; }
.trust-item strong { display: block; font-size: .9rem; }
.trust-item small { display: block; color: var(--muted); }

.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 15px; font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.section-head p { color: var(--muted); font-size: 1.03rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); box-shadow: 0 18px 50px rgba(0,0,0,.14); }
.feature-card { min-height: 270px; padding: 29px; }
.feature-card .icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 45px; border-radius: 15px; color: #fff; background: linear-gradient(145deg, var(--red-bright), var(--red-dark)); font-size: 1.25rem; }
.feature-card h3 { margin-bottom: 9px; font-size: 1.25rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.showcase { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 68px; }
.device-stack { position: relative; min-height: 470px; }
.tv-frame { position: absolute; inset: 20px 0 90px 0; display: grid; place-items: center; padding: 14px; border: 2px solid #36363e; border-radius: 24px; background: #0b0b0e; box-shadow: var(--shadow); }
.tv-view { width: 100%; height: 100%; display: grid; place-items: center; overflow: hidden; border-radius: 13px; background: radial-gradient(circle at 65% 40%, #d80a16 0, #4d070c 25%, #101014 70%); }
.play-mark { width: 86px; height: 86px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 28px; background: rgba(255,255,255,.09); box-shadow: 0 0 50px rgba(229,9,20,.45); font-size: 2rem; transform: rotate(45deg); }
.play-mark span { transform: rotate(-45deg); }
.tv-stand { position: absolute; left: 50%; bottom: 52px; width: 120px; height: 45px; border-bottom: 7px solid #303037; transform: translateX(-50%); }
.phone-frame { position: absolute; right: -10px; bottom: 20px; width: 150px; height: 290px; padding: 8px; border: 2px solid #42424c; border-radius: 27px; background: #08080a; box-shadow: -18px 15px 55px rgba(0,0,0,.6); }
.phone-view { width: 100%; height: 100%; border-radius: 20px; background: linear-gradient(160deg, #8d0710, #17171b 50%, #08080a); }
.real-tv-figure { justify-self: center; width: min(100%, 520px); overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 26px; background: #09090b; box-shadow: var(--shadow); }
.real-tv-figure img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.real-tv-figure figcaption { padding: 12px 16px; color: var(--muted); font-size: .75rem; }

.checklist { display: grid; gap: 15px; margin: 28px 0 0; padding: 0; list-style: none; }
.checklist li { display: grid; grid-template-columns: 29px 1fr; align-items: start; gap: 12px; color: #d6d6dc; }
.checklist li::before { content: "✓"; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; color: #ff8990; background: rgba(229,9,20,.12); font-weight: 900; }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { counter-increment: steps; position: relative; padding: 30px; }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 38px; color: #ff626c; font-size: .8rem; font-weight: 900; letter-spacing: .14em; }
.step h3 { margin-bottom: 10px; font-size: 1.25rem; }
.step p { margin: 0; color: var(--muted); }

.plans { align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 30px; }
.plan.featured { border-color: rgba(255,60,72,.65); background: linear-gradient(160deg, rgba(229,9,20,.17), rgba(255,255,255,.025) 55%); box-shadow: 0 24px 80px rgba(229,9,20,.12); }
.plan-badge { position: absolute; right: 18px; top: 18px; padding: 6px 9px; border-radius: 99px; color: #ffc8cb; background: rgba(229,9,20,.18); font-size: .65rem; font-weight: 900; letter-spacing: .08em; }
.plan h2, .plan h3 { margin-bottom: 7px; font-size: 1.35rem; }
.plan .price { margin: 15px 0 20px; font-size: 2.2rem; font-weight: 900; letter-spacing: -.05em; }
.plan .price small { color: var(--muted); font-size: .8rem; font-weight: 600; letter-spacing: 0; }
.plan ul { flex: 1; display: grid; gap: 10px; margin: 0 0 25px; padding: 0; color: #c4c4cc; list-style: none; }
.plan li::before { content: "✓ "; color: #ff6e77; font-weight: 900; }

.faq { max-width: 850px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; border: 0; color: #fff; background: transparent; text-align: left; font-weight: 800; cursor: pointer; }
.faq-icon { flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #ff737c; background: rgba(229,9,20,.11); transition: .2s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 42px 23px 0; margin: 0; color: var(--muted); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

.cta-box { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 44px; border: 1px solid rgba(255,84,94,.35); border-radius: 28px; background: radial-gradient(circle at 85% 15%, rgba(255,64,75,.24), transparent 30%), linear-gradient(135deg, #1a0a0d, #111114); box-shadow: var(--shadow); }
.cta-box h2 { margin-bottom: 8px; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.04; letter-spacing: -.045em; }
.cta-box p { margin: 0; color: var(--muted); }
.video-section { overflow: hidden; background: radial-gradient(circle at 70% 45%, rgba(229,9,20,.13), transparent 37%); }
.video-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 54px; }
.video-grid .section-head { margin: 0; }
.video-grid .section-head p { max-width: 540px; }
.video-frame { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: #050506; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.video-frame video { width: 100%; aspect-ratio: 16/9; display: block; object-fit: cover; }

.page-hero { padding: 95px 0 68px; text-align: center; }
.page-hero h1 { max-width: 900px; margin-inline: auto; font-size: clamp(3rem, 6vw, 5.5rem); }
.page-hero p { max-width: 720px; margin: 0 auto 28px; color: var(--muted); font-size: 1.08rem; }
.breadcrumbs { margin-bottom: 24px; color: #a2a2ab; font-size: .82rem; }
.breadcrumbs a:hover { color: #fff; }

.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.prose { color: #c8c8ce; }
.prose h2 { margin: 52px 0 14px; color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.1; letter-spacing: -.035em; }
.prose h3 { margin: 31px 0 10px; color: #fff; font-size: 1.3rem; }
.prose p, .prose li { max-width: 780px; }
.prose a { color: #ff7a83; text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.prose th, .prose td { padding: 14px; border: 1px solid var(--line); text-align: left; }
.prose th { color: #fff; background: var(--surface); }
.sidebar-card { position: sticky; top: 110px; padding: 26px; }
.sidebar-card h3 { margin-bottom: 10px; }
.sidebar-card p { color: var(--muted); font-size: .92rem; }

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { overflow: hidden; }
.post-cover { aspect-ratio: 16/9; display: grid; place-items: center; background: radial-gradient(circle at 70% 30%, rgba(255,70,80,.6), transparent 18%), linear-gradient(135deg, #3b080c, #111114 70%); font-size: 2.2rem; }
.post-body { padding: 24px; }
.post-meta { margin-bottom: 9px; color: #ff737c; font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.post-body h2, .post-body h3 { margin-bottom: 10px; font-size: 1.25rem; line-height: 1.25; }
.post-body p { color: var(--muted); font-size: .91rem; }
.text-link { color: #ff7b83; font-weight: 800; }

.guide-photo, .hub-photo { margin: 0 0 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #111116; box-shadow: var(--shadow); }
.guide-photo img, .hub-photo img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.guide-photo figcaption, .hub-photo figcaption { padding: 11px 15px; color: var(--muted); font-size: .76rem; }
.hub-photo { max-width: 920px; margin-inline: auto; }
.topic-groups { display: grid; gap: 26px; margin-top: 42px; }
.topic-group { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(229,9,20,.08), rgba(17,17,22,.96) 30%); }
.topic-group h2 { margin: 8px 0 20px; }
.topic-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.topic-list a { display: grid; gap: 5px; min-height: 96px; padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: rgba(7,7,10,.76); transition: border-color .2s ease, transform .2s ease; }
.topic-list a:hover { border-color: rgba(255,83,94,.7); transform: translateY(-2px); }
.topic-list strong { color: #fff; }
.topic-list span { color: var(--muted); font-size: .82rem; }
.related-guides { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); }
.sidebar-card small { display: block; margin-top: 14px; color: var(--muted); line-height: 1.5; }
.answer-box { margin: 0 0 30px; padding: 22px 24px; border-left: 4px solid var(--red); border-radius: 0 16px 16px 0; background: linear-gradient(90deg, rgba(229,9,20,.13), rgba(229,9,20,.03)); }
.answer-box span { display: block; margin-bottom: 7px; color: #ff7b83; font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.answer-box p { margin: 0; color: #f1f1f4; font-size: 1.04rem; line-height: 1.65; }
.article-meta { display: flex; flex-wrap: wrap; gap: 7px 18px; margin: -14px 0 32px; color: var(--muted); font-size: .78rem; }
.article-meta span + span::before { content: '•'; margin-right: 18px; color: #ff535e; }
.numbered-checklist { display: grid; gap: 10px; padding-left: 28px; }
.numbered-checklist li { padding-left: 6px; color: #d8d8de; }
.numbered-checklist li::marker { color: #ff535e; font-weight: 850; }
.national-intro { border-bottom: 1px solid var(--line); }

.form-card { max-width: 760px; margin-inline: auto; padding: 32px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #d4d4da; font-size: .85rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; outline: 0; color: #fff; background: #0d0d11; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(255,83,94,.72); box-shadow: 0 0 0 3px rgba(229,9,20,.1); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .78rem; }
.form-status { min-height: 24px; margin-top: 12px; color: #ff999f; font-size: .85rem; }

.legal { max-width: 860px; margin-inline: auto; }

.site-footer { margin-top: 85px; border-top: 1px solid var(--line); background: #08080a; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding: 58px 0 42px; }
.footer-brand img { width: 165px; margin-bottom: 17px; }
.footer-brand p { max-width: 360px; color: var(--muted); font-size: .9rem; }
.footer-col h3 { margin-bottom: 14px; font-size: .9rem; }
.footer-col a { display: block; width: fit-content; margin: 9px 0; color: var(--muted); font-size: .86rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 22px 0 30px; border-top: 1px solid var(--line); color: #777781; font-size: .76rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 60px; height: 60px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.92); border-radius: 50%; color: #fff; background: #25d366; box-shadow: 0 14px 38px rgba(37,211,102,.36); transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 45px rgba(37,211,102,.5); }
.whatsapp-float img { width: 30px; height: 34px; filter: brightness(0) invert(1); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .navbar > .btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; top: 116px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #101014; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .hero-grid, .showcase, .video-grid { grid-template-columns: 1fr; }
  .hero-stage { max-width: 630px; width: 100%; margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-col:last-child { grid-column: 2 / 4; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .topic-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }
  .topbar { font-size: .73rem; }
  .navbar { min-height: 68px; }
  .brand img { width: 150px; }
  .nav-links { top: 106px; left: 14px; right: 14px; }
  .hero { min-height: auto; padding: 72px 0 40px; }
  .hero-grid { gap: 30px; }
  h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .microproof { gap: 9px 18px; }
  .hero-stage { min-height: 390px; }
  .hero-photo { justify-self: center; width: min(94%, 520px); border-radius: 22px; transform: none; }
  .hero-photo img { min-height: 275px; }
  .hero-photo figcaption { left: 18px; right: 18px; bottom: 17px; align-items: start; flex-direction: column; gap: 4px; }
  .screen { inset: 38px 0 44px; transform: none; }
  .screen-top { height: 44px; }
  .screen-body { padding: 15px; }
  .featured-card { min-height: 135px; padding: 18px; }
  .featured-card h3 { font-size: 1.2rem; }
  .poster-row { gap: 7px; }
  .float-pill { font-size: .72rem; }
  .float-pill.live { right: -4px; }
  .float-pill.device { left: -4px; }
  .section { padding: 74px 0; }
  .section-sm { padding: 55px 0; }
  .section-head { margin-bottom: 28px; }
  .grid-3, .steps, .posts, .form-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .feature-card .icon { margin-bottom: 28px; }
  .trust-grid { grid-template-columns: 1fr; gap: 0; padding: 10px 0; }
  .trust-item { border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border: 0; }
  .device-stack { min-height: 360px; }
  .tv-frame { inset: 10px 0 75px; }
  .phone-frame { right: 4px; width: 108px; height: 215px; }
  .cta-box { grid-template-columns: 1fr; padding: 30px 24px; }
  .cta-box .btn { width: 100%; }
  .page-hero { padding: 72px 0 45px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .form-card { padding: 24px 18px; }
  .topic-group { padding: 22px 17px; }
  .topic-list { grid-template-columns: 1fr; }
}

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