@font-face {
  font-family: 'Gabarito';
  src: url('/assets/fonts/gabarito-var.woff2?v=61a712c4') format('woff2-variations');
  font-weight: 400 900;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-var.woff2?v=938c6e80') format('woff2-variations');
  font-weight: 400 800;
  font-style: normal;
  font-display: optional;
}

:root {
  --ink: #0B0D1F;
  --canvas: #12132A;
  --panel: #1A1C3A;
  --panel-hi: #23264A;
  --line: #2C2F55;
  --text: #EEF1FF;
  --mute: #9AA0C9;
  --aqua: #2FE6D0;
  --aqua-deep: #17A796;
  --aqua-soft: rgba(47, 230, 208, .14);
  --rose: #FF4D9E;
  --rose-soft: rgba(255, 77, 158, .14);

  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;

  --ease-ink: cubic-bezier(.22, 1, .36, 1);
  --ease-snap: cubic-bezier(.34, 1.56, .64, 1);
  --ease-flow: cubic-bezier(.65, 0, .35, 1);

  --head: 'Gabarito', system-ui, sans-serif;
  --body: 'Manrope', system-ui, sans-serif;

  --pad: clamp(18px, 4vw, 44px);
  --gap: clamp(16px, 2vw, 26px);
  --sec: clamp(40px, 8vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 400 clamp(15px, 1.05vw, 16.5px)/1.72 var(--body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--head);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 { font-size: clamp(34px, 5.6vw, 68px); }
h2 { font-size: clamp(27px, 3.5vw, 46px); }
h3 { font-size: clamp(19px, 1.6vw, 24px); }

p { margin: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; overflow-wrap: break-word; word-break: break-word; }

a, button, summary, .card, label {
  -webkit-tap-highlight-color: transparent;
}
button, summary, .btn, .nav a, .brand { user-select: none; }

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

:focus-visible { outline: 2px solid var(--aqua); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.wrap { width: min(1320px, 100%); margin-inline: auto; padding-inline: var(--pad); }

/* grain + ink field behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(58% 44% at 78% 6%, rgba(47, 230, 208, .13), transparent 62%),
    radial-gradient(46% 40% at 8% 24%, rgba(255, 77, 158, .10), transparent 66%),
    linear-gradient(180deg, #0B0D1F 0%, #0D0F24 42%, #0B0D1F 100%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-family: var(--head);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -.01em;
  transition: transform 150ms var(--ease-ink), box-shadow 150ms var(--ease-ink), background-color 150ms var(--ease-ink);
}
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary {
  background: var(--aqua);
  color: #08131A;
  box-shadow: 0 4px 0 var(--aqua-deep);
}
.btn--ghost {
  background: var(--panel-hi);
  color: var(--text);
  box-shadow: 0 4px 0 var(--line);
}
/* ring is inset, not a border — a border would make this variant 2px taller than the rest */
.btn--line {
  background: rgb(114 153 172 / 54%);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line), 0 4px 0 var(--line);
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover { background: #4bf0dc; }
  .btn--ghost:hover { background: #2b2f5c; }
  .btn--line:hover { background: rgb(132 172 191 / 60%); box-shadow: inset 0 0 0 1px var(--aqua), 0 4px 0 var(--aqua-deep); }
}
.btn--primary:active, .btn--ghost:active { transform: translateY(4px); box-shadow: 0 0 0 transparent; }
.btn--line:active { transform: translateY(4px); box-shadow: inset 0 0 0 1px var(--line); }


/* ---------- header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 13, 31, .86);
  border-bottom: 1px solid var(--line);
}
.head-top { display: flex; align-items: center; gap: 20px; padding-block: 14px; }

.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark { width: 34px; height: 34px; color: var(--aqua); flex: none; }
.brand__word {
  font-family: var(--head);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.025em;
  line-height: 1;
}
.brand__word b { color: var(--aqua); font-weight: 800; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-family: var(--head);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--mute);
  transition: color 160ms var(--ease-ink);
}
.nav a::before {
  content: '';
  position: absolute;
  inset: -6px 2px;
  border-radius: 14px;
  background: radial-gradient(60% 100% at 50% 60%, rgba(47, 230, 208, .3), transparent 70%);
  filter: blur(7px);
  opacity: 0;
  transform: scale(.85);
  transition: opacity 200ms var(--ease-ink), transform 200ms var(--ease-ink);
}
@media (hover: hover) and (pointer: fine) {
  .nav a:hover { color: var(--text); }
  .nav a:hover::before { opacity: 1; transform: scale(1); }
}
.nav a[aria-current="page"] { color: var(--aqua); }

/* flex column with a real gap: grid auto-rows stretched to the button height and blew the bars apart */
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgb(114 153 172 / 54%);
  box-shadow: 0 3px 0 var(--line);
}
.burger:active { transform: translateY(3px); box-shadow: 0 0 0 transparent; }
.burger span {
  display: block;
  width: 20px; height: 2px;
  flex: none;
  background: var(--text);
  border-radius: 2px;
  transition: transform 220ms var(--ease-ink), opacity 160ms var(--ease-ink);
}
/* bar centres sit 7px apart (2px bar + 5px gap), so the cross closes on exactly 7px */
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.ta-hero { position: relative; padding-block: clamp(48px, 7vw, 96px) var(--sec); overflow: clip; }
.ta-hero__wall {
  position: absolute;
  inset: -3%;
  z-index: 0;
  background-image: url('/assets/img/hero/cover-wall.avif?v=2da1e101');
  background-size: cover;
  background-position: center top;
  animation: wallDrift 34s var(--ease-flow) infinite alternate;
}
.ta-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(96deg, rgba(11, 13, 31, .97) 4%, rgba(11, 13, 31, .86) 44%, rgb(11 13 31 / 88%) 82%),
    linear-gradient(180deg, rgba(11, 13, 31, .20) 0%, rgba(11, 13, 31, .54) 42%, rgba(11, 13, 31, .94) 88%, var(--ink) 100%);
}
@keyframes wallDrift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1.4%, -1%, 0); }
}

