:root {
  --bg: #ffffff;
  --bg-soft: #f5f3ef;
  --bg-mint: #eef8ee;
  --ink: #111318;
  --muted: #5d6470;
  --line: rgba(17, 19, 24, 0.08);
  --mint: #1f8a62;
  --mint-bright: #c8f3c0;
  --danger: #d63b3b;
  --max: 1200px;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 20px 50px rgba(17, 19, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  background: #fff;
}

.price-bar {
  display: block;
  overflow: hidden;
  height: 38px;
  background: var(--mint-bright);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.price-track {
  display: flex;
  align-items: center;
  height: 38px;
  width: max-content;
  animation: price-marquee 80s linear infinite;
}

.price-bar:hover .price-track {
  animation-play-state: paused;
}

.price-seq {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 38px;
  padding: 0 28px;
  flex-shrink: 0;
}

.price-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.price-item .chg.up {
  color: #0b6b40;
}

.price-item .chg.down {
  color: var(--danger);
}

@keyframes price-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-track {
    animation: none;
  }
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 40px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.brand svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  padding: 16px;
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  font-weight: 600;
}

.page-hero {
  padding: 56px 0 24px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 18ch;
}

.page-hero .lead {
  max-width: 46ch;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.crumb {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.crumb a:hover {
  text-decoration: underline;
}

.market-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin: 28px 0 20px;
}

.market-status {
  font-size: 22px;
  font-weight: 600;
}

.market-status .up {
  color: var(--mint);
}

.market-status .down {
  color: var(--danger);
}

.mover-toggle {
  display: flex;
  gap: 8px;
}

.chip,
.filter-row button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--ink);
}

.chip.is-on,
.filter-row button.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.movers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.mover {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-soft);
}

.mover img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.mover b {
  display: block;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 20px;
}

