/* =====================================================================
   FreeTVStreaming.tv — styles.css
   Aesthetic: warm editorial · coral-on-warm-white · LIGHT theme only.
   Display: Bricolage Grotesque (700/800) · Body: Plus Jakarta Sans (400/600/700).
   Mobile-first. Vanilla. No framework.
   Tokens per brand spec (coral #FF4D17, navy #0F1B33, bg #FFFBF6,
   amber #FFA52E, green #16A34A).
   ===================================================================== */

/* ---- Self-hosted fonts (Latin subset). Drop the .woff2 files into /fonts/
        and these become first-paint. The async <link> in <head> is a fallback
        so the type is correct before the woff2 land. ---- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal; font-weight: 700 800; font-display: swap;
  src: url('/fonts/bricolage-grotesque-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('/fonts/plus-jakarta-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('/fonts/plus-jakarta-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('/fonts/plus-jakarta-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* ---- Surfaces (light, warm) ---- */
  --bg:          #FFFBF6;   /* page background, warm off-white */
  --surface:     #FFFFFF;   /* cards */
  --surface-2:   #FFF3EA;   /* warm tint surface */
  --surface-3:   #FFE9DA;   /* deeper warm tint */

  /* ---- Ink (deep navy per brand spec) ---- */
  --ink:         #0F1B33;   /* primary text / trust */
  --ink-2:       #3A4256;   /* secondary text */
  --muted:       #6B7280;   /* muted text */
  --line:        #EFE1D2;   /* hairline borders */
  --line-strong: #E2CDB6;

  /* ---- Brand accent: coral (dominant) ---- */
  --coral:       #FF4D17;   /* primary accent — CTAs */
  --coral-600:   #E63E0D;   /* hover/active */
  --coral-700:   #C2320A;
  --ember:       #FF7A2F;   /* secondary warm */
  --amber:       #FFA52E;   /* stat highlight / stars */
  --coral-soft:  #FFE6DA;   /* tint backgrounds */
  --coral-tint:  #FFF1E9;

  /* ---- Semantic ---- */
  --green:       #16A34A;   /* uptime / checkmarks */
  --green-soft:  #DCF3E4;
  --bad:         #B33A2A;   /* comparison ✗ */

  /* ---- Type ---- */
  --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* ---- Radii ---- */
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 28px; --r-pill: 999px;

  /* ---- Shadow ---- */
  --shadow-sm: 0 1px 2px rgba(70,40,20,.05), 0 2px 8px rgba(70,40,20,.05);
  --shadow-md: 0 6px 18px rgba(80,40,15,.08), 0 2px 6px rgba(80,40,15,.05);
  --shadow-lg: 0 18px 48px rgba(90,40,12,.12), 0 4px 12px rgba(90,40,12,.06);
  --shadow-coral: 0 10px 26px rgba(255,77,23,.28);

  /* ---- Layout ---- */
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: 80px;            /* 80px section padding per spec */
  --ease: cubic-bezier(.2,.7,.2,1);

  --header-h: 70px;
  --mobile-bar-h: 62px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: 17px;              /* 16px+ body per spec */
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--mobile-bar-h); /* room for sticky mobile bar */
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2.3rem, 6vw, 4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { max-width: 66ch; }

