/* Vestya — landing + onboarding styles. Uses vars from theme.css.
   Ported from .design-source/project/home.css. Global body/element resets
   from the source are intentionally omitted because they conflict with the
   cockpit's own resets in app/globals.css and public/theme.css. Utility
   classes (.serif, .mono, .muted) are re-defined here scoped to the landing
   and onboarding wrappers so they don't bleed into the cockpit. */

.land, .onb {
  font-family: "Geist", -apple-system, system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 15.5px;
  line-height: 1.5;
}
.land *, .onb *, .land *::before, .land *::after, .onb *::before, .onb *::after { box-sizing: border-box; }
.land h1, .land h2, .land h3, .land h4, .land p, .land ul, .land ol,
.onb h1, .onb h2, .onb h3, .onb h4, .onb p, .onb ul, .onb ol { margin: 0; padding: 0; }
.land ul, .onb ul { list-style: none; }
:where(.land, .onb) button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; padding: 0; }
.land a, .onb a { color: inherit; text-decoration: none; }
.land input, .onb input { font: inherit; color: inherit; background: transparent; border: 0; outline: 0; }
.land .serif, .onb .serif { font-family: "Fraunces", Georgia, serif; letter-spacing: -0.02em; }
.land .mono, .onb .mono { font-family: ui-monospace, SF Mono, monospace; }
.land .muted, .onb .muted { color: var(--ink-2); font-weight: 400; font-style: italic; font-family: "Geist", system-ui, sans-serif; font-size: 0.72em; letter-spacing: 0; }

/* ───────── LANDING ───────── */
.land {
  background:
    radial-gradient(60% 50% at 100% 0%, var(--sky-2) 0%, transparent 65%),
    radial-gradient(50% 40% at 0% 0%, var(--sky-1) 0%, transparent 60%),
    var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
}

.land-nav {
  max-width: 1180px; margin: 0 auto;
  padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.land-logo {
  display: flex; align-items: center; gap: 10px;
}
.land .logo-img, .onb .logo-img {
  width: 38px; height: 38px;
  background: url('/vestya-logo.png') center/contain no-repeat;
  border-radius: 50%;
  filter: drop-shadow(0 4px 10px rgba(232,86,118,0.25));
}
.land .logo-img.sm { width: 28px; height: 28px; }
.land .logo-wm, .onb .logo-wm {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600; font-size: 22px;
  letter-spacing: -0.025em;
}
.land-nav-r { display: flex; align-items: center; gap: 28px; }
.land-nav-r a {
  font-size: 14px; color: var(--ink-2); font-weight: 500;
}
.land-nav-r a:hover { color: var(--ink); }
.land-nav-r .signin { color: var(--ink); cursor: pointer; }
.cta-sm {
  background: var(--ink); color: #fff;
  padding: 9px 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.15s ease;
}
.cta-sm:hover { background: var(--pig-3); }
.cta-sm:disabled { opacity: 0.6; cursor: wait; }

/* hero */
.land-hero {
  max-width: 1180px; margin: 0 auto;
  padding: 50px 32px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.land-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-2); font-weight: 500;
  background: var(--card); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 22px;
}
.land-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); }
.land-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 22px;
}
.land-hero h1 .pink { color: var(--pig-3); font-style: italic; }
.land-hero h1 .under { background: linear-gradient(180deg, transparent 64%, rgba(255,177,191,0.55) 64%); padding: 0 4px; }
.land-sub {
  font-size: 18px; color: var(--ink-2);
  max-width: 52ch; line-height: 1.55;
  margin: 0 0 28px;
}
.land-sub b { color: var(--ink); font-weight: 600; }
.land-cta-row {
  display: flex; gap: 14px; align-items: center; margin-bottom: 28px;
}
.cta {
  background: var(--ink); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.cta:hover:not(:disabled) { background: var(--pig-3); transform: translateY(-1px); }
.cta:disabled { opacity: 0.6; cursor: wait; }
.cta.big { font-size: 17px; padding: 18px 30px; }
.cta-ghost {
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
  padding: 13px 4px; border-bottom: 1px dashed var(--line-2);
  background: transparent;
}
.cta-ghost:hover { color: var(--ink); }
.land-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-2);
}
.land-trust b { color: var(--ink); font-weight: 600; }

