/* ==========================================================================
   Nova Card — demo landing page styles
   Single stylesheet, no build step, no external requests.
   ========================================================================== */

:root {
  --bg: #060914;
  --bg-elev: #0c1220;
  --bg-elev-2: #121a2c;
  --line: #243044;
  --line-soft: #172033;
  --text: #f4f7fb;
  --text-dim: #a7b3c7;
  --text-faint: #73809a;
  --accent: #5eead4;
  --accent-strong: #22d3ee;
  --accent-ink: #04221c;
  --mint: #4fd1a5;
  --ice: #9ec5ff;
  --rose: #f3b4c8;
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --shell: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- layout primitives ---------- */

.shell {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--shell);
}

.shell--narrow { max-width: 820px; }

.section { padding: clamp(56px, 8vw, 104px) 0; }

.section--alt {
  background: var(--bg-elev);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section__head {
  max-width: 660px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.section__head h2 {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.14;
  letter-spacing: -.02em;
  margin: 14px 0 0;
}

.section__sub {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: clamp(15px, 1.5vw, 17px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 209, 102, .07);
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hl { color: var(--accent); }

.grid { display: grid; gap: clamp(14px, 2vw, 20px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.footnote {
  margin-top: 28px;
  color: var(--text-faint);
  font-size: 13px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- buttons & chips ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .16s ease, background .16s ease, border-color .16s ease,
    color .16s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 14px 26px; font-size: 15.5px; }

.btn--primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--accent-ink);
}
.btn--primary:hover { background: linear-gradient(120deg, #99f6e4 0%, #67e8f9 100%); }

.btn--outline {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .02);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn--ghost { color: var(--text-dim); }
.btn--ghost:hover { color: var(--text); }

.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 13.5px;
  font-weight: 600;
  transition: all .16s ease;
}

.chip[aria-pressed='true'] {
  border-color: var(--accent);
  background: rgba(94, 234, 212, .12);
  color: var(--accent);
}

.pill {
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elev-2);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 12, .82);
  border-bottom-color: var(--line-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.brand__glyph {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--accent-ink);
  font-size: 16px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  gap: 26px;
  margin-inline-start: 18px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.site-nav a:hover { color: var(--text); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: auto;
  flex-shrink: 0;
}

.lang { position: relative; }
.lang__btn {
  min-width: 44px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  margin: 0;
  padding: 6px;
  min-width: 168px;
  max-height: 320px;
  overflow: auto;
  list-style: none;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #10151f;
}
.lang__menu[hidden] { display: none; }
.lang__menu button {
  display: block;
  width: 100%;
  text-align: start;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
}
.lang__menu button[aria-selected="true"],
.lang__menu button:hover { background: rgba(94, 234, 212, .12); }
html[dir="rtl"] .lang__menu { right: auto; left: 0; }
html[dir="rtl"] .hero__cta,
html[dir="rtl"] .elig__row,
html[dir="rtl"] .apply__form { direction: rtl; }

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.site-header__burger span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.site-drawer {
  display: none;
  gap: 4px;
  padding: 12px var(--shell) 20px;
  background: rgba(7, 8, 12, .96);
  border-bottom: 1px solid var(--line-soft);
}

.site-drawer.is-open { display: grid; }

.site-drawer a:not(.btn) {
  padding: 11px 2px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-dim);
}

.site-drawer .btn { margin-top: 12px; }

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 84px) 0 clamp(40px, 5vw, 64px);
}

.hero__glow {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 900px; height: 620px;
  transform: translateX(-46%);
  background: radial-gradient(closest-side, rgba(34, 211, 238, .22), rgba(34, 211, 238, 0));
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.hero__copy h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 5.6vw, 62px);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.lede {
  max-width: 520px;
  margin-top: 18px;
  color: var(--text-dim);
  font-size: clamp(15.5px, 1.6vw, 18px);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__coins {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero__coins-label {
  color: var(--text-faint);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__coins ul { display: flex; flex-wrap: wrap; gap: 8px; }

.hero__coins li {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-elev);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
}

.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.hero__art > .card-art { position: relative; z-index: 2; }

.hero__art-back {
  position: absolute;
  top: 8%; right: 4%;
  z-index: 1;
  transform: rotate(-9deg) scale(.92);
  opacity: .55;
}

/* ---------- statbar ---------- */

.statbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  margin-top: clamp(36px, 5vw, 60px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--line-soft);
  overflow: hidden;
}

.statbar__item { padding: 22px 24px; background: var(--bg-elev); }

.statbar__item dt {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--accent);
}

.statbar__item dd {
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 13.5px;
}

/* ---------- card art (drawn in CSS/SVG, no imagery) ---------- */

.card-art {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1.585 / 1;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, .9),
    inset 0 1px 0 rgba(255, 255, 255, .28);
}

