/* Playova — the site.
   Colour comes from the mark: a sunrise over a room that is nearly dark. The ground
   is not black but a deep warm plum, so the sunrise reads as light in the room
   rather than a sticker on a void. Type is a condensed grotesque for headlines,
   the way a printed listings page sets them, its wider sibling for reading, and a
   mono for anything that is a time, a size or a version. */

:root {
  --ink:        #120D10;
  --ink-2:      #170F13;
  --surface:    #1E1519;
  --surface-2:  #291B21;
  --hair:       rgba(255, 205, 180, 0.11);
  --hair-soft:  rgba(255, 205, 180, 0.06);

  --paper:      #F4ECE6;
  --muted:      #B9A7A1;
  --dim:        #82726D;
  --faint:      #5A4D49;

  --acc:        #FF6A2B;
  --acc-soft:   rgba(255, 106, 43, 0.16);
  --rose:       #FF2A54;
  --sunrise:    linear-gradient(135deg, #FF2A54 0%, #FF7A00 52%, #FFD600 100%);
  --glow:       radial-gradient(60% 70% at 50% 100%, rgba(255, 122, 0, 0.22), transparent 70%);

  --r:          6px;
  --r-lg:       12px;
  --r-xl:       18px;
  --lean:       -8deg;

  --display: 'Barlow Condensed', 'Arial Narrow', 'Roboto Condensed', system-ui, sans-serif;
  --body:    'Barlow', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --gut:     clamp(20px, 5vw, 72px);
  --stack:   clamp(64px, 10vw, 136px);
  --measure: 62ch;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(46px, 7.4vw, 104px); }
h2 { font-size: clamp(34px, 4.6vw, 62px); }
h3 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; }
h1 em { font-style: normal; background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acc);
}
.eyebrow::after { content: ' /'; color: var(--faint); }

.lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; color: var(--muted); max-width: var(--measure); margin: 22px 0 0; }
.head { max-width: 760px; margin: 0 0 clamp(28px, 4vw, 48px); }
.head__sub { margin: 16px 0 0; color: var(--muted); max-width: var(--measure); }

.skip { position: absolute; left: -999px; top: 8px; z-index: 50; padding: 10px 14px; background: var(--paper); color: var(--ink); border-radius: var(--r); }
.skip:focus { left: 8px; }