::selection { background: var(--coral); color: #fff; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; border-radius: 4px; }

/* ---- Layout primitives ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(32px, 4vw, 56px); }
.section--alt { background: var(--surface-2); }
.section--warm { background: linear-gradient(180deg, var(--coral-tint), var(--bg) 70%); }

.section-head { max-width: 740px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-top: .75rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral-700); background: var(--coral-soft);
  padding: .42rem .85rem; border-radius: var(--r-pill); margin-bottom: 1.1rem;
}
.eyebrow svg { width: 14px; height: 14px; }

/* ---- Buttons (≥48px tap targets) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .82rem 1.4rem; border-radius: var(--r-pill);
  border: 2px solid transparent; min-height: 48px; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s, border-color .18s;
}
.btn--primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn--primary:hover { background: var(--coral-600); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,77,23,.36); }
.btn--primary:active { transform: translateY(0); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--outline:hover { border-color: var(--coral); color: var(--coral-700); background: var(--coral-tint); }
.btn--ghost { background: rgba(255,255,255,.7); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--coral); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.08rem; min-height: 56px; }
.btn--block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1rem; border-radius: 0 0 10px 10px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* =================================================================== HEADER
=================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,251,246,.86);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.2rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; color: var(--ink); letter-spacing: -.02em; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--coral), var(--ember));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-coral);
}
.brand__mark svg { width: 20px; height: 20px; }
.brand__dot { color: var(--coral); }
.brand b { font-weight: 800; }

.nav__links { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav__links a {
  font-weight: 600; font-size: .96rem; color: var(--ink-2);
  padding: .5rem .8rem; border-radius: 10px; min-height: 44px;
  display: flex; align-items: center; transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--coral-700); background: var(--coral-tint); }
.nav__links a[aria-current="page"] { color: var(--coral-700); }
.nav__links .nav__trial { display: none; }

.nav__cta { display: flex; align-items: center; gap: .6rem; margin-left: .4rem; }
.nav__cta .btn--primary { padding: .65rem 1.15rem; }
.nav__burger {
  display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-strong); position: relative;
}
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px; transform: translate(-50%, -50%); transition: transform .2s;
}
.nav__burger span::before { transform: translate(-50%, -7px); }
.nav__burger span::after  { transform: translate(-50%, 7px); }

/* =================================================================== HERO
=================================================================== */
.hero { position: relative; padding-block: clamp(40px,6vw,84px) clamp(48px,7vw,96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 85% 5%, var(--coral-soft) 0%, transparent 60%),
    radial-gradient(50% 45% at 5% 90%, #FFF0E2 0%, transparent 55%);
}
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px,5vw,64px); align-items: center; }
.hero h1 { margin: .4rem 0 1.1rem; }
.hero h1 .accent { color: var(--coral); position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .06em; height: .22em;
  background: linear-gradient(90deg, var(--amber), var(--coral)); opacity: .3; border-radius: 4px; z-index: -1;
}
.hero__lead { font-size: 1.15rem; color: var(--ink-2); max-width: 56ch; }
.hero__cta { margin: 1.6rem 0 1.3rem; }
.hero__pills { display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.hero__pills li { display: inline-flex; align-items: center; gap: .42rem; font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.hero__pills svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

.hero__media { position: relative; }
.hero__media-slot {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(160deg, var(--surface-3), var(--coral-tint));
  aspect-ratio: 16 / 13; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.hero__media-slot img { width: 100%; height: 100%; object-fit: cover; }

.live-card {
  position: absolute; left: 5%; bottom: -6%; width: min(86%, 320px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: .9rem 1rem; box-shadow: var(--shadow-lg);
}
.live-card__head { display: flex; align-items: center; gap: .5rem; margin-bottom: .65rem; font-weight: 700; color: var(--ink); font-size: .9rem; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255,77,23,.55); animation: pulse 1.8s infinite; }
.live-card__head span:last-child { margin-left: auto; font-size: .72rem; font-weight: 600; color: var(--muted); }
.live-card ul { display: grid; gap: .42rem; font-size: .85rem; }
.live-card li { display: flex; align-items: center; gap: .55rem; color: var(--ink-2); }
.live-card .ch { font-variant-numeric: tabular-nums; color: var(--coral-700); font-weight: 700; min-width: 30px; }
.live-card .meta { margin-left: auto; font-size: .72rem; color: var(--muted); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,77,23,.5);} 70%{ box-shadow: 0 0 0 9px rgba(255,77,23,0);} 100%{ box-shadow: 0 0 0 0 rgba(255,77,23,0);} }

.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-top: 2rem; font-size: .86rem; color: var(--muted); font-weight: 600; }
.hero-trust svg { width: 16px; height: 16px; color: var(--amber); }
.hero-trust .stars { display: inline-flex; gap: 1px; }

