/* ==========================================================================
   AURATELE — stylesheet

   The idea: a television throws coloured light onto the wall around it. The
   page is paper; the hero has an aura. Colour runs free in exactly one place
   and everything else stays quiet.

   1. Tokens          6. Hero + aura        11. Free test form
   2. Reset           7. The screen         12. FAQ
   3. Layout          8. Steps / features   13. Contact + footer
   4. Buttons         9. Pricing            14. Motion
   5. Header         10. Comparison         15. Responsive
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   Three UI colours: paper, ink, indigo. The aura's teal and amber appear
   only inside the aura and the live panel — never as interface colour.
   ========================================================================== */
:root {
  --paper:    #FBFAF7;
  --paper-2:  #F3F1EC;
  --paper-3:  #EAE7E0;

  --ink:      #14161D;
  --ink-2:    #3E4350;
  --ink-3:    #6E7482;
  --ink-4:    #9AA0AC;

  --indigo:   #3A2FD8;
  --indigo-d: #2A21A8;
  --indigo-w: rgba(58, 47, 216, .08);

  /* Aura only */
  --teal:     #12A594;
  --amber:    #E0902B;

  --line:     rgba(20, 22, 29, .10);
  --line-2:   rgba(20, 22, 29, .18);

  --ff-disp:  "Bricolage Grotesque", "Instrument Sans", system-ui, sans-serif;
  --ff-body:  "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm:     8px;
  --r:        14px;
  --r-lg:     22px;

  --gut:      clamp(20px, 4vw, 44px);
  --sec-y:    clamp(76px, 10vw, 140px);

  --ease:     cubic-bezier(.2, .7, .3, 1);
}

/* ==========================================================================
   2. RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3 {
  font-family: var(--ff-disp);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
}

p { text-wrap: pretty; }

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

.skip {
  position: absolute;
  left: 50%; top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: transform .18s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 800px; }

.sec { padding-block: var(--sec-y); scroll-margin-top: 80px; }
.sec--paper { background: var(--paper-2); }

.shead { max-width: 660px; margin-bottom: clamp(40px, 5vw, 68px); }
.shead__h { font-size: clamp(1.9rem, 3.8vw, 3rem); margin-top: .8rem; }
.shead__p { color: var(--ink-3); margin-top: 1.1rem; font-size: 1.05rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo);
}

/* The live pip — used in the eyebrow and on the Live tag */
.pip {
  width: 6px; height: 6px;
  flex: none;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: pip 2.4s infinite;
}
@keyframes pip {
  70%  { box-shadow: 0 0 0 7px rgba(58, 47, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(58, 47, 216, 0); }
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .94rem;
  padding: .8rem 1.5rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn--lg   { padding: 1rem 1.9rem; font-size: 1rem; }
.btn--sm   { padding: .55rem 1.1rem; font-size: .87rem; }
.btn--full { width: 100%; }

.btn--ink {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 2px rgba(20, 22, 29, .18);
}
.btn--ink:hover {
  background: var(--indigo);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(58, 47, 216, .7);
}

.btn--line {
  border-color: var(--line-2);
  background: transparent;
}
.btn--line:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn:active { transform: translateY(0); }

/* ==========================================================================
   5. HEADER
   ========================================================================== */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.hdr.is-stuck {
  background: rgba(251, 250, 247, .8);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border-bottom-color: var(--line);
}

.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 74px;
}

.logo { display: inline-flex; align-items: center; gap: .6rem; }

/* The mark is the aura: a ring with a bright centre */
.logo__mark {
  width: 22px; height: 22px;
  flex: none;
  border-radius: 50%;
  border: 2.5px solid var(--indigo);
  position: relative;
}
.logo__mark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.logo__txt {
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -.035em;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.7rem; }
.nav__list a {
  font-size: .93rem;
  color: var(--ink-2);
  transition: color .18s var(--ease);
  position: relative;
}
.nav__list a:hover, .nav__list a.is-active { color: var(--ink); }
.nav__list a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 2px;
  background: var(--indigo);
  border-radius: 2px;
}

