:root {
  --ink: #0b0c0f;
  --ink-2: #12141a;
  --card: #181b23;
  --card-2: #1f232e;
  --line: rgba(244, 241, 232, 0.08);
  --line-strong: rgba(244, 241, 232, 0.14);
  --text: #f4f1e8;
  --muted: #9b978c;
  --amber: #e8a24a;
  --amber-deep: #c7842d;
  --amber-soft: rgba(232, 162, 74, 0.16);
  --ok: #7dbe8a;
  --danger: #d27a6a;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius-sm: 12px;
  --pad: 16px;
  --tap: 48px;
  --cta: 52px;
  --header: 58px;
  --max: 1080px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Sora", "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }

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

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
}

body {
  padding-bottom: env(safe-area-inset-bottom);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; }

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

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: calc(var(--header) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  background: rgba(11, 12, 15, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap,
.nav-row {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: var(--tap);
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.brand span {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.03em;
  font-size: 17px;
}

.icon-btn {
  width: var(--tap);
  height: var(--tap);
  border: 1px solid var(--line-strong);
  background: var(--card);
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--text);
}

.nav-links { display: none; }

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
}

.nav-links a:hover,
.nav-links a.is-current { color: var(--text); }

.menu-btn {
  width: var(--tap);
  height: var(--tap);
  border: 1px solid var(--line-strong);
  background: var(--card);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.menu-btn i,
.menu-btn i::before,
.menu-btn i::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  border-radius: 99px;
}

.menu-btn i {
  position: relative;
}

.menu-btn i::before,
.menu-btn i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn i::before { top: -6px; }
.menu-btn i::after { top: 6px; }

.drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: 8px 16px 16px;
}

.drawer.is-open { display: block; }

.drawer a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.page-home {
  background:
    radial-gradient(80% 42% at 0% -8%, rgba(232, 162, 74, 0.14), transparent 58%),
    var(--ink);
}

.intro {
  padding: 18px 0 0;
}

.intro h1 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: var(--cta);
  padding: 0 16px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
}

.search svg { flex: 0 0 auto; color: var(--muted); }

.search input {
  width: 100%;
  border: 0;
  background: transparent;
  min-height: 44px;
  font-size: 16px;
}

.search input::placeholder { color: var(--muted); }

.toolbar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: none;
}

.toolbar::-webkit-scrollbar { display: none; }

.pill {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.pill.is-on {
  background: var(--amber);
  color: #1a1208;
  border-color: var(--amber);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 12px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(232, 162, 74, 0.18), transparent 42%),
    var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
}

.spotlight-card img {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  object-fit: cover;
  background: var(--card-2);
}

.spotlight-card strong {
  display: block;
  margin: 4px 0 4px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.spotlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.spotlight-go {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 10px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--amber);
  color: #1a1208;
  font-size: 12px;
  font-weight: 800;
}

.spotlight-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.spotlight-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: var(--card-2);
}

.spotlight-dots button.is-on {
  width: 18px;
  background: var(--amber);
}

.pop-rail { overflow: hidden; }

.pop-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 8px;
  scrollbar-width: none;
}

.pop-row::-webkit-scrollbar { display: none; }

.pop-tile {
  flex: 0 0 76px;
  scroll-snap-align: start;
  text-align: center;
}

.pop-tile img {
  width: 72px;
  height: 72px;
  margin: 0 auto 8px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--card-2);
  box-shadow: 0 0 0 3px var(--ink), 0 0 0 5px rgba(232, 162, 74, 0.55);
}

.pop-tile span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.title-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
}

.title-row {
  display: grid;
  grid-template-columns: 56px 1fr 18px;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.title-row:last-child { border-bottom: 0; }

.title-row:active { background: var(--card-2); }

.title-row img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--card-2);
}

.title-row strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.title-row em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(-45deg);
}