.ta-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}
.ta-hero h1 { max-width: 17ch; text-wrap: balance; }
.ta-hero h1 em { font-style: normal; color: var(--aqua); }
.ta-hero__lead { margin-top: 22px; color: #D2D7F4; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.62; }
.ta-hero__facts { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 18px; margin-top: 20px; color: #A8AED6; font-size: 14.5px; }
.ta-hero__facts b { color: var(--text); font-weight: 700; }
.ta-hero__facts i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); font-style: normal; flex: none;
  box-shadow: 0 0 0 4px var(--aqua-soft);
}

.ta-hero__mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  transform: rotate(-4deg);
}
.ta-hero__mosaic img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
/* tiles drift apart as the page scrolls — driven from app.js, transform only */
.ta-hero__mosaic img { will-change: transform; }

/* ---------- pulse strip ---------- */
.ta-pulse { position: relative; z-index: 3; padding-block: 0 var(--sec); }
@media (min-width: 1221px) {
  /* half of the strip sits over the hero; the hero's own absolute scrim is why z-index is needed */
  .ta-pulse { margin-top: -88px; }
  .ta-pulse__grid { box-shadow: 0 26px 60px -34px rgba(0, 0, 0, .95); }
  .ta-hero { padding-bottom: calc(var(--sec) + 60px); }
}
.ta-pulse__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: clip;
}
.ta-pulse__cell { padding: clamp(14px, 1.5vw, 19px) clamp(20px, 2.4vw, 30px); background: var(--panel); }
.ta-pulse__cell svg { width: 22px; height: 22px; color: var(--aqua); }
.ta-pulse__num {
  display: block;
  margin: 10px 0 3px;
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -.03em;
}
.ta-pulse__cell p { color: var(--mute); font-size: 14px; line-height: 1.5; }

/* ---------- shared section head ---------- */
.sec-head { display: grid; grid-template-columns: 1fr auto; gap: 20px 40px; align-items: end; margin-bottom: clamp(26px, 3vw, 44px); }
.sec-head p { color: var(--mute); margin-top: 14px; }