/* ----- Region switcher -----
   The flags are CSS background images keyed off each link's [hreflang], so
   adding one is a stylesheet change and never an HTML change. Each SVG is a
   self-contained document, so the clipPath ids inside them can't collide.
   ------------------------------------------------------------------------ */
.loc { position: relative; flex: none; }

.loc__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .42rem .75rem .42rem .65rem;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-size: .84rem;
  font-weight: 500;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease),
              background-color .2s var(--ease);
}
.loc__btn:hover,
.loc__btn[aria-expanded="true"] {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--paper-2);
}

/* Flag on the button, chosen from the end of its aria-label. Keeps the
   trigger in step with the menu without touching the markup. */
.loc__btn::before {
  content: "";
  width: 20px; height: 14px;
  flex: none;
  border-radius: 2.5px;
  box-shadow: 0 0 0 1px rgba(20, 22, 29, .12) inset;
  background: no-repeat center / cover;
}

.loc__now { white-space: nowrap; }

.loc__chev {
  width: 6px; height: 6px;
  flex: none;
  margin-left: .1rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .22s var(--ease);
}
.loc__btn[aria-expanded="true"] .loc__chev { transform: rotate(225deg) translate(-3px, -3px); }

.loc__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  padding: .35rem;
  border-radius: var(--r);
  background: var(--paper);
  border: 1px solid var(--line-2);
  box-shadow: 0 20px 48px -22px rgba(20, 22, 29, .38),
              0 2px 6px -2px rgba(20, 22, 29, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
  z-index: 60;
}
.loc__menu.is-open { opacity: 1; visibility: visible; transform: none; }

.loc__menu li + li { margin-top: 1px; }

.loc__menu a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .7rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--ink-2);
  transition: background-color .16s var(--ease), color .16s var(--ease);
}
.loc__menu a::before {
  content: "";
  width: 20px; height: 14px;
  flex: none;
  border-radius: 2.5px;
  box-shadow: 0 0 0 1px rgba(20, 22, 29, .12) inset;
  background: no-repeat center / cover;
}
.loc__menu a:hover { background: var(--paper-2); color: var(--ink); }
.loc__menu a[aria-current="true"] { color: var(--ink); font-weight: 600; }

/* Tick on the region you're already on */
.loc__menu a[aria-current="true"]::after {
  content: "";
  margin-left: auto;
  width: 10px; height: 5px;
  flex: none;
  border-left: 1.8px solid var(--indigo);
  border-bottom: 1.8px solid var(--indigo);
  transform: rotate(-45deg) translateY(-1px);
}

/* ----- The flags ----- */
.loc__menu a[hreflang="en"]::before,
.loc__btn[aria-label$="International"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 15'%3E%3Crect width='21' height='15' fill='%23E7E4DD'/%3E%3Cg fill='none' stroke='%233A2FD8' stroke-width='1'%3E%3Ccircle cx='10.5' cy='7.5' r='4.7'/%3E%3Cpath d='M10.5 2.8v9.4M5.8 7.5h9.4'/%3E%3Cellipse cx='10.5' cy='7.5' rx='2.35' ry='4.7'/%3E%3C/g%3E%3C/svg%3E");
}

.loc__menu a[hreflang="fr-FR"]::before,
.loc__btn[aria-label$="France"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 15'%3E%3Crect width='21' height='15' fill='%23fff'/%3E%3Crect width='7' height='15' fill='%23002654'/%3E%3Crect x='14' width='7' height='15' fill='%23CE1126'/%3E%3C/svg%3E");
}

.loc__menu a[hreflang="de-DE"]::before,
.loc__btn[aria-label$="Deutschland"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 15'%3E%3Crect width='21' height='5' fill='%23000'/%3E%3Crect y='5' width='21' height='5' fill='%23DD0000'/%3E%3Crect y='10' width='21' height='5' fill='%23FFCE00'/%3E%3C/svg%3E");
}