/* =================================================================== EVENTS TICKER
=================================================================== */
.events-ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.events-ticker::before, .events-ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none;
}
.events-ticker::before { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.events-ticker::after  { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.events-track {
  display: flex; gap: .7rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .7rem var(--gutter); scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.events-track::-webkit-scrollbar { display: none; }
.event-pill {
  flex: 0 0 auto; scroll-snap-align: start;
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: #fff; border-radius: var(--r-pill); padding: .5rem 1rem; font-size: .86rem; font-weight: 600;
  white-space: nowrap;
}
.event-pill .live-dot { background: var(--coral); }
.event-time { color: var(--amber); font-weight: 700; letter-spacing: .04em; font-size: .78rem; }
.event-match { color: rgba(255,255,255,.92); }
.event-pill.is-live .event-time { color: var(--coral); }

/* =================================================================== STATS STRIP
=================================================================== */
.stats { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-md); overflow: hidden; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.stats__cell { padding: clamp(1.4rem,3vw,2.2rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__cell:nth-child(2n) { border-right: none; }
.stats__cell:nth-last-child(-n+2) { border-bottom: none; }
.stats__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem,4vw,2.8rem); color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.stats__num .unit { color: var(--coral); }
.stats__num .plus { color: var(--amber); }
.stats__label { margin-top: .55rem; font-weight: 700; color: var(--ink-2); font-size: .95rem; }
.stats__sub { margin-top: .2rem; font-size: .82rem; color: var(--muted); }

/* =================================================================== FEATURES (bento)
=================================================================== */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px,2vw,20px); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.3rem,2.5vw,1.9rem); position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; }
.icon-chip {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--coral-soft); color: var(--coral-700);
}
.icon-chip svg { width: 24px; height: 24px; }
.icon-chip--amber { background: #FFF1D6; color: #B9791A; }
.icon-chip--green { background: var(--green-soft); color: var(--green); }
.icon-chip--ink { background: #ECE3DA; color: var(--ink-2); }

/* =================================================================== HOW IT WORKS
=================================================================== */
.steps { display: grid; grid-template-columns: 1fr; gap: clamp(16px,2.5vw,24px) clamp(16px,2.5vw,24px); counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.4rem,2.5vw,2rem); padding-top: clamp(2.6rem,4vw,3rem);
}
.step__num {
  position: absolute; top: -22px; left: clamp(1.4rem,2.5vw,2rem);
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.step:nth-child(2) .step__num { background: var(--coral); box-shadow: var(--shadow-coral); }
.step:nth-child(3) .step__num { background: var(--ember); }
.step h3 { margin-bottom: .45rem; }
.step p { color: var(--muted); }
.step__tag { display: inline-block; margin-top: .9rem; font-size: .82rem; font-weight: 700; color: var(--coral-700); background: var(--coral-soft); padding: .3rem .7rem; border-radius: var(--r-pill); }

/* =================================================================== DEVICES
=================================================================== */
.devices { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px,2vw,18px); }
.device {
  display: flex; align-items: center; gap: .9rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1rem 1.1rem; transition: border-color .2s, transform .2s;
}
.device:hover { border-color: var(--coral); transform: translateY(-2px); }
.device__icon { width: 44px; height: 44px; border-radius: 11px; background: var(--coral-tint); color: var(--coral-700); display: grid; place-items: center; flex-shrink: 0; }
.device__icon svg { width: 24px; height: 24px; }
.device__name { font-weight: 700; color: var(--ink); font-size: .98rem; }
.device__sub { font-size: .82rem; color: var(--muted); }

/* =================================================================== SPORTS BADGES
=================================================================== */
.sports { display: flex; flex-wrap: wrap; gap: .6rem; }
.sport-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: .55rem 1.1rem; font-weight: 700; font-size: .92rem; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s;
}
.sport-badge:hover { transform: translateY(-2px); border-color: var(--coral); }
.sport-badge svg { width: 18px; height: 18px; color: var(--coral); }