/* ---------- about ---------- */
.ta-about { padding-block: var(--sec); border-top: 1px solid var(--line); }
.ta-about__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(22px, 3vw, 48px); align-items: center; }
.ta-about__body { display: grid; gap: 14px; }
.ta-about__body p { color: #C0C6E8; font-size: clamp(15.5px, 1.15vw, 17.5px); }
.ta-about__body p:first-of-type { color: var(--text); font-size: clamp(16.5px, 1.35vw, 20px); line-height: 1.5; }
/* three claims as compact one-line rows rather than a second card grid */
.ta-about__marks { list-style: none; margin: 2px 0 4px; padding: 0; display: grid; gap: 11px; }
.ta-about__mark { display: flex; align-items: flex-start; gap: 11px; }
.ta-about__mark svg { width: 19px; height: 19px; color: var(--aqua); flex: none; margin-top: 3px; }
.ta-about__mark > span { color: var(--mute); font-size: 14.5px; line-height: 1.55; }
.ta-about__mark b { color: var(--text); font-family: var(--head); font-weight: 700; }
.ta-about__art { position: relative; }
.ta-about__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
@media (min-width: 1221px) {
  /* art sits left on wide screens, but stays after the copy in the DOM so mobile reads text first */
  .ta-about__art { grid-column: 1; grid-row: 1; }
  .ta-about__body { grid-column: 2; grid-row: 1; }
}

/* ---------- arena grid ---------- */
.ta-arena { padding-block: var(--sec); border-top: 1px solid var(--line); }
.ta-arena__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gap); }

.gcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
  overflow: clip;
  transition: transform 220ms var(--ease-ink), border-color 220ms var(--ease-ink), box-shadow 220ms var(--ease-ink);
}
.gcard__shot { position: relative; display: block; }
.gcard__shot img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.gcard__shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(11, 13, 31, .82) 100%);
}
.gcard__tag {
  position: absolute;
  left: 10px; top: 10px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11, 13, 31, .8);
  border: 1px solid var(--line);
  color: var(--aqua);
  font-family: var(--head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.gcard__body { display: flex; flex-direction: column; gap: 8px; padding: 16px; flex: 1; }
.gcard__name { font-family: var(--head); font-weight: 700; font-size: 17.5px; letter-spacing: -.015em; }
.gcard__meta { display: flex; align-items: center; gap: 10px; color: var(--mute); font-size: 13px; }
.gcard__meta svg { width: 14px; height: 14px; color: var(--aqua); }
.gcard__note { color: var(--mute); font-size: 13.5px; line-height: 1.5; }
.gcard__row { display: flex; gap: 9px; margin-top: auto; padding-top: 6px; }
.gcard__row .btn { flex: 1; justify-content: center; padding: 10px 12px; font-size: 14px; }
.gcard__row .btn svg { width: 17px; height: 17px; }

.gcard::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow 220ms var(--ease-ink);
}
@media (hover: hover) and (pointer: fine) {
  .gcard:hover { transform: translateY(-5px); border-color: rgba(47, 230, 208, .5); box-shadow: 0 18px 40px -22px rgba(0, 0, 0, .9); }
  .gcard:hover::after { box-shadow: inset 0 1px 0 0 rgba(47, 230, 208, .45); }
}

.tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: var(--r-md);
  border: 1px solid rgba(47, 230, 208, .34);
  background: linear-gradient(160deg, rgba(47, 230, 208, .12), rgba(26, 28, 58, .9) 62%);
  transition: transform 220ms var(--ease-ink), border-color 220ms var(--ease-ink);
}
.tile--rose { border-color: rgba(255, 77, 158, .34); background: linear-gradient(160deg, rgba(255, 77, 158, .13), rgba(26, 28, 58, .9) 62%); }
.tile svg { width: 24px; height: 24px; color: var(--aqua); }
.tile--rose svg { color: var(--rose); }
.tile h3 { font-size: 19px; }
.tile p { color: var(--mute); font-size: 13.5px; line-height: 1.55; }
.tile .btn { margin-top: auto; align-self: flex-start; }
@media (hover: hover) and (pointer: fine) {
  .tile:hover { transform: translateY(-5px); border-color: var(--aqua); }
  .tile--rose:hover { border-color: var(--rose); }
}