.loc__menu a[hreflang="en-GB"]::before,
.loc__btn[aria-label$="United Kingdom"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 15'%3E%3Crect width='21' height='15' fill='%23012169'/%3E%3Cpath d='M0 0 21 15M21 0 0 15' stroke='%23fff' stroke-width='3'/%3E%3Cpath d='M0 0 21 15M21 0 0 15' stroke='%23C8102E' stroke-width='1.6'/%3E%3Cpath d='M10.5 0v15M0 7.5h21' stroke='%23fff' stroke-width='5'/%3E%3Cpath d='M10.5 0v15M0 7.5h21' stroke='%23C8102E' stroke-width='3'/%3E%3C/svg%3E");
}

.loc__menu a[hreflang="en-CA"]::before,
.loc__btn[aria-label$="Canada"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 15'%3E%3Crect width='21' height='15' fill='%23fff'/%3E%3Crect width='5.25' height='15' fill='%23D52B1E'/%3E%3Crect x='15.75' width='5.25' height='15' fill='%23D52B1E'/%3E%3Cpath d='M10.5 3.4l.72 1.62 1.5-.46-.6 1.6 1.3.52-1.12 1 .3.72-1.62-.2.12 1.8h-.6l.12-1.8-1.62.2.3-.72-1.12-1 1.3-.52-.6-1.6 1.5.46z' fill='%23D52B1E'/%3E%3C/svg%3E");
}

/* Standard has three cards, Premium has four */
.plans--3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-inline: auto; }

.burger {
  display: none;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--ink);
  transition: transform .25s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* ==========================================================================
   6. HERO + AURA — the signature
   On paper, an additive glow just washes out to white. Blending `multiply`
   makes the light *tint* the page, the way a lit screen tints a wall.
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(120px, 15vw, 170px);
  padding-bottom: clamp(72px, 9vw, 120px);
  overflow: hidden;
  scroll-margin-top: 80px;
}

.aura {
  position: absolute;
  inset: -14% -10% auto;
  height: 900px;
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: blur(70px);
  opacity: .5;
}
.aura__lobe {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.aura__lobe--a {
  width: 46%; height: 60%;
  top: 4%; right: 4%;
  background: radial-gradient(circle, rgba(58, 47, 216, .55), transparent 68%);
  animation: lobeA 22s ease-in-out infinite alternate;
}
.aura__lobe--b {
  width: 40%; height: 52%;
  top: 26%; right: 26%;
  background: radial-gradient(circle, rgba(18, 165, 148, .5), transparent 68%);
  animation: lobeB 26s ease-in-out infinite alternate;
}
.aura__lobe--c {
  width: 34%; height: 44%;
  top: 2%; right: 34%;
  background: radial-gradient(circle, rgba(224, 144, 43, .42), transparent 68%);
  animation: lobeC 30s ease-in-out infinite alternate;
}
@keyframes lobeA { to { transform: translate3d(-7%, 8%, 0) scale(1.14); } }
@keyframes lobeB { to { transform: translate3d(9%, -6%, 0) scale(1.18); } }
@keyframes lobeC { to { transform: translate3d(-5%, 10%, 0) scale(1.1); } }

.hero__in { position: relative; }

@media (min-width: 960px) {
  .hero__in {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
  }
}

.hero__h1 {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  letter-spacing: -.042em;
  margin-top: 1.2rem;
  max-width: 15ch;
}
.hero__sub {
  color: var(--ink-2);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  max-width: 50ch;
  margin-top: 1.4rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

.hero__pts {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  margin-top: 1.8rem;
  font-size: .87rem;
  color: var(--ink-3);
}
.hero__pts li { position: relative; padding-left: 1.1rem; }
.hero__pts li::before {
  content: "";
  position: absolute;
  left: 0; top: .62rem;
  width: 7px; height: 4px;
  border-left: 1.6px solid var(--indigo);
  border-bottom: 1.6px solid var(--indigo);
  transform: rotate(-45deg);
}

/* ==========================================================================
   7. THE SCREEN
   ========================================================================== */
.screen { position: relative; }

.screen__body {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 10px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .1) inset,
    0 34px 70px -34px rgba(20, 22, 29, .55),
    0 4px 14px -6px rgba(20, 22, 29, .3);
}

.screen__bar {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .3rem .5rem .7rem;
}
.screen__dots { display: flex; gap: 5px; }
.screen__dots i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(251, 250, 247, .18);
}
.screen__dots i:first-child { background: rgba(251, 250, 247, .38); }
.screen__title {
  font-family: var(--ff-disp);
  font-size: .78rem;
  font-weight: 500;
  color: rgba(251, 250, 247, .6);
  letter-spacing: -.02em;
}
.screen__clock {
  margin-left: auto;
  font-size: .76rem;
  color: rgba(251, 250, 247, .45);
  font-variant-numeric: tabular-nums;
}

