@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700;1,9..144,900&family=Cabinet+Grotesk:wght@400;500;700;800&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:          #f7f6f2;
  --cream:       #f0ede6;
  --cream-dk:    #e8e2d9;
  --white:       #ffffff;
  --ink:         #1a1510;
  --ink-70:      rgba(26,21,16,0.70);
  --ink-45:      rgba(26,21,16,0.45);
  --ink-20:      rgba(26,21,16,0.20);
  --ink-08:      rgba(26,21,16,0.08);
  --green:       #2d7a4f;
  --green-lt:    #3d9f68;
  --green-bg:    rgba(45,122,79,0.08);
  --green-bdr:   rgba(45,122,79,0.22);
  --gold:        #b8944a;
  --red:         #c0392b;
  --border:      rgba(26,21,16,0.11);
  --border-md:   rgba(26,21,16,0.19);
  --number-font: 'DM Sans', sans-serif;
}

html, body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}
html { scroll-behavior: smooth; }

/* ── NAVBAR ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 22px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 64px); max-width: 1160px;
  background: rgba(247,246,242,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 500;
  box-shadow: 0 4px 24px rgba(26,21,16,0.07);
  transition: all 0.4s;
}
nav.scrolled {
  top: 22px;
  background: rgba(247,246,242,0.95);
  box-shadow: 0 8px 40px rgba(26,21,16,0.12);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: none;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--ink-45);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: flex; gap: 10px; align-items: center;
}
.nav-cta .hamburger {
  display: flex;
}
.btn-pill {
  font-size: 13px; font-weight: 700;
  color: #fff;
  background: var(--green);
  border: none; cursor: pointer;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.25s;
  font-family: 'Cabinet Grotesk', sans-serif;
  box-shadow: 0 4px 16px rgba(45,122,79,0.3);
}
.btn-pill:hover {
  background: var(--green-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45,122,79,0.35);
}

/* ── HAMBURGER MENU ────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 600;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247,246,242,0.98);
  backdrop-filter: blur(24px);
  z-index: 499;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
}
.mobile-nav a {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -1.5px;
  padding: 8px 24px;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(20px);
  animation: mobileNavIn 0.4s ease forwards;
}
.mobile-nav a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.10s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.20s; }
.mobile-nav a:hover { color: var(--green); }
@keyframes mobileNavIn {
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav-cta {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 24px;
  opacity: 0;
  animation: mobileNavIn 0.4s 0.25s ease forwards;
}
.mobile-nav-cta .btn-pill {
  font-size: 15px;
  padding: 14px 36px;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── Toast ── */
.pf-toast {
  position: fixed; top: 24px; left: 50%; z-index: 9999;
  transform: translateX(-50%) translateY(-90px);
  padding: 12px 22px; border-radius: 100px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(26,21,16,0.18);
  pointer-events: none; white-space: nowrap;
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
}
.pf-toast.show    { transform: translateX(-50%) translateY(0); }
.pf-toast.error   { background: var(--ink); color: var(--bg); }
.pf-toast.success { background: var(--green); color: #fff; }

/* ── Back button ── */
.back-button {
  position: fixed; top: 26px; left: 28px; z-index: 600;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-45); font-size: 18px; font-family: inherit;
  box-shadow: 0 2px 10px rgba(26,21,16,0.07); transition: all 0.22s;
}
.back-button:hover { border-color: var(--border-md); color: var(--ink); background: var(--cream); transform: translateX(-2px); }

/* ════════════════════════════════════
   PAGE SHELL — two columns
════════════════════════════════════ */
.setup-container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 370px;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 25px 20px;
  gap: 0 52px;
  align-items: start;
}

/* ── Header (full width) ── */
.setup-header {
  grid-column: 1 / -1;
  padding: 32px 0 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  animation: hdrIn 0.65s cubic-bezier(0.22,1,0.36,1) both;
  text-align: center;
}
@keyframes hdrIn { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:none; } }

.header-eyebrow {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--green); display: flex; align-items: center; gap: 9px; margin-bottom: 12px; justify-content: center;
}
.eyebrow-dash { display: inline-block; width: 24px; height: 1.5px; background: var(--green); opacity: 0.45; border-radius: 2px; flex-shrink: 0; }

.setup-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.0; color: var(--ink);
}
.setup-header h1 em { font-style: italic; color: var(--green); }