/* =================================================================== PRICING (5 conn tabs × 4 durations)
=================================================================== */
.pricing-tabs {
  display: flex; flex-wrap: wrap; gap: .45rem; justify-content: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: .4rem; margin: 0 auto clamp(24px,3vw,36px); width: fit-content; max-width: 100%;
  box-shadow: var(--shadow-sm);
}
.conn-tab {
  border: none; background: transparent; color: var(--ink-2); font-family: var(--font-body);
  font-weight: 700; font-size: .9rem; padding: .6rem 1rem; border-radius: var(--r-pill);
  min-height: 40px; white-space: nowrap; transition: background .18s, color .18s, box-shadow .18s;
}
.conn-tab:hover { color: var(--coral-700); }
.conn-tab.active { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }

#pricing-grid { display: block; }
.pricing__grid-group { display: grid; grid-template-columns: 1fr; gap: clamp(16px,2vw,22px); }
.pricing__grid-group[hidden] { display: none; }

.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem,2.5vw,2rem); display: flex; flex-direction: column; position: relative;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan__duration { font-weight: 700; color: var(--coral-700); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.plan__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4vw,2.9rem); color: var(--ink); line-height: 1; margin: .35rem 0 .1rem; letter-spacing: -.03em; }
.plan__price .plan__currency { font-size: .5em; vertical-align: super; margin-right: .05em; color: var(--ink-2); }
.plan__price .plan__per { font-family: var(--font-body); font-weight: 600; font-size: .34em; color: var(--muted); letter-spacing: 0; margin-left: .2em; }
.plan__note { color: var(--muted); font-size: .9rem; min-height: 2.6em; margin-bottom: .4rem; }
.plan__features { display: grid; gap: .55rem; margin: 1.1rem 0 1.4rem; }
.plan__features li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; color: var(--ink-2); }
.plan__features svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: .12rem; }
.plan__cta { margin-top: auto; }

.plan--popular {
  border: 2px solid var(--coral); box-shadow: var(--shadow-coral);
  background: linear-gradient(180deg, #fff, var(--coral-tint));
}
.plan--popular::before {
  content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-weight: 700; font-size: .72rem; letter-spacing: .07em;
  padding: .32rem .85rem; border-radius: var(--r-pill); white-space: nowrap; text-transform: uppercase;
}
.plan--popular .plan__price .plan__per { color: var(--coral-700); }
.price-save { display: inline-block; font-size: .74rem; font-weight: 700; color: var(--green); background: var(--green-soft); padding: .18rem .5rem; border-radius: var(--r-pill); margin-left: .35rem; vertical-align: middle; }
.pricing-note { text-align: center; margin-top: 1.6rem; color: var(--muted); font-size: .92rem; }

/* "Every plan includes" list (pricing page) */
.includes-grid { display: grid; grid-template-columns: 1fr; gap: clamp(12px,2vw,18px); }
.includes-item { display: flex; gap: .8rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.1rem 1.2rem; }
.includes-item svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: .1rem; }
.includes-item b { color: var(--ink); }
.includes-item span { color: var(--muted); font-size: .92rem; }