/* ----- Live panel ----- */
.live {
  position: relative;
  aspect-ratio: 16 / 8;
  border-radius: 13px;
  overflow: hidden;
  background: #05060A;
}

/* Two stacked layers so a channel change crossfades on opacity rather than
   repainting a large blurred surface every frame. */
.live__art {
  position: absolute;
  inset: -40%;
  opacity: 0;
  filter: blur(38px);
  transition: opacity .5s var(--ease);
  background:
    radial-gradient(38% 44% at 30% 36%, rgba(58, 47, 216, .95), transparent 62%),
    radial-gradient(42% 46% at 70% 60%, rgba(18, 165, 148, .8), transparent 64%),
    radial-gradient(34% 40% at 50% 84%, rgba(224, 144, 43, .55), transparent 60%);
  animation: swim 20s ease-in-out infinite alternate;
}
.live__art--on { opacity: 1; }
.live__art:nth-of-type(2) { animation-delay: -10s; }
@keyframes swim {
  0%   { transform: translate3d(-4%, -3%, 0) scale(1); }
  50%  { transform: translate3d(4%, 4%, 0) scale(1.16); }
  100% { transform: translate3d(-2%, 5%, 0) scale(1.05); }
}

.live__top {
  position: absolute;
  top: .75rem; left: .85rem;
  display: flex;
  gap: .4rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem .55rem;
  border-radius: 100px;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, .85);
  background: rgba(5, 6, 10, .5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(251, 250, 247, .16);
}
.tag--live { color: #FBFAF7; }

.live__foot {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem .9rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 10, .85));
}

/* Fixed height: the label swaps in place, so the layout never shifts. */
.live__meta {
  height: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.live__name, .live__sub {
  white-space: nowrap;
  transition: opacity .18s var(--ease);
}
.live__meta.is-swap .live__name,
.live__meta.is-swap .live__sub { opacity: 0; }

.live__name {
  font-family: var(--ff-disp);
  font-size: .88rem;
  font-weight: 700;
  color: #FBFAF7;
  line-height: 1.2;
}
.live__sub { font-size: .68rem; color: rgba(251, 250, 247, .55); line-height: 1.2; }

.live__ctl { display: flex; align-items: center; gap: .6rem; margin-top: .5rem; }
.live__next {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  flex: none;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: #FBFAF7;
  color: var(--ink);
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease);
}
.live__next:hover { transform: scale(1.14); background: var(--indigo); color: #FBFAF7; }
.live__next:active { transform: scale(.94); }
.live__next svg { width: 11px; height: 11px; }

.live__bar {
  flex: 1;
  height: 2.5px;
  border-radius: 2px;
  background: rgba(251, 250, 247, .2);
  overflow: hidden;
}
.live__bar i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(.38);
  transform-origin: left;
  transition: transform .5s var(--ease);
  background: #FBFAF7;
}

/* ----- Programme guide ----- */
.epg {
  --lane: 52px;
  --lane-gap: .5rem;
  padding: .8rem .55rem .3rem;
}

.epg__times {
  display: flex;
  margin-left: calc(var(--lane) + var(--lane-gap));
  padding-bottom: .5rem;
  font-size: .66rem;
  color: rgba(251, 250, 247, .35);
  font-variant-numeric: tabular-nums;
}
.epg__times span { flex: 1; }

.epg__grid { position: relative; }

