:root {

  --ground: #020306;
  --surface: #1E1F22;
  --type: #FBFCFF;
  --blue: #005BFF;
  --blue-lift: #5C93FF;
  --green: #00A802;
  --amber: #FFB800;
  --red: #D10000;

  --t-100: rgba(251, 252, 255, 1);
  --t-75: rgba(251, 252, 255, .75);
  --t-55: rgba(251, 252, 255, .55);
  --t-40: rgba(251, 252, 255, .40);

  --line: rgba(251, 252, 255, .10);
  --line-soft: rgba(251, 252, 255, .07);
  --line-strong: rgba(251, 252, 255, .14);

  --radius-card: 16px;
  --radius-pill: 999px;
  --pad: 24px;

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

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

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

  background: var(--ground);
  color: var(--type);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;

  min-height: 100dvh;
  background-color: var(--ground);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--ground);
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 480px) {
  body::before { display: none; }

}

#app {
  width: 100%;

  height: 100svh;
  margin: 0 auto;
  background: var(--ground);
  position: relative;
  overflow: hidden;

  container: appframe / size;
}

@media (min-width: 480px) {
  body {

    background: #08090B;
    display: flex; align-items: center; justify-content: center;

    height: 100vh;
    padding: 20px 0;
    overflow: hidden;
  }

  #app {
    flex: 0 0 auto;
    height: min(720px, 100vh - 40px);
    width: auto;
    aspect-ratio: 390 / 844;

    max-width: 390px;
    width: auto;
    border-radius: 44px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
  }
}

.screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding:
    calc(12px + env(safe-area-inset-top, 0px))
    var(--pad)
    calc(var(--pad) + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;

  scroll-padding-bottom: 84px;
}

.screen.enter { animation: gl-rise .42s var(--ease) both; }

.screen-body { flex: 1 1 auto; display: flex; flex-direction: column; }
.screen-body.center { justify-content: center; }

.screen-body.high { justify-content: flex-start; padding-top: 10px; }
.spacer { flex: 1 1 auto; min-height: 12px; }

.topbar {
  flex: 0 0 auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.back {
  width: 32px; height: 32px; margin-left: -6px;
  border: 0; background: transparent; color: var(--t-55);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.back:disabled { display: none; }

.progress { flex: 1 1 auto; display: flex; align-items: center; }
.progress-track {
  flex: 1 1 auto; height: 4px; border-radius: 999px;
  background: rgba(251, 252, 255, .10);
  overflow: hidden;
}
.progress-fill {
  height: 100%; width: 0%; border-radius: 999px;
  background: var(--blue);
  transition: width .35s var(--ease);
}

.brand-mark {
  display: block;
  width: 132px; height: 132px;
  border-radius: 30px;
  object-fit: cover;
  position: relative;

  box-shadow: 0 0 0 1px rgba(251, 252, 255, .10), 0 18px 44px rgba(0, 0, 0, .55);
}
.mark-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin: 10px auto 0;
}

.mark-wrap::before {
  content: "";
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,91,255,.34), transparent 64%);
  filter: blur(26px);
  animation: gl-drift 18s ease-in-out infinite;
}
.mark-wrap::after {
  content: "";
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0,91,255,.16) 0%, rgba(0,91,255,.05) 42%, transparent 70%);
  filter: blur(46px); pointer-events: none;
  animation: gl-drift 24s ease-in-out infinite reverse;
}

.lander { justify-content: flex-start; padding-top: 0; }

.lander-inner {
  position: relative; z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  display: flex; flex-direction: column;
  padding-top: clamp(28px, 7%, 56px);
}

.lander .mark-wrap {
  flex: 0 0 auto;
  margin: 0 auto;

  margin-top: auto;
}

.lander-inner::after { content: ""; flex: 0 1 26%; min-height: 8px; }

.lander .spacer { display: none; }

.lander h1 { font-size: 34px; letter-spacing: -1.3px; line-height: 1.08; margin-bottom: 0; text-align: center; }
.lander h1.accent { color: var(--blue-lift); margin-bottom: 0; }
.lander .sub { font-size: 15px; max-width: 300px; margin: 0 auto; text-align: center; }

.proof-hero {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 4px 0 0;
  color: var(--t-55);
}

.lander .proof-hero { padding-top: 0; }

.lander .proof-row { padding: 8px 0 18px; }
.proof-hero-body { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.proof-hero .fig {
  font-size: 26px; font-weight: 800; letter-spacing: -.7px;
  color: var(--type); line-height: 1;
}
.proof-hero .lab {
  font-size: 12px; font-weight: 500; color: var(--t-55);
  letter-spacing: .04em; text-transform: uppercase;
}
.laurel { display: block; width: 26px; height: 58px; flex: none; color: var(--t-40); }
.laurel svg { width: 100%; height: 100%; display: block; }
.laurel-right { transform: scaleX(-1); }

.proof-row {
  flex: 0 0 auto;
  display: flex; align-items: stretch; justify-content: center;
  gap: 4px;
  padding: 18px 0 20px;
}
.proof {
  flex: 1 1 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.proof .fig {
  font-size: 21px; font-weight: 800; letter-spacing: -.6px;
  color: var(--type); line-height: 1;
}
.proof .fig.flag { width: 30px; height: 15px; display: block; }
.proof .fig.flag svg { width: 100%; height: 100%; display: block; }
.proof .lab {
  font-size: 11px; font-weight: 500; color: var(--t-40);
  letter-spacing: .01em; text-align: center;
}
.proof-div { width: 1px; background: var(--line-soft); margin: 4px 0; }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .10em;
  text-transform: uppercase; color: var(--blue-lift);
  margin: 0 0 11px; text-align: center;
}

h1 {
  font-size: 32px; font-weight: 800; letter-spacing: -1.05px; line-height: 1.1;
  margin: 0 0 14px; text-align: center;
}
h1.quoted { font-size: 28px; font-weight: 800; line-height: 1.16; }

.sub {
  font-size: 15.5px; font-weight: 400; line-height: 1.55; color: var(--t-55);
  margin: 0 0 22px; text-align: center;
}

.heading-block { margin-bottom: 30px; }

.options.escape .option {
  background: rgba(251, 252, 255, .035);
  border-color: transparent;
}
.options.escape .option .label { color: var(--t-55); font-weight: 600; }
.heading-block > :last-child { margin-bottom: 0; }
.micro { font-size: 13px; line-height: 1.5; color: var(--t-40); margin: 12px 0 0; }
.flag {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  font-size: 10px; line-height: 1.5;
  color: rgba(255, 184, 0, .7);
  margin: 10px 0 0;
}

.hero-number {
  font-size: 72px; font-weight: 900; letter-spacing: -3.5px; line-height: 1;
  font-variant-numeric: tabular-nums;
}

.options { display: flex; flex-direction: column; gap: 12px; }

.options.cols-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

.option {
  width: 100%; min-height: 60px;
  display: flex; align-items: center; gap: 12px;
  padding: 15px 16px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  color: var(--type);
  font-family: inherit; font-size: 17px; font-weight: 600; text-align: left;
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease), transform .12s var(--ease);
}
.option:active { transform: scale(.985); }
.option .emoji { font-size: 20px; line-height: 1; flex: 0 0 auto; }
.option .label { flex: 1 1 auto; min-width: 0; }

