/* CobraTV NZ — shared styles. Dark theme, teal accent. */
:root {
  --bg: #0A1929;
  --card: #0F2438;
  --card-2: #122B43;
  --accent: #0064D2;
  --accent-hover: #0078F0;
  --text: #FFFFFF;
  --muted: #B8C5D6;
  --border: rgba(255, 255, 255, 0.08);
  --danger: #FF6B6B;
  --ok: #4ADE80;
  --radius: 12px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(10, 25, 41, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}
.wordmark {
  font-size: 22px; letter-spacing: -0.02em; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.wordmark img { height: 68px; width: auto; display: block; }
.wordmark .pro { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: var(--text); font-weight: 600; opacity: 0.85; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block; cursor: pointer; border: none;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 12px 22px; border-radius: 999px;
  background: var(--accent); color: #FFFFFF;
  transition: background 0.15s ease, transform 0.05s ease;
}
.btn:hover { background: var(--accent-hover); color: #FFFFFF; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn.secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn.secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn.danger { background: transparent; color: var(--danger); border: 1px solid rgba(255,107,107,0.4); }
.btn.danger:hover { background: rgba(255,107,107,0.12); color: var(--danger); }
.btn.sm { padding: 8px 16px; font-size: 14px; }
.btn.block { display: block; width: 100%; text-align: center; }

/* Cards */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.card h2 { margin: 0 0 16px; font-size: 20px; }

/* Hero */
.hero { padding: 72px 0 48px; }
.hero h1 { font-size: clamp(34px, 6vw, 56px); margin: 0 0 18px; letter-spacing: -0.02em; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 620px; margin: 0 0 28px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.section { padding: 40px 0; }
.section h2 { font-size: 28px; margin: 0 0 8px; }
.section .sub { color: var(--muted); margin: 0 0 28px; }

.grid { display: grid; gap: 20px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Pricing table */
.pricing-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius); }
.pricing-table th, .pricing-table td { padding: 14px 18px; text-align: left; }
.pricing-table thead th { background: var(--card-2); color: var(--muted); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.pricing-table tbody tr { background: var(--card); border-top: 1px solid var(--border); }
.pricing-table tbody tr:first-child { border-top: none; }
.pricing-table .price { color: var(--accent); font-weight: 700; font-family: "Manrope", sans-serif; }
.pricing-table .per { color: var(--muted); font-size: 13px; }

.feature .ic { font-size: 26px; }
.feature h3 { margin: 10px 0 6px; font-size: 18px; }
.feature p { color: var(--muted); margin: 0; font-size: 15px; }

/* App download */
.store-row { display: flex; gap: 14px; flex-wrap: wrap; }
.store-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--card-2); color: var(--text); font-weight: 600;
}
.store-pill.disabled { opacity: 0.55; }
.store-pill .tag { font-size: 11px; color: var(--muted); font-weight: 500; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); margin-top: 48px; padding: 28px 0; color: var(--muted); font-size: 14px; }
.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Forms */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 11px 13px; font-family: inherit; font-size: 15px;
  background: var(--card-2); color: var(--text);
  border: 1px solid var(--border); border-radius: 8px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field .help { font-size: 13px; color: var(--muted); margin-top: 6px; }
.row { display: flex; gap: 12px; flex-wrap: wrap; }
.row .field { flex: 1; min-width: 160px; }

/* Auth box */
.auth-wrap { max-width: 440px; margin: 56px auto; }
.auth-wrap .card { padding: 32px; }
.auth-wrap h1 { font-size: 26px; margin: 0 0 6px; }
.auth-wrap p.sub { color: var(--muted); margin: 0 0 24px; font-size: 15px; }

/* Messages / pills */
.msg { padding: 12px 14px; border-radius: 8px; font-size: 14px; margin: 0 0 16px; }
.msg.error { background: rgba(255,107,107,0.12); color: var(--danger); border: 1px solid rgba(255,107,107,0.3); }
.msg.ok { background: rgba(74,222,128,0.12); color: var(--ok); border: 1px solid rgba(74,222,128,0.3); }
.msg.info { background: rgba(26,214,197,0.10); color: var(--accent); border: 1px solid rgba(26,214,197,0.25); }
.hidden { display: none !important; }

.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.badge.active { background: rgba(74,222,128,0.15); color: var(--ok); }
.badge.inactive { background: rgba(255,107,107,0.15); color: var(--danger); }

/* Dashboard layout */
.dash-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.dash-head { display: flex; justify-content: space-between; align-items: center; margin: 32px 0 4px; flex-wrap: wrap; gap: 12px; }
.dash-head h1 { font-size: 28px; margin: 0; }

.item-list { list-style: none; margin: 0 0 16px; padding: 0; }
.item-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 0; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.item-list li:first-child { border-top: none; }
.item-list .meta { color: var(--muted); font-size: 13px; }
.item-list .name { font-weight: 600; }

.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin-top: 8px; }
.plan-opt {
  cursor: pointer; text-align: center; padding: 16px 10px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--card-2); transition: border-color 0.15s;
}
.plan-opt:hover { border-color: var(--accent); }
.plan-opt .n { font-size: 22px; font-weight: 700; font-family: "Manrope", sans-serif; }
.plan-opt .lbl { font-size: 12px; color: var(--muted); }
.plan-opt .pr { color: var(--accent); font-weight: 700; margin-top: 6px; }
.plan-note { font-size: 11px; font-weight: 700; margin-top: 6px; letter-spacing: .02em; }
.plan-note.cur { color: var(--muted); }
.plan-note.up { color: var(--ok); }
.plan-note.down { color: var(--danger); }
.plan-opt.is-current { opacity: 0.6; border-color: var(--muted); cursor: default; }
.bill-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--border); }
.bill-row:first-child { border-top: none; }
.bill-row .meta { color: var(--muted); font-size: 13px; }

