/* ==========================================================================
   Maple TV — landing page
   Ported from the Claude Design prototype (project/Maple TV.dc.html).
   Inline prototype styles are consolidated into classes here; values are
   carried over verbatim so the rendered result matches the mock.
   ========================================================================== */

:root {
  --bg:        #0A0A0B;
  --surface:   #101012;
  --surface-2: #111113;
  --acid:      #E4FF1A;
  --acid-hi:   #F2FF7A;

  --ink:    #F5F4F0;
  --ink-2:  #DDDDE3;
  --ink-3:  #D6D6DC;
  --ink-4:  #C9C9D1;
  --ink-5:  #B4B4BC;
  --mute:   #A5A5AD;
  --mute-2: #93939C;
  --mute-3: #8E8E97;
  --mute-4: #7C7C85;
  --mute-5: #6A6A72;
  --mute-6: #5F5F68;

  --line:      rgba(255, 255, 255, .09);
  --line-10:   rgba(255, 255, 255, .10);
  --line-11:   rgba(255, 255, 255, .11);
  --line-13:   rgba(255, 255, 255, .13);
  --line-14:   rgba(255, 255, 255, .14);
  --line-16:   rgba(255, 255, 255, .16);
  --line-18:   rgba(255, 255, 255, .18);
  --line-20:   rgba(255, 255, 255, .20);

  --display: Anton, 'Arial Narrow', sans-serif;
  --sans:    'IBM Plex Sans', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;

  --gutter:  clamp(14px, 4vw, 24px);
  --section: clamp(40px, 8vw, 80px);
  --shell:   1180px;
}

/* --- base ---------------------------------------------------------------- */

html, body { margin: 0; padding: 0; background: var(--bg); overflow-x: hidden; }
* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  padding-bottom: 84px; /* clears the fixed action bar */
  max-width: 100%;
}

a { color: var(--acid); text-decoration: none; }
a:hover { color: var(--acid-hi); }
input, select, button, textarea { font-family: var(--sans); }
input::placeholder { color: var(--mute-5); }

:focus-visible { outline: 2px solid var(--acid); outline-offset: 2px; }

.shell { max-width: var(--shell); margin: 0 auto; }
.section { padding: var(--section) var(--gutter); border-bottom: 1px solid var(--line); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- shared type --------------------------------------------------------- */

.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--acid); margin-bottom: 14px;
}
.label {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .09em;
  text-transform: uppercase; color: var(--mute-3); margin-bottom: 7px;
}
.h2 {
  font-family: var(--display); font-weight: 400; font-size: clamp(30px, 7.4vw, 50px);
  line-height: .97; text-transform: uppercase; margin: 0 0 14px; text-wrap: balance;
}
.lede {
  font-size: clamp(15.5px, 4vw, 17.5px); color: var(--mute); margin: 0 0 22px;
  max-width: 460px; text-wrap: pretty;
}

/* --- animations ---------------------------------------------------------- */

@keyframes mtv-tick  { from { transform: translateX(0); }        to { transform: translateX(-50%); } }
@keyframes mtv-blink { 0%, 100% { opacity: 1; }                  50% { opacity: .2; } }
@keyframes mtv-bar   { 0%, 100% { transform: scaleY(.3); }       50% { transform: scaleY(1); } }
@keyframes mtv-rise  { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* --- header -------------------------------------------------------------- */

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10, 10, 11, .94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: var(--shell); margin: 0 auto;
  padding: 11px var(--gutter);
  display: flex; align-items: center; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 8px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 26px; height: 26px; background: var(--acid); color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 17px; line-height: 1;
}
.brand__name {
  font-family: var(--display); font-size: 19px; letter-spacing: .01em; text-transform: uppercase;
}
.header__right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.lang { display: flex; border: 1px solid var(--line-16); }
.lang__btn {
  padding: 6px 10px; border: none; cursor: pointer;
  font-family: var(--mono); font-weight: 600; font-size: 11.5px;
  background: transparent; color: var(--mute-3);
}
.lang__btn.is-active { background: var(--acid); color: var(--bg); }