.option .desc {
  display: block; margin-top: 4px;
  font-size: 14.5px; font-weight: 400; line-height: 1.45; color: var(--t-55);
}

.option .endonym {
  font-size: 15px; font-weight: 400; color: var(--t-40);
}
.option .endonym::before {
  content: "·";
  margin: 0 6px;
  color: var(--t-40);
}
.option .tick {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: transparent;
  transition: all .18s var(--ease);
}
.option[aria-pressed="true"] {
  border-color: var(--green);
  background: rgba(0, 168, 2, .10);
}
.option[aria-pressed="true"] .tick {
  border-color: var(--green); background: var(--green); color: #fff;
}

.option .badge-mini {
  flex: 0 0 auto; align-self: flex-start; margin-top: 2px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--t-40);
}

.tiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.tile-opt {
  display: flex; flex-direction: column; gap: 10px;
  padding: 0 0 12px;
  background: transparent; border: 0;
  font-family: inherit; color: var(--type);
  cursor: pointer; text-align: center;
}
.tile-opt .art {
  width: 100%; aspect-ratio: 1 / .78;
  border-radius: 18px;
  background: var(--surface);
  border: 1.5px solid var(--line-soft);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  transition: border-color .18s var(--ease), background .18s var(--ease), transform .12s var(--ease);
}
.tile-opt .art { align-items: stretch; padding: 0; }
.tile-opt .art svg { width: 100%; height: 100%; display: block; }
.tile-opt .sub-cap {
  display: block; margin-top: 3px;
  font-size: 11px; font-weight: 400; line-height: 1.3; color: var(--t-40);
}
.tile-opt .cap {
  font-size: 14px; font-weight: 600; line-height: 1.25;
  color: var(--t-75);
  transition: color .18s var(--ease);
}
.tile-opt:active .art { transform: scale(.975); }
.tile-opt[aria-pressed="true"] .art {
  border-color: var(--green);
  background: rgba(0, 168, 2, .10);
}
.tile-opt[aria-pressed="true"] .cap { color: var(--type); }

.cta-dock {
  flex: 0 0 auto;
  padding-top: 14px;
  background: linear-gradient(to top, var(--ground) 88%, rgba(2, 3, 6, 0));
  position: sticky; bottom: -1px;
  z-index: 2;
}

.lander .cta-dock { background: none; }

.consent {
  margin: 10px 0 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  color: var(--t-55);
}
.consent-link {
  color: var(--t-75);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--line-strong);
}

.consent-link { position: relative; }
.consent-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -12px; bottom: -12px;
}
.btn {
  width: 100%; min-height: 56px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: var(--radius-pill);
  background: var(--blue); color: #fff;
  font-family: inherit; font-size: 16px; font-weight: 700;
  cursor: pointer;
  transition: transform .12s var(--ease), opacity .18s var(--ease);
}
.btn:active { transform: scale(.98); }
.btn[disabled] { opacity: .32; pointer-events: none; }
.btn.ghost { background: transparent; color: var(--t-55); font-weight: 600; min-height: 44px; }
.btn.light { background: var(--type); color: var(--ground); }

.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: 16px;
}
.card + .card { margin-top: 10px; }

.stat-row { display: flex; gap: 10px; }
.stat {
  flex: 1 1 0; background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 12px;
}
.stat .n { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.stat .k { font-size: 11px; color: var(--t-40); margin-top: 2px; }

.trust {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.pill.flag-uk { display: inline-flex; align-items: center; gap: 6px; }
.pill .uk { width: 17px; height: 9px; display: block; }
.pill .uk svg { width: 100%; height: 100%; display: block; }
.pill {
  font-size: 11px; font-weight: 600; color: var(--t-55);
  padding: 6px 11px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line-soft);
}

.bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.bullets li { display: flex; gap: 11px; font-size: 14px; line-height: 1.45; color: var(--t-75); }
.bullets .ico {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0, 91, 255, .14); color: var(--blue-lift);
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}

.field {
  width: 100%; min-height: 56px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: 16px;
  color: var(--type);
  font-family: inherit; font-size: 16px; font-weight: 500;
}
.field::placeholder { color: var(--t-40); font-weight: 400; }
.field:focus { outline: none; border-color: var(--blue); }
.field.err { border-color: var(--red); }

.hint { font-size: 12px; color: var(--t-40); margin-top: 10px; line-height: 1.45; }
.hint.warn { color: var(--amber); }
.hint button {
  background: none; border: 0; padding: 0; font: inherit;
  color: var(--blue-lift); text-decoration: underline; cursor: pointer;
}

.word-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.word {
  min-height: 66px;

  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 10px 12px 14px;
  background: var(--surface);
  border: 1.5px solid var(--line-soft);
  border-radius: 14px;
  color: var(--type);
  font-family: inherit; font-size: 17px; font-weight: 600; text-align: center;
  cursor: pointer;
  transition: all .16s var(--ease);
}
.word:active { transform: scale(.97); }

.word[aria-pressed="true"] {
  background: rgba(0, 168, 2, .10);
  border-color: rgba(0, 168, 2, .55);
}