.muted { color: var(--muted); }
.spacer { height: 8px; }
.divider { height: 1px; background: var(--border); margin: 20px 0; }

@media (max-width: 680px) {
  .grid.cols-3 { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 32px; }
}

/* PIN modal + credential reveal */
dialog.pin-modal {
  border: none; border-radius: var(--radius); padding: 26px; max-width: 360px; width: 92%;
  background: var(--card); color: var(--text); border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0,0,0,0.6);
}
dialog.pin-modal::backdrop { background: rgba(0,0,0,0.6); }
dialog.pin-modal h2 { margin: 0 0 6px; font-size: 20px; }
dialog.pin-modal .sub { color: var(--muted); font-size: 14px; margin: 0; }
#pin-input {
  width: 100%; margin-top: 16px; text-align: center; letter-spacing: 14px;
  font-size: 26px; padding: 12px 14px; font-family: "Manrope", sans-serif;
  background: var(--card-2); color: var(--text); border: 1px solid var(--border); border-radius: 8px;
}
#pin-input:focus { outline: none; border-color: var(--accent); }
.cred-box {
  width: 100%; margin: 10px 0 2px; padding: 12px 14px;
  background: var(--card-2); border: 1px solid var(--border); border-radius: 10px; font-size: 14px;
}
.cred-box .crow { display: flex; gap: 10px; padding: 4px 0; align-items: baseline; }
.cred-box .ck { color: var(--muted); min-width: 90px; flex-shrink: 0; font-weight: 600; }
.cred-box .cv { font-family: ui-monospace, Menlo, Consolas, monospace; word-break: break-all; color: var(--text); }
.item-list .pl-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.item-list .lock-badge { font-size: 13px; }
.pin-check { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px; cursor: pointer; color: var(--text); font-size: 14px; font-weight: 500; }
.pin-check input { width: auto; margin: 0; accent-color: var(--accent); }
.pin-check .muted { font-weight: 400; }