.btn-nav {
  padding: 9px 15px; background: var(--acid); color: var(--bg);
  font-weight: 700; font-size: 13.5px; text-transform: uppercase;
  letter-spacing: .04em; white-space: nowrap;
}
.btn-nav:hover { background: var(--acid-hi); color: var(--bg); }

/* --- hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  padding: clamp(22px, 5vw, 44px) var(--gutter) clamp(34px, 6vw, 56px);
  border-bottom: 1px solid var(--line);
}
.hero__grid {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(28px, 4vw, 54px); align-items: start;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px; background: var(--acid); color: var(--bg);
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
}
.badge__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--bg);
  animation: mtv-blink 1.2s steps(1, end) infinite;
}
.hero__h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 11vw, 76px); line-height: .93; letter-spacing: -.005em;
  text-transform: uppercase; margin: 0 0 16px; text-wrap: balance;
}
.hero__h1 em { font-style: normal; color: var(--acid); }
.hero__sub {
  font-size: clamp(16px, 4.3vw, 19px); color: var(--mute);
  margin: 0 0 22px; max-width: 480px; text-wrap: pretty;
}

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 1px; background: var(--line-10); border: 1px solid var(--line-10);
  max-width: 520px;
}
.stats__cell { background: var(--bg); padding: 13px 12px; }
.stats__num { font-family: var(--display); font-size: clamp(20px, 5.5vw, 26px); line-height: 1; }
.stats__label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--mute-4); margin-top: 4px;
}

/* --- trial form ---------------------------------------------------------- */

.trial {
  position: relative;
  scroll-margin-top: 70px;
  border: 1px solid rgba(228, 255, 26, .55);
  background: linear-gradient(180deg, #141418 0%, var(--surface) 60%);
  padding: clamp(24px, 5vw, 32px);
  box-shadow:
    0 30px 70px -28px rgba(228, 255, 26, .22),
    0 14px 44px rgba(0, 0, 0, .7);
}
/* acid strip across the top edge */
.trial::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--acid), var(--acid-hi) 45%, rgba(228, 255, 26, .3));
}
.trial__h {
  font-family: var(--display); font-size: clamp(26px, 6.8vw, 32px);
  line-height: 1; text-transform: uppercase; margin-bottom: 6px;
}
.trial__sub { font-size: 14.5px; color: var(--mute); margin-bottom: 22px; text-wrap: pretty; }
.trial__fields { display: grid; gap: 16px; }

/* numbered labels, echoing the 01–06 motif used in the features and steps */
.trial .label { display: flex; align-items: center; gap: 8px; }
.trial .label::before {
  content: attr(data-step);
  color: var(--acid); font-size: 10px; letter-spacing: .08em; opacity: .85;
}

