/* ============================================================
   IrelandTV — design system
   Aesthetic: "broadcast dark" — cinematic near-black with a
   refined emerald accent, warm paper sections for trust content.
   Type: Bricolage Grotesque (display) / Instrument Sans (body)
   ============================================================ */

/* ---------- fonts ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/bricolage-grotesque.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/instrument-sans.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/instrument-sans-italic.woff2') format('woff2');
}

/* ---------- tokens ---------- */
:root {
  --ink: #0b1310;
  --ink-2: #101b16;
  --ink-3: #16241d;
  --paper: #f6f4ee;
  --card: #ffffff;

  --green-300: #7fdcae;
  --green-400: #46c98a;
  --green-500: #2bb673;
  --green-600: #1c9a5e;
  --green-700: #157a4b;
  --green-900: #0d3d27;
  --gold: #e2aa4f;

  --t-strong-dark: #eef4ef;
  --t-soft-dark: #a3b6ab;
  --t-faint-dark: #6d8177;
  --t-strong-light: #15211b;
  --t-soft-light: #4f6157;
  --t-faint-light: #7d8d84;

  --line-dark: rgba(238, 244, 239, 0.1);
  --line-light: rgba(21, 33, 27, 0.12);

  --font-display: 'Bricolage Grotesque', 'Avenir Next', 'Trebuchet MS', sans-serif;
  --font-body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-card: 0 1px 2px rgba(21, 33, 27, 0.05), 0 12px 32px -12px rgba(21, 33, 27, 0.14);
  --shadow-pop: 0 24px 64px -16px rgba(4, 12, 8, 0.55);

  --wrap: 1120px;
  --gutter: clamp(20px, 4.5vw, 40px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--t-strong-light);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 0.5em; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--green-500); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 28px;
  min-height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--t-strong-dark);
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  letter-spacing: -0.01em;
}
.logo svg { width: 30px; height: 30px; }
.logo b { color: var(--green-400); font-weight: 700; }

.main-nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.main-nav a {
  color: var(--t-soft-dark); text-decoration: none;
  font-size: 15px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: var(--t-strong-dark); background: rgba(255,255,255,0.06); }
.main-nav .nav-cta { margin-left: 10px; }
.main-nav a.nav-cta { color: #08120c; }
.main-nav a.nav-cta:hover { color: #08120c; background: var(--green-400); }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--line-dark); border-radius: 8px;
  width: 42px; height: 42px; color: var(--t-strong-dark);
  align-items: center; justify-content: center;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 16px; text-decoration: none;
  border-radius: 10px; border: 1px solid transparent;
  padding: 13px 24px; transition: transform 0.12s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--green-500); color: #08120c;
  box-shadow: 0 8px 24px -8px rgba(43, 182, 115, 0.55);
}
.btn-primary:hover { background: var(--green-400); }
.btn-ghost { border-color: var(--line-dark); color: var(--t-strong-dark); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { border-color: rgba(238,244,239,0.3); background: rgba(255,255,255,0.07); }
.btn-light-ghost { border-color: var(--line-light); color: var(--t-strong-light); background: transparent; }
.btn-light-ghost:hover { border-color: var(--t-soft-light); }
.btn-lg { padding: 16px 30px; font-size: 17px; border-radius: 12px; }
.btn-sm { padding: 9px 16px; font-size: 14.5px; border-radius: 8px; }
.btn[aria-disabled="true"], .btn:disabled { opacity: 0.55; pointer-events: none; }

/* ---------- dark / light section shells ---------- */
.dark {
  background:
    radial-gradient(1100px 500px at 78% -10%, rgba(43, 182, 115, 0.13), transparent 60%),
    radial-gradient(800px 420px at 12% 110%, rgba(43, 182, 115, 0.07), transparent 60%),
    var(--ink);
  color: var(--t-strong-dark);
  position: relative;
}
.dark::after { /* film grain */
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.dark > * { position: relative; z-index: 1; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark .muted { color: var(--t-soft-dark); }

.light { background: var(--paper); color: var(--t-strong-light); }
.light .muted { color: var(--t-soft-light); }

section { padding: clamp(64px, 9vw, 110px) 0; }
.section-tight { padding: clamp(44px, 6vw, 72px) 0; }

.kicker {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green-600); margin-bottom: 14px;
}
.dark .kicker { color: var(--green-400); }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; }
.section-head p { font-size: 18px; color: var(--t-soft-light); }
.dark .section-head p { color: var(--t-soft-dark); }
.section-head.centered { margin-inline: auto; text-align: center; }

/* ---------- hero ---------- */
.hero { overflow: hidden; padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 110px); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(36px, 6vw, 72px); align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 60px); font-weight: 750;
  letter-spacing: -0.025em; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--green-400); }