.header-chip-group { text-align: center; padding-top: 12px; }
.header-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--ink); padding: 8px 16px 8px 12px;
  border: 1.5px solid var(--border-md); border-radius: 100px;
  background: var(--white); box-shadow: 0 2px 8px rgba(26,21,16,0.06);
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0;
  animation: chipPulse 2s infinite;
}
@keyframes chipPulse { 0%,100%{box-shadow:0 0 0 2px rgba(45,122,79,0.2);}50%{box-shadow:0 0 0 5px rgba(45,122,79,0.05);} }
.header-sub { font-size: 11px; color: var(--ink-45); margin-top: 7px; font-family: 'DM Sans', sans-serif; }

/* ════════════════════════════════════
   LEFT — FORM AREA
════════════════════════════════════ */
.setup-form-section {
  scroll-margin-top: 92px;
  animation: formIn 0.7s 0.1s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes formIn { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:none; } }

/* Real tab */
.account-tabs { display: inline-flex; margin-bottom: 10px; }
.tab-btn {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px; border: none; border-radius: 100px; cursor: default;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; gap: 6px;
}
.tab-btn::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: liveDot 2s infinite; }
@keyframes liveDot { 0%,100%{box-shadow:0 0 0 1.5px rgba(74,222,128,0.3);}50%{box-shadow:0 0 0 4px rgba(74,222,128,0.05);} }

.tab-description { font-size: 13px; color: var(--ink-45); margin-bottom: 28px; line-height: 1.5; }

/* Form */
.setup-form { display: flex; flex-direction: column; }

/* Section block */
.form-section { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 24px; }
.form-section:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.section-title {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 9px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-45);
}
.section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-num {
  font-family: var(--number-font);
  font-size: 14px; font-weight: 700; color: var(--green); min-width: 18px;
  font-variant-numeric: tabular-nums lining-nums;
}

/* ════════════════════════════════════
   FLOATING LABEL FIELDS
════════════════════════════════════ */
.field { position: relative; padding-top: 20px; }

.field-label {
  position: absolute; top: 20px; left: 0; pointer-events: none;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--ink-45);
  transform-origin: left top;
  transition: transform 0.24s cubic-bezier(0.22,1,0.36,1), color 0.24s;
  display: flex; align-items: center; gap: 4px;
}
.req { color: var(--green); font-size: 14px; font-weight: 400; }

.field input,
.field select {
  width: 100%; padding: 8px 0 10px;
  border: none; border-bottom: 2px solid var(--border-md);
  border-radius: 0; background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--ink);
  outline: none; transition: border-color 0.22s; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231a1510' stroke-opacity='0.35' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center;
  padding-right: 24px; cursor: pointer;
}

/* Animated underline */
.field::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--green); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  z-index: 1;
}
.field:focus-within::after { transform: scaleX(1); }
.field:focus-within input,
.field:focus-within select { border-color: transparent; }

/* Float label on focus or when filled */
.field:focus-within .field-label,
.field.filled .field-label {
  transform: translateY(-20px) scale(0.77);
  color: var(--ink-45);
}
.field:focus-within .field-label { color: var(--green); }

/* Char count & hint */
.field-hint { font-size: 11px; color: var(--ink-45); margin-top: 7px; font-family: 'DM Sans', sans-serif; }
.char-count { font-family: 'Cabinet Grotesk', sans-serif; font-size: 10px; font-weight: 700; color: var(--ink-20); text-align: right; margin-top: 3px; font-variant-numeric: tabular-nums lining-nums; }

#nickname,
#password,
#currency,
#leverage,
#platform {
  font-variant-numeric: tabular-nums lining-nums;
}

/* Password */
.pw-wrap { position: relative; display: flex; align-items: center; }
.pw-wrap input { padding-right: 38px; width: 100%; }
.pw-wrap::after { display: none; }
.toggle-password {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--ink-45); font-size: 15px; padding: 4px 8px; border-radius: 4px; transition: color 0.2s;
  flex-shrink: 0;
}
.toggle-password:hover { color: var(--ink); }

/* Strength bar */
.strength-track { height: 3px; background: var(--cream-dk); border-radius: 3px; overflow: hidden; margin: 8px 0 10px; }
.strength-bar { height: 100%; width: 0%; border-radius: 3px; transition: width 0.4s cubic-bezier(0.22,1,0.36,1), background 0.4s; }