/* editorial rhythm: some cards claim two columns and flip to a side-by-side layout */
@media (min-width: 1221px) {
  .ta-arena__grid > :is(:nth-child(1), :nth-child(2), :nth-child(5), :nth-child(6)) { grid-column: span 2; }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(2), :nth-child(5), :nth-child(6)) { flex-direction: row; }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(2), :nth-child(5), :nth-child(6)) .gcard__shot { flex: 0 0 47%; align-self: stretch; }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(2), :nth-child(5), :nth-child(6)) .gcard__shot img { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(2), :nth-child(5), :nth-child(6)) .gcard__shot::after { background: linear-gradient(90deg, transparent 44%, rgba(11, 13, 31, .74) 100%); }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(2), :nth-child(5), :nth-child(6)) .gcard__body { padding: 20px; gap: 10px; justify-content: center; }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(2), :nth-child(5), :nth-child(6)) .gcard__name { font-size: clamp(19px, 1.6vw, 23px); }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(2), :nth-child(5), :nth-child(6)) .gcard__note { font-size: 14px; }
}

@media (min-width: 821px) and (max-width: 1220px) {
  .ta-arena__grid > :is(:nth-child(1), :nth-child(4), :nth-child(5), :nth-child(8), :nth-child(9), :nth-child(12)) { grid-column: span 2; }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(4), :nth-child(5), :nth-child(8), :nth-child(9)) { flex-direction: row; }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(4), :nth-child(5), :nth-child(8), :nth-child(9)) .gcard__shot { flex: 0 0 47%; align-self: stretch; }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(4), :nth-child(5), :nth-child(8), :nth-child(9)) .gcard__shot img { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(4), :nth-child(5), :nth-child(8), :nth-child(9)) .gcard__shot::after { background: linear-gradient(90deg, transparent 44%, rgba(11, 13, 31, .74) 100%); }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(4), :nth-child(5), :nth-child(8), :nth-child(9)) .gcard__body { padding: 20px; gap: 10px; justify-content: center; }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(4), :nth-child(5), :nth-child(8), :nth-child(9)) .gcard__name { font-size: clamp(19px, 1.6vw, 23px); }
  .ta-arena__grid > .gcard:is(:nth-child(1), :nth-child(4), :nth-child(5), :nth-child(8), :nth-child(9)) .gcard__note { font-size: 14px; }
  .ta-arena__grid > .tile:nth-child(12) { justify-content: center; }
  .ta-arena__grid > .tile:nth-child(12) .btn { margin-top: 18px; }
}

/* ---------- how ---------- */
.ta-how { padding-block: var(--sec); border-top: 1px solid var(--line); }
.ta-how__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
.ta-how__step {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--canvas);
}
.ta-how__step img { width: 100%; height: auto; border-radius: var(--r-md); }
.ta-how__step h3 { font-size: 20px; }
.ta-how__step p { color: var(--mute); font-size: 14.5px; }
.ta-how__ribbon { display: none; }
@media (min-width: 821px) {
  .ta-how__grid { position: relative; }
  .ta-how__ribbon {
    display: block;
    position: absolute;
    inset: 46% 0 auto;
    height: 2px;
    z-index: -1;
    background: repeating-linear-gradient(90deg, rgba(47, 230, 208, .55) 0 14px, transparent 14px 26px);
  }
}

/* ---------- faq ---------- */
.ta-faq { padding-block: var(--sec); border-top: 1px solid var(--line); }
.ta-faq__list { display: grid; gap: 12px; }
.qa {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--canvas);
  overflow: hidden;
  transition: border-color 200ms var(--ease-ink);
}
.qa summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 18.5px);
  letter-spacing: -.015em;
  list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary h3 { font: inherit; letter-spacing: inherit; }
.qa summary svg {
  width: 20px; height: 20px;
  margin-left: auto;
  flex: none;
  color: var(--aqua);
  transition: transform 240ms var(--ease-ink);
}
.qa.is-open summary svg { transform: rotate(180deg); }
.qa.is-open { border-color: rgba(47, 230, 208, .42); }
.qa__body { padding: 0 20px 20px; }
.qa__body p { color: var(--mute); }
.qa__body p + p { margin-top: 12px; }