.field {
  width: 100%; padding: 15px 13px;
  background-color: #0C0C0E;
  border: 1px solid var(--line-16);
  color: var(--ink); font-size: 16px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field:hover { border-color: rgba(228, 255, 26, .38); }
.field:focus, .field:focus-visible {
  outline: none;
  border-color: var(--acid);
  background-color: var(--bg);
  box-shadow: 0 0 0 3px rgba(228, 255, 26, .15);
}
.field.is-invalid { border-color: #FF6B6B; box-shadow: 0 0 0 3px rgba(255, 107, 107, .13); }

/* acid chevron in place of the default browser arrow */
select.field {
  appearance: none; -webkit-appearance: none;
  padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' fill='none' stroke='%23E4FF1A' stroke-width='1.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px 8px;
}
select.field option { background: var(--surface); color: var(--ink); }

.btn-submit {
  width: 100%; padding: 19px; border: none;
  background: linear-gradient(180deg, var(--acid-hi) 0%, var(--acid) 55%);
  color: var(--bg);
  font-family: var(--display); font-size: 19px; letter-spacing: .02em;
  text-transform: uppercase; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 12px 32px -12px rgba(228, 255, 26, .55);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-submit::after { content: "→"; transition: transform .18s ease; }
.btn-submit:hover {
  background: var(--acid-hi);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -12px rgba(228, 255, 26, .7);
}
.btn-submit:hover::after { transform: translateX(4px); }
.btn-submit:active { transform: translateY(0); box-shadow: 0 8px 24px -12px rgba(228, 255, 26, .5); }

.trial__error { font-size: 13px; color: #FF9B9B; }
.trial__error[hidden] { display: none; }

.trust { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--mute-4); }
.trust span { display: inline-flex; align-items: center; gap: 6px; }
.trust span::before { content: "\2713"; color: var(--acid); font-size: 11px; font-weight: 700; }

.sent { padding: 22px 4px; animation: mtv-rise .35s ease both; }
.sent__tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--acid); margin-bottom: 10px;
}
.sent__h {
  font-family: var(--display); font-size: clamp(26px, 7vw, 34px);
  line-height: 1.02; text-transform: uppercase; margin-bottom: 10px;
}
.sent__sub { font-size: 15px; color: var(--mute); margin-bottom: 20px; text-wrap: pretty; }
.sent__cta {
  display: block; text-align: center; padding: 18px;
  background: linear-gradient(180deg, var(--acid-hi) 0%, var(--acid) 55%);
  color: var(--bg);
  font-family: var(--display); font-size: 18px; text-transform: uppercase;
  box-shadow: 0 12px 32px -12px rgba(228, 255, 26, .55);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.sent__cta:hover {
  background: var(--acid-hi); color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -12px rgba(228, 255, 26, .7);
}

/* --- ticker -------------------------------------------------------------- */

.ticker {
  background: var(--acid); color: var(--bg); overflow: hidden;
  padding: 9px 0; border-bottom: 1px solid rgba(0, 0, 0, .15);
}
.ticker__track {
  display: flex; gap: 28px; width: max-content;
  animation: mtv-tick 30s linear infinite;
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}

/* --- sports -------------------------------------------------------------- */

.split {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 52px);
}
.split--center { align-items: center; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  padding: 7px 11px; border: 1px solid var(--line-16);
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3);
}
.chip--plain {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: normal; text-transform: none;
  border-color: var(--line-14); color: var(--ink-4);
}

.panel { border: 1px solid var(--line-11); }
.panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--surface-2);
  border-bottom: 1px solid var(--line-11);
}
.panel__title {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mute-3);
}
.eq { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.eq i {
  width: 3px; height: 100%; background: var(--acid);
  transform-origin: bottom; animation: mtv-bar 1s ease-in-out infinite;
}
.eq i:nth-child(2) { animation-delay: .2s; }
.eq i:nth-child(3) { animation-delay: .4s; }

.game {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.game__league {
  width: 40px; flex: none; font-family: var(--mono); font-size: 11px;
  font-weight: 600; color: var(--acid); letter-spacing: .05em;
}
.game__body { flex: 1; min-width: 0; }
.game__match { font-size: 15px; font-weight: 600; }
.game__channel { font-size: 12.5px; color: var(--mute-4); }

.panel__cta {
  display: block; padding: 15px 16px; font-family: var(--mono);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--acid);
}

/* --- calculator ---------------------------------------------------------- */

.calc__sub { margin-bottom: 12px; max-width: 440px; }
.calc__note { font-size: 13.5px; color: var(--mute-4); }
.calc { border: 1px solid var(--line-13); background: var(--surface); padding: clamp(20px, 5vw, 28px); }
.calc__label { margin-bottom: 8px; }
.calc__bill { font-family: var(--display); font-size: clamp(32px, 9vw, 44px); line-height: 1; margin-bottom: 6px; }
.calc__range { width: 100%; accent-color: var(--acid); height: 34px; margin-bottom: 16px; }
.calc__planlabel { margin-bottom: 9px; }
.calc__terms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 20px; }
.term {
  padding: 13px 4px; cursor: pointer; font-family: var(--mono); font-weight: 600;
  font-size: 13px; border: 1px solid var(--line-16); background: transparent; color: var(--mute);
}
.term.is-active { border-color: var(--acid); color: var(--acid); }
.calc__result { padding: 18px; background: var(--acid); color: var(--bg); }
.calc__result-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 2px;
}
.calc__savings { font-family: var(--display); font-size: clamp(34px, 9vw, 46px); line-height: 1; }
.calc__detail { font-size: 13px; margin-top: 4px; opacity: .75; }