/* ── Bar ─────────────────────────────────────────────────────────────────── */
.bar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px var(--gut);
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair-soft);
}
.bar__brand { display: inline-flex; align-items: center; gap: 10px; }
.mark { width: 34px; height: auto; }
.bar__word { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: 0.01em; }
.bar__nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); font-size: 15px; color: var(--muted); }
.bar__nav a:hover { color: var(--paper); }
.bar__cta { padding: 9px 16px; border-radius: 999px; background: var(--paper); color: var(--ink) !important; font-weight: 600; }
.lang { display: inline-flex; gap: 10px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; }
.lang__on { color: var(--paper); border-bottom: 1px solid var(--acc); }
.lang__off { color: var(--dim); }
.lang__off:hover { color: var(--paper); }
@media (max-width: 720px) { .bar__nav a:not(.bar__cta) { display: none; } }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px;
  border-radius: 999px;
  background: var(--paper); color: var(--ink);
  font-weight: 600; font-size: 16px;
  transition: transform 160ms ease, background-color 160ms ease;
}
.btn:hover { transform: translateY(-1px); background: #fff; }
.btn--quiet { background: transparent; color: var(--paper); border: 1px solid var(--hair); }
.btn--quiet:hover { background: var(--surface); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(40px, 7vw, 96px) var(--gut) clamp(40px, 6vw, 80px);
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: auto 0 0 0; height: 60%; z-index: -1;
  background: var(--glow); pointer-events: none;
}
@media (min-width: 1000px) { .hero { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); } }
.hero__act { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__where { display: grid; gap: 14px 32px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin: 32px 0 0; padding-top: 22px; border-top: 1px solid var(--hair); }
.hero__where dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }
.hero__where dd { margin: 6px 0 0; font-size: 15px; color: var(--paper); }
.hero__soon dd { color: var(--muted); }
.hero__shot { margin: 0; position: relative; }
.hero__shot img {
  width: 100%; border-radius: var(--r-lg);
  border: 1px solid var(--hair);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 0, 0, 0.5);
  transform: perspective(1600px) rotateY(-4deg);
  transform-origin: 80% 50%;
}
@media (max-width: 999px) { .hero__shot img { transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero__shot img { transform: none; } }

/* ── Status board ────────────────────────────────────────────────────────── */
.status {
  display: grid; gap: clamp(24px, 4vw, 64px);
  grid-template-columns: 1fr;
  padding: var(--stack) var(--gut);
  border-top: 1px solid var(--hair-soft);
}
@media (min-width: 900px) { .status { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); align-items: start; } }
.board { width: 100%; border-collapse: collapse; font-size: 16px; }
.board th, .board td { padding: 16px 0; border-bottom: 1px solid var(--hair); text-align: left; vertical-align: middle; }
.board th { font-weight: 600; font-size: 18px; }
.board__note { color: var(--dim); font-size: 14px; }
.board__state { text-align: right; white-space: nowrap; }
.board__state span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.board__ready .board__state span { background: var(--sunrise); color: #1a0d06; font-weight: 500; }
.board__soon .board__state span { border: 1px dashed var(--faint); color: var(--dim); }
.board__soon th { color: var(--muted); font-weight: 500; }

/* ── Screens ─────────────────────────────────────────────────────────────── */
.screens { padding: var(--stack) var(--gut); border-top: 1px solid var(--hair-soft); }
.screens__list { display: grid; gap: clamp(40px, 7vw, 110px); }
.scene { display: grid; gap: clamp(20px, 3vw, 48px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) {
  .scene { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
  .scene--flip .scene__shot { order: 2; }
}
.scene__shot { margin: 0; }
.scene__shot img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--hair); box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.8); }
.scene__say { max-width: 46ch; }
.scene__tag { display: block; margin-bottom: 14px; font-size: 12px; letter-spacing: 0.14em; color: var(--dim); text-transform: uppercase; }
.scene__say h3 { font-size: clamp(28px, 3vw, 40px); }
.scene__say p { margin: 14px 0 0; color: var(--muted); }

/* ── Every feature ─────────────────────────────────────────────────────── */
.features { padding: var(--stack) var(--gut); border-top: 1px solid var(--hair-soft); }
.feat-group { padding: 40px 0 8px; border-top: 1px solid var(--hair); }
.feat-group__name { margin: 0 0 22px; font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: 0.01em; color: var(--muted); text-transform: uppercase; }
.feat-scene { margin: 0 0 34px; display: grid; gap: 16px; max-width: 1200px; }
.feat-scene .feat__media { width: 100%; height: auto; display: block; border-radius: var(--r-lg); border: 1px solid var(--hair); box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.8); background: var(--ink-2); }
.feat-scene figcaption { display: grid; gap: 4px; grid-template-columns: 1fr; max-width: 62ch; }
@media (min-width: 900px) { .feat-scene figcaption { grid-template-columns: 260px 1fr; gap: 24px; max-width: none; } }
.feat-scene strong { font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1.05; }
.feat-scene p { margin: 0; color: var(--muted); max-width: 62ch; }
.feat-list { list-style: none; margin: 8px 0 26px; padding: 0; display: grid; gap: 10px 22px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.feat { padding: 12px 0; border-top: 1px solid var(--hair-soft); }
.feat strong { display: block; font-size: 17px; font-weight: 600; }
.feat p { margin: 4px 0 0; color: var(--muted); font-size: 15px; }

/* Hero video sits in the same frame the still did. */
.hero__shot video { width: 100%; height: auto; display: block; border-radius: var(--r-lg); border: 1px solid var(--hair); box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 0, 0, 0.5); }

/* ── The line ────────────────────────────────────────────────────────────── */
.line { padding: var(--stack) var(--gut); background: var(--ink-2); border-top: 1px solid var(--hair-soft); border-bottom: 1px solid var(--hair-soft); }
.line__inner { max-width: 880px; }
.line__body { margin: 18px 0 0; color: var(--muted); max-width: var(--measure); }
.line__facts { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin: 36px 0 0; }
.line__facts div { padding: 16px 18px; border: 1px solid var(--hair); border-radius: var(--r-lg); background: var(--surface); }
.line__facts dt { font-size: 13px; color: var(--dim); }
.line__facts dd { margin: 6px 0 0; font-size: 15px; color: var(--acc); }