.hero .lede { font-size: clamp(17px, 2vw, 19.5px); color: var(--t-soft-dark); max-width: 34em; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-assurance {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 14.5px; color: var(--t-soft-dark); padding: 0; margin: 0; list-style: none;
}
.hero-assurance li { display: flex; align-items: center; gap: 8px; }
.hero-assurance svg { width: 16px; height: 16px; color: var(--green-400); flex: none; }

/* entrance */
@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .rise-1 { animation-delay: 0.05s; } .rise-2 { animation-delay: 0.14s; }
  .rise-3 { animation-delay: 0.23s; } .rise-4 { animation-delay: 0.32s; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}

/* ---------- TV mockup ---------- */
.tv-stage { position: relative; }
.tv-glow {
  position: absolute; inset: -12% -8%;
  background: radial-gradient(closest-side, rgba(43,182,115,0.22), transparent 70%);
  filter: blur(10px);
}
.tv {
  position: relative; border-radius: var(--radius-l);
  background: linear-gradient(165deg, #16231c, #0d1712 58%);
  border: 1px solid rgba(238,244,239,0.14);
  box-shadow: var(--shadow-pop);
  padding: 14px;
}
.tv-topbar { display: flex; align-items: center; gap: 10px; padding: 4px 6px 12px; }
.tv-topbar .live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; color: #ffb4ab;
}
.tv-topbar .live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: #ff5d52;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.tv-topbar .tv-title { font-size: 12.5px; color: var(--t-soft-dark); font-weight: 500; }
.tv-topbar .tv-clock { margin-left: auto; font-size: 12px; color: var(--t-faint-dark); font-variant-numeric: tabular-nums; }

.tv-screen {
  border-radius: 12px; aspect-ratio: 16 / 8.4; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 130% at 18% 8%, #2f7a54 0%, transparent 52%),
    radial-gradient(110% 120% at 88% 30%, #12433c 0%, transparent 58%),
    radial-gradient(130% 150% at 55% 115%, #061a10 20%, transparent 70%),
    linear-gradient(150deg, #0f3d2a, #071410 75%);
}
.tv-screen::before { /* aurora sweep */
  content: ''; position: absolute; inset: -40%;
  background: conic-gradient(from 210deg at 60% 40%, transparent 0 40%, rgba(127,220,174,0.16) 47%, transparent 56%, rgba(226,170,79,0.08) 66%, transparent 75%);
  animation: drift 14s linear infinite;
}
@keyframes drift { to { transform: rotate(360deg); } }
.tv-screen::after { /* scanlines */
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
}
.tv-screen-meta {
  position: absolute; left: 18px; bottom: 16px; right: 18px; z-index: 2;
}
.tv-screen-meta .chip-row { display: flex; gap: 8px; margin-bottom: 10px; }
.tv-chip {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 5px;
  background: rgba(6, 16, 11, 0.68); color: var(--green-300);
  border: 1px solid rgba(127, 220, 174, 0.25);
}
.tv-progress { height: 3px; border-radius: 99px; background: rgba(255,255,255,0.18); overflow: hidden; }
.tv-progress i { display: block; height: 100%; width: 38%; background: var(--green-400); border-radius: 99px; }

.tv-rows { display: grid; gap: 8px; padding: 14px 6px 6px; }
.tv-row {
  display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center;
  padding: 9px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.05);
}
.tv-row.active { background: rgba(43,182,115,0.12); border-color: rgba(43,182,115,0.3); }
.tv-row .dot {
  width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; color: #0a130e;
}
.tv-row .bars { display: grid; gap: 6px; }
.tv-row .bars i { display: block; height: 7px; border-radius: 99px; background: rgba(255,255,255,0.16); }
.tv-row .bars i:last-child { width: 55%; background: rgba(255,255,255,0.09); }
.tv-row .hd {
  font-size: 10px; font-weight: 700; color: var(--t-faint-dark);
  border: 1px solid var(--line-dark); padding: 2px 6px; border-radius: 4px;
}
.tv-row.active .hd { color: var(--green-300); border-color: rgba(127,220,174,0.35); }

/* floating device chips beside TV */
.float-chip {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(13, 22, 17, 0.92); border: 1px solid rgba(238,244,239,0.16);
  border-radius: 99px; padding: 8px 14px 8px 10px;
  font-size: 13px; font-weight: 600; color: var(--t-strong-dark);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}
.float-chip svg { width: 18px; height: 18px; color: var(--green-400); }
.float-chip.fc-1 { top: -16px; right: 26px; }
.float-chip.fc-2 { bottom: 34px; left: -18px; }
@media (prefers-reduced-motion: no-preference) {
  .float-chip { animation: bob 5.5s ease-in-out infinite; }
  .float-chip.fc-2 { animation-delay: -2.7s; }
  @keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
}

/* ---------- logo-strip / players row ---------- */
.player-strip { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 22px 0; }
.player-strip .wrap { display: flex; align-items: center; gap: clamp(16px, 3.5vw, 40px); flex-wrap: wrap; justify-content: center; }
.player-strip .label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t-faint-dark); font-weight: 600; }
.player-strip a {
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px;
  color: var(--t-soft-dark); text-decoration: none; transition: color 0.15s;
}
.player-strip a:hover { color: var(--green-300); }

/* ---------- cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line-light);
  border-radius: var(--radius-m); padding: 28px;
  box-shadow: var(--shadow-card);
}
.card h3 { font-size: 20px; font-weight: 650; margin-bottom: 8px; }
.card p { color: var(--t-soft-light); font-size: 15.5px; margin: 0; }
.card .icon {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 18px;
  background: color-mix(in srgb, var(--green-500) 13%, white);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
}
.card .icon svg { width: 22px; height: 22px; }

.dark .card { background: var(--ink-2); border-color: var(--line-dark); box-shadow: none; }
.dark .card h3 { color: var(--t-strong-dark); }
.dark .card p { color: var(--t-soft-dark); }
.dark .card .icon { background: rgba(43,182,115,0.13); color: var(--green-300); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 26px 22px 24px; border-radius: var(--radius-m); background: var(--card); border: 1px solid var(--line-light); box-shadow: var(--shadow-card); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 750; font-size: 15px;
  color: var(--green-600); display: block; margin-bottom: 14px;
}
.step h3 { font-size: 18px; font-weight: 650; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--t-soft-light); margin: 0; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line-light);
  border-radius: var(--radius-m); padding: 26px 24px 24px;
  box-shadow: var(--shadow-card);
}
.price-card .term { font-weight: 600; font-size: 15.5px; color: var(--t-soft-light); }
.price-card .amount { font-family: var(--font-display); font-weight: 750; font-size: 40px; letter-spacing: -0.02em; margin: 10px 0 2px; color: var(--t-strong-light); }
.price-card .amount small { font-size: 17px; font-weight: 600; color: var(--t-faint-light); letter-spacing: 0; }
.price-card .permo { font-size: 14px; color: var(--t-faint-light); margin-bottom: 18px; }
.price-card ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 9px; font-size: 14.5px; color: var(--t-soft-light); }
.price-card ul li { display: flex; gap: 9px; align-items: flex-start; }
.price-card ul svg { width: 15px; height: 15px; color: var(--green-600); flex: none; margin-top: 3px; }
.price-card .btn { margin-top: auto; }
.price-card.featured {
  border: 2px solid var(--green-600);
  box-shadow: 0 18px 48px -18px rgba(28, 154, 94, 0.35);
}
.price-card .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green-600); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 12px; border-radius: 99px; white-space: nowrap;
}
.price-note { text-align: center; font-size: 14.5px; color: var(--t-soft-light); margin-top: 26px; }

/* ---------- checklist split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; }
.checklist svg { width: 20px; height: 20px; color: var(--green-500); flex: none; margin-top: 2px; }
.checklist b { display: block; font-weight: 650; }
.checklist span { color: var(--t-soft-dark); font-size: 15px; }
.light .checklist span { color: var(--t-soft-light); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--card); border: 1px solid var(--line-light);
  border-radius: var(--radius-s); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-weight: 600; font-size: 16.5px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: none; width: 10px; height: 10px;
  border-right: 2px solid var(--t-faint-light); border-bottom: 2px solid var(--t-faint-light);
  transform: rotate(45deg); transition: transform 0.2s; margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--t-soft-light); font-size: 15.5px; }
.faq details p + p { padding-top: 10px; }
.dark .faq details { background: var(--ink-2); border-color: var(--line-dark); }
.dark .faq details p { color: var(--t-soft-dark); }

/* ---------- final CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 750; letter-spacing: -0.02em; max-width: 17em; margin-inline: auto; }
.cta-band p { color: var(--t-soft-dark); font-size: 18px; max-width: 36em; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line-dark); padding: 52px 0 40px; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.site-footer .col-h { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t-faint-dark); margin-bottom: 14px; font-family: var(--font-body); font-weight: 600; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: var(--t-soft-dark); text-decoration: none; }
.site-footer a:hover { color: var(--t-strong-dark); }
.footer-brand p { color: var(--t-soft-dark); max-width: 30em; margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--t-faint-dark); font-size: 13.5px;
}

/* ---------- forms ---------- */
.form-shell { max-width: 680px; margin-inline: auto; }
.form-card {
  background: var(--card); border: 1px solid var(--line-light);
  border-radius: var(--radius-l); padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-card);
  color: var(--t-strong-light);
}
.dark .form-card h1, .dark .form-card h2, .dark .form-card h3 { color: var(--t-strong-light); }
.dark .form-card .muted { color: var(--t-soft-light); }
.form-progress { display: flex; gap: 8px; margin-bottom: 28px; }
.form-progress i { height: 4px; flex: 1; border-radius: 99px; background: var(--line-light); }
.form-progress i.done { background: var(--green-600); }
.form-step-label { font-size: 13.5px; font-weight: 600; color: var(--green-700); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.form-card h2, .form-card h1 { font-size: clamp(23px, 3vw, 28px); font-weight: 700; margin-bottom: 22px; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 26px; }
.opt {
  position: relative; display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line-light); border-radius: 12px;
  padding: 15px 16px; cursor: pointer; background: #fff;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  font-weight: 550;
}
.opt:hover { border-color: var(--t-faint-light); }
.opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.opt .opt-ic { width: 34px; height: 34px; border-radius: 9px; background: var(--paper); display: flex; align-items: center; justify-content: center; color: var(--t-soft-light); flex: none; }
.opt .opt-ic svg { width: 18px; height: 18px; }
.opt small { display: block; font-weight: 450; color: var(--t-faint-light); font-size: 13px; }
.opt:has(input:checked) {
  border-color: var(--green-600); background: color-mix(in srgb, var(--green-500) 7%, white);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green-500) 18%, transparent);
}
.opt:has(input:checked) .opt-ic { background: var(--green-600); color: #fff; }
.opt:has(input:focus-visible) { outline: 2px solid var(--green-500); outline-offset: 2px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 7px; }
.field label small { color: var(--t-faint-light); font-weight: 450; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px;
  border: 1.5px solid var(--line-light); border-radius: 10px;
  padding: 13px 15px; background: #fff; color: var(--t-strong-light);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green-500) 18%, transparent);
}
.field .err { display: none; color: #c03e2e; font-size: 13.5px; margin-top: 6px; }
.field.invalid input, .field.invalid select { border-color: #c03e2e; }
.field.invalid .err { display: block; }

.form-nav { display: flex; gap: 12px; justify-content: space-between; align-items: center; margin-top: 6px; }
.form-nav .spacer { flex: 1; }
.form-note { font-size: 13.5px; color: var(--t-faint-light); margin-top: 18px; display: flex; gap: 8px; align-items: flex-start; }
.form-note svg { width: 15px; height: 15px; flex: none; margin-top: 2px; color: var(--green-600); }
.form-error-banner {
  display: none; background: #fdf0ee; border: 1px solid #e8b4ac; color: #8f3226;
  border-radius: 10px; padding: 13px 16px; font-size: 14.5px; margin-bottom: 18px;
}
.form-error-banner.show { display: block; }

/* honeypot — hidden from humans, present for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 6vw, 64px); }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 46px); font-weight: 750; letter-spacing: -0.02em; max-width: 20em; }
.page-hero .lede { font-size: 18.5px; color: var(--t-soft-dark); max-width: 38em; }
.breadcrumbs { font-size: 13.5px; color: var(--t-faint-dark); margin-bottom: 18px; }
.breadcrumbs a { color: var(--t-soft-dark); text-decoration: none; }
.breadcrumbs a:hover { color: var(--t-strong-dark); }

/* ---------- players hub ---------- */
.player-card {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--card); border: 1px solid var(--line-light);
  border-radius: var(--radius-m); padding: 26px; box-shadow: var(--shadow-card);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.player-card:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -16px rgba(21,33,27,0.2); border-color: var(--green-600); }
.player-card .mark {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 18px;
  font-family: var(--font-display); font-weight: 750; font-size: 18px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.player-card h3 { font-size: 19px; margin-bottom: 6px; }
.player-card p { font-size: 14.5px; color: var(--t-soft-light); margin: 0 0 16px; }
.player-card .devices { font-size: 12.5px; color: var(--t-faint-light); margin-top: auto; }
.player-card .go { color: var(--green-700); font-weight: 600; font-size: 14.5px; margin-top: 8px; }

/* device chips row */
.device-row { display: flex; flex-wrap: wrap; gap: 10px; }
.device-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-light); border-radius: 99px;
  padding: 8px 15px; font-size: 14px; font-weight: 550; background: #fff; color: var(--t-soft-light);
}
.device-chip svg { width: 16px; height: 16px; color: var(--green-600); }
.dark .device-chip { background: var(--ink-2); border-color: var(--line-dark); color: var(--t-soft-dark); }
.dark .device-chip svg { color: var(--green-400); }

/* ---------- prose (legal pages) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 23px; margin-top: 40px; }
.prose h3 { font-size: 18px; margin-top: 28px; }
.prose p, .prose li { color: var(--t-soft-light); font-size: 15.5px; }
.prose ul { padding-left: 22px; }
.prose strong { color: var(--t-strong-light); }
.prose .updated { font-size: 13.5px; color: var(--t-faint-light); }
.prose a { color: var(--green-700); }

/* ---------- consent banner ---------- */
.consent {
  position: fixed; z-index: 90; left: 16px; right: 16px; bottom: 16px;
  max-width: 480px; margin-inline: auto;
  background: #101b16; color: var(--t-strong-dark);
  border: 1px solid rgba(238,244,239,0.16); border-radius: 14px;
  padding: 20px 22px; box-shadow: 0 24px 64px -12px rgba(0,0,0,0.6);
  display: none;
}
.consent.show { display: block; }
.consent p { font-size: 14px; color: var(--t-soft-dark); margin: 0 0 14px; }
.consent p a { color: var(--green-300); }
.consent .consent-actions { display: flex; gap: 10px; }
.consent .btn { padding: 9px 18px; font-size: 14px; flex: 1; }

/* ---------- mobile sticky CTA ---------- */
.mobile-cta {
  display: none; position: fixed; z-index: 70; left: 0; right: 0; bottom: 0;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(12px); border-top: 1px solid var(--line-dark);
}
.mobile-cta .btn { width: 100%; }

/* ---------- utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center;
  font-size: 14px; color: var(--t-soft-light);
}
.trust-row span { display: inline-flex; gap: 8px; align-items: center; }
.trust-row svg { width: 16px; height: 16px; color: var(--green-600); }
.dark .trust-row { color: var(--t-soft-dark); }
.dark .trust-row svg { color: var(--green-400); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1023px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .hero .lede { font-size: 16.5px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .tv-stage { margin-top: 10px; }
  .float-chip.fc-2 { left: -6px; }
  .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .opt-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }

  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--ink-2); border-bottom: 1px solid var(--line-dark);
    padding: 12px var(--gutter) 18px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 12px; font-size: 16px; }
  .main-nav .nav-cta { margin: 10px 0 0; text-align: center; }
  .nav-toggle { display: flex; }

  .mobile-cta.enabled { display: block; }
  body.has-mobile-cta { padding-bottom: 76px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
}