.card-art--gold {
  background: linear-gradient(145deg, #f7fbff 0%, #8ec5ff 42%, #1d3f78 100%);
  color: #071426;
}

.card-art--graphite {
  background: linear-gradient(135deg, #3a4354 0%, #1d2431 52%, #0a0e15 100%);
  color: #eef3fa;
}

.card-art--mint {
  background: linear-gradient(135deg, #6ef0c0 0%, #25a97c 52%, #08402f 100%);
  color: #04261b;
}

.card-art--tilt { transform: rotate(-4deg); transition: transform .35s ease; }
.card-art--tilt:hover { transform: rotate(-1deg) translateY(-6px); }

.card-art__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, .34) 0%,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0) 62%,
    rgba(255, 255, 255, .14) 100%);
  pointer-events: none;
}

.card-art__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-art__wordmark {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .22em;
}

.card-art__chip {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 42px; height: 31px;
  margin-top: auto;
  padding: 5px;
  border-radius: 6px;
  background: linear-gradient(140deg, #e8d49b, #b48c3c);
}

.card-art__chip span {
  height: 2px;
  border-radius: 2px;
  background: rgba(0, 0, 0, .3);
}

.card-art__number {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 600;
  letter-spacing: .1em;
}

.card-art__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  opacity: .85;
}

.card-art__mark { display: flex; }

.card-art__mark i {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: currentColor;
  opacity: .32;
}

.card-art__mark i + i { margin-left: -9px; opacity: .55; }

/* ---------- tiles ---------- */

.tile {
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-elev);
  transition: border-color .18s ease, transform .18s ease;
}

.tile:hover { border-color: var(--line); transform: translateY(-3px); }

.tile h3 { margin: 16px 0 0; font-size: 17.5px; letter-spacing: -.01em; }
.tile p { margin-top: 9px; color: var(--text-dim); font-size: 14.5px; }

.tile__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 209, 102, .24);
  background: rgba(255, 209, 102, .09);
  color: var(--accent);
}

.tile__icon--sm {
  width: 34px; height: 34px;
  border-radius: 10px;
  flex: 0 0 auto;
}

/* ---------- cashback ---------- */

.cashback { display: grid; gap: clamp(18px, 2.4vw, 26px); }

.tier {
  position: relative;
  padding: clamp(22px, 2.6vw, 28px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  text-align: start;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.tier.is-on {
  border-color: rgba(94, 234, 212, .75);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, .35);
}

.tier:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.tier--featured {
  border-color: rgba(255, 209, 102, .42);
  background: linear-gradient(180deg, rgba(255, 209, 102, .08) 0%, rgba(255, 209, 102, 0) 55%),
    var(--bg);
}

.tier__flag {
  position: absolute;
  top: -11px;
  left: clamp(22px, 2.6vw, 28px);
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
}

.tier h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.tier__rate {
  margin-top: 8px;
  font-size: clamp(38px, 5vw, 50px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--accent);
}

.tier__cap { margin-top: 10px; font-size: 14.5px; font-weight: 600; }
.tier__req { margin-top: 3px; color: var(--text-faint); font-size: 13.5px; }

.tier__perks {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 9px;
}

.tier__perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-dim);
  font-size: 14px;
}

.tier__perks svg { color: var(--mint); flex: 0 0 auto; }

.calc {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg);
  grid-template-columns: minmax(0, 1fr) minmax(220px, .62fr);
  grid-template-areas:
    'head out'
    'tiers out'
    'tokens out'
    'slider out';
  align-items: start;
}