.search-sheet {
  position: fixed;
  inset: calc(var(--header) + env(safe-area-inset-top)) 0 0;
  z-index: 25;
  background: rgba(11, 12, 15, 0.96);
  backdrop-filter: blur(16px);
  padding: 16px 0 32px;
  overflow: auto;
}

.search-sheet .search { margin-bottom: 16px; }

.search-close {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--amber);
  font-weight: 800;
  font-size: 13px;
  padding: 0;
}

.empty-line {
  margin: 24px 0;
  text-align: center;
  color: var(--muted);
}

body.is-searching { overflow: hidden; }

.empty {
  grid-column: 1 / -1;
  padding: 28px 16px;
  text-align: center;
  color: var(--muted);
  background: var(--card);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}

.how {
  margin: 36px 0 8px;
  display: grid;
  gap: 10px;
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.step b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--amber-soft);
  color: var(--amber);
  font-size: 13px;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.about {
  margin: 18px 0 8px;
  padding: 18px 16px;
  background:
    linear-gradient(135deg, rgba(232, 162, 74, 0.12), transparent 42%),
    var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
}

.about h3 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.about > p:not(.kicker) {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 14px;
}

.about-stats div {
  padding: 10px 6px;
  text-align: center;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.about-stats b {
  display: block;
  color: var(--amber);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.about-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.about-split {
  display: grid;
  gap: 10px;
}

.about-split p {
  margin: 0;
  padding: 12px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.about-split strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
}

.about-mini {
  margin: 16px 0 0;
  padding: 16px 14px;
}

.about-mini h3 {
  font-size: 18px;
}

.about-mini > p:not(.kicker) {
  margin-bottom: 12px;
  font-size: 13px;
}

.sponsor-cta {
  margin: 14px 0 8px;
  padding: 20px 16px;
  background:
    linear-gradient(180deg, rgba(232, 162, 74, 0.22), rgba(232, 162, 74, 0.08)),
    var(--card);
  border: 1px solid rgba(232, 162, 74, 0.5);
  border-radius: 22px;
}

.sponsor-cta h3 {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.sponsor-cta > p:not(.kicker) {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.sponsor-cta .btn {
  font-size: 16px;
}

.page-partner {
  padding: 18px 0 48px;
}

.page-partner h1 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.partner-lead {
  margin: 8px 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.partner-form {
  margin-top: 22px;
  padding: 18px 16px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
}

.partner-form .field:first-of-type {
  margin-top: 0;
}

.field textarea {
  width: 100%;
  min-height: 128px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  font-size: 16px;
  line-height: 1.45;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-ok { color: var(--ok); }
.form-status.is-err { color: var(--danger); }

.partner-form .btn {
  margin-top: 18px;
}

.partner-done {
  padding: 28px 8px 12px;
  text-align: center;
}

.partner-done h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.partner-done p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 40px;
  padding: 28px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer a {
  color: var(--amber);
  font-weight: 700;
  width: fit-content;
}

.page-app,
.page-sponsors {
  padding: 18px 0 110px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.stepper-dots {
  display: flex;
  gap: 6px;
}

.stepper-dots i {
  width: 28px;
  height: 6px;
  border-radius: 99px;
  background: var(--card-2);
}

.stepper-dots i.is-on { background: var(--amber); }

.req-hero {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(232, 162, 74, 0.16), transparent 48%),
    var(--card);
}

.req-hero h1 {
  margin: 4px 0 4px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.req-hero p { margin: 0; color: var(--muted); font-size: 13px; }

.req-logo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  object-fit: cover;
  background: var(--card-2);
}

.res-block {
  padding: 16px;
  margin-bottom: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.res-block header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.res-block header img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.res-block h2 {
  margin: 0;
  font-size: 16px;
}

.res-block header p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.res-block header b { color: var(--amber); }

.amounts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 76px;
  padding: 10px 6px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
}

.amount img { width: 28px; height: 28px; object-fit: contain; }

.amount b {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.amount.is-on {
  background: var(--amber-soft);
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}

.picks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.pick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 700;
}

.pick img { width: 18px; height: 18px; object-fit: contain; }

.account-card {
  padding: 18px 16px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
}

.account-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.account-card > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.platform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.platform {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  font-weight: 800;
}

.platform.is-on {
  background: var(--amber-soft);
  border-color: var(--amber);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.feature-card {
  padding: 12px;
  border-radius: 14px;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
}

.feature-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.title-card,
.panel,
.offer-card,
.state-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.title-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin-bottom: 14px;
}

.title-card img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
}

.title-card h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.title-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.panel { padding: 16px; margin-bottom: 12px; }

.panel h2 {
  margin: 0 0 12px;
  font-size: 15px;
}

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

.chip,
.choice {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  font-weight: 700;
}

.chip.is-on,
.choice.is-on {
  background: var(--amber-soft);
  border-color: var(--amber);
  color: var(--text);
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.choice { width: 100%; }

.field { display: grid; gap: 8px; margin-top: 14px; }

.field label,
.field > span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.field input {
  width: 100%;
  min-height: var(--cta);
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  font-size: 16px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(11, 12, 15, 0.96) 28%);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--cta);
  border: 0;
  border-radius: 16px;
  background: var(--amber);
  color: #1a1208;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn:disabled {
  opacity: 0.45;
}

.btn-ghost {
  background: var(--card-2);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

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

.lead {
  margin: 0 0 16px;
  color: var(--muted);
}

.page-sponsors {
  padding-bottom: 36px;
}

.sponsors-hero {
  padding: 8px 0 4px;
}

.sponsors-hero h1 {
  margin: 10px 0 10px;
  font-family: var(--display);
  font-size: clamp(26px, 7vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  max-width: 16ch;
}

.unlock-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  margin: 8px 0 16px;
  background:
    linear-gradient(180deg, rgba(232, 162, 74, 0.08), transparent 42%),
    var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
}

.unlock-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.unlock-card strong {
  display: block;
  font-family: var(--display);
  letter-spacing: -0.03em;
}

.unlock-card p:not(.unlock-label) {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.unlock-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.unlock-picks .pick {
  background: var(--ink-2);
  min-height: 32px;
  padding: 0 8px;
  font-size: 12px;
}

.unlock-picks .pick img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  object-fit: contain;
}

.unlock-label {
  margin: 0 0 4px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.howto-mini {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.howto-mini article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.howto-mini b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--amber-soft);
  color: var(--amber);
  font-size: 13px;
}

.howto-mini h2 {
  margin: 0 0 4px;
  font-size: 15px;
}

.howto-mini p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.sponsors-note {
  margin: 18px 0 0;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.offer-list { display: grid; gap: 12px; }

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.offer-top {
  display: grid;
  grid-template-columns: 28px 64px 1fr;
  gap: 12px;
  align-items: start;
}

.offer-index {
  padding-top: 4px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.offer-tag {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-card img,
.offer-fallback {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--card-2);
}

.offer-fallback {
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--amber);
}

.offer-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.offer-card .btn { min-height: 52px; }

.title-card strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.state-box {
  padding: 28px 18px;
  text-align: center;
}

.state-box h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 20px;
}

.skeleton {
  height: 92px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--card), var(--card-2), var(--card));
  background-size: 180% 100%;
  animation: shine 1.2s ease-in-out infinite;
}

@keyframes shine {
  0% { background-position: 100% 0; }
  100% { background-position: -80% 0; }
}

@media (min-width: 720px) {
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .menu-btn, .drawer { display: none !important; }
  .pop-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    padding: 0;
    width: min(100% - 32px, var(--max));
    margin-inline: auto;
  }
  .pop-tile { flex: unset; }
  .how,
  .howto-mini { grid-template-columns: repeat(3, 1fr); }
  .about-split { grid-template-columns: 1fr 1fr; }
  .about-stats b { font-size: 15px; }
  .intro { padding-top: 28px; }
  .page-home .nav-links { margin-left: auto; }
  .sponsors-hero h1 { max-width: 18ch; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .spotlight-card { padding: 18px; }
}

@media (min-width: 1080px) {
  #catalog.title-list { grid-template-columns: 1fr 1fr; }
  #catalog .title-row { border-right: 1px solid var(--line); }
  #catalog .title-row:nth-child(even) { border-right: 0; }
}

.transit {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 12, 15, 0.88);
  backdrop-filter: blur(10px);
}

.transit[hidden] { display: none !important; }

.transit-card {
  position: relative;
  width: min(100%, 340px);
  padding: 28px 22px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--card);
  overflow: hidden;
  text-align: center;
}

.transit-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 162, 74, 0.22), transparent 68%);
  pointer-events: none;
}