/* ===================== Onboarding wizard ===================== */
.wiz-wrap { padding-bottom: 40px; }
.screen { animation: wizfade .22s ease; }
@keyframes wizfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.wiz-card { max-width: 460px; margin: 40px auto; padding: 32px; }
.wiz-card.wide { max-width: 660px; }
.wiz-card.center { text-align: center; }
.wiz-card h1 { font-size: 26px; margin: 0 0 8px; }
.wiz-card .sub { color: var(--muted); font-size: 15px; margin: 0 0 22px; }
.wiz-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 700;
}
.wiz-icon.ok { background: rgba(26,214,197,0.15); color: var(--accent); }
.wiz-icon.warn { background: rgba(255,107,107,0.15); color: var(--danger); }
.wiz-card.center .wiz-icon { margin-bottom: 18px; }
.wiz-card:not(.center) > .wiz-icon { margin-left: 0; }
.device-card {
  display: flex; flex-direction: column; gap: 4px; text-align: left;
  background: var(--card-2); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px; margin: 0 0 18px; font-size: 14px;
}
.device-card .dc-name { font-weight: 600; color: var(--text); }
.device-card .dc-meta { color: var(--muted); font-size: 13px; }
.device-card .dc-meta .code { font-family: ui-monospace, Menlo, Consolas, monospace; color: var(--text); }
.status-pill {
  display: inline-block; padding: 10px 16px; border-radius: 12px; margin: 0 0 20px;
  background: var(--card-2); border: 1px solid var(--border); font-size: 14px; color: var(--muted);
}
.status-pill.trial { background: rgba(26,214,197,0.10); border-color: rgba(26,214,197,0.3); color: var(--accent); }
.status-pill.expired { background: rgba(255,107,107,0.10); border-color: rgba(255,107,107,0.3); color: var(--danger); }
.status-pill strong { color: var(--text); }
.wiz-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.back-link { display: inline-block; color: var(--muted); font-weight: 600; margin: 0 0 14px; }
.back-link:hover { color: var(--text); text-decoration: none; }
.center { text-align: center; }
.block { display: block; }
/* Segmented tabs (Paste link | Manual setup) */
.seg { display: flex; gap: 6px; background: var(--card-2); border: 1px solid var(--border); border-radius: 12px; padding: 5px; margin: 0 0 18px; }
.seg-btn { flex: 1; background: transparent; color: var(--muted); border: none; padding: 10px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; }
.seg-btn.active { background: var(--accent); color: #FFFFFF; }
/* Detected summary */
.detected-badge { display: inline-flex; align-items: center; gap: 6px; color: var(--ok); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.kv-list { background: var(--card-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; margin: 0 0 18px; }
.kv-list .kv-row { display: flex; gap: 12px; padding: 6px 0; font-size: 14px; }
.kv-list .kv-row + .kv-row { border-top: 1px solid var(--border); }
.kv-list .kk { color: var(--muted); min-width: 90px; }
.kv-list .vv { color: var(--text); word-break: break-all; font-family: ui-monospace, Menlo, Consolas, monospace; }
.plan-grid.lg { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 12px; margin: 10px 0 18px; }
.plan-grid.lg .plan-opt { padding: 20px 12px; }
.plan-opt.most { border-color: var(--accent); position: relative; }
.plan-opt.most::before { content: 'Most popular'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #FFFFFF; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
@media (max-width: 520px) { .wiz-card { margin: 20px auto; padding: 24px 20px; } }

/* ===================== Manage-account dashboard ===================== */
.status-card { padding: 22px 24px; }
.status-main { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.status-ic { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; flex-shrink: 0; }
.status-ic.ok { background: rgba(74,222,128,0.15); color: var(--ok); }
.status-ic.warn { background: rgba(255,107,107,0.15); color: var(--danger); }
.status-text { flex: 1; min-width: 180px; }
.status-lbl { font-size: 13px; font-weight: 600; }
.status-lbl.trial, .status-lbl.paid { color: var(--ok); }
.status-lbl.expired { color: var(--danger); }
.status-big { font-size: 24px; font-weight: 700; font-family: "Manrope", sans-serif; margin: 2px 0; line-height: 1.2; }
.status-dev { min-width: 190px; }
.dev-line { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.dev-line strong { color: var(--text); }
.progress { height: 7px; background: var(--card-2); border-radius: 999px; overflow: hidden; }
.progress span { display: block; height: 100%; background: var(--accent); border-radius: 999px; transition: width .3s; }

.quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0; }
.qa { display: flex; align-items: center; gap: 13px; text-align: left; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; cursor: pointer; color: var(--text); transition: border-color .15s; }
.qa:hover { border-color: var(--accent); }
.qa-ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(26,214,197,0.15); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.qa-txt { display: flex; flex-direction: column; }
.qa-txt strong { font-size: 15px; }
.qa-txt small { color: var(--muted); font-size: 12.5px; }

.acct-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.dev-info { display: block; }
.this-badge { display: inline-block; font-size: 11px; font-weight: 600; color: var(--accent); background: rgba(26,214,197,0.12); border: 1px solid rgba(26,214,197,0.3); padding: 1px 8px; border-radius: 999px; vertical-align: middle; margin-left: 4px; }

.more-card { padding: 6px; }
.more-row { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; background: transparent; border: none; padding: 14px 12px; cursor: pointer; color: var(--text); border-radius: 10px; font-size: 15px; }
.more-row:hover { background: var(--card-2); text-decoration: none; }
.more-row + .more-row, #redeem-panel + .more-row { border-top: 1px solid var(--border); }
.mo-ic { font-size: 19px; width: 26px; text-align: center; }
.mo-txt { flex: 1; display: flex; flex-direction: column; }
.mo-txt strong { font-size: 15px; }
.mo-txt small { color: var(--muted); font-size: 12.5px; font-weight: 400; }
.mo-ar { color: var(--muted); font-size: 20px; }

@media (max-width: 760px) {
  .quick-actions { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .qa { flex-direction: column; text-align: center; padding: 16px 8px; gap: 8px; }
  .qa-txt { align-items: center; }
  .qa-txt small { display: none; }
  .acct-cols { grid-template-columns: 1fr; }
  .status-dev { width: 100%; }
}
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.card-head h2 { margin: 0; }
.cred-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
/* Playlists: always stack (name → meta → actions) so every row looks identical,
   no matter how long the provider URL is (avoids buttons wrapping inconsistently). */
#playlists-list li { flex-direction: column; align-items: flex-start; justify-content: flex-start; flex-wrap: nowrap; gap: 10px; }
#playlists-list li > span:first-child { width: 100%; }

/* ===================== Header (account/wizard pages) ===================== */
.header-acct { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); color: var(--text); }
.header-acct:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ===================== Dashboard top nav (5 tabs across the top) ===================== */
.dash-shell { margin-top: 28px; }
.dash-main .dash-head { margin-top: 0; }
.dash-nav { display: flex; gap: 6px; margin: 0 0 22px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 6px; }
.dnav { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 10px; border-radius: 10px; background: transparent; border: none; color: var(--muted); font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; }
.dnav:hover { background: var(--card-2); color: var(--text); }
.dnav.active { background: rgba(26,214,197,0.12); color: var(--accent); }
.dnav-ic { font-size: 16px; }
@media (max-width: 560px) {
  .dash-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .dnav { flex: 0 0 auto; }
  .dnav-ic { font-size: 18px; }
}

/* ===================== Credential reveal: masked password + Show toggle ===================== */
.cv .secret-real { font-family: ui-monospace, Menlo, Consolas, monospace; }
.secret-toggle { margin-left: 8px; background: transparent; border: 1px solid var(--border); color: var(--accent); border-radius: 6px; padding: 1px 9px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; vertical-align: middle; }
.secret-toggle:hover { border-color: var(--accent); }

/* ===================== Prominent PIN prompt (wizard) ===================== */
.pin-prompt { background: var(--card-2); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; margin: 4px 0 16px; }
.pin-prompt .pin-check { font-size: 15px; }
.pin-prompt-help { color: var(--muted); font-size: 13px; margin-top: 6px; padding-left: 28px; }

/* active download pill hover */
a.store-pill:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ===================== Marketing / features pages ===================== */
.eyebrow {
  display: inline-block; font-family: "Manrope", sans-serif; font-weight: 800;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px;
}
.trial-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(0,100,210,.12); border: 1px solid rgba(0,100,210,.35);
  color: #8FC0FF; padding: 7px 15px; border-radius: 999px;
  font-size: 13px; font-weight: 600; margin: 0 0 24px;
}
.trial-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(74,222,128,.2); }

/* Hero tweaks for the landing page */
.hero.big { padding: 84px 0 44px; }
.hero .lead.wide { max-width: 660px; }

.section.tight { padding: 30px 0; }
.section-head { max-width: 660px; margin: 0 0 32px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(26px, 4vw, 34px); margin: 0 0 10px; letter-spacing: -.02em; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

/* "Why it's different" contrast */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contrast .col { border: 1px solid var(--border); border-radius: 16px; padding: 26px; background: var(--card); }
.contrast .col.us { border-color: rgba(0,100,210,.4); background: linear-gradient(180deg, rgba(0,100,210,.09), transparent 70%); }
.contrast h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 16px; }
.contrast .them h3 { color: var(--muted); }
.contrast .us h3 { color: var(--accent); }
.contrast ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.contrast li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--muted); }
.contrast .us li { color: var(--text); }
.contrast .mk { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
.contrast .them .mk { background: rgba(255,107,107,.14); color: var(--danger); }
.contrast .us .mk { background: rgba(74,222,128,.15); color: var(--ok); }

/* Spotlight feature blocks */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.spot { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.spot.wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 34px; }
.spot .spot-txt { flex: 1; min-width: 0; }
.spot .eyebrow { margin-bottom: 10px; }
.spot h3 { font-size: 22px; margin: 0 0 8px; letter-spacing: -.01em; }
.spot p { color: var(--muted); margin: 0; font-size: 15.5px; }
.spot-visual { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* CSS device mockups */
.mock-tv { width: 320px; max-width: 100%; aspect-ratio: 16/9; border-radius: 12px; border: 1px solid var(--border); background: #06111E; padding: 8px; display: flex; gap: 8px; box-shadow: 0 14px 44px rgba(0,0,0,.45); }
.mock-tv .pane { flex: 1; border-radius: 8px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 9px; }
.mock-tv .pane.a { background: linear-gradient(135deg, #0064D2, #022B57); }
.mock-tv .pane.b { background: linear-gradient(135deg, #B91C1C, #3A0808); }
.mock-tv .pane .lbl { font-size: 11px; font-weight: 700; color: #fff; opacity: .95; }
.mock-tv .pane .snd { position: absolute; top: 8px; right: 9px; font-size: 13px; opacity: .95; }

.mock-cast { display: flex; align-items: center; gap: 16px; }
.mock-cast .phone { width: 56px; height: 106px; border-radius: 13px; border: 2px solid rgba(255,255,255,.15); background: linear-gradient(160deg, #0064D2, #022B57); flex-shrink: 0; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.mock-cast .arrow { color: var(--accent); font-size: 26px; font-weight: 700; }
.mock-cast .tv { width: 156px; height: 96px; border-radius: 10px; border: 2px solid rgba(255,255,255,.15); background: linear-gradient(160deg, #0064D2, #022B57); position: relative; box-shadow: 0 12px 34px rgba(0,0,0,.4); }
.mock-cast .tv::after { content: ''; position: absolute; bottom: -11px; left: 50%; transform: translateX(-50%); width: 46px; height: 7px; border-radius: 3px; background: rgba(255,255,255,.14); }

/* Discover hub grid */
.disc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 12px; }
.disc-tile { border-radius: 14px; padding: 16px; min-height: 112px; display: flex; flex-direction: column; gap: 6px; color: #fff; border: 1px solid rgba(255,255,255,.10); position: relative; overflow: hidden; }
.disc-tile .ic { font-size: 22px; line-height: 1; }
.disc-tile .nm { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 15px; margin-top: 2px; }
.disc-tile .ds { font-size: 12px; opacity: .85; line-height: 1.35; }

/* Icon mini-grid (control / privacy row) */
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 30px; }
.mini { display: flex; gap: 14px; align-items: flex-start; }
.mini .mic { font-size: 21px; flex-shrink: 0; width: 28px; text-align: center; }
.mini strong { display: block; font-size: 15.5px; margin-bottom: 3px; }
.mini span { color: var(--muted); font-size: 14px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, rgba(0,100,210,.18), rgba(0,100,210,.04)); border: 1px solid rgba(0,100,210,.3); border-radius: 20px; padding: 40px 32px; text-align: center; }
.cta-band h2 { font-size: clamp(24px, 4vw, 32px); margin: 0 0 10px; letter-spacing: -.02em; }
.cta-band p { color: var(--muted); margin: 0 0 22px; font-size: 16px; }

@media (max-width: 760px) {
  .contrast, .spotlight, .mini-grid { grid-template-columns: 1fr; }
  .spot.wide { flex-direction: column; align-items: stretch; }
  .spot.wide .spot-visual { order: -1; }
}