.calc__head { grid-area: head; }
.calc__head h3 { font-size: 20px; letter-spacing: -.01em; }
.calc__head p { margin-top: 6px; color: var(--text-dim); font-size: 14px; }

.calc__tiers,
.calc__tokens { display: flex; flex-wrap: wrap; gap: 8px; }
.calc__tiers { grid-area: tiers; }
.calc__tokens { grid-area: tokens; }

.calc__slider { grid-area: slider; display: grid; gap: 10px; }

.calc__slider-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-dim);
  font-size: 14px;
}

.calc__slider-top strong { color: var(--text); font-size: 16px; }

.calc__slider input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--bg-elev-2);
  outline-offset: 6px;
}

.calc__slider input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  background: var(--accent);
  cursor: pointer;
}

.calc__slider input[type='range']::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  background: var(--accent);
  cursor: pointer;
}

.calc__out {
  grid-area: out;
  display: grid;
  gap: 6px;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(255, 209, 102, .26);
  border-radius: var(--radius);
  background: rgba(255, 209, 102, .07);
}

.calc__out span { color: var(--text-dim); font-size: 13.5px; }

.calc__out strong {
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--accent);
}

.calc__out small { color: var(--text-faint); font-size: 12.5px; line-height: 1.5; }

/* ---------- card formats ---------- */

.format {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
}

.format__art {
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 22px) 0;
}

.format__title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.format__title h3 { font-size: 21px; letter-spacing: -.01em; }
.format__tagline { margin-top: 8px; color: var(--text-dim); font-size: 14.5px; }

.spec { margin-top: 18px; border-top: 1px solid var(--line-soft); }

.spec__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}

.spec__row dt { color: var(--text-dim); }
.spec__row dd { font-weight: 600; }

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.step {
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg);
}

.step__num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
}

.step h3 { margin-top: 14px; font-size: 17.5px; letter-spacing: -.01em; }
.step p { margin-top: 9px; color: var(--text-dim); font-size: 14.5px; }

/* ---------- security ---------- */

.security {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.security__copy h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.14;
  letter-spacing: -.02em;
}

.security__copy .btn { margin-top: 24px; }

.security__list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--line-soft);
  overflow: hidden;
}

.security__list li {
  display: flex;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 24px);
  background: var(--bg-elev);
}

.security__list h3 { font-size: 16.5px; letter-spacing: -.01em; }
.security__list p { margin-top: 6px; color: var(--text-dim); font-size: 14.5px; }

/* ---------- rewards ---------- */

.rewards {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(18px, 2.4vw, 26px);
  align-items: stretch;
}

.rewards__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.rewards__list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 17px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 14.5px;
}

.rewards__list svg { color: var(--accent); flex: 0 0 auto; }

.referral {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid rgba(255, 209, 102, .26);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 209, 102, .1) 0%, rgba(255, 209, 102, 0) 60%),
    var(--bg);
}

.referral h3 { font-size: 20px; letter-spacing: -.01em; }

.referral__pair {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 14px;
}

.referral__pair strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--accent);
}

.referral__plus { color: var(--text-faint); }
.referral__note { color: var(--text-faint); font-size: 13px; }
.referral .btn { margin-top: auto; }

/* ---------- fees ---------- */

.fees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--line-soft);
  overflow: hidden;
}

.fees__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-elev);
}

.fees__row dt { color: var(--text-dim); font-size: 14.5px; }
.fees__row dd { font-weight: 600; text-align: right; }

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

.faq { display: grid; gap: 10px; }

.faq__item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}

.faq__item.is-open { border-color: var(--line); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
}

.faq__sign {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--accent);
  transition: transform .2s ease;
}

.faq__item.is-open .faq__sign { transform: rotate(45deg); }

.faq__a {
  padding: 0 60px 20px 22px;
  color: var(--text-dim);
  font-size: 14.5px;
}

.faq__item:not(.is-open) .faq__a { display: none; }

/* ---------- apply ---------- */

.apply { position: relative; overflow: hidden; }

.apply__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255, 209, 102, .1) 0%, rgba(255, 209, 102, 0) 52%),
    var(--bg-elev);
}