/* ── Comparison ──────────────────────────────────────────────────────────── */
.cmp { padding: var(--stack) var(--gut); }
.cmp__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp__table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 15px; }
.cmp__table th, .cmp__table td { padding: 14px 12px; border-bottom: 1px solid var(--hair); text-align: center; }
.cmp__table thead th { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: 0.01em; color: var(--muted); }
.cmp__table th[scope="row"] { text-align: left; font-weight: 500; color: var(--paper); min-width: 260px; }
.cmp__table .cmp__mine { color: var(--paper); }
.cmp__table td:nth-child(2) { background: var(--acc-soft); }
.cmp__yes { color: var(--acc); font-size: 18px; }
.cmp__no { color: var(--faint); }
.cmp__part { color: var(--muted); }
.cmp__soon { color: var(--dim); }
.cmp__na { color: var(--faint); }
.cmp__legend { margin: 18px 0 0; font-size: 12px; color: var(--dim); letter-spacing: 0.04em; }
.cmp__note { margin: 20px 0 0; color: var(--muted); max-width: var(--measure); }

/* ── Tiers ───────────────────────────────────────────────────────────────── */
.tiers { padding: var(--stack) var(--gut); border-top: 1px solid var(--hair-soft); }
.tiers__pair { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .tiers__pair { grid-template-columns: 1fr 1fr; } }
.tier { display: grid; gap: 10px; align-content: start; padding: clamp(22px, 3vw, 34px); border: 1px solid var(--hair); border-radius: var(--r-xl); background: var(--surface); }
.tier--paid { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border-color: rgba(255, 122, 0, 0.35); }
.tier h3 { font-size: 22px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--muted); }
.tier__price { margin: 0; font-family: var(--display); font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: 1; }
.tier__amount { background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tier__per { margin: 0; color: var(--dim); font-size: 14px; }
.tier ul { margin: 12px 0 18px; padding: 0; list-style: none; display: grid; gap: 9px; color: var(--muted); }
.tier li { padding-left: 20px; position: relative; }
.tier li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 9px; height: 2px; background: var(--acc); }
.tier .btn { justify-self: start; }