.market-tools {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.market-tools input {
  min-width: min(100%, 280px);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table-wrap {
  overflow: auto;
  border-top: 1px solid var(--line);
}

.market-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.market-table th {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 14px 12px;
}

.market-table td {
  padding: 16px 12px;
  border-top: 1px solid var(--line);
  vertical-align: middle;
  white-space: nowrap;
}

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

.coin img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.coin small {
  display: block;
  color: var(--muted);
}

.num-right {
  text-align: right;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0 8px;
}

.pager button {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.pager button.is-on {
  background: var(--ink);
  color: #fff;
}

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

.up {
  color: var(--mint);
}

.down {
  color: var(--danger);
}

.market-table .btn {
  padding: 8px 12px;
  font-size: 14px;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-mark {
  display: inline-flex;
  align-items: center;
  margin: 0 4px 0 2px;
}

.flag-stack {
  display: flex;
  align-items: center;
}

.flag-stack .flag.ghost {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-right: -10px;
  box-shadow: 0 0 0 2px #fff;
  background: linear-gradient(90deg, #c5c9d0 33%, #eef0f3 33% 66%, #9aa1ab 66%);
  opacity: 0.45;
}

.flag-stack .flag.ghost:first-child {
  opacity: 0.28;
}

.flag-stack .flag.ng {
  display: block;
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 1px 3px rgba(17, 19, 24, 0.14);
}

.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;
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
}

.btn-primary:hover {
  background: #2c333a;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 14px 20px;
}

.btn-secondary:hover {
  opacity: 0.7;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 620px;
  height: min(78vh, 700px);
  overflow: hidden;
  background-color: #000;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/hero-f1.jpg?v=3");
  background-repeat: no-repeat;
  background-position: 100% 62%;
  background-size: 70% auto;
  filter: saturate(1.08) contrast(1.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      transparent 35%,
      rgba(0, 0, 0, 0.42) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.22) 36%,
      rgba(0, 0, 0, 0.06) 58%,
      transparent 100%
    );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 58%);
  padding: clamp(112px, 15vh, 168px) 24px 0 clamp(40px, 5.5vw, 80px);
  color: #fff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.06;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero .lead {
  position: absolute;
  z-index: 2;
  left: clamp(40px, 5.5vw, 80px);
  bottom: clamp(36px, 5vh, 56px);
  max-width: min(32em, 52%);
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
}

.btn-signup {
  position: relative;
  min-width: 228px;
  justify-content: flex-start;
  padding: 16px 48px 16px 20px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn-signup svg {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
}

.btn-qr {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.btn-qr:hover {
  background: #fff;
}

.btn-qr svg {
  width: 20px;
  height: 20px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 56px 24px 64px;
  text-align: center;
  background: #faf8f4;
}

.metrics article {
  position: relative;
  min-width: 0;
  padding: 0 28px;
}

.metrics article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 6px;
  width: 1px;
  background: rgba(17, 19, 24, 0.14);
}

.metrics strong {
  display: block;
  font-size: clamp(44px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink);
}

.metrics span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(32px, 4.4vw, 48px);
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.product {
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-soft);
  min-height: 540px;
  display: flex;
  flex-direction: column;
}

.product-visual {
  height: 340px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.product-visual.credit {
  background-image: url("../images/product-credit.png");
}

.product-visual.hold {
  background-image: url("../images/product-hold-cocktail.jpg");
  background-position: 50% 42%;
}

.product-visual.spend {
  background-image: url("../images/product-spend.png");
}

.phone {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 200px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  color: var(--ink);
  text-align: left;
}

.phone small {
  color: var(--muted);
}

.phone b {
  display: block;
  font-size: 24px;
  margin: 4px 0 10px;
}

.bar {
  height: 6px;
  border-radius: 99px;
  background: #ece7dc;
  overflow: hidden;
}

.bar span {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--mint);
}

.product-copy {
  padding: 32px;
}

.product-copy h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.product-copy p {
  color: var(--muted);
}

.band {
  position: relative;
  background-color: var(--bg-soft);
  background-image: url("../images/product-hold.png");
  background-size: cover;
  background-position: center;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 243, 239, 0.88);
}

.band > .wrap {
  position: relative;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.wealth {
  padding: 72px 0 0;
  background: #fff;
}

.wealth-head {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 8px 28px;
  text-align: center;
}

.wealth-head h2 {
  font-size: clamp(32px, 4.4vw, 48px);
}

.wealth-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.wealth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-top: 1px solid var(--line);
}

.wealth-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(28px, 5vw, 80px);
}