.word .w-label { flex: 1 1 auto; text-align: left; }
.word .w-box {
  flex: 0 0 auto; width: 22px; height: 22px; margin-left: 10px;
  border-radius: 7px;
  background: rgba(251, 252, 255, .09);
  font-size: 13px; font-weight: 800; line-height: 22px; text-align: center;
  color: transparent;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.word[aria-pressed="true"] .w-box { background: var(--green); color: #04210A; }

.test-icon {
  font-size: 44px; line-height: 1; text-align: center;
  margin: 8px 0 20px;
}

.mic-orb {
  width: 132px; height: 132px; border-radius: 50%; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(0, 91, 255, .32), rgba(0, 91, 255, .06) 68%);
  border: 1px solid rgba(0, 91, 255, .35);
  position: relative;
}
.mic-orb::after {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px solid rgba(0, 91, 255, .22);
  animation: gl-ripple 2.4s var(--ease) infinite;
}
.mic-orb.live::after { animation-duration: 1.4s; }
.mic-orb .glyph { font-size: 40px; }

.meter { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 46px; }
.meter i {
  width: 4px; border-radius: 2px; background: var(--blue-lift);
  height: 6px; transition: height .09s linear; font-style: normal;
}

.reveal-img {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-card);
  background: var(--surface); border: 1px solid var(--line-soft);
  position: relative; overflow: hidden;
}

.reveal-img .layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(18px) saturate(.5) brightness(.55);
  transform: scale(1.06);
  transition: filter .9s var(--ease), transform .9s var(--ease);
}
.reveal-img .grid-hint {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(251,252,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,252,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  transition: opacity .9s var(--ease);
}
.reveal-img .caught {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.caught-word {
  font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: var(--radius-pill);
  background: rgba(0, 168, 2, .18); color: #7BE07C;
  border: 1px solid rgba(0, 168, 2, .35);
  animation: gl-rise .3s var(--ease) both;
}

.ladder { display: flex; flex-direction: column-reverse; gap: 8px; }
.rung {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 13px;
  background: var(--surface); border: 1px solid var(--line-soft);
  font-size: 13px; color: var(--t-55);
}
.rung .lv { font-weight: 800; font-size: 14px; color: var(--t-75); width: 26px; }
.rung .n { margin-left: auto; font-variant-numeric: tabular-nums; font-size: 13px; }
.rung.you {
  background: rgba(0, 91, 255, .13);
  border-color: rgba(0, 91, 255, .48);
  color: var(--type);
}
.rung.you .lv, .rung.you .n { color: var(--type); }
.rung.bench { border-style: dashed; }

.gap-word {
  display: flex; align-items: baseline; gap: 8px;
  padding: 11px 0; border-bottom: 1px solid var(--line-soft);
}
.gap-word b { font-size: 16px; font-weight: 700; }
.gap-word span { font-size: 13px; color: var(--t-55); }

.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tile {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 14px;
}
.tile .k { font-size: 12px; color: var(--t-40); }
.tile .v { font-size: 19px; font-weight: 800; margin-top: 4px; letter-spacing: -.4px; }
.tile.locked .v { color: var(--t-40); }
.tile.done { border-color: rgba(0, 168, 2, .40); background: rgba(0, 168, 2, .07); }
.tile.done .v { color: #7BE07C; }

.plan {
  width: 100%; text-align: left;
  display: flex; align-items: center; gap: 12px;
  padding: 15px 16px;
  background: var(--surface); border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-card); color: var(--type);
  font-family: inherit; cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease);
  position: relative;
}
.plan[aria-pressed="true"] { border-color: var(--blue); background: rgba(0, 91, 255, .09); }
.plan .radio {
  width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto;
  border: 1.5px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
}
.plan[aria-pressed="true"] .radio { border-color: var(--blue); }
.plan[aria-pressed="true"] .radio::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--blue);
}
.plan .meta { flex: 1 1 auto; min-width: 0; }
.plan .name { display: block; font-size: 16px; font-weight: 700; }
.plan .per { display: block; font-size: 12px; color: var(--t-40); margin-top: 2px; }
.plan .price { margin-left: auto; text-align: right; }
.plan .price b { font-size: 17px; font-weight: 800; }
.plan .price s { display: block; font-size: 12px; color: var(--t-40); }
.plan .flag-badge {
  position: absolute; top: -9px; left: 14px;
  font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--radius-pill);
  background: var(--blue); color: #fff;
}
.renewal {
  font-size: 12px; line-height: 1.5; color: var(--t-55);
  margin-top: 12px;
}

.bar-grow {
  transform-origin: left center;
  animation: gl-bar .62s var(--ease) both;
  animation-delay: var(--d, 0s);
}
@keyframes gl-bar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.plateau-svg .pl-line {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: gl-draw 1.1s var(--ease) .15s both;
}
.plateau-svg .pl-dot { opacity: 0; animation: gl-fade .4s var(--ease) 1.15s both; }
@keyframes gl-draw { to { stroke-dashoffset: 0; } }
@keyframes gl-fade { to { opacity: 1; } }

.dot-row { display: flex; gap: 9px; justify-content: center; }
.dot-row i {
  width: 13px; height: 13px; border-radius: 50%;
  background: rgba(251, 252, 255, .13);
}
.dot-row i.flip { animation: gl-dot .34s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes gl-dot { to { background: var(--amber); } }

.pain-statement { margin: 18px 0 34px; }

.growth { margin: 4px 0 18px; }
.growth-art svg { width: 100%; height: auto; display: block; }
.growth-line {
  stroke-dasharray: 340; stroke-dashoffset: 340;
  animation: gl-draw 1.25s var(--ease) .15s forwards;
}
.growth-dot {
  transform-origin: 282px 14px;
  animation: gl-pop .4s var(--ease) 1.25s both;
}

.growth-axis {
  display: flex; justify-content: space-between;
  padding: 0 4px 14px; margin-top: 6px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 11px; color: var(--t-40);
}

.plan-card { margin-top: 22px; }

.method-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px;
}
.method-cell {
  padding: 14px 12px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line-soft);
  text-align: left;
}
.method-cell .ic { display: block; font-size: 19px; line-height: 1; margin-bottom: 8px; }
.method-cell b { display: block; font-size: 13.5px; font-weight: 700; }
.method-cell .d {
  display: block; margin-top: 4px; font-size: 12px; line-height: 1.4;
  color: var(--t-55);
}
.method-lede {
  margin: 0 0 12px; font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--t-40); text-align: center;
}