.apply__copy h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -.02em;
}

.apply__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.apply__form input {
  flex: 1 1 240px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
}

.apply__form input::placeholder { color: var(--text-faint); }
.apply__form input:focus { border-color: var(--accent); outline: none; }

.apply__msg { margin-top: 14px; color: var(--text-faint); font-size: 13px; }

.apply__art { display: grid; place-items: center; }

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

.site-footer {
  padding: clamp(44px, 6vw, 72px) 0 36px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-elev);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 2.1fr);
  gap: clamp(28px, 4vw, 56px);
}

.site-footer__brand p {
  margin-top: 14px;
  max-width: 300px;
  color: var(--text-faint);
  font-size: 13.5px;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}

.site-footer__cols h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__cols ul { margin-top: 12px; display: grid; gap: 9px; }
.site-footer__cols a { color: var(--text-dim); font-size: 14px; }
.site-footer__cols a:hover { color: var(--accent); }

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-faint);
  font-size: 12.5px;
}

.mode {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.mode__switch { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.mode__body h3 { font-size: 1.35rem; letter-spacing: -.02em; }
.mode__body p { margin-top: 10px; color: var(--text-dim); }
.mode__points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.mode__points li {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-elev-2);
  border: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--ice);
}

.priority {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: 24px;
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg);
}
.priority h3 { font-size: 1.15rem; }
.priority p { margin-top: 8px; color: var(--text-dim); }
.priority__list { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.priority__list li { display: flex; }
.priority__list button {
  min-width: 88px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-elev-2);
  font-weight: 700;
}
.priority__list li:first-child button {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(94, 234, 212, .35);
}

.deck {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(94, 234, 212, .06), transparent 40%), var(--bg-elev);
}
.deck.is-frozen { opacity: .72; }
.deck__freeze {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
}
.deck__freeze small { display: block; color: var(--text-faint); }
.deck__freeze input { width: 22px; height: 22px; accent-color: var(--accent); }
.deck__channels { display: flex; flex-wrap: wrap; gap: 8px; }

.versus { display: grid; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.versus__row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.4fr;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.versus__row:first-child { border-top: 0; }
.versus__row--head { background: var(--bg-elev-2); font-weight: 700; color: var(--text-dim); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.versus__row span:nth-child(2) { color: var(--accent); }

@media (max-width: 800px) {
  .mode, .priority { grid-template-columns: 1fr; }
  .mode__switch { flex-direction: row; }
  .versus__row { grid-template-columns: 1fr; gap: 4px; }
  .versus__row--head { display: none; }
}

.elig label { display: block; margin-bottom: 8px; font-weight: 650; }
.elig__row { display: flex; flex-wrap: wrap; gap: 10px; }
.elig select {
  flex: 1 1 220px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
}
.elig__result { margin-top: 14px; color: var(--text-dim); max-width: 40rem; }
.elig__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.elig__steps li {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  display: grid;
  gap: 6px;
}
.elig__steps span { color: var(--text-dim); font-size: 14px; }

.legal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.legal__grid article {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}
.legal__grid h3 { font-size: 1.05rem; margin-bottom: 8px; }
.legal__grid p { color: var(--text-dim); font-size: 14.5px; }

@media (max-width: 800px) {
  .elig__steps, .legal__grid { grid-template-columns: 1fr; }
}

/* ---------- responsive ---------- */

@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
  .site-nav { display: none; }
  .site-header__burger { display: flex; }
  .hero__inner,
  .security,
  .rewards,
  .apply__inner,
  .site-footer__top { grid-template-columns: 1fr; }
  .calc {
    grid-template-columns: 1fr;
    grid-template-areas: 'head' 'tiers' 'tokens' 'slider' 'out';
  }
  .hero__art { order: -1; min-height: 0; }
  .hero__art-back { display: none; }
  .card-art--tilt { transform: none; }
}

@media (max-width: 620px) {
  .btn--ghost { display: none; }
  .site-header__inner { gap: 8px; }
  .site-header__actions .btn--primary { padding: 8px 12px; font-size: 13px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .faq__q { padding: 16px 18px; font-size: 15px; }
  .faq__a { padding: 0 18px 18px; }
}