.epg__now {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1.5px;
  background: var(--amber);
  z-index: 2;
  transition: left 1s linear;
}
.epg__now::before {
  content: "";
  position: absolute;
  top: -3px; left: 50%;
  translate: -50% 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.epg__lane {
  display: flex;
  align-items: center;
  gap: var(--lane-gap);
  padding-block: .26rem;
  border-bottom: 1px solid rgba(251, 250, 247, .07);
}
.epg__lane--last { border-bottom: 0; }

.epg__label {
  width: var(--lane);
  flex: none;
  font-size: .7rem;
  color: rgba(251, 250, 247, .45);
  transition: color .3s var(--ease);
}
.epg__lane.is-on .epg__label { color: var(--amber); }

.epg__row { display: flex; gap: 4px; flex: 1; min-width: 0; }

.blk {
  flex: 0 0 calc(var(--w) * 1% - 4px);
  min-width: 0;
  height: 26px;
  display: flex;
  align-items: center;
  padding-inline: .5rem;
  border-radius: 5px;
  background: rgba(251, 250, 247, .06);
  font-size: .66rem;
  font-style: normal;
  color: rgba(251, 250, 247, .5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blk--on {
  background: rgba(58, 47, 216, .38);
  color: rgba(251, 250, 247, .9);
}

.screen__note {
  margin-top: 1rem;
  font-size: .76rem;
  color: var(--ink-4);
  text-align: center;
}

/* ==========================================================================
   8. STEPS + FEATURES
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 1.6rem; border-top: 2px solid var(--ink); }
.step__n {
  font-family: var(--ff-disp);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--indigo);
  display: block;
  margin-bottom: .8rem;
}
.step h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.step p { color: var(--ink-3); font-size: .95rem; }

.feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.feat {
  background: var(--paper);
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  transition: background-color .25s var(--ease);
}
.feat:hover { background: var(--paper-2); }
.feat h3 { font-size: 1.06rem; margin-bottom: .5rem; }
.feat p { color: var(--ink-3); font-size: .93rem; }

/* ==========================================================================
   9. PRICING
   ========================================================================== */
.tabs { display: flex; justify-content: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.tabs__list {
  position: relative;
  display: inline-flex;
  gap: .25rem;
  padding: .3rem;
  border-radius: 100px;
  background: var(--paper-3);
}
.tab {
  position: relative;
  z-index: 1;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .6rem 1.7rem;
  border-radius: 100px;
  font-family: var(--ff-disp);
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--ink-2);
  transition: color .25s var(--ease);
}
.tab.is-on { color: var(--paper); }

.tabs__ink {
  position: absolute;
  top: .3rem; bottom: .3rem; left: 0;
  width: 0;
  border-radius: 100px;
  background: var(--ink);
  transition: left .35s var(--ease), width .35s var(--ease);
}

.panel:focus-visible { outline-offset: 8px; }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; }

/* Cards rise in on tab switch, staggered by --i */
.is-live .plan { animation: rise .5s var(--ease) both; animation-delay: calc(var(--i) * 60ms); }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.4rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease),
              box-shadow .25s var(--ease);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 18px 40px -24px rgba(20, 22, 29, .4);
}

.plan--pop {
  border-color: var(--ink);
  border-width: 1.5px;
  box-shadow: 0 20px 44px -26px rgba(20, 22, 29, .45);
}

.plan__flag {
  position: absolute;
  top: -11px; left: 1.4rem;
  background: var(--ink);
  color: var(--paper);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 100px;
}

.plan__name {
  font-family: var(--ff-body);
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
}
.plan__price {
  font-family: var(--ff-disp);
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
  margin-top: .5rem;
  font-variant-numeric: tabular-nums;
}
.plan__price span { font-size: 1.3rem; vertical-align: super; margin-right: .06rem; }