.transit-kicker {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.transit-card h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.transit-bar {
  height: 6px;
  border-radius: 99px;
  background: var(--ink-2);
  overflow: hidden;
}

.transit-bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber));
}

.transit-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

button.back {
  background: none;
  border: 0;
  padding: 0;
}

.page-process {
  padding: 18px 0 32px;
}

.term {
  margin-top: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(232, 162, 74, 0.06), transparent 28%),
    var(--card);
  overflow: hidden;
}

.term-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.term-head b {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.term-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
}

.term-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 1.4s ease-in-out infinite;
}

.term-body {
  min-height: 240px;
  max-height: 52vh;
  overflow: auto;
  padding: 14px 14px 8px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
}

.term-line {
  color: #d8d3c6;
  word-break: break-word;
}

.term-line b { color: var(--amber); font-weight: 700; }
.term-line span { color: var(--amber); }

.term-cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  margin-left: 4px;
  background: var(--amber);
  vertical-align: -2px;
  animation: blink 1s step-end infinite;
}

.term-foot {
  padding: 12px 14px 16px;
  border-top: 1px solid var(--line);
}

.term-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.term-bar {
  height: 8px;
  border-radius: 99px;
  background: var(--ink-2);
  overflow: hidden;
}

.term-bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber));
  transition: width 180ms linear;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes blink {
  50% { opacity: 0; }
}