.wealth-kicker {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.wealth-copy h3 {
  max-width: 12ch;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.wealth-copy > p:not(.wealth-kicker) {
  max-width: 38ch;
  margin-top: 16px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}

.wealth-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background-color: #f4f2ee;
}

.wealth-visual--personal {
  background-image: url("../images/hero-lifestyle.jpg");
  background-repeat: no-repeat;
  background-position: 72% 8%;
  background-size: auto 150%;
}

.wealth-visual--office {
  background-color: #efece6;
  background-image: url("../images/product-hold.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.wealth-visual--office::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 242, 238, 0.52);
}

.hero-float {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(17, 19, 24, 0.12);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  color: var(--ink);
}

.hero-float small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.hero-float b {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.hero-float-assets {
  display: block;
  width: 250px;
  padding: 18px 18px 14px;
}

.hero-float-assets p {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
}

.hero-asset {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.hero-asset + .hero-asset {
  border-top: 1px solid rgba(17, 19, 24, 0.08);
}

.hero-asset strong {
  font-size: 13px;
}

.hero-asset em {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-coin {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.hero-coin.btc {
  background: #f7931a;
}

.hero-coin.eth {
  background: #627eea;
}

.hero-coin.usdt {
  background: #1f8a62;
}

.wealth-float-main {
  top: 18%;
  right: 10%;
  min-width: 228px;
}

.wealth-float-main b {
  font-size: 22px;
}

.wealth-float-stack {
  left: auto;
  right: 10%;
  bottom: 14%;
  top: auto;
}

.panel {
  padding: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.method {
  padding: 28px;
  border-radius: 12px;
  background: var(--bg-soft);
}

.method h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.method p {
  color: var(--muted);
}

.calc-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.calc-grid h2,
.why-grid h2,
.faq h2 {
  text-align: left;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  font-size: 14px;
  color: var(--muted);
}

.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.result {
  padding: 20px;
  border-radius: 12px;
  background: var(--bg-mint);
}

.result small {
  color: var(--muted);
}

.result b {
  display: block;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 4px 0 8px;
}

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

.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why article {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.why strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why p {
  color: var(--muted);
}

.reviews-title {
  max-width: 18ch;
  margin: 0 0 40px;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-align: left;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 220px;
  padding: 32px;
  border-radius: 12px;
  background: #eef6f0;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-person strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.review-person span {
  color: var(--muted);
  font-size: 13px;
}

.review-card p {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

.review-card .stars {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 22px;
  font-weight: 600;
  list-style: none;
}

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

.faq p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 70ch;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.55), rgba(17, 19, 24, 0.78)),
    url("../images/cta-bg.png") center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.signup-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background: rgba(17, 19, 24, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.signup-overlay.is-open,
.signup-overlay:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.signup-dialog {
  width: min(760px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  transform: translateY(18px);
  transition: transform 0.32s ease;
}

.signup-overlay.is-open .signup-dialog,
.signup-overlay:target .signup-dialog {
  transform: none;
}

.signup-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 1;
  width: 40px;
  height: 40px;
  margin: -8px -8px 0 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: 28px/1 inherit;
  cursor: pointer;
}

.signup-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

body.signup-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .signup-overlay,
  .signup-dialog {
    transition: none;
  }
}

.cta-card h2 {
  font-size: clamp(32px, 5vw, 56px);
}

.cta-card p {
  max-width: 46ch;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 720px;
  margin: 32px auto 0;
  text-align: left;
}

.cta-card label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.cta-card .span-2 {
  grid-column: 1 / -1;
}

.cta-card input,
.cta-card select {
  padding: 14px 16px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #111;
}

.cta-card .btn-primary {
  background: var(--mint-bright);
  color: #111;
}

.cta-card .btn-primary:hover {
  background: #d8f8d2;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: #ffb4b4;
}

.signup-form-view[hidden],
.login-form-view[hidden],
.signup-success[hidden] {
  display: none !important;
}

.cta-card .login-form {
  grid-template-columns: 1fr;
  max-width: 420px;
}

.form-switch {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.form-switch a {
  color: var(--mint-bright);
  font-weight: 600;
}

.form-switch a:hover {
  text-decoration: underline;
}

.status-page {
  min-height: calc(100vh - 110px);
  display: grid;
  place-items: center;
  padding: 48px 0 80px;
  background:
    radial-gradient(circle at 50% 0%, var(--bg-mint), transparent 58%),
    var(--bg);
}

.status-card {
  max-width: 640px;
  text-align: center;
  animation: status-fade 0.55s ease both;
}

.status-card h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-top: 8px;
}

.status-card .lead {
  max-width: 42ch;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.status-kicker {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
}

.status-email {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 600;
}

.status-card .fine {
  margin: 28px auto 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 14px;
}

.status-card .btn {
  margin-top: 28px;
}

.status-ring {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 999px;
  border: 3px solid rgba(31, 138, 98, 0.18);
  border-top-color: var(--mint);
  animation: status-spin 1s linear infinite;
}

.status-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}

.status-steps li {
  position: relative;
  padding-top: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.status-steps li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
  transform: translateX(-50%);
}

.status-steps li.is-done,
.status-steps li.is-on {
  color: var(--ink);
}

.status-steps li.is-done::before {
  background: var(--mint);
}

.status-steps li.is-on::before {
  background: var(--mint-bright);
  box-shadow: 0 0 0 6px rgba(200, 243, 192, 0.55);
}

@keyframes status-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes status-fade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-ring,
  .status-card {
    animation: none;
  }
}

.prefooter {
  border-top: 1px solid var(--line);
  background: #fff;
}

.prefooter-top,
.prefooter-trust {
  width: 100%;
}

.prefooter-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.prefooter-pane {
  padding: 56px clamp(28px, 5vw, 80px) 48px;
}

.prefooter-pane + .prefooter-pane {
  border-left: 1px solid var(--line);
}

.prefooter-pane h2 {
  max-width: 28ch;
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.subscribe-form {
  display: flex;
  gap: 8px;
  max-width: 560px;
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.subscribe-form input::placeholder {
  color: #9aa0a8;
}

.btn-subscribe {
  position: relative;
  flex-shrink: 0;
  height: 48px;
  padding: 0 44px 0 18px;
  border-radius: 8px;
}

.btn-subscribe svg {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}

.subscribe-status {
  min-height: 1.2em;
  margin-top: 10px;
  color: var(--mint);
  font-size: 14px;
}

.prefooter-app {
  display: flex;
  align-items: center;
  gap: 20px;
}

.prefooter-qr {
  display: grid;
  width: 132px;
  height: 132px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.prefooter-qr img {
  width: 100%;
  height: 100%;
  display: block;
}

.store-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #111;
  color: #fff;
}

.store-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-btn small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.78;
}

.store-btn b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.prefooter-trust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
}

.prefooter-trust article {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 36px 20px 40px;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}

.prefooter-trust article + article {
  border-left: 1px solid var(--line);
}

.prefooter-trust svg {
  width: 32px;
  height: 32px;
  color: var(--ink);
}

.site-footer {
  padding: 48px 0 72px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-grid strong {
  display: block;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-grid a {
  display: block;
  padding: 4px 0;
}

.legal-page {
  padding: 48px 0 96px;
}

.legal-page h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.legal-page h2 {
  font-size: 28px;
  margin: 36px 0 12px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  max-width: 72ch;
}

.assets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.asset {
  padding: 20px;
  border-radius: 12px;
  background: var(--bg-soft);
}

.asset b {
  display: block;
  font-size: 20px;
}

.ticker {
  display: flex;
  gap: 28px;
  overflow: auto;
  padding: 16px 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.ticker b {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-end .btn-secondary {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    width: 100%;
  }

  .price-track {
    animation-duration: 90s;
  }

  .price-seq {
    gap: 28px;
    font-size: 12px;
  }

  .nav-shell {
    flex-wrap: wrap;
    padding: 16px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .products,
  .split,
  .wealth-row,
  .methods,
  .calc-grid,
  .why,
  .review-grid,
  .assets,
  .footer-grid,
  .movers,
  .cta-card form {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
    min-height: 620px;
  }

  .hero::after {
    background-position: 100% 70%;
    background-size: 70% auto;
  }

  .hero-copy {
    width: auto;
    max-width: none;
    padding: 88px 24px 96px;
  }

  .hero h1 {
    font-size: clamp(40px, 9vw, 52px);
  }

  .hero .lead {
    left: 24px;
    right: 24px;
    max-width: none;
    bottom: 28px;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
    padding: 40px 16px 48px;
  }

  .metrics article {
    padding: 20px 20px;
  }

  .metrics article:not(:last-child)::after {
    display: none;
  }

  .metrics article:nth-child(odd)::after {
    display: block;
    top: 20px;
    bottom: 20px;
  }

  .metrics article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 19, 24, 0.14);
  }

  .metrics strong {
    font-size: 40px;
  }

  .prefooter-top {
    grid-template-columns: 1fr;
  }

  .prefooter-pane {
    padding: 40px 24px 32px;
  }

  .prefooter-pane + .prefooter-pane {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 48px 0;
  }

  .wealth-copy {
    padding: 40px 24px 28px;
  }

  .wealth-row {
    min-height: 0;
  }

  .wealth-visual {
    min-height: 380px;
  }

  .status-steps {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .status-steps li {
    padding-top: 0;
    padding-left: 22px;
  }

  .status-steps li::before {
    left: 0;
    top: 6px;
    transform: none;
  }
}

@media (max-width: 640px) {
  .subscribe-form {
    flex-direction: column;
  }

  .btn-subscribe {
    width: 100%;
  }

  .prefooter-trust {
    grid-template-columns: 1fr;
  }

  .prefooter-trust article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
