/* ===== Scroll-reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Hero load-in ===== */
.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-anim.is-loaded { opacity: 1; transform: translateY(0); }

/* ===== Tokens ===== */
:root {
  --ink: #14203A;
  --ink-soft: #4B5768;
  --paper: #F4F5F1;
  --panel-blue: #D9E4F2;
  --panel-blue-deep: #C3D5EC;
  --gold: #C89B3C;
  --gold-deep: #A97F2E;
  --white: #FFFFFF;
  --line: rgba(20, 32, 58, 0.12);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: #DFE6E9;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p { margin: 0; line-height: 1.55; color: var(--ink-soft); }

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

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

button { font-family: inherit; cursor: pointer; border: none; }

:focus-visible {
  outline: 2.5px solid var(--gold-deep);
  outline-offset: 3px;
}

.site-frame {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px;
}

/* ===== Buttons ===== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75em 1.5em;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: scale(0.97); }

.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover { background: #223052; }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { background: var(--gold-deep); box-shadow: 0 6px 18px rgba(200, 155, 60, 0.35); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }

/* ===== Nav ===== */
.nav {
  background: var(--paper);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 40;
  transition: box-shadow 0.25s ease;
}
.nav.is-scrolled { box-shadow: 0 8px 24px rgba(20, 32, 58, 0.1); }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  white-space: nowrap;
}

.brand-mark { display: inline-flex; align-items: center; }
.brand-mark img { display: block; height: 22px; width: auto; }
.nav__brand--footer .brand-mark img { height: 19px; }

.nav__links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
  font-size: 0.95rem;
}
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a:hover { color: var(--gold-deep); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--ink); font-weight: 600; }

.nav__actions { display: flex; gap: 10px; align-items: center; }

.nav__toggle {
  display: none;
  background: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
}
.nav__toggle span {
  width: 22px; height: 2px; background: var(--ink); display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  background: var(--paper);
  padding: 12px 32px 0;
}

.hero__top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 24px;
  padding: 48px 0 32px;
}

.hero__headline h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  font-weight: 700;
}
.hero__headline em { font-style: italic; font-weight: 500; }

.hero__phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: 260px;
  background: var(--ink);
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(20, 32, 58, 0.28);
  position: relative;
  opacity: 0;
  transform: translateY(36px) rotate(2.5deg);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.phone.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.phone.is-floating {
  animation: phoneFloat 5.5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.phone__notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone__screen {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  position: relative;
}

.phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px 4px;
}
.phone__time { font-size: 0.8rem; font-weight: 600; font-family: var(--font-body); }
.phone__status-icons { display: flex; align-items: center; gap: 6px; }