/* Requirements */
.pw-requirements { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.requirement { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--ink-45); font-family: 'DM Sans', sans-serif; transition: color 0.2s; }
.requirement.met { color: var(--green); }
.requirement-icon {
  width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; flex-shrink: 0; transition: background 0.2s, border-color 0.2s;
}
.requirement.met .requirement-icon { background: var(--green); border-color: var(--green); color: #fff; }

/* Submit */
.submit-row { margin-top: 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.create-account-btn {
  flex: 1; min-width: 180px; padding: 14px 32px; border-radius: 100px; border: none; cursor: pointer;
  font-family: 'Cabinet Grotesk', sans-serif; font-size: 14px; font-weight: 800; letter-spacing: 0.03em;
  background: var(--ink); color: var(--bg);
  box-shadow: 0 6px 22px rgba(26,21,16,0.18);
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.create-account-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), transparent); pointer-events: none;
}
.btn-arrow { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); font-size: 16px; }
.create-account-btn:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(45,122,79,0.26); }
.create-account-btn:hover .btn-arrow { transform: translateX(5px); }
.create-account-btn:active { transform: translateY(0); }
.create-account-btn:disabled { opacity: 0.42; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-spinner { display: none; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
.create-account-btn.loading .btn-text,
.create-account-btn.loading .btn-arrow { display: none; }
.create-account-btn.loading .btn-spinner { display: block; }

.submit-note { font-size: 11px; color: var(--ink-45); font-family: 'DM Sans', sans-serif; display: flex; align-items: center; gap: 5px; }
.submit-note::before { content: '⚡'; font-size: 11px; }

/* ════════════════════════════════════
   RIGHT — PASSPORT CARD
════════════════════════════════════ */
.setup-info-section {
  position: sticky; top: 24px;
  display: flex; flex-direction: column; gap: 16px;
  animation: sideIn 0.7s 0.18s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes sideIn { from { opacity:0; transform:translateX(22px); } to { opacity:1; transform:none; } }

/* ── The passport card ── */
.passport-card {
  background: var(--ink); border-radius: 24px; overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(26,21,16,0.24), 0 4px 16px rgba(26,21,16,0.12);
}

/* BG layers */
.passport-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.pg-glow-1 {
  position: absolute; top: -90px; left: -70px; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,79,0.24) 0%, transparent 70%);
}
.pg-glow-2 {
  position: absolute; bottom: -50px; right: 10px; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,148,74,0.14) 0%, transparent 70%);
}
/* Security micro-grid */
.pg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 22px 22px;
}
/* Giant watermark letter */
.pg-wm {
  position: absolute; bottom: -30px; right: -16px;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 200px; font-weight: 900; line-height: 1; letter-spacing: -10px;
  color: rgba(255,255,255,0.032); user-select: none; pointer-events: none;
}

/* Card inner */
.passport-inner { position: relative; z-index: 1; display: flex; flex-direction: column; }

/* Top bar */
.passport-top {
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.p-issuer {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 9px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.p-live {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.p-live::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: #4ade80;
  animation: liveDot 2s infinite;
}

/* Body */
.passport-body { padding: 18px 22px 16px; display: flex; flex-direction: column; gap: 16px; }

.p-type-label {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 9px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); margin-bottom: 6px;
}
.p-name {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 900; letter-spacing: -2px; line-height: 1.0; color: #fff;
}
.p-name em { font-style: italic; color: var(--green); }
.p-tagline { font-size: 11px; color: rgba(255,255,255,0.36); font-family: 'DM Sans', sans-serif; margin-top: 5px; }

/* Candlestick decoration */
.p-chart { display: flex; align-items: flex-end; gap: 3px; height: 30px; }
.p-candle {
  width: 5px; border-radius: 2px; background: var(--green);
  animation: cGrow 0.5s ease both;
  transform-origin: bottom;
}
.p-candle.r { background: #e74c3c; }
@keyframes cGrow { from{transform:scaleY(0)} to{transform:scaleY(1)} }

/* Stats 2×2 */
.p-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.06); border-radius: 14px; overflow: hidden; }
.p-stat { background: rgba(255,255,255,0.04); padding: 13px 15px; transition: background 0.2s; }
.p-stat:hover { background: rgba(255,255,255,0.09); }
.p-stat-lbl {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 8px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.26); margin-bottom: 5px;
}
.p-stat-val {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700; letter-spacing: -0.5px; color: #fff; line-height: 1.1;
}