.btn-ghost {
  display: block; text-align: center; padding: 16px;
  border: 1px solid var(--line-20); color: var(--ink);
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
}
.btn-ghost:hover { border-color: var(--acid); color: var(--ink); }
.calc__cta { margin-top: 14px; }

/* --- features ------------------------------------------------------------ */

.features__h2 { margin: 0 0 30px; max-width: 700px; }
.features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1px; background: var(--line-10); border: 1px solid var(--line-10);
}
.feature { background: var(--bg); padding: 24px 22px; }
.feature__num {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; color: var(--acid); margin-bottom: 12px;
}
.feature__title {
  font-family: var(--display); font-size: 20px; line-height: 1.05;
  text-transform: uppercase; margin-bottom: 8px;
}
.feature__body { font-size: 14.5px; color: var(--mute-2); text-wrap: pretty; }

/* --- pricing ------------------------------------------------------------- */

.pricing__head { max-width: 640px; margin-bottom: 28px; }
.pricing__head .h2 { margin: 0 0 12px; }
.pricing__head .lede { max-width: none; margin: 0; }
.plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 14px; align-items: start;
}
.plan { border: 1px solid var(--line-13); padding: 26px 24px; }
.plan--featured { order: -1; border-color: var(--acid); background: var(--surface); }
.plan__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.plan__name { font-family: var(--display); font-size: 20px; text-transform: uppercase; }
.plan > .plan__name { margin-bottom: 14px; }
.plan__badge {
  padding: 4px 8px; background: var(--acid); color: var(--bg);
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.plan__price { display: flex; align-items: baseline; gap: 6px; }
.plan__amount { font-family: var(--display); font-size: 52px; line-height: 1; }
.plan__cur { font-family: var(--mono); font-size: 12.5px; color: var(--mute-3); }
.plan__permo { font-family: var(--mono); font-size: 12px; color: var(--mute-3); margin-bottom: 18px; }
.plan__cta {
  display: block; text-align: center; padding: 15px;
  font-family: var(--display); font-size: 16px; text-transform: uppercase; margin-bottom: 18px;
  border: 1px solid var(--line-20); color: var(--ink);
}
.plan__cta:hover { border-color: var(--acid); color: var(--ink); }
.plan__cta--solid { background: var(--acid); color: var(--bg); border-color: var(--acid); }
.plan__cta--solid:hover { background: var(--acid-hi); border-color: var(--acid-hi); color: var(--bg); }
.plan__feat { display: flex; gap: 9px; font-size: 14.5px; color: var(--mute); padding: 5px 0; }
.plan__feat::before { content: "—"; color: var(--mute-6); }
.plan--featured .plan__feat { color: var(--ink-4); }
.plan--featured .plan__feat::before { color: var(--acid); }

.pay {
  margin-top: 18px; display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--mute-4);
}

/* --- setup --------------------------------------------------------------- */

.setup__h2 { margin: 0 0 28px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.step { border-top: 2px solid var(--acid); padding: 18px 0 0; }
.step__num { font-family: var(--display); font-size: 34px; line-height: 1; color: var(--acid); margin-bottom: 8px; }
.step__title { font-family: var(--display); font-size: 19px; text-transform: uppercase; margin-bottom: 6px; }
.step__body { font-size: 14.5px; color: var(--mute-2); text-wrap: pretty; }

.devices { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line-10); }
.devices__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mute-3); margin-bottom: 12px;
}

/* --- reviews ------------------------------------------------------------- */