.wreath-stats { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.wreath-row {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--t-40);
}
.wreath-row .laurel { width: 20px; height: 44px; }
.wreath-body { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.wreath-body .fig {
  font-size: 20px; font-weight: 800; letter-spacing: -.5px; color: var(--type);
  line-height: 1.1;
}
.wreath-body .lab {
  font-size: 11px; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; color: var(--t-55);
}

.correct-opt { align-items: flex-start; }
.correct-demo { display: block; margin-top: 9px; }
.cd-row {
  display: block; font-size: 12px; line-height: 1.5;
  padding: 5px 9px; border-radius: 8px;
}
.cd-row.said {
  background: rgba(251, 252, 255, .05); color: var(--t-55);
  text-decoration: line-through; text-decoration-color: rgba(209, 0, 0, .7);
}
.cd-row.fix {
  margin-top: 5px;
  background: rgba(0, 168, 2, .10); color: #8FE38F;
}

.wp-strip { display: flex; align-items: center; gap: 12px; }
.wp-frame {
  flex: none; width: 54px; height: 54px; border-radius: 12px;
  background: rgba(251, 252, 255, .06); border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.wp-arrow { flex: none; color: var(--blue-lift); font-size: 17px; }
.wp-words { display: flex; flex-wrap: wrap; gap: 6px; }
.wp-w {
  padding: 5px 9px; border-radius: 999px;
  background: rgba(0, 91, 255, .12); border: 1px solid rgba(0, 91, 255, .38);
  font-size: 12px; font-weight: 600; color: var(--type);
}

.intake {
  position: relative; width: 210px; height: 210px; margin: 6px auto 0;
}
.intake-core {
  position: absolute; inset: 0; z-index: 0; display: flex;
  align-items: center; justify-content: center;
}

.intake-core img {
  width: 104px; height: 104px; object-fit: contain;
  mix-blend-mode: screen;
}
.intake-word {
  position: absolute; top: 50%; left: 50%; z-index: 1;
  padding: 5px 10px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line-soft);
  font-size: 12px; font-weight: 600; color: var(--t-75);
  white-space: nowrap;
  animation: gl-intake 2.6s var(--ease) infinite both;
  animation-delay: var(--d);
}

.intake-word.p0 { --x: -118px; --y: -74px; }
.intake-word.p1 { --x:   54px; --y: -92px; }
.intake-word.p2 { --x:  104px; --y:  -6px; }
.intake-word.p3 { --x:   46px; --y:  84px; }
.intake-word.p4 { --x: -112px; --y:  62px; }
.intake-word.p5 { --x:  -96px; --y:  10px; }
@keyframes gl-intake {
  0%   { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1); opacity: 0; }
  18%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(.55); opacity: 0; }
}

.canvas-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin: 4px 0 2px;
}
.canvas-cell { margin: 0; position: relative; }
.canvas-tag {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  padding: 4px 8px; border-radius: 7px;
  background: rgba(2, 3, 6, .72);
  font-size: 10.5px; font-weight: 700; letter-spacing: .03em;
  color: var(--t-75);
}
.canvas-tag.yours { background: rgba(0, 91, 255, .82); color: #fff; }
.canvas-art {
  position: relative; overflow: hidden;
  aspect-ratio: 1; border-radius: 14px;
  background-size: cover; background-position: center;
  border: 1px solid var(--line-soft);
}

.canvas-veil {
  position: absolute; inset: 0; z-index: 1;
  background: var(--ground);
  transition: transform .35s var(--ease);
}
.canvas-pair.result .canvas-art { aspect-ratio: 1; }

.speak-brief { margin-top: 16px; text-align: left; }
.speak-brief-lede {
  margin: 0 0 12px; font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--t-40);
}
.speak-step {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 9px 0;
}
.speak-step .ic { font-size: 17px; line-height: 1.35; flex: none; }
.speak-step b { display: block; font-size: 14px; font-weight: 700; }
.speak-step .d {
  display: block; margin-top: 2px; font-size: 12.5px; line-height: 1.4;
  color: var(--t-55);
}

.stat-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin: 16px 0 4px;
}
.stat-tile {
  padding: 16px 14px; border-radius: 15px;
  background: var(--surface); border: 1px solid var(--line-soft);
  text-align: left;
}
.stat-tile .n {
  font-size: 26px; font-weight: 800; letter-spacing: -.8px; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-tile .k {
  margin-top: 6px; font-size: 12.5px; line-height: 1.35; color: var(--t-55);
}

.screen-body.gate { position: relative; }
.gate-behind {
  position: absolute; inset: 0 0 auto; z-index: 0;
  padding-top: 8px;
  filter: blur(5px);
  opacity: .7;
  pointer-events: none;

  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
}
.gate-fore {
  position: relative; z-index: 1;
  margin-top: 150px;
  padding: 20px 4px 4px;

  border-radius: 20px;
  background: rgba(2, 3, 6, .82);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 0 44px 30px rgba(2, 3, 6, .82);
}
.gate-lock {
  font-size: 30px; line-height: 1; text-align: center; margin-bottom: 12px;
}

.ring {
  position: relative; width: 168px; height: 168px; margin: 26px auto 0;
}
.ring svg { width: 100%; height: 100%; display: block; }
.ring-pct {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; font-weight: 800; letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.ring-caption {
  margin: 18px auto 0; max-width: 280px;
  font-size: 14px; line-height: 1.45; color: var(--t-55); text-align: center;
}

.review-card { text-align: left; }
.review-head { font-size: 15px; font-weight: 700; line-height: 1.35; }
.review-body {
  margin: 8px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--t-55);
}
.review-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; font-size: 12px; color: var(--t-40);
}
.review-foot .stars { color: var(--blue-lift); letter-spacing: 1px; }