/* =================================================================== COMPARISON TABLE
=================================================================== */
.compare-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--surface); }
.compare th, .compare td { padding: clamp(.85rem,1.6vw,1.1rem) clamp(.9rem,1.8vw,1.3rem); text-align: center; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--surface-2); font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1rem; }
.compare th:first-child, .compare td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.compare .col-us { background: var(--coral-tint); }
.compare thead .col-us { background: var(--coral); color: #fff; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--green); }
.compare .no { color: var(--bad); opacity: .55; }
.compare svg { width: 20px; height: 20px; }
.compare__price { display: block; font-family: var(--font-body); font-weight: 600; font-size: .82rem; opacity: .8; }

/* =================================================================== REVIEWS
=================================================================== */
.reviews { columns: 1; column-gap: clamp(14px,2vw,20px); }
.review { break-inside: avoid; margin-bottom: clamp(14px,2vw,20px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.2rem,2vw,1.6rem); display: grid; gap: .8rem; }
.review__stars { display: flex; gap: 2px; color: var(--amber); }
.review__stars svg { width: 17px; height: 17px; }
.review p { color: var(--ink-2); font-size: .98rem; max-width: none; }
.review__who { display: flex; align-items: center; gap: .65rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--coral-soft); color: var(--coral-700); display: grid; place-items: center; font-weight: 800; font-family: var(--font-display); font-size: .9rem; flex-shrink: 0; }
.review__name { font-weight: 700; color: var(--ink); font-size: .92rem; }
.review__meta { font-size: .8rem; color: var(--muted); }

/* =================================================================== FAQ
=================================================================== */
.faq-list { display: grid; gap: .7rem; max-width: 840px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: var(--coral); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: clamp(1rem,2vw,1.25rem) clamp(1.1rem,2vw,1.4rem);
  font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.04rem;
  display: flex; align-items: center; gap: 1rem; justify-content: space-between; min-height: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 22px; height: 22px; color: var(--coral); flex-shrink: 0; transition: transform .25s var(--ease); }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 clamp(1.1rem,2vw,1.4rem) clamp(1.1rem,2vw,1.4rem); color: var(--muted); }

/* =================================================================== FORMS
=================================================================== */
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2.2rem); box-shadow: var(--shadow-md); }
.form__row { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-weight: 700; font-size: .9rem; color: var(--ink); }
.field .req { color: var(--coral); }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; border-radius: var(--r-md);
  border: 1.5px solid var(--line-strong); background: var(--bg); color: var(--ink);
  min-height: 48px; transition: border-color .18s, box-shadow .18s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px var(--coral-soft);
}
.field__hint { font-size: .8rem; color: var(--muted); }
.form__foot { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.form__legal { font-size: .82rem; color: var(--muted); margin-top: .9rem; }
.form__legal a { color: var(--coral-700); font-weight: 600; }

.benefits { display: grid; gap: .9rem; }
.benefit { display: flex; gap: .8rem; align-items: flex-start; }
.benefit svg { width: 24px; height: 24px; color: var(--green); flex-shrink: 0; margin-top: .1rem; }
.benefit b { color: var(--ink); }
.benefit span { color: var(--ink-2); font-size: .96rem; }

/* split layout (free-trial / contact) */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(28px,4vw,56px); align-items: start; }

/* =================================================================== CHANNELS
=================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px,2vw,20px); }
.cat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.3rem,2.5vw,1.8rem); position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.cat-card .cat-count { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,3vw,2.4rem); color: var(--coral); line-height: 1; }
.cat-card h3 { margin: .5rem 0 .35rem; }
.cat-card p { color: var(--muted); font-size: .92rem; }
.cat-card .icon-chip { margin-bottom: .9rem; }

.beats-grid { display: grid; grid-template-columns: 1fr; gap: clamp(14px,2vw,20px); }
.beat { display: flex; gap: .9rem; align-items: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.2rem 1.3rem; }
.beat svg { width: 26px; height: 26px; color: var(--coral); flex-shrink: 0; }
.beat b { color: var(--ink); display: block; margin-bottom: .2rem; }
.beat span { color: var(--muted); font-size: .92rem; }

/* =================================================================== APP / SETUP
=================================================================== */
.setup-grid { display: grid; grid-template-columns: 1fr; gap: clamp(20px,3vw,32px); }
.setup-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2.2rem); box-shadow: var(--shadow-sm); }
.setup-card__head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.2rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.setup-card__head h3 { margin: 0; }
.setup-card__head .device__icon { width: 52px; height: 52px; border-radius: 13px; }
.setup-card__head .device__icon svg { width: 28px; height: 28px; }
.setup-steps { counter-reset: stp; display: grid; gap: 1rem; }
.setup-steps li { counter-increment: stp; position: relative; padding-left: 3rem; color: var(--ink-2); }
.setup-steps li::before {
  content: counter(stp); position: absolute; left: 0; top: 0;
  width: 2rem; height: 2rem; border-radius: 50%; background: var(--coral-tint); color: var(--coral-700);
  font-family: var(--font-display); font-weight: 800; display: grid; place-items: center; font-size: .95rem;
}
.setup-steps li b { color: var(--ink); }