.plan__rate {
  font-size: .8rem;
  color: var(--ink-4);
  margin-top: .4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.plan__list { margin-block: 1.2rem 1.6rem; }
.plan__list li {
  position: relative;
  padding-left: 1.5rem;
  padding-block: .34rem;
  font-size: .89rem;
  color: var(--ink-2);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 1px; top: .72rem;
  width: 9px; height: 5px;
  border-left: 1.6px solid var(--indigo);
  border-bottom: 1.6px solid var(--indigo);
  transform: rotate(-45deg);
}

.plans__note {
  margin-top: 1.8rem;
  color: var(--ink-4);
  font-size: .84rem;
  max-width: 68ch;
}

/* ==========================================================================
   10. COMPARISON
   ========================================================================== */
.cmp {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  overflow: hidden;
}
.cmp__t { width: 100%; border-collapse: collapse; }
.cmp__t th, .cmp__t td {
  text-align: left;
  padding: 1rem 1.4rem;
  font-size: .92rem;
  border-bottom: 1px solid var(--line);
}
.cmp__t thead th {
  font-family: var(--ff-disp);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding-block: .85rem;
}
.cmp__t tbody th {
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: 0;
  width: 34%;
}
.cmp__t td { color: var(--ink-2); }

/* The Premium column is lifted with the one accent, not a second colour */
.cmp__t .is-pro {
  background: var(--indigo-w);
  box-shadow: inset 1px 0 0 rgba(58, 47, 216, .16),
              inset -1px 0 0 rgba(58, 47, 216, .16);
}
.cmp__t thead .is-pro { color: var(--indigo); }

.cmp__t tbody tr:last-child th, .cmp__t tbody tr:last-child td { border-bottom: 0; }
.cmp__t tbody tr { transition: background-color .18s var(--ease); }
.cmp__t tbody tr:hover { background: rgba(20, 22, 29, .022); }

.tick {
  display: inline-block;
  width: 10px; height: 6px;
  margin-right: .55rem;
  border-left: 1.7px solid var(--ink-4);
  border-bottom: 1.7px solid var(--ink-4);
  transform: rotate(-45deg) translateY(-2px);
}
.tick--on { border-color: var(--indigo); }

.cmp__note { margin-top: 1.6rem; color: var(--ink-4); font-size: .88rem; max-width: 62ch; }

/* ==========================================================================
   11. FREE TEST FORM
   ========================================================================== */
.trial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.trial__h { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: .8rem; }
.trial__p { color: var(--ink-3); margin-top: 1.1rem; }
.trial__pts { margin-top: 1.6rem; }
.trial__pts li {
  position: relative;
  padding-left: 1.5rem;
  padding-block: .35rem;
  font-size: .92rem;
}
.trial__pts li::before {
  content: "";
  position: absolute;
  left: 1px; top: .72rem;
  width: 9px; height: 5px;
  border-left: 1.6px solid var(--indigo);
  border-bottom: 1.6px solid var(--indigo);
  transform: rotate(-45deg);
}

/* One gap value controls the whole form. No per-field margins, so nothing
   can stack on top of it — and align-content stops the grid distributing
   leftover height between the rows. */
.form {
  display: grid;
  gap: .85rem;
  align-content: start;
  align-self: start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.field { margin-bottom: 0; }
.field label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; }
.field .opt { color: var(--ink-4); font-weight: 400; }

.field input, .field select, .field textarea {
  /* Form controls are inline-block by default, which leaves descender space
     under each one from the inherited line-height. block removes it. */
  display: block;
  line-height: 1.4;
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: .74rem .9rem;
  font-size: .93rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(58, 47, 216, .12);
}

/* appearance:none removes the native arrow, so one is drawn back in */
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%236E7482' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .95rem center;
  background-size: 11px;
}

.field.is-bad input, .field.is-bad select { border-color: #C4321F; }
.field__err { display: block; color: #C4321F; font-size: .8rem; margin-top: .35rem; }

/* Off-screen rather than display:none — some bots skip hidden fields */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form .btn { margin-top: .3rem; }
.form__legal { color: var(--ink-4); font-size: .78rem; text-align: center; margin-top: .1rem; }
.form__msg { font-size: .9rem; text-align: center; }
.form__msg:empty { display: none; }
.form__msg.is-ok { color: var(--indigo); font-weight: 500; }

/* ==========================================================================
   12. FAQ
   ========================================================================== */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item h3 { font-size: inherit; letter-spacing: 0; }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: 0;
  padding: 1.3rem 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--ff-disp);
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--ink-2);
  transition: color .2s var(--ease);
}
.faq__q:hover, .faq__q[aria-expanded="true"] { color: var(--ink); }

.faq__ico { position: relative; width: 14px; height: 14px; flex: none; }
.faq__ico::before, .faq__ico::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1.6px;
  background: var(--indigo);
  transition: transform .25s var(--ease);
}
.faq__ico::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__ico::after { transform: rotate(0); }