/* ---------- voices ---------- */
.ta-voices { padding-block: var(--sec); border-top: 1px solid var(--line); }
.ta-voices__stage { overflow: clip; }
.ta-voices__track {
  display: flex;
  gap: var(--gap);
  transition: transform 480ms var(--ease-flow);
  will-change: transform;
}
.voice {
  flex: 0 0 calc((100% - var(--gap) * 2) / 3);
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--canvas);
}
.voice__stars { display: flex; gap: 3px; color: var(--aqua); }
.voice__stars svg { width: 15px; height: 15px; }
.voice p { color: #C0C6E8; font-size: 15px; }
.voice__who { display: flex; align-items: center; gap: 13px; padding-top: 14px; border-top: 1px solid var(--line); }
.voice__ava {
  width: 52px; height: 52px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--line);
  object-fit: cover;
}
.voice__id { display: grid; gap: 1px; min-width: 0; }
.voice__id b { font-family: var(--head); font-weight: 700; font-size: 15.5px; }
.voice__id > span { color: var(--mute); font-size: 13px; }
.ta-voices__nav { display: flex; align-items: center; gap: 10px; }
.ta-voices__nav button {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(26, 28, 58, .55);
  box-shadow: 0 3px 0 var(--line);
  color: var(--text);
  transition: border-color 180ms var(--ease-ink), color 180ms var(--ease-ink), transform 140ms var(--ease-ink), box-shadow 140ms var(--ease-ink);
}
.ta-voices__nav button svg { width: 20px; height: 20px; }
.ta-voices__nav button:first-child svg { transform: rotate(180deg); }
.ta-voices__nav button:active { transform: translateY(3px); box-shadow: 0 0 0 transparent; }
.ta-voices__nav button[disabled] { opacity: .38; }
@media (hover: hover) and (pointer: fine) {
  .ta-voices__nav button:not([disabled]):hover { border-color: var(--aqua); color: var(--aqua); }
}
.ta-voices__dots { display: flex; gap: 2px; margin-top: 18px; justify-content: center; }
.ta-voices__dots button {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.ta-voices__dots button::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
  transition: background-color 200ms var(--ease-ink), transform 200ms var(--ease-snap);
}
.ta-voices__dots button[aria-current="true"]::before { background: var(--aqua); transform: scale(1.3); }

/* ---------- contact ---------- */
.ta-contact { padding-block: var(--sec); border-top: 1px solid var(--line); }
.ta-contact__grid { display: grid; grid-template-columns: 1fr .95fr; gap: clamp(28px, 4vw, 66px); align-items: start; }
.ta-contact__body p { color: var(--mute); margin-top: 16px; }
.ta-contact__list { display: grid; gap: 12px; margin-top: 24px; }
.ta-contact__list li { display: flex; gap: 12px; align-items: flex-start; color: #C0C6E8; font-size: 14.5px; }
.ta-contact__list svg { width: 19px; height: 19px; color: var(--aqua); flex: none; margin-top: 3px; }

.ta-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--canvas);
}
.field { display: grid; gap: 8px; }
.field > span { font-family: var(--head); font-weight: 600; font-size: 14px; color: var(--mute); }
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--text);
  font: 400 15.5px/1.5 var(--body);
  transition: border-color 180ms var(--ease-ink), box-shadow 180ms var(--ease-ink);
}
.field textarea { resize: none; min-height: 116px; }
.field input::placeholder, .field textarea::placeholder { color: #6E75A4; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px var(--aqua-soft);
}
.ta-form .btn { justify-content: center; }
.ta-form__fine { color: var(--mute); font-size: 12.5px; line-height: 1.55; }

/* ---------- footer ---------- */
.site-foot { border-top: 1px solid var(--line); background: rgba(11, 13, 31, .7); }
.foot-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding-block: 30px; }
.foot-top p { color: var(--mute); font-size: 14px; }
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px var(--gap);
  padding-block: 34px;
  border-top: 1px solid var(--line);
}
.foot-cols h2, .foot-cols h3 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 14px;
}
.foot-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-cols a { color: #C0C6E8; font-size: 14.5px; transition: color 160ms var(--ease-ink); }
@media (hover: hover) and (pointer: fine) { .foot-cols a:hover { color: var(--aqua); } }
.foot-social { display: flex; gap: 10px; margin-bottom: 16px; }
.foot-social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(26, 28, 58, .55);
  box-shadow: 0 3px 0 var(--line);
  color: var(--text);
  transition: border-color 180ms var(--ease-ink), color 180ms var(--ease-ink), transform 160ms var(--ease-ink);
}
.foot-social svg { width: 20px; height: 20px; }
@media (hover: hover) and (pointer: fine) { .foot-social a:hover { border-color: var(--aqua); color: var(--aqua); transform: translateY(-2px); } }
.foot-note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(26, 28, 58, .5);
  color: var(--mute);
  font-size: 13px;
  line-height: 1.6;
}
.foot-note b { color: var(--text); }
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 13px;
}