/* hero illustration */
.land-hero-r {
  position: relative;
  height: 460px;
  display: grid; place-items: center;
}
.hero-pig {
  width: 320px; height: 320px;
  background: url('/mascot.png') center/cover no-repeat var(--pig);
  border-radius: 50%;
  box-shadow: 0 30px 60px rgba(232,86,118,0.25);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}
.hero-bubble {
  position: absolute;
  top: 24px; right: -10px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 12px 14px 12px 12px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  max-width: 260px;
  display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: start;
  font-size: 13px;
  animation: bubble-in 0.7s 0.4s both ease-out;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-bubble .bav {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--pig); color: var(--ink);
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
}
.hero-bubble .btext { line-height: 1.45; }
.hero-bubble em { color: var(--pig-3); font-style: normal; font-weight: 600; }
.hero-coin {
  position: absolute;
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #ffd56a, #f4a93a);
  color: #6b4a00;
  display: grid; place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700; font-size: 20px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.1), 0 8px 18px rgba(0,0,0,0.12);
  animation: float 4s ease-in-out infinite;
}
.coin-1 { bottom: 60px; left: 12px; animation-delay: 0.4s; }
.coin-2 { top: 200px; left: -6px; animation-delay: 1.1s; width: 34px; height: 34px; font-size: 16px; }
.coin-3 { bottom: 120px; right: 18px; animation-delay: 1.8s; width: 36px; height: 36px; font-size: 17px; }

/* strip */
.land-strip {
  background: var(--ink); color: rgba(255,255,255,0.85);
  padding: 18px 32px;
  display: flex; justify-content: center; align-items: center; gap: 24px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  letter-spacing: 0.01em;
}
.land-strip b { color: var(--pig); font-style: normal; font-family: "Geist", system-ui, sans-serif; font-weight: 600; }
.land-strip .dot-sep {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

/* sections */
.land-section {
  max-width: 1180px; margin: 0 auto;
  padding: 90px 32px;
}
.land-section.dark {
  max-width: none;
  margin: 60px 0 0;
  background: var(--ink); color: #fff;
  border-radius: 30px 30px 0 0;
}
.land-section.dark .dark-sub { color: rgba(255,255,255,0.65); max-width: 56ch; margin-top: 14px; }
.sec-lbl {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--mute);
  margin-bottom: 14px;
}
.sec-lbl.light { color: rgba(255,255,255,0.55); }
.land-section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 36px;
  max-width: 24ch;
}
.land-section h2 .muted { color: var(--ink-2); font-style: italic; }
.land-section.dark h2 .muted { color: rgba(255,255,255,0.5); }

/* how-it-works */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.how-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 22px; padding: 26px 26px 28px;
  position: relative; overflow: hidden;
}
.how-card .how-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 56px; color: var(--pig);
  font-weight: 500; line-height: 1; letter-spacing: -0.04em;
  position: absolute; top: 18px; right: 22px;
  opacity: 0.5;
}
.how-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
  margin: 0 0 12px; max-width: 14ch;
}
.how-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.how-card p b { color: var(--ink); font-weight: 600; }