/* ── Join ────────────────────────────────────────────────────────────────── */
.join { padding: var(--stack) var(--gut); border-top: 1px solid var(--hair); background: var(--ink-2); }
.join__inner { display: grid; gap: clamp(28px, 5vw, 64px); grid-template-columns: 1fr; max-width: 1080px; }
@media (min-width: 900px) { .join__inner { grid-template-columns: 1.05fr 0.95fr; align-items: start; } }
.join__sub { margin: 16px 0 0; color: var(--muted); max-width: 46ch; }
.join__note { margin: 14px 0 0; color: var(--dim); font-size: 14px; max-width: 46ch; }
.join__act { padding: clamp(20px, 3vw, 32px); border: 1px solid var(--hair); border-radius: var(--r-lg); background: var(--surface); }
.join__act .form { margin: 0; max-width: none; }
.join__price { display: inline-block; margin-top: 18px; color: var(--acc); font-size: 14px; border-bottom: 1px solid var(--acc-soft); }
.join__price::after { content: ' \2192'; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { padding: var(--stack) var(--gut); }
.faq__list { max-width: 820px; border-top: 1px solid var(--hair); }
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__item summary { cursor: pointer; padding: 18px 44px 18px 0; list-style: none; font-weight: 600; font-size: 18px; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; position: absolute; right: 4px; top: 14px; font-family: var(--mono); font-size: 22px; color: var(--acc); }
.faq__item[open] summary::after { content: '−'; }
.faq__item p { margin: 0 0 20px; color: var(--muted); max-width: var(--measure); }

/* ── Download ────────────────────────────────────────────────────────────── */
.get { padding: var(--stack) var(--gut) calc(var(--stack) * 0.7); border-top: 1px solid var(--hair-soft); }
.dl { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.plat { display: grid; gap: 8px; min-width: 0; align-content: start; }
.plat__go { display: grid; gap: 4px; padding: 22px; border: 1px solid var(--hair); border-radius: var(--r-lg); background: var(--surface); transition: border-color 160ms ease, transform 160ms ease; }
.plat__go:hover { border-color: var(--acc); transform: translateY(-2px); }
.plat__os { font-family: var(--display); font-weight: 700; font-size: 26px; }
.plat__file { font-size: 13px; color: var(--acc); }
.plat__note { font-size: 13px; color: var(--dim); }
.plat__alt { font-size: 13px; color: var(--muted); padding-left: 4px; }
.plat__alt::before { content: '\2197  '; color: var(--dim); }
.plat__soon { display: none; font-size: 12px; color: var(--dim); font-family: var(--mono); }
.plat[data-soon] .plat__go { opacity: 0.45; pointer-events: none; }
.plat[data-soon] .plat__soon { display: block; }
.later { margin-top: 34px; padding-top: 22px; border-top: 1px dashed var(--faint); display: grid; gap: 8px 24px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .later { grid-template-columns: auto 1fr; align-items: baseline; } .later__note { grid-column: 2; } }
.later__title { margin: 0; font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }
.later__rows { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--muted); }
.later__rows li::before { content: '\25CC  '; color: var(--dim); }
.later__note { margin: 0; font-size: 14px; color: var(--dim); }

.plat__steps { margin-top: 6px; min-width: 0; padding: 12px 14px; border: 1px dashed var(--faint); border-radius: var(--r); font-size: 14px; color: var(--muted); }
.plat__steps summary { cursor: pointer; color: var(--paper); font-weight: 600; list-style: none; }
.plat__steps summary::-webkit-details-marker { display: none; }
.plat__steps summary::before { content: '\25B8  '; color: var(--acc); }
.plat__steps[open] summary::before { content: '\25BE  '; }
.plat__steps p { margin: 10px 0 6px; }
.plat__steps ol { margin: 0 0 10px; padding-left: 20px; display: grid; gap: 4px; }
.ways { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 22px; }
.way { display: grid; gap: 8px; min-width: 0; padding: 16px 18px; border: 1px solid var(--hair-soft); border-radius: var(--r-lg); background: var(--ink-2); }
.way__title { margin: 0; font-weight: 600; }
.way__note { margin: 0; font-size: 14px; color: var(--dim); }
.cmd { display: flex; align-items: center; gap: 10px; min-width: 0; padding: 8px 8px 8px 12px; border: 1px solid var(--hair); border-radius: var(--r); background: var(--ink); }
.cmd__line { flex: 1; min-width: 0; overflow-x: auto; font-size: 13px; color: var(--paper); white-space: nowrap; user-select: all; scrollbar-width: thin; }
.cmd__copy { flex: none; padding: 6px 12px; border: 0; border-radius: 999px; background: var(--surface-2); color: var(--paper); font: inherit; font-size: 13px; cursor: pointer; }
.cmd__copy:hover { background: var(--acc); color: #1a0d06; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.foot { padding: 34px var(--gut) 44px; border-top: 1px solid var(--hair); color: var(--dim); font-size: 13px; }
.foot__row { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between; }
.lang--foot { flex-wrap: wrap; gap: 8px 16px; font-family: var(--body); font-size: 14px; letter-spacing: 0; }
.foot__dim { margin: 18px 0 0; max-width: var(--measure); }

/* ── Sub-pages (carried from the previous sheet, on the new tokens) ──────── */
.row__name {
  display: flex;
  align-items: center;
  padding-right: 14px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--muted);
  border-right: 1px solid var(--hair-soft);
}

/* ---------- questions ---------- */

.faq { padding: var(--stack) var(--gut); background: var(--ink-2); border-top: 1px solid var(--hair-soft); }

.faq__list { display: grid; gap: 10px; max-width: 860px; }

.faq__item {
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: var(--surface);
  transition: border-color 180ms ease;
}

.faq__item[open] { border-color: var(--acc); }

.faq__item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 500;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after { content: '+'; float: right; color: var(--acc); font-size: 18px; line-height: 1; }

.faq__item[open] summary::after { content: '–'; }

.faq__item p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 70ch;
}

/* Account pages ---------------------------------------------------------- */

.page { padding: clamp(48px, 8vw, 96px) var(--gut) var(--stack); }

.page--narrow { max-width: 560px; }

.page__faq { max-width: 720px; margin-top: clamp(40px, 6vw, 64px); }