/* ---------- game page ---------- */
.gp-hero { padding-block: clamp(34px, 4vw, 56px) var(--sec); }
.gp-crumbs { display: flex; align-items: center; gap: 8px; color: var(--mute); font-size: 13.5px; margin-bottom: 24px; }
.gp-crumbs svg { width: 14px; height: 14px; }
.gp-crumbs a { transition: color 160ms var(--ease-ink); }
@media (hover: hover) and (pointer: fine) { .gp-crumbs a:hover { color: var(--aqua); } }

.gp-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 3.4vw, 54px); align-items: center; }
.gp-hero h1 { font-size: clamp(30px, 4.2vw, 54px); }
.gp-hero__lead { margin-top: 18px; color: #C6CBEC; font-size: clamp(15.5px, 1.2vw, 18px); }
.gp-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.gp-hero__shot { position: relative; border-radius: var(--r-lg); overflow: clip; border: 1px solid var(--line); }
.gp-hero__shot img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.gp-hero__shot button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11, 13, 31, .34);
  transition: background-color 220ms var(--ease-ink);
}
.gp-hero__shot button i {
  display: grid;
  place-items: center;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--aqua);
  color: #08131A;
  box-shadow: 0 0 0 12px rgba(47, 230, 208, .18);
  transition: transform 220ms var(--ease-snap), box-shadow 220ms var(--ease-ink);
}
.gp-hero__shot button svg { width: 30px; height: 30px; }
@media (hover: hover) and (pointer: fine) {
  .gp-hero__shot button:hover { background: rgba(11, 13, 31, .18); }
  .gp-hero__shot button:hover i { transform: scale(1.06); box-shadow: 0 0 0 18px rgba(47, 230, 208, .14); }
}
.gp-hero__shot button:active i { transform: scale(.97); }

.gp-spec { padding-block: var(--sec); border-top: 1px solid var(--line); }
.gp-spec__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: clip; }
.gp-spec__cell { padding: 20px; background: var(--canvas); }
.gp-spec__cell dt { color: var(--mute); font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.gp-spec__cell dd { margin: 9px 0 0; font-family: var(--head); font-weight: 700; font-size: 17px; letter-spacing: -.015em; }

.gp-read { padding-block: var(--sec); border-top: 1px solid var(--line); }
.gp-read__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.gp-read__body { display: grid; gap: 16px; }
.gp-read__body h2 { font-size: clamp(23px, 2.2vw, 32px); }
.gp-read__body h3 { margin-top: 12px; }
.gp-read__body p { color: #C0C6E8; }
.gp-read__body ul { margin: 4px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.gp-read__body li { position: relative; padding-left: 26px; color: #C0C6E8; }
.gp-read__body li::before {
  content: '';
  position: absolute;
  left: 3px; top: .62em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--aqua);
  transform: rotate(45deg);
}
.gp-aside { display: grid; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--canvas); position: sticky; top: 132px; }
.gp-aside h2 { font-size: 19px; }
.gp-aside ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.gp-aside li a { display: flex; align-items: center; gap: 11px; color: #C0C6E8; font-size: 14.5px; transition: color 160ms var(--ease-ink); }
.gp-aside li img { width: 60px; height: 34px; border-radius: 6px; object-fit: cover; flex: none; }
@media (hover: hover) and (pointer: fine) { .gp-aside li a:hover { color: var(--aqua); } }

/* ---------- legal page ---------- */
.legal-hero { padding-block: clamp(34px, 4vw, 60px) 0; }
.legal-hero p { margin-top: 16px; color: var(--mute); }
.legal-content { padding-block: clamp(30px, 4vw, 52px) var(--sec); display: grid; gap: 22px; }
.legal-content h2 { font-size: clamp(21px, 1.9vw, 27px); margin-top: 14px; }
.legal-content h3 { margin-top: 8px; }
.legal-content p, .legal-content li { color: #C0C6E8; }
.legal-content ul { margin: 0; padding-left: 22px; display: grid; gap: 8px; }

/* ---------- game modal ---------- */
.gmodal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 34px);
  background: rgba(6, 7, 18, .78);
  backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity 220ms var(--ease-ink);
}
.gmodal.is-open { opacity: 1; }
.gmodal__box {
  width: min(1120px, 100%);
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--canvas);
  overflow: clip;
  transform: scale(.96);
  opacity: 0;
  transition: transform 260ms var(--ease-ink), opacity 260ms var(--ease-ink);
}
.gmodal.is-open .gmodal__box { transform: scale(1); opacity: 1; }
.gmodal__bar { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.gmodal__bar h2 { font-size: 17.5px; }
.gmodal__bar span { color: var(--mute); font-size: 13px; }
.gmodal__bar button {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(26, 28, 58, .55);
  box-shadow: 0 3px 0 var(--line);
  color: var(--text);
  transition: border-color 180ms var(--ease-ink), color 180ms var(--ease-ink), transform 140ms var(--ease-ink), box-shadow 140ms var(--ease-ink);
}
.gmodal__bar button svg { width: 18px; height: 18px; }
.gmodal__bar button:active { transform: translateY(3px); box-shadow: 0 0 0 transparent; }
@media (hover: hover) and (pointer: fine) { .gmodal__bar button:hover { border-color: var(--rose); color: var(--rose); } }
.gmodal__stage { position: relative; background: #05060f; aspect-ratio: 16 / 10; }
.gmodal__stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 7, 18, .74);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 200ms var(--ease-ink);
}
.toast.is-open { opacity: 1; }
.toast__box {
  width: min(420px, 100%);
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 30px 26px;
  border: 1px solid rgba(47, 230, 208, .4);
  border-radius: var(--r-lg);
  background: var(--canvas);
  text-align: center;
  transform: scale(.95);
  opacity: 0;
  transition: transform 240ms var(--ease-snap), opacity 240ms var(--ease-ink);
}
.toast.is-open .toast__box { transform: scale(1); opacity: 1; }
.toast__box i { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--aqua-soft); color: var(--aqua); }
.toast__box i svg { width: 26px; height: 26px; }
.toast__box h2 { font-size: 21px; }
.toast__box p { color: var(--mute); font-size: 14.5px; }