.reviews {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 14px;
}
.review { border: 1px solid var(--line-11); padding: 24px 22px; }
.review__stars { color: var(--acid); font-size: 13px; letter-spacing: 3px; margin-bottom: 12px; }
.review__quote { font-size: 15.5px; color: var(--ink-2); margin-bottom: 14px; text-wrap: pretty; }
.review__who { font-family: var(--mono); font-size: 11.5px; letter-spacing: .05em; color: var(--mute-4); }

/* --- faq ----------------------------------------------------------------- */

.faq__shell { max-width: 820px; margin: 0 auto; }
.faq__h2 { margin: 0 0 24px; }
.faq { border-bottom: 1px solid var(--line-11); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 0; background: transparent; border: none;
  color: var(--ink); font-size: 16px; font-weight: 600; text-align: left; cursor: pointer;
}
.faq__icon {
  font-size: 22px; color: var(--acid); flex: none; line-height: 1;
  transition: transform .2s; transform: rotate(0deg);
}
.faq.is-open .faq__icon { transform: rotate(45deg); }
.faq__a { padding: 0 0 18px; font-size: 15px; color: var(--mute-2); max-width: 640px; text-wrap: pretty; }
.faq:not(.is-open) .faq__a { display: none; }

/* --- closing cta --------------------------------------------------------- */

.cta {
  padding: clamp(46px, 9vw, 84px) var(--gutter);
  background: var(--acid); color: var(--bg);
}
.cta__h2 {
  font-family: var(--display); font-weight: 400; font-size: clamp(34px, 9.5vw, 68px);
  line-height: .94; text-transform: uppercase; margin: 0 0 14px; text-wrap: balance;
}
.cta__sub { font-size: clamp(16px, 4.2vw, 19px); margin: 0 0 24px; max-width: 520px; opacity: .8; }
.cta__btn {
  display: inline-block; padding: 18px 30px; background: var(--bg); color: var(--acid);
  font-family: var(--display); font-size: 19px; text-transform: uppercase;
}
.cta__btn:hover { background: #1A1A1D; color: var(--acid); }

/* --- footer -------------------------------------------------------------- */

.footer { padding: 36px var(--gutter) 30px; }
.footer__grid {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 26px;
}
.footer__brand { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer__mark {
  width: 24px; height: 24px; background: var(--acid); color: var(--bg);
  display: grid; place-items: center; font-family: var(--display); font-size: 15px;
}
.footer__name { font-family: var(--display); font-size: 17px; text-transform: uppercase; }
.footer__blurb { font-size: 13.5px; color: var(--mute-4); max-width: 290px; margin: 0; text-wrap: pretty; }
.footer__head {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mute-3); margin-bottom: 10px;
}
.footer__links { display: grid; gap: 7px; font-size: 13.5px; }
.footer__links a { color: var(--ink-5); }
.footer__links a:hover { color: var(--acid); }
.footer__hours { font-size: 13.5px; color: var(--ink-5); }
.footer__legal {
  max-width: var(--shell); margin: 24px auto 0; padding-top: 18px;
  border-top: 1px solid var(--line); font-size: 12px; color: var(--mute-6); text-wrap: pretty;
}

/* --- fixed action bar ---------------------------------------------------- */

.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  padding: 9px clamp(10px, 4vw, 18px) calc(9px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 11, .96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(228, 255, 26, .35);
  display: flex; align-items: center; gap: 10px;
}
.bar__text { flex: 1; min-width: 0; }
.bar__title {
  font-family: var(--display); font-size: 15px; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bar__sub {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--mute-4);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bar__chat {
  flex: none; width: 48px; height: 48px; border: 1px solid var(--line-18);
  display: grid; place-items: center; font-family: var(--mono);
  font-size: 10px; letter-spacing: .04em; color: var(--ink-5);
}
.bar__chat:hover { border-color: var(--acid); color: var(--acid); }
.bar__cta {
  flex: none; padding: 15px 20px; background: var(--acid); color: var(--bg);
  font-family: var(--display); font-size: 16px; text-transform: uppercase; white-space: nowrap;
}
.bar__cta:hover { background: var(--acid-hi); color: var(--bg); }