.faq__a { overflow: hidden; }
.faq__a p { color: var(--ink-3); font-size: .95rem; padding-bottom: 1.4rem; max-width: 68ch; }

/* ==========================================================================
   13. CONTACT + FOOTER
   ========================================================================== */
.cons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.con {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.con:hover { transform: translateY(-3px); border-color: var(--line-2); }
.con h3 { font-size: 1.06rem; margin-bottom: .5rem; }
.con p { color: var(--ink-3); font-size: .92rem; }
.con .lnk {
  display: inline-block;
  margin-top: .9rem;
  color: var(--indigo);
  font-weight: 500;
  font-size: .93rem;
  border-bottom: 1px solid rgba(58, 47, 216, .3);
  transition: border-color .18s var(--ease);
}
.con .lnk:hover { border-bottom-color: var(--indigo); }

.devs { display: flex; flex-wrap: wrap; gap: .55rem; }
.devs li {
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: .55rem 1.1rem;
  font-size: .9rem;
  color: var(--ink-2);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.devs li:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.devs__note { margin-top: 1.6rem; color: var(--ink-4); font-size: .88rem; max-width: 58ch; }

.foot { border-top: 1px solid var(--line); }
.foot__in {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-block: clamp(40px, 6vw, 64px);
}
.foot__brand { max-width: 32ch; }
.foot__tag { color: var(--ink-3); font-size: .9rem; margin-top: .9rem; }
.foot__nav ul { display: grid; gap: .6rem; }
.foot__nav a { color: var(--ink-3); font-size: .9rem; transition: color .18s var(--ease); }
.foot__nav a:hover { color: var(--ink); }

.foot__bot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-4);
  font-size: .82rem;
}
.foot__legal { max-width: 52ch; }

/* ==========================================================================
   13b. TRIAL PAGE
   ========================================================================== */
.hero--slim { padding-top: clamp(104px, 12vw, 132px); padding-bottom: clamp(56px, 7vw, 88px); }

.crumb { position: relative; margin-bottom: 1.6rem; }
.crumb ol { display: flex; flex-wrap: wrap; gap: .45rem; font-size: .82rem; color: var(--ink-4); }
.crumb li + li::before { content: "/"; margin-right: .45rem; color: var(--line-2); }
.crumb a { color: var(--ink-3); }
.crumb a:hover { color: var(--indigo); }

.trial--hero { position: relative; align-items: start; }
.trial__h1 {
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-top: 1rem;
}
.trial__lead { color: var(--ink-2); margin-top: 1.2rem; font-size: 1.05rem; max-width: 52ch; }

.form__head {
  font-family: var(--ff-disp);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.025em;
  margin-bottom: .3rem;
  scroll-margin-top: 100px;
}

.steps--4 { grid-template-columns: repeat(4, 1fr); }

.callout {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--r-lg);
  background: var(--indigo-w);
  border: 1px solid rgba(58, 47, 216, .2);
}
.callout h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.callout p { color: var(--ink-2); font-size: .95rem; max-width: 72ch; }

.checks { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.checks li {
  background: var(--paper-2);
  padding: 1.5rem 0 1.5rem 3rem;
  position: relative;
}
.checks li::before {
  content: "";
  position: absolute;
  left: .6rem; top: 1.85rem;
  width: 11px; height: 6px;
  border-left: 2px solid var(--indigo);
  border-bottom: 2px solid var(--indigo);
  transform: rotate(-45deg);
}
.checks h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.checks p { color: var(--ink-3); font-size: .94rem; max-width: 66ch; }

.trial__after {
  margin-top: 2rem;
  font-size: .95rem;
  color: var(--ink-3);
}
.trial__after a {
  color: var(--indigo);
  font-weight: 500;
  border-bottom: 1px solid rgba(58, 47, 216, .3);
}
.trial__after a:hover { border-bottom-color: var(--indigo); }

/* ----- Trial CTA band ----- */
.band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--r-lg);
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.band__h { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-top: .8rem; }
.band__p { color: var(--ink-2); margin-top: 1rem; max-width: 54ch; }
.band__pts { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin-top: 1.3rem;
             font-size: .88rem; color: var(--ink-3); }