/* ---------- cookie ---------- */
.cookie {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 80;
  width: min(940px, calc(100% - 24px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(18, 19, 42, .97);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, .95);
}
.cookie p { color: var(--mute); font-size: 13.5px; line-height: 1.6; flex: 1 1 340px; }
.cookie p a { color: var(--aqua); }
.cookie__row { display: flex; align-items: center; gap: 10px; }
.cookie .btn { padding: 7px 16px; font-size: 13.5px; white-space: nowrap; box-shadow: 0 3px 0 var(--line); }
.cookie .btn--primary { box-shadow: 0 3px 0 var(--aqua-deep); }
.cookie .btn:active { transform: translateY(3px); box-shadow: 0 0 0 transparent; }

/* ---------- chat ---------- */
.chat-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 78;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--aqua);
  color: #08131A;
  box-shadow: 0 12px 30px -10px rgba(47, 230, 208, .55);
  transition: transform 200ms var(--ease-snap), box-shadow 200ms var(--ease-ink);
}
.chat-toggle svg { width: 26px; height: 26px; }
@media (hover: hover) and (pointer: fine) { .chat-toggle:hover { transform: scale(1.06); } }
.chat-toggle:active { transform: scale(.95); }

.chat-panel {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 79;
  width: 360px;
  height: 460px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--canvas);
  overflow: clip;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .95);
  transform-origin: bottom right;
  transform: scale(.94) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms var(--ease-ink), opacity 200ms var(--ease-ink);
}
.chat-panel.is-open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.chat-head img { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); flex: none; }
.chat-head b { display: block; font-family: var(--head); font-size: 15.5px; }
.chat-head span { color: var(--aqua); font-size: 12.5px; }
.chat-head button { margin-left: auto; color: var(--mute); }
.chat-head button svg { width: 18px; height: 18px; }
.chat-log { padding: 16px; overflow-y: auto; display: grid; gap: 10px; align-content: start; }
.msg { max-width: 84%; padding: 11px 14px; border-radius: 14px; font-size: 14px; line-height: 1.55; }
.msg--bot { background: var(--panel); border: 1px solid var(--line); border-bottom-left-radius: 5px; justify-self: start; }
.msg--me { background: var(--aqua); color: #08131A; border-bottom-right-radius: 5px; justify-self: end; font-weight: 500; }
.msg--typing { display: flex; gap: 5px; align-items: center; }
.msg--typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--mute); animation: dot 1.3s var(--ease-flow) infinite; }
.msg--typing i:nth-child(2) { animation-delay: .16s; }
.msg--typing i:nth-child(3) { animation-delay: .32s; }
@keyframes dot { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.chat-form { display: flex; gap: 9px; padding: 12px; border-top: 1px solid var(--line); }
.chat-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--text);
  font: 400 14px/1.4 var(--body);
}
.chat-form input:focus { outline: none; border-color: var(--aqua); }
.chat-form button {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--aqua);
  color: #08131A;
  flex: none;
  box-shadow: 0 3px 0 var(--aqua-deep);
  transition: transform 140ms var(--ease-ink), box-shadow 140ms var(--ease-ink);
}
.chat-form button svg { width: 19px; height: 19px; }
.chat-form button:active { transform: translateY(3px); box-shadow: 0 0 0 transparent; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(14px); filter: blur(6px); }
.rv.is-in {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 620ms var(--ease-ink), transform 620ms var(--ease-ink), filter 620ms var(--ease-ink);
  transition-delay: var(--d, 0ms);
}