.admin-sheet {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 12, 15, 0.88);
  backdrop-filter: blur(12px);
}

.admin-sheet[hidden] { display: none !important; }

.admin-card {
  width: min(100%, 400px);
  padding: 26px 20px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(232, 162, 74, 0.14), transparent 46%),
    var(--card);
  box-shadow: var(--shadow);
  text-align: center;
}

.admin-kicker {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-card h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.admin-card > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.admin-bar {
  height: 6px;
  border-radius: 99px;
  background: var(--ink-2);
  overflow: hidden;
}

.admin-bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber));
}

.admin-check {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(125, 190, 138, 0.16);
  color: var(--ok);
  border: 1px solid rgba(125, 190, 138, 0.4);
}

.admin-card.is-done {
  text-align: left;
}

.admin-card.is-done h2 {
  text-align: center;
}

.admin-block {
  margin: 0 0 12px;
  text-align: left;
}

.admin-block-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-choice,
.admin-res {
  display: grid;
  gap: 10px 12px;
  align-items: center;
  padding: 12px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.admin-choice {
  grid-template-columns: 48px minmax(0, 1fr);
}

.admin-card.is-done .admin-choice {
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.admin-choice img,
.admin-choice .offer-fallback {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.admin-choice strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.admin-choice span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.admin-res-list {
  display: grid;
  gap: 6px;
}

.admin-res {
  grid-template-columns: 22px minmax(0, 1fr) auto;
}

.admin-res.is-text {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-res img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
}

.admin-res span {
  font-size: 13px;
  font-weight: 700;
}

.admin-ok {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 4px;
  margin: 0;
  color: var(--ok);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-res .admin-ok {
  margin-top: 0;
}

.admin-card > p.admin-foot {
  margin: 14px 0 0;
  color: var(--amber);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.admin-card.is-done .btn {
  margin-top: 16px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