.topic-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px;
}
.topic-tile {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  align-items: flex-start; justify-content: flex-end;
  min-height: 86px; padding: 10px 10px 11px;
  border-radius: 14px; border: 1px solid var(--line-soft);
  background: var(--surface); color: var(--type);
  font: inherit; text-align: left; cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.topic-tile .emoji { font-size: 22px; line-height: 1; }
.topic-tile .cap { font-size: 12.5px; font-weight: 600; line-height: 1.25; }
.topic-tile .box {
  position: absolute; top: 9px; right: 9px;
  width: 17px; height: 17px; border-radius: 5px;
  border: 1.5px solid var(--line-strong); background: transparent;
  font-size: 11px; font-weight: 800; line-height: 15px; text-align: center;
  color: transparent;
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.topic-tile[aria-pressed="true"] {
  border-color: rgba(0, 91, 255, .55); background: rgba(0, 91, 255, .10);
}
.topic-tile[aria-pressed="true"] .box {
  background: var(--blue); border-color: var(--blue); color: #fff;
}

.globe {
  position: relative; width: 390px; height: 390px;
  margin: 0 -24px -34px; flex: none;
  transform: scale(.88); transform-origin: top center;
}

.globe-dot {
  position: absolute; border-radius: 999px;
  background: rgba(251, 252, 255, .13);
  animation: gl-fade .5s var(--ease) both;
  animation-delay: var(--d);
}
.globe-dot.land { background: var(--blue-lift); }

.globe-pin {
  position: absolute; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: #1E1F22; border: 2px solid var(--blue-lift);
  box-shadow: 0 6px 18px rgba(2, 3, 6, .65);
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
  color: var(--t-75);
  animation: gl-pin .5s var(--ease) both;
  animation-delay: var(--d);
}
@keyframes gl-pin {
  from { opacity: 0; transform: translate(-50%, -30%) scale(.6); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.goal-affirm { text-align: center; }
.goal-tint {
  position: absolute; left: 50%; top: 10px; transform: translateX(-50%);
  width: 560px; height: 560px; border-radius: 999px; pointer-events: none;
  background: radial-gradient(circle,
    rgba(92, 147, 255, .16) 0%, rgba(92, 147, 255, .05) 45%, rgba(92, 147, 255, 0) 70%);
  animation: gl-fade .9s var(--ease) both;
}
.goal-hero {
  position: relative;
  width: 290px; max-width: 78vw; aspect-ratio: 1;
  margin: 0 auto;
}

.goal-hero-img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(circle at 50% 47%, #000 52%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 47%, #000 52%, transparent 72%);
  animation: gl-hero .7s var(--ease) .06s both;
}

@keyframes gl-hero {
  from { opacity: 0; transform: translateY(16px) scale(.94); }
  to   { opacity: 1; transform: none; }
}

.goal-eyebrow {
  margin: 2px 0 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .10em;
  text-transform: uppercase; color: var(--blue-lift);
  animation: gl-rise .5s var(--ease) .14s both;
}

.goal-level {
  margin: 0; font-size: 38px; font-weight: 900; line-height: 1.05;
  letter-spacing: -1.6px; color: var(--blue-lift);
  text-wrap: balance;
  animation: gl-rise .5s var(--ease) .18s both;
}

.goal-promise {
  margin: 20px 0 0;
  font-size: 19px; font-weight: 700; letter-spacing: -.3px;
  color: var(--type);
  animation: gl-rise .5s var(--ease) .26s both;
}

.goal-affirm .goal-sub { margin-top: 10px; }
.goal-sub {
  margin-bottom: 0;
  animation: gl-rise .5s var(--ease) .24s both;
}

.earn-claim { margin-bottom: 10px; }

.earn-hero {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  margin-bottom: 18px; flex-wrap: nowrap;
}
.earn-hero .hero-number { white-space: nowrap; }
.earn-hero-tail {
  font-size: 26px; font-weight: 800; letter-spacing: -.9px; color: var(--type);
  white-space: nowrap;
}
.earn-figure { color: var(--green); }

.earn-card { padding: 20px; text-align: left; }
.earn-card-head {
  margin: 0; font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--t-55);
}

.earn-chart {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 16px;
  align-items: end; margin-top: 18px; height: 128px;
}

.earn-col {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; gap: 8px; height: 100%;
}
.earn-val { font-size: 15px; font-weight: 700; color: var(--t-75); }
.earn-val.lift { color: var(--green); }

.earn-bar {
  width: 100%; border-radius: 15px; background: var(--line-strong);
  transform-origin: 50% 100%;
  animation: gl-rise-bar .6s var(--ease) .28s both;
}
.earn-bar.lift { background: var(--green); animation-delay: .36s; }
@keyframes gl-rise-bar {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.earn-rule { height: 1px; margin: 0 -20px; }
.earn-rule.full { background: var(--line-strong); }
.earn-rule.soft { background: var(--line-soft); margin-top: 16px; margin-bottom: 16px; }

.earn-feet {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 16px;
  margin-top: 13px;
}
.earn-foot {
  font-size: 13px; line-height: 1.35; text-align: center; color: var(--t-55);
}
.earn-inset {
  display: flex; gap: 11px; align-items: center;
  background: rgba(251, 252, 255, .04); border-radius: 15px; padding: 13px 14px;
  font-size: 13px; line-height: 1.5; color: var(--t-55);
}
.earn-inset-glyph {
  flex: none; width: 20px; height: 20px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px; font-weight: 500; color: var(--t-55);
}

.earn-source {
  margin: 12px 0 0;
  font-size: 10px; line-height: 1.5; color: var(--t-40); text-align: left;
}
.earn-source-title { font-style: italic; }

.earn-source-lead { font-weight: 700; color: var(--t-75); }
.earn-source + .earn-source { margin-top: 8px; }

.flag-inset {
  display: flex; gap: 10px; align-items: center; justify-content: center;
  background: rgba(255, 184, 0, .06); border-radius: 15px; padding: 10px 12px;
  margin-top: 14px; text-align: left;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px; line-height: 1.5; color: rgba(255, 184, 0, .7);
}
.flag-inset.tight { margin-top: 6px; }
.flag-glyph {
  flex: none; width: 20px; height: 20px; border-radius: 999px;
  border: 1px solid rgba(255, 184, 0, .35);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500;
}

@keyframes gl-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes gl-drift { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(0,-2.5%,0) scale(1.08); } }
@keyframes gl-pulse { 0%, 100% { opacity: .3; transform: scale(.8); } 50% { opacity: 1; transform: scale(1); } }
@keyframes gl-sweep { from { transform: translateX(-120%); } to { transform: translateX(320%); } }
@keyframes gl-ripple { 0% { transform: scale(.92); opacity: .7; } 100% { transform: scale(1.25); opacity: 0; } }
@keyframes gl-spin { to { transform: rotate(360deg); } }
@keyframes gl-count { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.stagger > * { animation: gl-rise .5s var(--ease) both; }
.stagger > *:nth-child(1) { animation-delay: .04s; }
.stagger > *:nth-child(2) { animation-delay: .09s; }
.stagger > *:nth-child(3) { animation-delay: .14s; }
.stagger > *:nth-child(4) { animation-delay: .19s; }
.stagger > *:nth-child(5) { animation-delay: .24s; }
.stagger > *:nth-child(6) { animation-delay: .29s; }
.stagger > *:nth-child(7) { animation-delay: .34s; }
.stagger > *:nth-child(8) { animation-delay: .39s; }
.stagger > *:nth-child(9) { animation-delay: .44s; }

.holo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.holo::before, .holo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.holo::before {
  background:
    radial-gradient(ellipse 125% 42% at 50% 34%,
      rgba(0,91,255,.30) 0%, rgba(0,91,255,.10) 46%, transparent 72%);
}

.holo::after {
  background:
    radial-gradient(ellipse 110% 26% at 50% 88%,
      rgba(0,168,2,.12) 0%, rgba(0,168,2,.035) 50%, transparent 76%);
}

.checklist { display: flex; flex-direction: column; gap: 14px; }
.check-row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--t-55); }
.check-row .dot {
  width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto;
  border: 1.5px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: transparent;
}
.check-row.doing .dot { border-color: var(--blue); border-top-color: transparent; animation: gl-spin .8s linear infinite; }
.check-row.done { color: var(--t-75); }
.check-row.done .dot { background: var(--green); border-color: var(--green); color: #fff; }

.ticker {
  overflow: hidden; height: 34px; position: relative;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.ticker-item {
  position: absolute; inset: 0; display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--t-40);
  animation: gl-rise .45s var(--ease) both;
}
.ticker-item .live {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: gl-pulse 2s ease-in-out infinite;
}

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

.sheet-scrim {
  position: absolute; inset: 0; z-index: 40;
  display: flex; align-items: flex-end;
  background: rgba(2, 3, 6, .62);
  opacity: 0; transition: opacity .22s var(--ease);
}
.sheet-scrim.open { opacity: 1; }
.sheet-panel {
  width: 100%;
  padding: 26px var(--pad) calc(26px + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  border-top-left-radius: 22px; border-top-right-radius: 22px;
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -18px 50px rgba(2, 3, 6, .55);
  transform: translateY(100%);
  transition: transform .26s var(--ease);
}
.sheet-scrim.open .sheet-panel { transform: translateY(0); }
.sheet-title {
  margin: 0 0 12px;
  font-size: 21px; font-weight: 800; letter-spacing: -.5px;
  text-align: center; color: var(--type);
}
.sheet-body {
  margin: 0 0 22px;
  font-size: 15px; line-height: 1.5; text-align: center; color: var(--t-75);
}
.sheet-btn { width: 100%; }

.picker-scrim {
  position: absolute; inset: 0; z-index: 40;
  display: flex; align-items: flex-end;
  background: rgba(2, 3, 6, .62);
  opacity: 0; transition: opacity .22s var(--ease);
}
.picker-scrim.open { opacity: 1; }
.picker-panel {
  width: 100%;

  height: 86%;
  display: flex; flex-direction: column;
  padding: 0 0 env(safe-area-inset-bottom, 0px);
  background: var(--surface);
  border-top-left-radius: 22px; border-top-right-radius: 22px;
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -18px 50px rgba(2, 3, 6, .55);
  transform: translateY(100%);
  transition: transform .26s var(--ease);
}
.picker-scrim.open .picker-panel { transform: translateY(0); }

.picker-head {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 8px;
  padding: 18px var(--pad) 10px;
}
.picker-title {
  flex: 1 1 auto; margin: 0;
  font-size: 19px; font-weight: 800; letter-spacing: -.4px; color: var(--type);
}
.picker-close {
  flex: 0 0 auto;
  width: 32px; height: 32px; margin-right: -4px;
  border: 0; border-radius: 50%;
  background: rgba(251, 252, 255, .07); color: var(--t-55);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.picker-search { flex: 0 0 auto; padding: 0 var(--pad) 12px; }
.picker-input {
  width: 100%; min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(251, 252, 255, .05);
  color: var(--type);

  font-size: 16px; font-family: inherit;
  outline: none;
}
.picker-input:focus { border-color: var(--blue); background: rgba(0, 91, 255, .07); }
.picker-input::placeholder { color: var(--t-40); }

.picker-input::-webkit-search-decoration,
.picker-input::-webkit-search-cancel-button { -webkit-appearance: none; }

.picker-list {
  flex: 1 1 auto;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 0 var(--pad) 18px;
}
.picker-row {
  width: 100%; min-height: 52px;
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px;
  border: 0; border-radius: 12px;
  background: transparent; color: var(--type);
  font-family: inherit; font-size: 15px; text-align: left;
  cursor: pointer;
}
.picker-row:active { background: rgba(251, 252, 255, .07); }
.picker-row .emoji { font-size: 20px; flex: 0 0 auto; }
.picker-row .label { display: flex; align-items: baseline; gap: 7px; font-weight: 600; }

.picker-row .endonym { font-size: 13px; font-weight: 400; color: var(--t-55); }
.picker-empty {
  margin: 18px 0 0; text-align: center;
  font-size: 14px; color: var(--t-55);
}

.picker-foot {
  flex: 0 0 auto;
  padding: 10px var(--pad) calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}

.picker-skip {
  width: 100%; min-height: 44px;
  border: 0; border-radius: 12px;
  background: transparent; color: var(--t-55);
  font-family: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer;
}
.picker-skip:active { background: rgba(251, 252, 255, .07); color: var(--type); }

.escape .option .chev,
.option .chev { margin-left: auto; color: var(--t-40); font-size: 18px; line-height: 1; }

.sr-chart {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-soft);
}

.sr-note { margin: 16px 0 0; }

.cap-row {
  display: flex; gap: 13px; align-items: center; padding: 11px 0;
}
.cap-row.ruled { border-bottom: 1px solid var(--line-soft); }
.cap-icon { font-size: 23px; line-height: 1; flex: none; }
.cap-title {
  display: block; font-size: 16px; font-weight: 700; letter-spacing: -.2px;
}
.cap-desc {
  display: block; margin-top: 3px;
  font-size: 14px; line-height: 1.35; color: var(--t-55);
}

.ti-rows { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.ti-row { display: flex; align-items: center; gap: 13px; }
.ti-icon { font-size: 21px; line-height: 1; flex: none; }
.ti-label { font-size: 16px; font-weight: 600; color: var(--t-75); }

.ti-note {
  margin: 22px 0 0;
  font-size: 13px; line-height: 1.5; color: var(--t-40); text-align: center;
}

.ti-cloud {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 8px; padding: 0 2px;
}
.ti-pill {
  padding: 9px 15px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; line-height: 1.2;
  white-space: nowrap;
  transform: rotate(var(--deg, 0deg));
  animation: gl-rise .5s var(--ease) both;
}

.ti-pill.c1 { background: rgba(214,178,74,.12);  border: 1px solid rgba(214,178,74,.34);  color: #D8BC63; }
.ti-pill.c2 { background: rgba(122,140,232,.12); border: 1px solid rgba(122,140,232,.34); color: #94A4F0; }
.ti-pill.c3 { background: rgba(206,106,120,.12); border: 1px solid rgba(206,106,120,.34); color: #DE8B98; }
.ti-pill.c4 { background: rgba(92,176,168,.12);  border: 1px solid rgba(92,176,168,.34);  color: #78C4BC; }
.ti-pill.c5 { background: rgba(178,122,196,.12); border: 1px solid rgba(178,122,196,.34); color: #C295D2; }

.ti-pill:nth-child(1) { animation-delay: .04s; }
.ti-pill:nth-child(2) { animation-delay: .10s; }
.ti-pill:nth-child(3) { animation-delay: .16s; }
.ti-pill:nth-child(4) { animation-delay: .22s; }
.ti-pill:nth-child(5) { animation-delay: .28s; }

.screen-body.airy { justify-content: flex-start; }
.screen-body.airy .ti-stack {
  flex: 1 1 auto;
  display: flex; flex-direction: column; justify-content: space-evenly;
  padding-bottom: 8px;
}

.screen-body.airy .spacer { flex: 0 0 0; min-height: 0; }

.ti-stack .ti-preview { margin: 0; }
.ti-stack .ti-rows { margin-top: 0; }
.ti-stack .ti-note { margin-top: 0; }
.ti-stack .heading-block { margin: 0; }

.plateau-chart {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-soft);
}

.vd-sub { margin-top: 18px; }
.screen-body.airy .vd-stack {
  flex: 1 1 auto;
  display: flex; flex-direction: column; justify-content: space-evenly;
  padding-bottom: 8px;
}
.vd-stack .heading-block { margin: 0; }
.vd-stack .sub { margin: 0; }

.review-deck {
  position: relative; margin-top: 18px;
  overflow: hidden; border-radius: var(--radius-card);
}
.review-deck .review-card {

  opacity: 0; transform: translateX(28%);
  transition: opacity .34s var(--ease), transform .42s var(--ease);
}
.review-deck .review-card:not(:first-child) {
  position: absolute; inset: 0;
}
.review-deck .review-card.on { opacity: 1; transform: none; }

.review-deck .review-card.out { opacity: 0; transform: translateX(-28%); }

.vrail {
  position: relative; margin: 22px 0 4px;
  display: flex; flex-direction: column; gap: 16px;
}

.vrail::before {
  content: ""; position: absolute; top: -10px; bottom: -10px; left: 50%;
  margin-left: -1px;
  border-left: 2px dashed var(--line);
  animation: gl-fade .5s var(--ease) both;
}

.vrail-row {
  position: relative;
  display: grid; grid-template-columns: 1fr 50px 1fr;
  align-items: center; gap: 14px;
  animation: gl-rise .5s var(--ease) both;
  animation-delay: var(--d);
}
.vrail-name {
  font-size: 14px; line-height: 1.25; color: var(--t-55); text-align: right;
}
.vrail-n {
  font-size: 14px; color: var(--t-40); font-variant-numeric: tabular-nums;
  text-align: left;
}

.vrail-row.you .vrail-name { color: var(--type); font-weight: 700; }
.vrail-n.strong {
  font-size: 17px; font-weight: 800; color: var(--type); letter-spacing: -.3px;
}

.vhex {
  width: 44px; height: 50px; margin: 0 auto; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--line-strong);
  font-size: 15px; font-weight: 800; color: var(--t-40);
}
.vhex::before {
  content: ""; position: absolute; inset: 2px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--ground);
}

.vhex.earned {

  background: linear-gradient(145deg,
    #E9DCC6 0%, #C9BBA4 30%, #F4ECDE 48%, #9A8C76 76%, #D8CCB6 100%);
  color: #2A2113;
}

.vhex.earned::before {
  background: linear-gradient(145deg,
    #E9DCC6 0%, #C9BBA4 30%, #F4ECDE 48%, #9A8C76 76%, #D8CCB6 100%);
}
.vhex-lv { line-height: 1; position: relative; z-index: 1; }

.vdot {
  display: flex; justify-content: center;
  position: relative; z-index: 1;
}
.vdot::after {
  content: ""; width: 13px; height: 13px; border-radius: 999px;
  background: var(--type);
  box-shadow: 0 0 0 5px var(--ground), 0 0 16px rgba(251,252,255,.45);
}

.res-stats {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  align-items: center; gap: 0;
  margin: 26px 0 0;
  animation: gl-rise .5s var(--ease) .42s both;
}

.res-stats::before {
  content: ""; grid-column: 2; justify-self: center;
  width: 1px; height: 40px; background: var(--line);
}
.res-stat { text-align: center; }
.res-stat:first-child { grid-column: 1; }
.res-stat:last-child { grid-column: 3; }
.res-stat-n {
  font-size: 28px; font-weight: 800; letter-spacing: -.8px; line-height: 1;
  font-variant-numeric: tabular-nums; color: var(--type);
}
.res-stat-k {
  margin-top: 7px; font-size: 12.5px; line-height: 1.35; color: var(--t-55);
}

.wreath-row .laurel,
.proof-hero .laurel { color: #D9B85C; }
.proof-hero .fig { text-shadow: 0 0 20px rgba(217, 184, 92, .30); }
.wreath-stats .fig {

  text-shadow: 0 0 22px rgba(217, 184, 92, .34);
}

.wreath-stats {
  position: relative;
}
.wreath-stats::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 260px; height: 130px; margin: -65px 0 0 -130px;
  border-radius: 999px; pointer-events: none;
  background: radial-gradient(ellipse,
    rgba(217, 184, 92, .13) 0%, rgba(217, 184, 92, .04) 45%, transparent 72%);
  animation: gl-fade .9s var(--ease) .3s both;
}

.screen-body.airy .au-stack {
  flex: 1 1 auto;
  display: flex; flex-direction: column; justify-content: space-evenly;
  padding-bottom: 8px;
}
.au-stack .heading-block { margin: 0; }

.wp-art {
  display: block; width: 100%; height: auto;
  margin: 16px 0 4px;
  animation: gl-rise .55s var(--ease) .08s both;
}
.wp-note { margin: 0; }

.screen-body.airy .wp-stack {
  flex: 1 1 auto;
  display: flex; flex-direction: column; justify-content: space-evenly;
  padding-bottom: 8px;
}
.wp-stack .heading-block { margin: 0; }
.wp-stack .wp-art { margin: 0; }

.screen-body.airy .cp-stack {
  flex: 1 1 auto;
  display: flex; flex-direction: column; justify-content: space-evenly;
  padding-bottom: 8px;
}
.cp-stack .heading-block { margin: 0; }
.cp-stack .eyebrow { margin-bottom: 8px; }

.growth-chart {
  display: block; width: 100%; height: auto;
  margin: 14px 0 6px;
  animation: gl-rise .55s var(--ease) .08s both;
}

@container appframe (max-height: 740px) {

  .screen { --pad: 18px; }

  .screen { padding-top: calc(6px + env(safe-area-inset-top, 0px)); }
  .topbar { min-height: 32px; }

  .screen h1 { font-size: 29px; line-height: 1.14; margin-bottom: 12px; }
  .screen h1.quoted { font-size: 26px; }
  .screen.lander h1 { font-size: 35px; letter-spacing: -1.2px; }

  .screen.lander .lander-inner { padding-top: clamp(18px, 4%, 30px); }
  .sub { font-size: 15px; margin-bottom: 16px; }
  .heading-block { margin-bottom: 20px; }

  .options { gap: 9px; }
  .option { min-height: 54px; padding: 12px 14px; font-size: 16px; }
  .option .desc { font-size: 13.5px; }

  .card { padding: 13px; }
  .card + .card { margin-top: 8px; }

  .cta-dock { padding-top: 10px; }
  .btn { min-height: 50px; }
  .spacer { min-height: 6px; }
  .screen .brand-mark { width: 104px; height: 104px; border-radius: 24px; }

  .word-grid { gap: 8px; }
  .word { min-height: 52px; padding: 9px 9px 9px 12px; }
  .word .w-box { width: 22px; height: 22px; }

  .sr-chart {
    max-height: 200px;
    object-fit: contain;
    background: #27282B;
  }
  .cap-row { padding-top: 9px; padding-bottom: 9px; }
}

@container appframe (max-height: 640px) {
  .screen { --pad: 16px; }
  .screen h1 { font-size: 26px; line-height: 1.12; margin-bottom: 10px; }
  .screen h1.quoted { font-size: 23px; }
  .screen.lander h1 { font-size: 29px; letter-spacing: -1px; }
  .screen.lander .lander-inner { padding-top: clamp(12px, 3%, 20px); }
  .heading-block { margin-bottom: 15px; }
  .sub { font-size: 14px; margin-bottom: 12px; }

  .options { gap: 7px; }
  .option { min-height: 46px; padding: 9px 12px; font-size: 15px; }
  .option .desc { font-size: 13px; }

  .word-grid { gap: 6px; }
  .word { min-height: 44px; font-size: 15px; }

  .card { padding: 10px; }
  .card + .card { margin-top: 6px; }

  .sr-chart { max-height: 140px; }
  .cap-row { padding-top: 6px; padding-bottom: 6px; }

  .cta-dock { padding-top: 8px; }
  .btn { min-height: 46px; font-size: 15px; }
  .spacer { min-height: 0; }

  .screen .brand-mark { width: 84px; height: 84px; border-radius: 20px; }
  .screen .laurel { transform: scale(.8); }
  .screen.lander .lander-inner { gap: 6px; }

  .screen .vrail { margin: 12px 0 2px; gap: 9px; }
  .screen .res-stats { margin-top: 14px; }
  .screen .res-stat-n { font-size: 23px; }
  .screen .res-stat-k { margin-top: 4px; font-size: 11.5px; }

  .screen .earn-figure { font-size: 46px; }
  .screen .earn-hero { margin: 2px 0 8px; }
  .screen .earn-claim { margin-bottom: 6px; }
  .screen .earn-card { padding: 12px; }

  .screen .earn-rule { margin-left: -12px; margin-right: -12px; }
  .screen .earn-rule.soft { margin-top: 10px; margin-bottom: 10px; }
  .screen .earn-chart { transform: scale(.82); transform-origin: center bottom; margin-top: 10px; }
  .screen .earn-feet { margin-top: 8px; }
  .screen .earn-inset { padding: 9px 11px; font-size: 12px; }
  .screen .earn-card-head { font-size: 10.5px; }
  .screen .earn-foot { font-size: 12px; }

  .screen .topic-grid { gap: 7px; }

  .screen .topic-tile { min-height: 72px; padding: 8px 8px 9px; gap: 4px; }
  .screen .topic-tile .emoji { font-size: 19px; }
  .screen .topic-tile .cap { font-size: 11.5px; }

  .screen.airy .sub { font-size: 14px; }
  .screen .vd-sub { margin-top: 12px; }
}