/* ---------- breakpoints ---------- */
@media (max-width: 1220px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px var(--pad) 18px;
    background: rgba(11, 13, 31, .98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms var(--ease-ink), opacity 200ms var(--ease-ink);
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 12px; font-size: 16.5px; }
  .nav a::before { display: none; }
  .burger { display: flex; }
  .site-head { position: relative; }
  .head-top { position: relative; }

  .ta-hero__grid { grid-template-columns: 1fr; }
  .ta-hero h1 { max-width: 20ch; }
  /* a 1600px wall is wasted on a phone */
  .ta-hero__wall { background-image: url('/assets/img/hero/cover-wall-sm.avif?v=cd44c38a'); }
  /* single column: the side scrim no longer shields the copy, so lean on the vertical one */
  .ta-hero::before {
    background: linear-gradient(180deg,
      rgba(11, 13, 31, .34) 0%,
      rgba(11, 13, 31, .93) 20%,
      rgba(11, 13, 31, .98) 52%,
      var(--ink) 100%);
  }
  .ta-hero__mosaic { grid-template-columns: repeat(4, 1fr); transform: none; }
  .ta-arena__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ta-about__grid, .ta-contact__grid, .gp-hero__grid, .gp-read__grid { grid-template-columns: 1fr; }
  .gp-aside { position: static; }
  .voice { flex-basis: calc((100% - var(--gap)) / 2); }
  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .ta-pulse__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .head-bar { flex-wrap: wrap; }
  .head-bar__note { order: 2; }
  .ta-arena__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ta-how__grid { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; }
  .voice { flex-basis: 100%; }
  .chat-panel { width: min(360px, calc(100vw - 28px)); }
}

@media (max-width: 620px) {
  .ta-hero__mosaic { grid-template-columns: repeat(2, 1fr); }
  .ta-hero__facts { flex-direction: column; align-items: flex-start; gap: 7px; }
  .ta-hero__facts i { display: none; }
  .gp-hero__cta .btn { flex: 1 1 100%; justify-content: center; }
  .cookie { flex-direction: column; align-items: stretch; }
  .cookie p { flex: 0 0 auto; }
  .cookie__row .btn { flex: 1; justify-content: center; }
  .gmodal__stage { aspect-ratio: 4 / 5; }
  .gp-spec__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 520px) {
  .ta-arena__grid { grid-template-columns: minmax(0, 1fr); }
  .ta-pulse__grid, .foot-cols { grid-template-columns: minmax(0, 1fr); }
  .ta-about__marks { grid-template-columns: minmax(0, 1fr); }
  .foot-legal { justify-content: flex-start; }
  .chat-panel { height: min(460px, calc(100vh - 130px)); }
}

@media (max-width: 430px) {
  .head-bar { font-size: 12.5px; }
  .head-bar .btn { flex: 1; justify-content: center; }
  .brand__word { font-size: 19px; }
  .voice, .ta-how__step, .gp-aside, .ta-form { padding: 18px; }
}

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