/* MRZ bottom strip */
.passport-mrz {
  padding: 13px 22px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.18);
}
.mrz {
  font-family: 'Courier New', monospace;
  font-size: 8px; letter-spacing: 0.07em;
  color: rgba(255,255,255,0.16); line-height: 1.7;
  white-space: nowrap; overflow: hidden;
}

/* ── Trust pills ── */
.trust-pills { display: flex; flex-direction: column; gap: 8px; }
.trust-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 12px;
  background: var(--white); border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(26,21,16,0.05); transition: all 0.22s;
}
.trust-pill:hover { border-color: var(--border-md); transform: translateX(4px); box-shadow: 0 4px 16px rgba(26,21,16,0.09); }
.trust-ico {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: var(--green-bg); border: 1px solid var(--green-bdr);
  color: var(--green); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.trust-ttl { font-family: 'Cabinet Grotesk', sans-serif; font-size: 11px; font-weight: 800; color: var(--ink); }
.trust-sub { font-size: 10px; color: var(--ink-45); margin-top: 1px; }

/* ════ RESPONSIVE ════ */
/* Jump-to-form cue (mobile) */
.jump-to-form-btn {
  display: none;
  width: 100%;
  text-decoration: none;
  border: 1.5px solid var(--border-md);
  background: var(--white);
  color: var(--ink);
  border-radius: 100px;
  padding: 10px 14px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.jump-to-form-btn:hover {
  border-color: var(--green-bdr);
  box-shadow: 0 6px 18px rgba(26,21,16,0.1);
  transform: translateY(-1px);
}
.jump-to-form-btn span {
  color: var(--green);
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 1024px) {
  /* Nav */
  nav {
    top: 22px;
    width: calc(100% - 32px);
    padding: 12px 20px;
  }
  .nav-links { display: none; }
  .hamburger-mobile { display: none !important; }
  .nav-cta { gap: 6px; }
  .nav-cta .hamburger { display: flex !important; }

  .setup-container { 
    grid-template-columns: 1fr 340px; 
    gap: 0 32px;
    padding: 65px 16px 20px;
  }
  .setup-header h1 { font-size: clamp(26px, 3.5vw, 38px); }
}

@media (max-width: 860px) {
  /* Nav */
  nav {
    top: 15px;
    width: calc(100% - 24px);
    padding: 11px 18px;
    border-radius: 20px;
  }
  .nav-logo { font-size: 19px; }

  .setup-container { 
    grid-template-columns: 1fr; 
    padding: 80px 16px 40px;
    gap: 24px;
  }
  .setup-header { 
    flex-direction: column; 
    align-items: center; 
    gap: 16px; 
    padding: 0 0 24px;
    margin-bottom: 24px;
    text-align: center;
  }
  .setup-header h1 { font-size: 32px; letter-spacing: -1.8px; }
  .setup-header { order: 1; }
  .setup-info-section { 
    order: 2; 
    position: static;
    margin-bottom: 16px;
  }
  .setup-form-section { order: 3; }
  .jump-to-form-btn { display: inline-flex; }
  .passport-top { padding: 14px 18px 10px; }
  .passport-body { padding: 14px 18px 12px; gap: 12px; }
  .passport-mrz { padding: 10px 18px 12px; }
  .p-chart { height: 24px; }
  .p-stat { padding: 10px 12px; }
  .p-name { font-size: 28px; }
  .pg-wm { font-size: 130px; }
  .back-button { top: 20px; left: 16px; }
}

@media (max-width: 560px) {
  .setup-container { padding: 76px 12px 32px; }
  .setup-header { padding: 15px 0 10px; }
  .setup-header h1 { font-size: 28px; letter-spacing: -1.5px; }
  .jump-to-form-btn { font-size: 10px; padding: 9px 12px; }
  .passport-top { padding: 12px 14px 9px; }
  .passport-body { padding: 12px 14px 10px; gap: 10px; }
  .passport-mrz { padding: 8px 14px 10px; }
  .p-chart { height: 20px; }
  .p-stat { padding: 8px 10px; }
  .back-button { top: 16px; left: 12px; width: 36px; height: 36px; font-size: 16px; }
  .header-eyebrow { font-size: 9px; }
  .pw-requirements { grid-template-columns: 1fr; }
  .p-name { font-size: 24px; }
  .pg-wm { font-size: 100px; }
  .passport-card { border-radius: 18px; }
  .p-stats { grid-template-columns: 1fr; }
  .submit-row { flex-direction: column; align-items: stretch; }
  .create-account-btn { min-width: 100%; }
  .submit-note { justify-content: center; }
}