.plans {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 860px;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  background: var(--surface);
}

.plan--mark { border-color: var(--acc); background: linear-gradient(180deg, var(--acc-soft), transparent 40%), var(--surface); }

.plan__name { margin: 0; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.plan__price { margin: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }

.plan__amount { font-family: var(--display); font-size: clamp(28px, 4vw, 38px); }

.plan__per { font-size: 13px; color: var(--dim); }

.plan__note { margin: 0; font-size: 14px; color: var(--muted); }

.plan__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; font-size: 15px; }

.plan__list li { padding-left: 22px; position: relative; color: var(--paper); }

.plan__list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--acc);
}

.plan .btn { margin-top: auto; text-align: center; }

.form { display: grid; gap: 24px; max-width: 420px; }

.field { display: grid; gap: 7px; }

.field__label { font-size: 13px; color: var(--muted); }

.field__input {
  padding: 13px 16px;
  border-radius: var(--r);
  border: 1px solid var(--hair);
  background: var(--ink-2);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
}

.field__input:focus { border-color: var(--acc); outline: none; }

.field__input--code { text-transform: uppercase; letter-spacing: 0.22em; font-size: 22px; text-align: center; }

.form .btn { justify-self: start; border: 0; cursor: pointer; font-family: var(--body); }

.form .btn[disabled] { opacity: 0.5; cursor: default; transform: none; }

.notice {
  margin: 22px 0 0;
  padding: 14px 18px;
  border-radius: var(--r);
  border: 1px solid var(--hair);
  background: var(--surface);
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
}

.notice--good { border-color: var(--acc); color: var(--paper); }

.notice--bad { border-color: rgba(255, 42, 84, 0.5); color: var(--paper); }

.card {
  max-width: 720px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  background: var(--surface);
  margin-bottom: 20px;
}

.card h3 { margin: 0 0 4px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.card__lead { margin: 0 0 6px; font-family: var(--display); font-size: clamp(22px, 3vw, 28px); }

.card__note { margin: 0; font-size: 14px; color: var(--muted); }

.card__note + .card__note { margin-top: 6px; }

.card .btn { display: inline-block; margin-top: 18px; }

.notice a { color: var(--acc); text-decoration: underline; text-underline-offset: 3px; }

.join__act .form { margin: 0; }

.form__links { margin: -6px 0 0; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 14px; color: var(--muted); }

.form__links a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }

.form--tight { gap: 16px; margin-top: 14px; }

.card__gap { margin-top: 14px; }

.human:empty { display: none; }

.or { display: flex; align-items: center; gap: 14px; max-width: 420px; margin: 26px 0 18px; color: var(--dim); font-size: 13px; }

.or::before, .or::after { content: ''; flex: 1; height: 1px; background: var(--hair); }

.providers { display: grid; gap: 10px; max-width: 420px; }

.provider { text-align: center; }

.links { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; margin-top: 8px; font-size: 15px; }

.links a, .links button { color: var(--paper); background: none; border: 0; padding: 0; font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

[hidden] { display: none !important; }

.handoff__found {
  margin: 0 0 24px; padding: 18px 20px;
  border: 1px solid var(--hair); border-left: 3px solid var(--acc); border-radius: 14px;
  background: var(--surface);
}

.handoff__name { margin: 0; font-family: var(--display); font-size: clamp(20px, 2.4vw, 26px); line-height: 1.2; }

.handoff__check { margin: 8px 0 0; font-size: 14px; color: var(--muted); line-height: 1.45; }

.handoff__lock { margin: 18px 0 0; font-size: 13px; color: var(--dim); max-width: 46ch; }

.field__hint { font-size: 13px; color: var(--dim); }

.check { display: grid; grid-template-columns: auto 1fr; gap: 6px 10px; align-items: start; font-size: 15px; color: var(--paper); }

.check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--acc); }

.check .field__hint { grid-column: 2; }

.form .btn--quiet { background: transparent; color: var(--paper); border: 1px solid var(--hair); }

.notice--stop { border-color: var(--rose); background: rgba(255, 42, 84, 0.14); color: var(--paper); font-weight: 600; }

.handoff__after { margin-top: 18px; }

.handoff__after button { padding: 0; border: 0; background: none; color: var(--acc); font: inherit; font-size: 15px; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