/* =================================================================== ARTICLE / BLOG
=================================================================== */
.article { max-width: 760px; margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; color: var(--muted); font-size: .9rem; margin-bottom: 1.4rem; }
.article__meta .tag { background: var(--coral-soft); color: var(--coral-700); font-weight: 700; padding: .25rem .7rem; border-radius: var(--r-pill); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.article__body { font-size: 1.06rem; color: var(--ink-2); }
.article__body p { margin-bottom: 1.15rem; }
.article__body h2 { margin: 2.2rem 0 .8rem; }
.article__body h3 { margin: 1.6rem 0 .6rem; }
.article__body ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1.15rem; }
.article__body ul li { margin-bottom: .4rem; }
.article__body a { color: var(--coral-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.article__body strong { color: var(--ink); }

.post-list { display: grid; grid-template-columns: 1fr; gap: clamp(16px,2vw,22px); }
.post-card { display: grid; grid-template-columns: 1fr; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.post-card__media { aspect-ratio: 16/9; background: linear-gradient(160deg, var(--surface-3), var(--coral-tint)); }
.post-card__body { padding: clamp(1.2rem,2vw,1.5rem); }
.post-card__meta { font-size: .82rem; color: var(--muted); font-weight: 600; }
.post-card h3 { margin: .4rem 0 .5rem; font-size: 1.2rem; }
.post-card p { color: var(--muted); font-size: .95rem; }
.post-card .read { margin-top: .8rem; font-weight: 700; color: var(--coral-700); font-size: .9rem; display: inline-flex; gap: .35rem; align-items: center; }

/* =================================================================== LEGAL / PROSE
=================================================================== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h1 { margin-bottom: .6rem; }
.prose .lead { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; }
.prose h2 { margin: 2.2rem 0 .7rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-2); }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: .4rem; }
.prose a { color: var(--coral-700); font-weight: 600; }
.legal-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem,4vw,3rem); box-shadow: var(--shadow-sm); }

/* page hero (inner pages) */
.page-hero { padding-block: clamp(40px,6vw,72px) clamp(28px,4vw,44px); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: .9rem; }
.page-hero p { color: var(--ink-2); font-size: 1.12rem; max-width: 60ch; }

/* =================================================================== FINAL CTA (light warm gradient)
=================================================================== */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FFE9D6 0%, #FFF3EA 45%, #FFE0CE 100%);
  border: 1px solid #F8D2B4; border-radius: var(--r-xl); padding: clamp(2.4rem,5vw,4rem); text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background: radial-gradient(40% 80% at 90% 20%, rgba(255,122,47,.25), transparent 60%), radial-gradient(40% 80% at 10% 80%, rgba(255,165,46,.25), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: .8rem; }
.cta-band p { color: var(--ink-2); margin: 0 auto 1.8rem; font-size: 1.1rem; }
.cta-band .btn-group { justify-content: center; }

/* =================================================================== FOOTER
=================================================================== */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); color: var(--ink-2); margin-top: clamp(48px,6vw,80px); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-block: clamp(2.4rem,5vw,3.4rem); }
.footer-brand { max-width: 320px; }
.footer-brand .brand { color: var(--ink); margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: .94rem; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.footer-col h4 { color: var(--ink); font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { color: var(--ink-2); font-size: .94rem; transition: color .15s; }
.footer-col a:hover { color: var(--coral-700); }
.footer-contact { display: flex; align-items: center; gap: .5rem; font-size: .94rem; color: var(--ink-2); }
.footer-contact svg { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center; font-size: .85rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--coral-700); }
.footer-pay { display: flex; gap: .5rem; align-items: center; }
.footer-pay span { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: .25rem .55rem; font-size: .72rem; font-weight: 700; color: var(--ink-2); letter-spacing: .03em; }

/* =================================================================== MOBILE BOTTOM BAR
=================================================================== */
.mobile-bar {
  position: fixed; inset: auto 0 0 0; z-index: 95;
  display: flex; align-items: stretch; background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line); min-height: var(--mobile-bar-h);
}
.mobile-bar__item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .15rem; font-size: .68rem; font-weight: 700; color: var(--muted); padding: .35rem .2rem; }
.mobile-bar__item svg { width: 22px; height: 22px; }
.mobile-bar__item.is-active { color: var(--coral-700); }
.mobile-bar__item--cta { flex: 1.4; background: var(--coral); color: #fff; font-size: .92rem; }
.mobile-bar__item--cta:hover { background: var(--coral-600); }
.mobile-bar__item--cta svg { width: 20px; height: 20px; }

/* =================================================================== CHAT FAB
=================================================================== */
.chat-fab {
  position: fixed; right: 16px; bottom: calc(var(--mobile-bar-h) + 14px); z-index: 96;
  width: 54px; height: 54px; border-radius: 50%; background: var(--coral); color: #fff;
  box-shadow: var(--shadow-coral); display: grid; place-items: center; transition: transform .18s, background .18s;
}
.chat-fab svg { width: 26px; height: 26px; }
.chat-fab:hover { transform: translateY(-2px) scale(1.04); background: var(--coral-600); }
.chat-fab .chat-dot { position: absolute; top: 8px; right: 9px; width: 11px; height: 11px; background: var(--green); border: 2px solid #fff; border-radius: 50%; }

/* =================================================================== REVEAL
=================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =================================================================== RESPONSIVE
=================================================================== */
@media (min-width: 600px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stats__cell { border-bottom: none; }
  .stats__cell:nth-child(2n) { border-right: 1px solid var(--line); }
  .stats__cell:last-child { border-right: none; }
  .form__row { grid-template-columns: 1fr 1fr; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .beats-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .post-list { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 820px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .devices { grid-template-columns: repeat(4, 1fr); }
  .pricing__grid-group { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
  .reviews { columns: 2; }
  .footer-top { grid-template-columns: 1.1fr 2fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .setup-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .post-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .devices { grid-template-columns: repeat(4, 1fr); }
  .reviews { columns: 3; }
  .post-list { grid-template-columns: repeat(3, 1fr); }
}

/* Hide mobile-only chrome on desktop */
@media (min-width: 760px) {
  .mobile-bar { display: none; }
  .chat-fab { bottom: 22px; }
  body { padding-bottom: 0; }
}

/* Mobile nav drawer (≤880px): burger shows, links collapse into a panel */
@media (max-width: 880px) {
  .nav__burger { display: block; }
  .nav__cta .btn--primary { display: none; }      /* CTA lives in mobile bar / drawer */
  .nav__links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .8rem var(--gutter) 1.2rem; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .28s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: .85rem .6rem; font-size: 1.02rem; border-radius: var(--r-md); min-height: 48px; }
  .nav__links .nav__trial { display: inline-flex; justify-content: center; margin-top: .5rem; }
}

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