/* team row */
.team-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.team-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 18px 16px 16px;
  text-align: center;
}
.team-av {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 17px;
  margin: 0 auto 10px;
  font-family: "Fraunces", Georgia, serif;
}
.team-av.cio      { background: #ffd6e2; color: #b73355; }
.team-av.research { background: #d8ecff; color: #1e6bb8; }
.team-av.stocks   { background: #e3f5e8; color: #1f8b4f; }
.team-av.crypto   { background: #ffe6c8; color: #b46b1a; }
.team-av.risk     { background: #f1ecff; color: #5e44b8; }
.team-av.reporter { background: #fef0f0; color: #b73355; }
.team-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px; font-weight: 500; letter-spacing: -0.02em;
}
.team-role {
  font-size: 11.5px; color: var(--mute);
  font-family: ui-monospace, monospace; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.team-blurb {
  font-size: 12.5px; color: var(--ink-2); line-height: 1.4;
}
.team-foot {
  margin-top: 28px;
  display: inline-flex; gap: 10px;
  background: var(--card); border: 1px solid var(--line);
  padding: 12px 18px; border-radius: 999px;
  font-size: 13.5px; color: var(--ink-2);
}
.team-foot span { color: var(--pig-3); display: inline-flex; align-items: center; }
.team-foot b { color: var(--ink); }

/* pricing */
.price-card {
  background: var(--card); color: var(--ink);
  border-radius: 26px; padding: 36px 38px;
  display: grid;
  grid-template-columns: 280px 1fr 260px;
  gap: 40px;
  align-items: center;
}
.price-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px; font-weight: 500;
  color: var(--pig-3);
  margin-bottom: 6px;
}
.price-num {
  font-family: "Fraunces", Georgia, serif;
  display: flex; align-items: baseline; gap: 2px;
  line-height: 1;
}
.price-num .dollar { font-size: 28px; color: var(--ink-2); }
.price-num b { font-size: 72px; font-weight: 500; letter-spacing: -0.04em; }
.price-num .per { font-size: 18px; color: var(--ink-2); margin-left: 4px; }
.price-sub { font-size: 13px; color: var(--ink-2); margin-top: 8px; }
.price-feats {
  display: grid; gap: 9px;
}
.price-feats li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink);
}
.price-feats li svg { color: var(--good); flex-shrink: 0; }
.price-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.price-cta .cta { width: 100%; justify-content: center; }
.price-fineprint { font-size: 12px; color: var(--mute); text-align: center; }

/* final */
.land-final {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 30px;
  padding: 60px 48px;
  text-align: center;
  max-width: 720px; margin: 0 auto;
}
.land-final h2 { margin: 0 0 14px; max-width: none; }
.land-final p { color: var(--ink-2); font-size: 16px; max-width: 50ch; margin: 0 auto 28px; }

/* footer */
.land-foot {
  max-width: 1180px; margin: 0 auto;
  padding: 50px 32px 70px;
  display: grid; grid-template-columns: 1fr auto; gap: 20px 50px;
  align-items: center;
}
.foot-l { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ink-2); }
.foot-l b { color: var(--ink); font-weight: 600; }
.foot-links { display: flex; gap: 22px; font-size: 13px; color: var(--ink-2); }
.foot-links a:hover { color: var(--ink); }
.foot-fineprint {
  grid-column: 1 / -1;
  font-size: 11.5px;
  color: var(--mute);
  max-width: 80ch;
  line-height: 1.5;
}

/* landing toast (for auth-failed banner) */
.land-toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: 999px;
  font-size: 13.5px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 200;
  animation: bubble-in 0.4s ease-out;
}
.land-toast .emoji { font-size: 16px; }

/* ───────── ONBOARDING ───────── */
.onb {
  position: fixed; inset: 0;
  background: var(--bg);
  display: grid; grid-template-rows: auto 1fr auto;
  z-index: 100;
  animation: onb-in 0.3s ease-out;
}
@keyframes onb-in { from { opacity: 0; } to { opacity: 1; } }

.onb-head {
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 30px;
  background: var(--cream);
}
.onb-head .land-logo { justify-self: start; }
.onb-x {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-2);
  justify-self: end;
}
.onb-x:hover { color: var(--ink); background: var(--bg); }
.onb-prog {
  display: flex; gap: 0; align-items: center; justify-content: center;
}
.onb-prog-dot {
  display: flex; align-items: center; gap: 8px;
  color: var(--mute); font-size: 12.5px; font-weight: 500;
}
.onb-prog-dot:not(:last-child)::after {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--line-2); margin: 0 14px;
}
.onb-prog-dot .num {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
  font-family: ui-monospace, monospace; font-size: 11.5px; font-weight: 700;
  background: transparent;
}
.onb-prog-dot.on .num { background: var(--ink); color: #fff; border-color: var(--ink); }
.onb-prog-dot.on { color: var(--ink); }
.onb-prog-dot.cur .num { box-shadow: 0 0 0 4px rgba(232,86,118,0.18); border-color: var(--pig-3); background: var(--pig-3); }
@media (max-width: 760px) {
  .onb-prog-dot .lbl { display: none; }
  .onb-prog-dot:not(:last-child)::after { width: 16px; margin: 0 8px; }
}

.onb-body {
  overflow-y: auto;
  padding: 50px 32px 60px;
}

.step {
  max-width: 740px; margin: 0 auto;
  text-align: left;
}
.step-pig {
  width: 88px; height: 88px;
  background: url('/mascot.png') center/cover no-repeat var(--pig);
  border-radius: 50%; box-shadow: 0 12px 30px rgba(232,86,118,0.22);
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}
.step-tag {
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--mute); margin-bottom: 12px;
}
.step h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400; letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 14px;
  max-width: 22ch;
}
.step h1 em { color: var(--pig-3); font-style: italic; }
.step-sub {
  font-size: 15.5px; color: var(--ink-2); line-height: 1.55;
  margin: 0 0 32px; max-width: 60ch;
}
.step-sub b { color: var(--ink); font-weight: 600; }
.step-hint { font-size: 13px; color: var(--mute); margin-top: 18px; }
.step-error {
  font-size: 13px; color: var(--bad);
  background: var(--bad-2); padding: 10px 14px; border-radius: 10px;
  margin-top: 14px;
}