.band__pts li { position: relative; padding-left: 1.1rem; }
.band__pts li::before {
  content: "";
  position: absolute;
  left: 0; top: .6rem;
  width: 7px; height: 4px;
  border-left: 1.6px solid var(--indigo);
  border-bottom: 1.6px solid var(--indigo);
  transform: rotate(-45deg);
}
.band__act { display: grid; justify-items: start; gap: .6rem; }
.band__act .btn { width: 100%; justify-content: center; }
.band__note { font-size: .8rem; color: var(--ink-4); width: 100%; text-align: center; }

/* ==========================================================================
   14. MOTION
   ========================================================================== */
.js .r {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}
.js .r.is-in { opacity: 1; transform: none; }

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

/* ==========================================================================
   15. RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .plans, .plans--3 { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .feats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  .steps--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .steps, .steps--4 { grid-template-columns: 1fr; gap: 2rem; }
  .band { grid-template-columns: 1fr; }
  .cons  { grid-template-columns: 1fr; }
  .trial { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .burger { display: grid; }

  /* Mobile drawer. Clipped to nothing when closed — visibility alone doesn't
     stop a positioned child painting outside it. */
  .nav {
    position: fixed;
    inset: 74px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gut) 1.6rem;
    background: rgba(251, 250, 247, .97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity .24s var(--ease), transform .24s var(--ease),
                visibility .24s var(--ease), max-height .24s var(--ease);
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a {
    display: block;
    padding: .85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__list a.is-active::after { display: none; }
  .nav__cta { margin-top: 1.2rem; justify-content: center; padding-block: .8rem; }

  /* In the drawer the region menu pushes content down instead of floating.
     The drawer itself is clipped, so nothing can escape onto the hero. */
  .loc { margin-top: .9rem; }
  .loc__btn { width: 100%; justify-content: center; padding-block: .7rem; }
  .loc__menu {
    position: static;
    margin-top: .5rem;
    min-width: 0;
    box-shadow: none;
    background: var(--paper-2);
    border-color: var(--line);
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .loc__menu.is-open { display: block; }
  .loc__menu a { padding: .7rem .8rem; font-size: .95rem; }

  .aura { opacity: .38; height: 620px; }
}

@media (max-width: 620px) {
  .plans, .plans--3 { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .plan--pop { order: -1; }
  .feats { grid-template-columns: 1fr; }

  .hero__h1 { max-width: none; }
  .hero__cta .btn { flex: 1 1 100%; }

  .epg { --lane: 42px; --lane-gap: .4rem; }
  .epg__label { font-size: .64rem; }
  .blk { font-size: .6rem; height: 23px; padding-inline: .38rem; }
  .live { aspect-ratio: 16 / 9; }
  .screen__title { display: none; }

  /* Table becomes one card per row. data-label supplies the dropped header. */
  .cmp { background: transparent; border: 0; border-radius: 0; overflow: visible; }
  .cmp__t, .cmp__t tbody, .cmp__t tr, .cmp__t td, .cmp__t th { display: block; }
  .cmp__t thead { display: none; }
  .cmp__t tbody tr {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r);
    margin-bottom: .7rem;
    overflow: hidden;
  }
  .cmp__t tbody tr:hover { background: var(--paper); }
  .cmp__t tbody th {
    width: auto;
    background: var(--paper-3);
    border-bottom: 1px solid var(--line);
    padding: .75rem 1rem;
    font-size: .88rem;
  }
  .cmp__t td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .7rem 1rem;
    font-size: .87rem;
    text-align: right;
    border-bottom: 1px solid var(--line);
  }
  .cmp__t td:last-child { border-bottom: 0; }
  .cmp__t td::before {
    content: attr(data-label);
    flex: none;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--ink-4);
  }
  .cmp__t td.is-pro::before { color: var(--indigo); }
  .cmp__t .is-pro { box-shadow: none; }

  .foot__in { flex-direction: column; gap: 2rem; }
  .tab { padding: .55rem 1.2rem; font-size: .88rem; }
}