.wallet { padding: 10px 16px 10px; }
.wallet__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.wallet__title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.wallet__bell {
  position: relative;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.wallet__bell-dot {
  position: absolute;
  top: 4px; right: 5px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  border: 1.5px solid var(--white);
}

.wallet__tabs {
  display: flex; gap: 16px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0; margin-bottom: 12px;
}
.wallet__tabs button {
  background: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0 0 8px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.wallet__tabs button.active { color: var(--ink); border-bottom-color: var(--gold); }
.wallet__tabs button:hover { color: var(--ink); }

.wallet__panel { display: none; }
.wallet__panel.is-active {
  display: block;
  animation: panelIn 0.3s ease;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.wallet__balances { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.coin-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}
.coin-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.78rem; font-weight: 700;
  flex-shrink: 0;
}
.coin-dot--jpyc { background: var(--ink); }
.coin-dot--usdt { background: #2aa17a; }
.coin-dot--usdc { background: #2775CA; }
.coin-info {
  display: flex; flex-direction: column; flex: 1;
  min-width: 0;
}
.coin-info strong { font-size: 0.82rem; }
.coin-info small {
  font-size: 0.68rem; color: var(--ink-soft);
  display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.coin-amt { font-size: 0.8rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; }

.wallet__pay-btn {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px;
  border-radius: 999px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease, transform 0.1s ease;
}
.wallet__pay-btn:hover { background: var(--gold-deep); }
.wallet__pay-btn:active { transform: scale(0.97); }
.wallet__pay-btn--ghost {
  background: var(--paper);
  color: var(--ink);
  margin-top: 12px;
}
.wallet__pay-btn--ghost:hover { background: var(--panel-blue); }
.wallet__pay-btn.is-loading .wallet__pay-btn-label { visibility: hidden; }
.wallet__pay-btn.is-loading { position: relative; }
.wallet__pay-btn.is-loading::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(20,32,58,0.25);
  border-top-color: var(--ink);
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.wallet__pay-btn.is-success { background: #2aa17a; color: var(--white); }

.wallet__activity-label { font-size: 0.7rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.wallet__activity--full { max-height: 380px; overflow-y: auto; }
.activity-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.activity-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--panel-blue-deep); flex-shrink: 0; }
.activity-info {
  display: flex; flex-direction: column; flex: 1;
  min-width: 0;
}
.activity-info strong {
  font-size: 0.78rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.activity-info small { font-size: 0.66rem; color: var(--ink-soft); }
.activity-amt { font-size: 0.76rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.activity-amt--pos { color: #2aa17a; }

.wallet-card {
  background: linear-gradient(135deg, var(--ink), #2b3f66);
  border-radius: var(--radius-md);
  padding: 18px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 12px;
}
.wallet-card__top { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-weight: 600; }
.wallet-card__chip { width: 26px; height: 18px; border-radius: 4px; background: var(--gold); opacity: 0.9; }
.wallet-card__number { font-size: 0.95rem; letter-spacing: 0.05em; font-family: var(--font-display); }
.wallet-card__bottom { display: flex; justify-content: space-between; }
.wallet-card__bottom small { display: block; font-size: 0.6rem; opacity: 0.7; }
.wallet-card__bottom strong { font-size: 0.76rem; font-weight: 600; }

.wallet__navbar {
  display: flex; justify-content: space-around;
  border-top: 1px solid var(--line);
  padding-top: 10px; margin-top: 8px;
  font-size: 0.66rem; color: var(--ink-soft); font-weight: 600;
}
.wallet__navbar button { background: none; color: inherit; font: inherit; padding: 4px 6px; transition: color 0.15s ease; }
.wallet__navbar button.active { color: var(--ink); }
.wallet__navbar button:hover { color: var(--ink); }

/* ===== Hero panel ===== */
.hero__panel {
  background: var(--panel-blue);
  border-radius: var(--radius-lg);
  margin-top: 16px;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.hero__panel-copy p {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 46ch;
  margin-bottom: 24px;
}

.hero__panel-note { text-align: right; }
.hero__panel-label { font-size: 0.85rem; margin-bottom: 12px; color: var(--ink-soft); }

.store-badges { display: flex; gap: 10px; justify-content: flex-end; }
.store-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(20,32,58,0.15); }

/* ===== Stats strip ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 56px 32px;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--ink);
}
.stat__label { font-size: 0.85rem; color: var(--ink-soft); }

/* ===== Live transactions ===== */
.live { padding-top: 8px; }
.live__head { max-width: 640px; margin: 0 auto 32px; text-align: center; }
.live__head h2 { margin: 14px 0 10px; }
.live__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.live__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  animation: liveDotPulse 1.6s ease-in-out infinite;
}
@keyframes liveDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

.live__panel {
  max-width: 640px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.live__counter {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: rgba(244,245,241,0.7);
  font-size: 0.82rem;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(244,245,241,0.14);
}
.live__counter strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
}
.live__feed { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.live-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(244,245,241,0.08);
}
.live-item:last-child { border-bottom: none; }
.live-item__dot {
  width: 30px; height: 30px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.72rem; font-weight: 700;
}
.live-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.live-item__info strong {
  color: var(--white); font-size: 0.85rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.live-item__info small { color: rgba(244,245,241,0.55); font-size: 0.72rem; }
.live-item__amt { color: var(--white); font-weight: 600; font-size: 0.85rem; flex-shrink: 0; }
.live-item__amt--pos { color: #4ADE80; }

@keyframes liveItemIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.live-item--enter { animation: liveItemIn 0.4s ease; }
@keyframes liveItemOut {
  to { opacity: 0; transform: translateY(8px); max-height: 0; padding-top: 0; padding-bottom: 0; }
}
.live-item--exit { animation: liveItemOut 0.3s ease forwards; overflow: hidden; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20,32,58,0.3);
  max-width: 90vw;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ===== Buttons (extra) ===== */
.btn--sm { padding: 0.55em 1.2em; font-size: 0.85rem; }

/* ===== Generic section ===== */
section { padding: 72px 32px; }
section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 40px;
  max-width: 20ch;
}

/* ===== Features ===== */
.feature-rows { display: flex; flex-direction: column; }
.feature-row {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.feature-row h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 600; }
.feature-row p { max-width: 56ch; }

/* ===== How it works ===== */
.how { background: var(--ink); border-radius: var(--radius-lg); margin: 0 32px; padding: 64px 40px; }
.how h2 { color: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.step h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: rgba(244,245,241,0.72); }

/* ===== Split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.split__eyebrow { font-size: 0.85rem; font-weight: 600; color: var(--gold-deep); margin-bottom: 12px; }
.split__col h3 { font-size: 1.5rem; margin-bottom: 14px; }
.split__col > p { margin-bottom: 20px; max-width: 42ch; }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  padding-left: 26px; position: relative;
  font-size: 0.92rem; color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== Security ===== */
.security { background: var(--paper); border-radius: var(--radius-lg); margin: 0 32px; }
.security__head { max-width: 60ch; margin-bottom: 40px; }
.security__head h2 { margin-bottom: 14px; }
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.security-item {
  border-top: 3px solid var(--gold);
  padding-top: 16px;
}
.security-item h3 { font-size: 1.02rem; margin-bottom: 8px; font-weight: 600; }
.security-item p { font-size: 0.9rem; }

/* ===== Reviews ===== */
.review-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-list blockquote { margin: 0; }
.review-list p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.5;
}
.review-list cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ===== FAQ ===== */
.faq { max-width: 780px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding-bottom: 22px; max-width: 62ch; }
.faq-item.is-open .faq-answer { max-height: 240px; }

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-card__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
}
.blog-card h3 { font-size: 1.05rem; line-height: 1.3; font-weight: 600; }
.blog-card p { font-size: 0.88rem; }
.blog-card__meta { font-size: 0.78rem; color: var(--ink-soft); }
.blog-card__link {
  align-self: flex-start;
  background: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  margin-top: auto;
  display: inline-flex;
  transition: transform 0.15s ease, color 0.15s ease;
}
.blog-card__link:hover { color: var(--gold-deep); transform: translateX(3px); }

/* ===== Pricing ===== */
.pricing-rows { display: flex; flex-direction: column; }
.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  gap: 20px;
}
.pricing-row:last-child { border-bottom: 1px solid var(--line); }
.pricing-row h3 { font-size: 1.1rem; margin-bottom: 4px; }
.pricing-amt {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-amt span { display: block; font-family: var(--font-body); font-size: 0.7rem; color: var(--ink-soft); font-weight: 500; }
.pricing-note { margin-top: 20px; font-size: 0.9rem; }

/* ===== CTA / waitlist ===== */
.cta {
  background: var(--panel-blue);
  border-radius: var(--radius-lg);
  margin: 0 32px 32px;
  text-align: center;
}
.cta__inner { max-width: 560px; margin: 0 auto; }
.cta h2 { margin-bottom: 14px; }
.cta > .cta__inner > p { margin-bottom: 28px; }
.cta__form {
  display: flex;
  gap: 10px;
  background: var(--white);
  padding: 8px;
  border-radius: 999px;
}
.cta__form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
.cta__form input:focus { outline: none; }
.cta__status {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 1.2em;
}
.cta__status.is-success { color: #1f7a52; }
.cta__status.is-error { color: #b13d3d; }

/* ===== Footer ===== */
.footer { padding: 0 32px 32px; }
.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
}
.nav__brand--footer { font-size: 1.1rem; }
.footer__links { display: flex; gap: 56px; }
.footer__links > div { display: flex; flex-direction: column; gap: 10px; }
.footer__links p { font-weight: 600; color: var(--ink); font-size: 0.82rem; margin-bottom: 4px; }
.footer__links a { font-size: 0.9rem; color: var(--ink-soft); }
.footer__links a:hover { color: var(--ink); }

.footer__newsletter { max-width: 240px; }
.footer__newsletter-form {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 4px 4px 4px 14px;
  align-items: center;
  gap: 6px;
}
.footer__newsletter-form input {
  flex: 1; min-width: 0;
  border: none; background: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 7px 0;
  color: var(--ink);
}
.footer__newsletter-form input:focus { outline: none; }
.footer__newsletter-form button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.footer__newsletter-form button:hover { background: var(--gold-deep); }
.footer__newsletter-status {
  font-size: 0.76rem;
  margin-top: 8px;
  min-height: 1.1em;
  color: var(--ink-soft);
}
.footer__newsletter-status.is-success { color: #1f7a52; font-weight: 600; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__social { display: flex; gap: 14px; }
.footer__social button {
  background: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer__social button:hover { color: var(--ink); border-color: var(--ink); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__top { grid-template-columns: 1fr; }
  .hero__phone-wrap { order: -1; margin-bottom: 8px; }
  .phone { width: 220px; }
  .hero__panel { grid-template-columns: 1fr; text-align: left; }
  .hero__panel-note { text-align: left; }
  .store-badges { justify-content: flex-start; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .review-list { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__links { gap: 32px; }
  .pricing-row { flex-wrap: wrap; }
  .pricing-row > div:first-child { flex: 1 1 100%; }
  .pricing-row .pricing-amt { order: 2; }
  .pricing-row button { order: 3; }
}

@media (max-width: 760px) {
  .site-frame { padding: 10px; }
  .nav { padding: 14px 16px; flex-wrap: wrap; column-gap: 10px; }
  .nav__links {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav__links.is-open {
    max-height: 260px;
    margin-top: 14px;
  }
  .nav__links a { padding: 10px 0; width: 100%; border-top: 1px solid var(--line); }
  .nav__brand { order: 1; font-size: 1rem; }
  .nav__brand .brand-mark img { height: 20px; }
  .nav__actions { order: 2; margin-left: auto; gap: 6px; }
  .nav__actions .btn--ghost { display: none; }
  .nav__actions .btn--dark {
    padding: 0.5em 1em;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .nav__toggle { display: flex; order: 3; }

  .hero, section { padding: 44px 20px; }
  .how { margin: 0 12px; padding: 44px 24px; }
  .security { margin: 0 12px; padding: 44px 24px; }
  .cta { margin: 0 12px 20px; padding: 44px 24px; }
  .hero__panel { padding: 28px 22px; }
  .footer { padding: 0 20px 24px; }
  .footer__top { flex-direction: column; gap: 28px; }
  .footer__newsletter { max-width: none; }
  .cta__form { flex-direction: column; border-radius: var(--radius-md); }
  .cta__form button { width: 100%; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .security-grid { grid-template-columns: 1fr; gap: 24px; }
  .live__panel { padding: 18px; border-radius: var(--radius-md); }
  .live-item__info strong { font-size: 0.8rem; }
  .toast { bottom: 18px; font-size: 0.82rem; padding: 11px 18px; }
}

@media (max-width: 380px) {
  .hero__headline h1 { font-size: 2.4rem; }
  .phone { width: 205px; }
  .nav__brand { font-size: 0.92rem; gap: 6px; }
  .nav__actions .btn--dark { padding: 0.45em 0.85em; font-size: 0.75rem; }
}