/* step 1 form */
.step-form { display: grid; gap: 16px; max-width: 480px; }
.onb .field {
  display: block;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.onb .field:focus-within {
  border-color: var(--pig-3);
  box-shadow: 0 0 0 4px rgba(232,86,118,0.12);
}
.onb .field span {
  display: block; font-size: 11.5px; font-weight: 600;
  color: var(--ink-2); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 4px;
}
.onb .field input {
  width: 100%; font-size: 18px;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.01em;
}
.onb .field input::placeholder { color: var(--mute); }

/* step 2 goals */
.goal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.goal-tile {
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: 18px; padding: 22px 20px;
  display: grid; grid-template-rows: auto auto; gap: 8px;
  text-align: left; position: relative;
  transition: all 0.15s ease;
}
.goal-tile:hover { border-color: var(--line-2); transform: translateY(-1px); }
.goal-tile.on {
  border-color: var(--ink); background: #fffaf3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.goal-tile .goal-emoji { font-size: 28px; line-height: 1; }
.goal-tile .goal-name { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.goal-tick {
  position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  opacity: 0; transform: scale(0.6);
  transition: all 0.18s ease;
}
.goal-tile.on .goal-tick { opacity: 1; transform: scale(1); }

/* step 3 risk */
.risk-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.risk-card {
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: 18px; padding: 22px 22px 20px;
  text-align: left; position: relative;
  transition: all 0.15s ease;
}
.risk-card:hover { border-color: var(--line-2); }
.risk-card.on {
  border-color: var(--ink);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}
.risk-best {
  position: absolute; top: -10px; left: 18px;
  background: var(--pig-3); color: #fff;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.risk-h {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
  padding-right: 36px;
}
.risk-t {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
}
.risk-pct {
  font-size: 12px; color: var(--ink-2);
  background: var(--bg); padding: 3px 9px; border-radius: 999px;
  border: 1px solid var(--line);
}
.risk-sub { font-size: 13.5px; color: var(--ink-2); margin-bottom: 14px; line-height: 1.4; }
.risk-look {
  font-size: 12.5px; color: var(--mute);
  border-top: 1px dashed var(--line-2); padding-top: 10px;
}
.risk-radio {
  position: absolute; top: 22px; right: 22px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
}
.risk-radio .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink);
  opacity: 0; transform: scale(0.5);
  transition: all 0.18s ease;
}
.risk-card.on .risk-radio { border-color: var(--ink); }
.risk-card.on .risk-radio .dot { opacity: 1; transform: scale(1); }

/* step 4 mode */
.mode-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.mode-card {
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: 20px; padding: 26px;
  text-align: left;
  transition: all 0.15s ease;
}
.mode-card:hover { border-color: var(--line-2); transform: translateY(-1px); }
.mode-card.on {
  border-color: var(--ink);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.mode-card.paper.on { background: var(--mint); }
.mode-card.real.on  { background: #fff0e8; }
.mode-emoji { font-size: 36px; margin-bottom: 10px; line-height: 1; }
.mode-t {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.mode-sub { font-size: 14px; color: var(--ink-2); line-height: 1.45; margin-bottom: 14px; }
.mode-sub b { color: var(--ink); font-weight: 600; }
.mode-feats { display: grid; gap: 6px; font-size: 12.5px; color: var(--ink-2); }
.mode-feats li { display: flex; align-items: center; gap: 8px; }
.mode-feats svg { color: var(--good); flex-shrink: 0; }

.paper-amount {
  margin-top: 16px;
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: 18px; padding: 22px 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.pa-k { font-weight: 600; font-size: 15px; }
.pa-d { font-size: 13px; color: var(--ink-2); margin-top: 4px; max-width: 38ch; }
.pa-r { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.pa-input {
  display: flex; align-items: baseline; gap: 4px;
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: 14px; padding: 10px 18px;
  font-family: "Fraunces", Georgia, serif;
}
.pa-input span { font-size: 20px; color: var(--ink-2); }
.pa-input input {
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  width: 180px; text-align: right;
}
.pa-presets { display: flex; gap: 6px; }
.pa-presets button {
  border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 12px;
  font-size: 12px; font-family: ui-monospace, monospace;
  color: var(--ink-2);
  background: var(--card);
}
.pa-presets button:hover { background: var(--bg); color: var(--ink); }
.pa-presets button.on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* step 5 brokers */
.broker-list { display: grid; gap: 8px; }
.broker-row {
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: 14px; padding: 14px 18px;
  display: grid; grid-template-columns: 36px 1fr auto;
  gap: 14px; align-items: center;
  text-align: left;
  transition: all 0.15s ease;
}
.broker-row:hover { border-color: var(--line-2); }
.broker-row.on { border-color: var(--good); background: #f4faf6; }
.bm {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 12.5px;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.broker-n { font-weight: 600; font-size: 14.5px; }
.broker-d { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
.broker-cta {
  font-size: 13px; color: var(--ink-2); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.broker-row.on .broker-cta .ok { color: var(--good); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* footer */
.onb-foot {
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 16px 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
}
.onb-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  padding: 10px 14px; border-radius: 999px;
}
.onb-back:hover:not(:disabled) { background: var(--bg); color: var(--ink); }
.onb-back:disabled { opacity: 0.3; cursor: default; }
.onb-foot-c { text-align: center; }
.onb-step { font-size: 12px; color: var(--mute); font-family: ui-monospace, monospace; letter-spacing: 0.08em; }
.onb-next {
  justify-self: end;
  background: var(--ink); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.onb-next:hover:not(.dis):not(:disabled) { background: var(--pig-3); }
.onb-next.dis, .onb-next:disabled { opacity: 0.3; cursor: not-allowed; }

/* ───────── responsive ───────── */
@media (max-width: 900px) {
  .land-hero { grid-template-columns: 1fr; padding-top: 30px; }
  .land-hero-r { height: 360px; order: -1; }
  .hero-pig { width: 220px; height: 220px; }
  .how-grid { grid-template-columns: 1fr; }
  .team-row { grid-template-columns: repeat(3, 1fr); }
  .price-card { grid-template-columns: 1fr; gap: 24px; }
  .land-section { padding: 60px 24px; }
  .goal-grid { grid-template-columns: repeat(2, 1fr); }
  .risk-grid { grid-template-columns: 1fr; }
  .mode-grid { grid-template-columns: 1fr; }
  .paper-amount { grid-template-columns: 1fr; }
  .pa-r { align-items: stretch; }
  .pa-input input { width: 100%; }
  .land-nav-r a:not(.signin) { display: none; }
}
@media (max-width: 600px) {
  .land-hero h1 { font-size: 40px; }
  .land-cta-row { flex-direction: column; align-items: stretch; }
  .cta-ghost { text-align: center; }
  .team-row { grid-template-columns: repeat(2, 1fr); }
  .land-foot { grid-template-columns: 1fr; }
  .onb-head { grid-template-columns: auto 1fr auto; }
  .onb-head .land-logo .logo-wm { display: none; }
}
