:root {
  color-scheme: light;
  --page: #f6f8fb;
  --paper: #ffffff;
  --surface: #eef2f7;
  --ink: #0b1220;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --ember: #2563eb;
  --ember-soft: #dbeafe;
  --teal: #059669;
  --teal-soft: #dff7ed;
  --gold: #b7791f;
  --gold-soft: #fef3c7;
  --sands: #e2e8f0;
  --danger: #dc2626;
  --blue: #1e40af;
  --blue-soft: #dbeafe;
  --violet: #7c3aed;
  --violet-soft: #ede9fe;
  --shadow-sm: 0 4px 18px rgba(15, 23, 42, 0.06);
  --shadow: 0 22px 64px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 34px 92px rgba(15, 23, 42, 0.16);
  --radius: 18px;
  --radius-lg: 30px;
  --max: 1160px;

  --display: "Fraunces", Georgia, serif;
  --body: "Sora", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", monospace;
}

[data-theme="dark"] {
  --page: #0b1220;
  --paper: #1e293b;
  --surface: #1e293b;
  --ink: #f8fafc;
  --ink-soft: #cbd5e1;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.1);
  --ember: #60a5fa;
  --ember-soft: rgba(96, 165, 250, 0.15);
  --teal: #34d399;
  --teal-soft: rgba(52, 211, 153, 0.15);
  --gold: #fbbf24;
  --gold-soft: rgba(251, 191, 36, 0.15);
  --sands: #334155;
  --danger: #ef4444;
  --blue: #3b82f6;
  --blue-soft: rgba(59, 130, 246, 0.15);
  --violet: #a78bfa;
  --violet-soft: rgba(167, 139, 250, 0.15);
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.3);
  --shadow: 0 22px 64px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 34px 92px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--page);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100dvh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 55% at 8% 10%, rgba(37, 99, 235, 0.08), transparent 58%),
    radial-gradient(ellipse 52% 45% at 92% 6%, rgba(5, 150, 105, 0.10), transparent 58%),
    radial-gradient(ellipse 60% 44% at 50% 102%, rgba(124, 58, 237, 0.06), transparent 58%),
    linear-gradient(180deg, #fbfdff 0%, var(--page) 42%, #eef3f8 100%);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Skip Link for Keyboard Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--ember);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  z-index: 99999;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: top 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skip-link:focus {
  top: 20px;
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--page);
}
::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
  border: 2px solid var(--page);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
svg { flex: 0 0 auto; }

/* Accessible focus rings */
:focus-visible { 
  outline: 3px solid var(--ember); 
  outline-offset: 3px; 
  border-radius: 8px; 
}

h1, h2, h3, h4, p { margin: 0; }

h1, h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 72, "wght" 800, "SOFT" 60, "WONK" 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "wght" 700, "SOFT" 50, "WONK" 1;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.92;
}

h2 {
  max-width: 840px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.05;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "wght" 700, "SOFT" 40, "WONK" 1;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  transition: transform 0.2s ease;
}
.brand:hover {
  transform: scale(1.02);
}

.brand__mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(26, 46, 42, 0.1));
  border-radius: 12px;
}

.tag {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 14px;
  border: 1px solid rgba(15, 123, 99, 0.18);
  border-radius: 999px;
  background: rgba(15, 123, 99, 0.08);
  color: var(--teal);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag.light {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #a8ffdf;
}

/* Header / Navigation */
.topbar {
  display: flex;
  width: min(var(--max), calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 24px 12px;
  position: sticky;
  top: 12px;
  z-index: 100;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 31, 0.08);
  box-shadow: 0 12px 36px rgba(16, 33, 31, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar__link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.18s, transform 0.18s;
  position: relative;
  padding: 10px 0; /* Expanded touch targets vertically */
}

.topbar__link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.topbar__link:hover {
  color: var(--ink);
}

.topbar__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--ink), #163b54);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 33, 31, 0.18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #17302d, #1f4d68);
  box-shadow: 0 18px 42px rgba(16, 33, 31, 0.26);
}

.btn--primary svg { transition: transform 0.2s; }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--outline {
  border: 1px solid rgba(16, 33, 31, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}
.btn--outline:hover {
  background: var(--paper);
  border-color: rgba(15, 123, 99, 0.45);
}

.btn--ghost {
  min-height: 44px; /* Accessible Touch target height */
  padding: 0 16px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.btn--ghost:hover {
  background: rgba(26, 46, 42, 0.06);
  color: var(--ink);
}

.topbar__access {
  display: none;
}

.btn-header-cta {
  display: none;
  min-height: 44px; /* Accessible Touch target height */
  padding: 0 18px;
  font-size: 0.85rem;
}

/* Hero Section */
main {
  overflow-x: clip;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: min(780px, calc(100svh - 96px));
  margin: 0 auto;
  padding: clamp(24px, 5svh, 58px) 0 clamp(34px, 6svh, 78px);
}

.hero__copy {
  min-width: 0;
}

.hero__title {
  max-width: 12ch;
  font-size: clamp(2.55rem, 5.7vw, 5.45rem);
}

.hero__lead {
  max-width: 620px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.launch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 304px);
  gap: 24px;
  align-items: center;
  width: min(100%, 720px);
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(212, 82, 42, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(ellipse 90% 90% at 0% 0%, rgba(212, 82, 42, 0.14), transparent 44%),
    radial-gradient(ellipse 80% 70% at 100% 100%, rgba(35, 112, 87, 0.1), transparent 48%),
    linear-gradient(145deg, rgba(255, 248, 240, 0.92), rgba(248, 243, 233, 0.78));
  box-shadow: 0 18px 48px rgba(26, 46, 42, 0.09);
  position: relative;
  overflow: hidden;
}

.launch-card::before {
  display: none;
}

.launch-card > * {
  position: relative;
  z-index: 1;
}

.launch-card__eyebrow {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--ember);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-card__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.launch-card__copy {
  max-width: 480px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(58px, 1fr));
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.countdown__item {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 248, 240, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(170, 255, 154, 0.14), transparent 56%),
    var(--ink);
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(26, 46, 42, 0.12);
}

.countdown__item strong {
  font-family: var(--mono);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.countdown__item span {
  color: rgba(255, 248, 240, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(45, 139, 110, 0.12);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.6);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.hero__trust li:hover {
  transform: translateY(-2px);
}

.hero__trust svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* INTERACTIVE LEDGER SANDBOX */
.ledger {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(26, 46, 42, 0.11);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 112, 87, 0.12), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(212, 82, 42, 0.1), transparent 36%),
    linear-gradient(135deg, rgba(255, 248, 240, 0.96), rgba(248, 243, 233, 0.98));
  box-shadow: 0 26px 72px rgba(26, 46, 42, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 0;
  max-width: 100%;
}

.ledger:hover {
  box-shadow: var(--shadow-lg);
}

.ledger::before {
  content: "";
  position: absolute;
  inset: -12px -16px auto auto;
  width: 100px;
  height: 100px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--ember), #ffb56b);
  opacity: 0.55;
  transform: rotate(12deg);
  z-index: -1;
  filter: blur(2px);
}

.ledger::after {
  display: none;
}

.ledger__header {
  padding: 4px 6px 2px;
}

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

.ledger__brand img {
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(45, 139, 110, 0.18));
  border-radius: 8px;
}

.ledger__kicker {
  display: block;
  color: var(--ember);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ledger__title {
  display: block;
  margin-top: 1px;
  font-family: var(--display);
  font-variation-settings: "opsz" 32, "wght" 700, "SOFT" 40, "WONK" 1;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.ledger__gauge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 248, 240, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 20%, rgba(170, 255, 154, 0.13), transparent 34%),
    var(--ink);
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 34px rgba(26, 46, 42, 0.16);
}

.gauge__label {
  display: grid;
  gap: 2px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.8;
}

.gauge__amount {
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: #aaff9a;
  letter-spacing: -0.02em;
}

.gauge__ring {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  color: var(--teal);
}

.gauge__fill {
  transition: stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s;
}

.ledger__instructions {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  padding: 4px 0;
  border-bottom: 1px dashed var(--line);
}

.ledger__items {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 6px;
}

/* Ledger Items scrollbar */
.ledger__items::-webkit-scrollbar {
  width: 4px;
}
.ledger__items::-webkit-scrollbar-thumb {
  background: rgba(26, 46, 42, 0.15);
  border-radius: 4px;
}

.ledger__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px; /* Comfortably meets 44px vertical touch target spacing */
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.88rem;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
  user-select: none;
  animation: itemSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ledger__item:hover {
  border-color: rgba(26, 46, 42, 0.08);
  background: rgba(255, 248, 240, 0.76);
  box-shadow: 0 8px 20px rgba(26, 46, 42, 0.05);
}

/* Accessible focus ring on items */
.ledger__item:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: -1px;
}

.ledger__checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--muted);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.ledger__checkbox::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  margin-top: -2px;
  transition: transform 0.2s ease;
}

.ledger__checkbox.checked {
  background: var(--teal);
  border-color: var(--teal);
}

.ledger__checkbox.checked::after {
  transform: rotate(45deg) scale(1);
}

.ledger__item.unchecked {
  opacity: 0.55;
}

.ledger__item.unchecked .ledger__name {
  text-decoration: line-through;
  color: var(--muted);
}

.ledger__name {
  flex-grow: 1;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* WCAG Compliant Large Clickable Target for Delete Button on mobile */
.ledger__remove {
  background: transparent;
  border: none;
  color: var(--danger);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px 12px;
  margin-right: -4px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px; /* Strictly enforces WCAG 44x44px Touch Target */
  min-width: 44px;
}

.ledger__item:hover .ledger__remove,
.ledger__item:focus-within .ledger__remove {
  opacity: 0.7;
  transform: scale(1);
}
.ledger__remove:hover,
.ledger__remove:focus-visible {
  opacity: 1 !important;
  transform: scale(1.1) !important;
  outline: none;
}

.price {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* Sandbox form */
.ledger__add-form {
  display: grid;
  grid-template-columns: 1fr 100px 44px;
  gap: 8px;
  padding: 12px 4px 4px;
  border-top: 1px dashed var(--line);
  margin-top: 4px;
}

.ledger__add-form input {
  background: rgba(26, 46, 42, 0.04);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--ink);
  width: 100%;
  min-height: 44px; /* Accessible form elements */
  transition: all 0.2s;
}

.ledger__add-form input:focus {
  background: var(--paper);
  border-color: var(--ember);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 82, 42, 0.15);
}

.sandbox-price-input {
  position: relative;
  display: flex;
  align-items: center;
}

.sandbox-price-input input {
  padding-left: 20px;
}

.currency-prefix {
  position: absolute;
  left: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  pointer-events: none;
}

.sandbox-submit-btn {
  background: var(--ember);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  min-height: 44px; /* Enforces Touch Target compliance */
  min-width: 44px;
}

.sandbox-submit-btn:hover {
  background: #b5401d;
  transform: translateY(-1px);
}

.sandbox-submit-btn:active {
  transform: translateY(1px);
}

.ledger__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8px 6px;
  border-top: 2px solid var(--ink);
  margin-top: 2px;
}

.ledger__total-label {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.tally {
  font-family: var(--mono);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.tally .tally__digit {
  display: inline-block;
}

.tally__char {
  display: inline-block;
}

.ledger__note {
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  transition: background 0.3s, color 0.3s;
}

.ledger__note.is-over {
  background: #fae2da;
  color: var(--danger);
}

/* STEPS SECTION */
.steps {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) 0;
}

.steps__intro {
  display: grid;
  gap: 10px;
  margin-bottom: 48px;
}

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

.step {
  isolation: isolate;
  min-height: 310px;
  padding: 34px 30px;
  border: 1px solid color-mix(in srgb, var(--bar) 18%, transparent);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 10%, color-mix(in srgb, var(--bar) 18%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255, 248, 240, 0.96), rgba(248, 243, 233, 0.82));
  box-shadow: 0 18px 48px rgba(26, 46, 42, 0.08);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bar), transparent);
  opacity: 0.65;
}

.step::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), transparent 42%),
    radial-gradient(circle at 20% 110%, color-mix(in srgb, var(--bar) 10%, transparent), transparent 36%);
  pointer-events: none;
  z-index: -1;
}

.step__number {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--ink);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: color-mix(in srgb, var(--bar) 36%, transparent);
  box-shadow: 0 26px 70px rgba(26, 46, 42, 0.14);
}

.step__icon {
  width: 46px;
  height: 46px;
  padding: 11px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--bar) 12%, transparent);
  color: var(--bar);
}

.step__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--bar) 10%, transparent);
  color: var(--bar);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step h3 {
  font-size: 1.3rem;
  font-variation-settings: "opsz" 28, "wght" 700, "SOFT" 50, "WONK" 1;
}

.step p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* FEATURES SECTION */
.features {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) 0;
}

.features__intro {
  display: grid;
  gap: 10px;
  margin-bottom: 48px;
}

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

.feature {
  isolation: isolate;
  min-height: 275px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--swatch) 15%, transparent);
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(255, 248, 240, 0.98), rgba(255, 248, 240, 0.72)),
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--swatch) 22%, transparent), transparent 36%);
  box-shadow: 0 16px 44px rgba(26, 46, 42, 0.075);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  inset: auto 24px 22px 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--swatch), transparent);
  opacity: 0.42;
}

.feature::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -42px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--swatch) 10%, transparent);
  z-index: -1;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(26, 46, 42, 0.14);
  border-color: color-mix(in srgb, var(--swatch) 48%, transparent);
}

.feature__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in srgb, var(--swatch) 22%, transparent);
  border-radius: 16px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--swatch) 16%, transparent), rgba(255, 248, 240, 0.6));
  color: var(--swatch);
  margin-bottom: 20px;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--swatch) 16%, transparent);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover .feature__icon-wrapper {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--swatch) 24%, transparent);
}

.feature__svg-icon {
  width: 24px;
  height: 24px;
}

.feature__tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--swatch);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature h3 {
  font-size: 1.25rem;
  font-variation-settings: "opsz" 28, "wght" 700, "SOFT" 50, "WONK" 1;
}

.feature p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* TESTIMONIALS SECTION */
.testimonials {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) 0;
}

.testimonials__intro {
  display: grid;
  gap: 10px;
  margin-bottom: 48px;
}

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

.testimonial-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(212, 82, 42, 0.09), transparent 32%),
    linear-gradient(145deg, rgba(255, 248, 240, 0.98), rgba(248, 243, 233, 0.86));
  border: 1px solid rgba(26, 46, 42, 0.09);
  border-radius: 34px;
  padding: 34px 30px;
  box-shadow: 0 16px 46px rgba(26, 46, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -26px;
  right: 20px;
  color: rgba(26, 46, 42, 0.06);
  font-family: var(--display);
  font-size: 9rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(26, 46, 42, 0.13);
}

.testimonial__rating {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial__quote {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "wght" 500;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin: 0;
}

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

.author__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author__name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.author__location {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

/* PRIVACY SPOTLIGHT */
.section-privacy {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}

.privacy__card {
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  background:
    radial-gradient(ellipse 80% 50% at 90% 10%, rgba(212, 82, 42, 0.24), transparent),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(35, 112, 87, 0.22), transparent),
    var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.privacy__card::before {
  display: none;
}

.privacy__card::after {
  content: "";
  position: absolute;
  right: clamp(20px, 6vw, 72px);
  bottom: clamp(18px, 5vw, 54px);
  width: clamp(96px, 16vw, 170px);
  height: clamp(96px, 16vw, 170px);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255, 181, 107, 0.28), rgba(170, 255, 154, 0.16));
  transform: rotate(12deg);
  filter: blur(1px);
}

.privacy__content {
  position: relative;
  z-index: 1;
}

.privacy__content h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
}

.privacy__content p {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 248, 240, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
}

.privacy__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.privacy__badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #aaff9a;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
}

.privacy__link {
  color: #aaff9a;
  font-size: 0.9rem;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  padding: 8px 0; /* Touch target enrichment */
}
.privacy__link:hover {
  opacity: 0.85;
  transform: translateX(4px);
}

/* FAQ SECTION */
.faq-section {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) 0;
}

.faq__intro {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
  text-align: center;
  justify-content: center;
}

.faq__list {
  display: grid;
  gap: 16px;
}

.faq__item {
  background:
    linear-gradient(145deg, rgba(255, 248, 240, 0.98), rgba(248, 243, 233, 0.9));
  border: 1px solid rgba(26, 46, 42, 0.09);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(26, 46, 42, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq__item[open] {
  box-shadow: 0 22px 58px rgba(26, 46, 42, 0.11);
  border-color: rgba(212, 82, 42, 0.22);
}

.faq__question {
  padding: 22px 24px; /* Accessible Touch target padding */
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__arrow {
  color: var(--muted);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__arrow {
  transform: rotate(180deg);
  color: var(--ink);
}

.faq__answer {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  border-top: 1px solid rgba(26, 46, 42, 0.05);
  animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq__answer p {
  margin: 12px 0 0;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA SECTION */
.section-cta {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) 0 clamp(48px, 7vw, 88px);
}

.cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(32px, 6vw, 56px);
  border: 1px solid rgba(26, 46, 42, 0.09);
  border-radius: 36px;
  background:
    radial-gradient(circle at 92% 18%, rgba(35, 112, 87, 0.12), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(212, 82, 42, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 248, 240, 0.98), rgba(248, 243, 233, 0.84));
  box-shadow: 0 20px 60px rgba(26, 46, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.cta__card::before {
  display: none;
}

.cta__text-wrapper,
.cta__button-wrapper {
  position: relative;
  z-index: 1;
}

.cta__text-wrapper {
  max-width: 580px;
}

.cta__label {
  display: block;
  margin-bottom: 8px;
  color: var(--ember);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta__card h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
}

.cta__card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.cta__button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cta__btn {
  min-height: 54px;
  padding: 0 36px;
  white-space: nowrap;
}

.cta__btn-sub {
  min-height: 48px;
  font-size: 0.9rem;
}

/* FOOTER */
.footer {
  background: rgba(26, 46, 42, 0.03);
  border-top: 1px solid var(--line);
  padding: 64px 0 48px;
  margin-top: 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__about {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer__about-text {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer__badges {
  display: flex;
  gap: 8px;
}

.footer__badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 6px;
}

.footer__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer__links a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
  padding: 4px 0; /* Expanded touch targets */
}

.footer__links a:hover {
  color: var(--ember);
  padding-left: 4px;
}

.footer__copyright {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: auto;
}

/* WAITLIST MODAL */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 42, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  width: min(100%, 480px);
  max-height: min(720px, calc(100dvh - 32px));
  overflow-y: auto;
  padding: clamp(28px, 6vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 46, 42, 0.06);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal__logo {
  margin-bottom: 18px;
  border-radius: 14px;
  filter: drop-shadow(0 12px 24px rgba(26, 46, 42, 0.14));
}

.modal__title {
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  line-height: 1;
}

.modal__copy {
  margin-top: 14px;
  color: var(--ink-soft);
}

.waitlist-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.waitlist-form__label {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waitlist-form__input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(26, 46, 42, 0.04);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
}

.waitlist-form__input:focus {
  border-color: var(--ember);
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 82, 42, 0.14);
}

.waitlist-form__submit {
  width: 100%;
  min-height: 54px;
}

.waitlist-form__message {
  min-height: 1.4em;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
}

.waitlist-form__message.is-error {
  color: var(--danger);
}

body.modal-open {
  overflow: hidden;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* REVEAL ON SCROLL */
.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible,
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   POLITICAS PAGE STYLING (REDESIGN)
   ========================================================================== */
.policy-page {
  background: var(--page);
}

.policy-container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) 0;
}

.policy-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.policy-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 16px 0;
  line-height: 1;
}

.policy-header p {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.6;
}

.policy-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 90px;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 82, 42, 0.08), transparent 36%),
    linear-gradient(145deg, rgba(255, 248, 240, 0.96), rgba(248, 243, 233, 0.88));
  border: 1px solid rgba(26, 46, 42, 0.09);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(26, 46, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-sidebar__title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
}

.policy-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-nav__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px; /* Touch target friendly height */
  border-radius: 8px;
  transition: all 0.2s;
  display: block;
  border-left: 2px solid transparent;
}

.policy-nav__link:hover {
  color: var(--ink);
  background: rgba(26, 46, 42, 0.04);
  padding-left: 16px;
}

.policy-nav__link.active {
  color: var(--ember);
  background: var(--ember-soft);
  border-left-color: var(--ember);
  padding-left: 16px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.policy-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 112, 87, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255, 248, 240, 0.98), rgba(248, 243, 233, 0.86));
  border: 1px solid rgba(26, 46, 42, 0.09);
  border-radius: 32px;
  padding: 38px;
  box-shadow: 0 16px 44px rgba(26, 46, 42, 0.075);
  scroll-margin-top: 100px;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.25s;
}

.policy-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 34px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--ember), var(--teal));
  opacity: 0.7;
}

.policy-section:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 46, 42, 0.18);
  box-shadow: 0 22px 58px rgba(26, 46, 42, 0.11);
}

.policy-section h2 {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(26, 46, 42, 0.05);
  padding-bottom: 12px;
}

.policy-section p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 12px;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.policy-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.policy-list--negative li::before {
  content: "✕";
  color: var(--danger);
}

.policy-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.policy-mini-card {
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(26, 46, 42, 0.055);
  transition: transform 0.25s, box-shadow 0.25s;
}

.policy-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(26, 46, 42, 0.09);
}

.policy-mini-card.local {
  background: var(--teal-soft);
  border: 1px solid rgba(45, 139, 110, 0.15);
}

.policy-mini-card.account {
  background: var(--gold-soft);
  border: 1px solid rgba(198, 151, 60, 0.15);
}

.policy-mini-card strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "wght" 700;
  margin-bottom: 8px;
}

.policy-mini-card.local strong { color: var(--teal); }
.policy-mini-card.account strong { color: var(--gold); }

.policy-summary-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(170, 255, 154, 0.16), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(212, 82, 42, 0.18), transparent 36%),
    var(--ink);
  color: var(--paper);
  padding: 40px;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  scroll-margin-top: 100px;
}

.policy-summary-card::before {
  display: none;
}

.policy-summary-card h2 {
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.policy-summary-card p {
  color: rgba(255, 248, 240, 0.85);
}

.policy-summary-card li {
  color: rgba(255, 248, 240, 0.85);
}

.policy-summary-card li::before {
  color: #aaff9a;
}

/* ==========================================================================
   BETA FORM PAGE
   ========================================================================== */
.beta-main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 76px) 0 clamp(56px, 8vw, 96px);
}

.beta-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.beta-hero__copy {
  position: sticky;
  top: 120px;
}

.beta-hero__copy h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
}

.beta-hero__copy p {
  max-width: 520px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.beta-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(26, 46, 42, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 112, 87, 0.1), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(212, 82, 42, 0.1), transparent 36%),
    linear-gradient(145deg, rgba(255, 248, 240, 0.98), rgba(248, 243, 233, 0.9));
  box-shadow: 0 24px 70px rgba(26, 46, 42, 0.12);
}

.beta-form__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.beta-form__header img {
  border-radius: 14px;
  filter: drop-shadow(0 10px 20px rgba(26, 46, 42, 0.12));
}

.beta-form__header span {
  display: block;
  color: var(--ember);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.beta-form__header strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.beta-field,
.beta-fieldset {
  display: grid;
  gap: 10px;
}

.beta-field label,
.beta-fieldset legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.beta-field input,
.beta-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(26, 46, 42, 0.12);
  border-radius: 16px;
  background: rgba(255, 248, 240, 0.74);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
}

.beta-field textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}

.beta-field input:focus,
.beta-field textarea:focus {
  border-color: var(--ember);
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 82, 42, 0.14);
}

.beta-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.beta-fieldset legend {
  margin-bottom: 10px;
}

.beta-fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.beta-fieldset legend {
  grid-column: 1 / -1;
}

.beta-fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(26, 46, 42, 0.1);
  border-radius: 16px;
  background: rgba(255, 248, 240, 0.72);
  color: var(--ink-soft);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}

.beta-fieldset label:hover {
  border-color: rgba(212, 82, 42, 0.32);
  background: var(--paper);
  transform: translateY(-1px);
}

.beta-fieldset input {
  width: 18px;
  height: 18px;
  accent-color: var(--ember);
}

.beta-form__submit {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
}

.beta-form__message {
  min-height: 1.5em;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.beta-form__message.is-error {
  color: var(--danger);
}

/* ==========================================================================
   MEDIA QUERIES / RESPONSIVENESS (PERFECT MOBILE ADAPTATIONS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
    gap: clamp(24px, 4vw, 44px);
  }

  .hero__title {
    font-size: clamp(2.35rem, 5.4vw, 4.6rem);
  }

  .launch-card {
    grid-template-columns: 1fr;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .policy-sidebar {
    position: static;
    width: 100%;
  }
  .policy-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .policy-nav__link {
    padding: 10px 16px; /* Accessible on smaller viewports */
  }

  .beta-hero {
    grid-template-columns: 1fr;
  }

  .beta-hero__copy {
    position: static;
  }

  .beta-hero__copy h1 {
    max-width: 760px;
  }
}

@media (max-width: 920px) {
  .topbar {
    padding: 12px 18px;
  }
  .topbar__link { display: none; }
  .btn-header-cta { display: none; }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-top: clamp(22px, 4svh, 36px);
  }

  .hero__copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero__title,
  .hero__lead {
    max-width: 720px;
  }

  .hero__actions,
  .hero__trust {
    justify-content: center;
  }

  .ledger {
    width: 100%;
    max-width: 480px;
    justify-self: center;
  }

  .steps__grid,
  .features__grid,
  .testimonials__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    gap: 32px;
  }

  .cta__card { flex-direction: column; text-align: center; }
  .cta__btn { width: 100%; }
  .cta__button-wrapper { width: 100%; }
}

@media (max-width: 700px) {
  .topbar {
    position: sticky;
    top: 8px;
    padding: 10px 16px;
  }

  body {
    background:
      radial-gradient(ellipse 100% 40% at 50% 0%, rgba(212, 82, 42, 0.05), transparent),
      linear-gradient(180deg, #f5efe2 0%, var(--page) 40%, #f0ead9 100%);
  }

  .hero {
    gap: 28px;
    padding: 18px 0 38px;
  }

  .hero__lead { margin-top: 16px; }
  .hero__actions { margin-top: 24px; }
  .hero__trust { margin-top: 20px; }

  .launch-card {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
    justify-items: stretch;
  }

  .countdown {
    min-width: 0;
    width: 100%;
  }

  .steps,
  .features,
  .testimonials,
  .section-privacy,
  .faq-section {
    padding: 36px 0;
  }

  .steps__intro,
  .features__intro,
  .testimonials__intro,
  .faq__intro { margin-bottom: 24px; }

  .step,
  .feature,
  .testimonial-card,
  .policy-section {
    padding: 24px;
    border-radius: 22px;
  }

  .policy-split {
    grid-template-columns: 1fr;
  }

  .privacy__card { padding: 32px 24px; }

  .cta__card { padding: 32px 24px; gap: 24px; }

  .footer { padding: 40px 0 32px; }
}

@media (max-width: 540px) {
  :root { --max: 100%; }

  .topbar,
  .hero,
  .steps,
  .features,
  .testimonials,
  .section-privacy,
  .faq-section,
  .section-cta,
  .footer__grid,
  .policy-container {
    width: calc(100% - 24px);
  }

  .brand { gap: 8px; }
  .brand__mark { width: 30px; height: 30px; }
  .brand__name { font-size: 1rem; }

  .topbar__nav { gap: 8px; }
  .btn--ghost { min-height: 36px; padding: 0 12px; font-size: 0.85rem; }

  h1 { font-size: clamp(2.3rem, 12vw, 3.8rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 2.8rem); }

  .hero__title {
    max-width: 10.5ch;
    font-size: clamp(2.2rem, 12vw, 3.55rem);
  }

  .hero__lead {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .tag { margin-bottom: 16px; padding: 6px 12px; font-size: 0.65rem; }

  .hero__actions .btn { width: 100%; justify-content: center; }

  .launch-card {
    padding: 18px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown__item {
    min-height: 74px;
  }

  .hero__trust li {
    width: 100%;
    justify-content: center;
  }

  .ledger { padding: 14px; border-radius: 22px; }
  .ledger::before { width: 70px; height: 70px; inset: -8px -10px auto auto; }

  .ledger__gauge { padding: 10px 14px; }
  .gauge__ring { width: 44px; height: 44px; }
  .gauge__amount { font-size: 1rem; }

  .ledger__item { font-size: 0.82rem; padding: 6px 8px; }
  .price { font-size: 0.8rem; }
  
  .ledger__add-form {
    grid-template-columns: 1fr 80px 44px; /* Maintain accessible touch target size on buttons */
    gap: 4px;
    padding: 6px 0;
  }
  .ledger__add-form input {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .step h3 { font-size: 1.15rem; }
  .step p { font-size: 0.88rem; }

  .feature h3 { font-size: 1.1rem; }

  .privacy__content p { font-size: 0.98rem; }
  .privacy__actions { gap: 12px; }
  .privacy__badge { font-size: 0.78rem; padding: 8px 14px; }

  .faq__question { padding: 16px 20px; font-size: 0.95rem; }
  .faq__answer { padding: 0 20px 16px; font-size: 0.88rem; }
}

@media (max-width: 380px) {
  .brand__name { display: none; }
  h1 { font-size: clamp(2rem, 15vw, 3rem); }
  .ledger__title { font-size: 1rem; }
  .ledger__add-form {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .sandbox-price-input {
    width: 100%;
  }
  .sandbox-submit-btn {
    padding: 8px;
    font-size: 1rem;
  }

  .modal {
    padding: 12px;
  }

  .modal__panel {
    border-radius: 24px;
  }
}

@media (max-height: 760px) and (min-width: 921px) {
  .hero {
    min-height: auto;
    align-items: start;
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .hero__title {
    font-size: clamp(2.4rem, 4.9vw, 4.7rem);
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .launch-card {
    margin-top: 20px;
    padding: 18px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__trust {
    margin-top: 20px;
  }

  .ledger__items {
    max-height: 190px;
  }
}

/* Final mobile polish: compact, clean and stable vertical layout */
@media (max-width: 700px) {
  body {
    font-size: 15px;
    background: linear-gradient(180deg, #f8faf7 0%, #f2f6f2 46%, #edf3ee 100%);
  }

  .topbar {
    width: calc(100% - 16px);
    position: relative;
    top: 0;
    gap: 10px;
    justify-content: center;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
  }

  .topbar__nav {
    display: none;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    font-size: 0.98rem;
  }

  .topbar__nav {
    gap: 6px;
  }

  .btn--ghost {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero,
  .steps,
  .features,
  .testimonials,
  .section-privacy,
  .faq-section,
  .section-cta,
  .footer__grid,
  .policy-container {
    width: calc(100% - 20px);
  }

  .beta-main {
    width: calc(100% - 20px);
    padding: 24px 0 44px;
  }

  .beta-hero {
    gap: 22px;
  }

  .beta-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 12vw, 3.5rem);
    line-height: 0.98;
  }

  .beta-hero__copy p {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .beta-form {
    gap: 15px;
    padding: 16px;
    border-radius: 24px;
  }

  .beta-form__header strong {
    font-size: 1.15rem;
  }

  .beta-fieldset {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .beta-field input,
  .beta-field textarea,
  .beta-fieldset label {
    border-radius: 14px;
  }

  .hero {
    justify-items: stretch;
    gap: 18px;
    padding: 16px 0 24px;
  }

  .hero__copy {
    justify-items: center;
    text-align: center;
  }

  .hero__title {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(2.05rem, 10.5vw, 3.05rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .hero__lead {
    max-width: 34rem;
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .launch-card {
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    border-radius: 18px;
    gap: 10px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 33, 31, 0.08);
  }

  .launch-card::before {
    inset: 6px;
    border-radius: 14px;
  }

  .launch-card__eyebrow {
    margin-bottom: 3px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .launch-card__title {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .launch-card__copy {
    display: none;
    margin-top: 6px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .countdown__item {
    min-height: 48px;
    padding: 7px 3px;
    border-radius: 11px;
  }

  .countdown__item strong {
    font-size: clamp(0.88rem, 5vw, 1.1rem);
  }

  .countdown__item span {
    font-size: 0.46rem;
    letter-spacing: 0.04em;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 18px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 18px;
  }

  .hero__trust li {
    width: 100%;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 14px;
    background: #ffffff;
    font-size: 0.8rem;
  }

  .ledger {
    width: 100%;
    max-width: none;
    padding: 12px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(16, 33, 31, 0.09);
  }

  .ledger::before {
    display: none;
  }

  .ledger::after {
    inset: 8px;
    border-radius: 18px;
  }

  .ledger__header {
    padding: 2px 4px;
  }

  .ledger__gauge {
    padding: 10px 12px;
    border-radius: 18px;
    box-shadow: none;
  }

  .ledger__items {
    max-height: 180px;
    gap: 6px;
    padding-right: 2px;
  }

  .ledger__item {
    gap: 8px;
    padding: 7px 6px;
    font-size: 0.8rem;
    background: #f8faf7;
  }

  .ledger__remove {
    min-width: 38px;
    min-height: 38px;
    padding: 6px 8px;
    opacity: 0.75;
    transform: none;
  }

  .ledger__add-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ledger__total {
    gap: 12px;
  }

  .tally {
    font-size: 1.35rem;
  }

  .steps,
  .features,
  .testimonials,
  .section-privacy,
  .faq-section,
  .section-cta {
    padding: 30px 0;
  }

  .steps__grid,
  .features__grid,
  .testimonials__grid {
    gap: 12px;
  }

  .steps__intro,
  .features__intro,
  .testimonials__intro,
  .faq__intro {
    margin-bottom: 18px;
  }

  .step,
  .feature,
  .testimonial-card,
  .policy-section {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    border-color: rgba(16, 33, 31, 0.08);
    box-shadow: 0 8px 24px rgba(16, 33, 31, 0.07);
  }

  .step::after,
  .feature::after,
  .testimonial-card::before {
    display: none;
  }

  .step::before,
  .feature::before {
    inset: auto 18px 14px 18px;
    height: 3px;
  }

  .step:hover,
  .feature:hover,
  .testimonial-card:hover,
  .policy-section:hover {
    transform: none;
  }

  .step__number {
    font-size: 3.8rem;
    top: 12px;
    right: 16px;
  }

  .feature__icon-wrapper,
  .step__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    box-shadow: none;
  }

  .step h3,
  .feature h3 {
    font-size: 1.08rem;
  }

  .step p,
  .feature p {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .privacy__card,
  .cta__card,
  .policy-summary-card {
    border-radius: 24px;
    padding: 26px 20px;
    box-shadow: 0 12px 34px rgba(16, 33, 31, 0.09);
  }

  .privacy__card {
    background: var(--ink);
  }

  .cta__card {
    background: #ffffff;
  }

  .privacy__card::before,
  .cta__card::before,
  .policy-summary-card::before {
    inset: 10px;
    border-radius: 18px;
  }

  .privacy__card::after {
    display: none;
  }

  .faq__item {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(16, 33, 31, 0.06);
  }

  .faq__question {
    padding: 16px;
    align-items: flex-start;
    gap: 14px;
  }

  .faq__answer {
    padding: 0 16px 16px;
  }

  .footer {
    margin-top: 20px;
  }
}

@media (max-width: 390px) {
  .topbar {
    width: calc(100% - 12px);
  }

  .brand__name {
    display: none;
  }

  .hero,
  .steps,
  .features,
  .testimonials,
  .section-privacy,
  .faq-section,
  .section-cta,
  .footer__grid,
  .policy-container {
    width: calc(100% - 16px);
  }

  .beta-main {
    width: calc(100% - 16px);
  }

  .beta-form {
    padding: 14px;
  }

  .hero__title {
    font-size: clamp(2.18rem, 14vw, 3.1rem);
  }

  .countdown {
    gap: 4px;
  }

  .countdown__item {
    min-height: 44px;
  }

  .countdown__item span {
    font-size: 0.44rem;
  }

  .ledger__brand img {
    width: 34px;
    height: 34px;
  }

  .ledger__title {
    font-size: 0.96rem;
  }

  .price {
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   PROFESSIONAL PALETTE OVERRIDES
   Clean fintech-style color system: cool neutrals, blue, green, violet.
   ========================================================================== */
.launch-card,
.step,
.feature,
.testimonial-card,
.faq__item,
.cta__card,
.policy-section,
.policy-sidebar,
.beta-form {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.06);
  border-radius: 24px;
}

.launch-card {
  border-color: rgba(37, 99, 235, 0.16);
}

.launch-card__eyebrow,
.ledger__kicker,
.cta__label,
.beta-form__header span {
  color: var(--ember);
}

.countdown__item,
.ledger__gauge,
.privacy__card,
.policy-summary-card {
  background: linear-gradient(145deg, #0b1220, #14213d);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ledger {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.08);
}

.ledger::before {
  background: linear-gradient(135deg, var(--ember), var(--teal));
}

.ledger__item:hover {
  background: #f8fafc;
  border-color: rgba(37, 99, 235, 0.12);
}

.ledger__item {
  color: var(--ink);
}

.hero__trust li,
.footer__badge {
  background: #ffffff;
  border-color: rgba(5, 150, 105, 0.14);
  color: var(--teal);
}

.privacy__content p,
.policy-summary-card p,
.policy-summary-card li {
  color: rgba(255, 255, 255, 0.82);
}

.testimonial__rating {
  color: var(--gold);
}

.policy-mini-card.local {
  background: var(--teal-soft);
  border-color: rgba(5, 150, 105, 0.18);
}

.policy-mini-card.account {
  background: var(--blue-soft);
  border-color: rgba(37, 99, 235, 0.16);
}

.policy-mini-card.account strong {
  color: var(--ember);
}

.beta-field input,
.beta-field textarea,
.beta-fieldset label,
.waitlist-form__input,
.ledger__add-form input {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.1);
}

.sandbox-submit-btn {
  background: var(--ember);
}

.sandbox-submit-btn:hover {
  background: var(--blue);
}

@media (max-width: 700px) {
  body {
    background: linear-gradient(180deg, #fbfdff 0%, #f6f8fb 48%, #eef3f8 100%);
  }

  .launch-card,
  .ledger,
  .step,
  .feature,
  .testimonial-card,
  .faq__item,
  .cta__card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
  }

  .ledger__item {
    background: #f8fafc;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .ledger__item { opacity: 1 !important; transform: none !important; }
  .reveal, .reveal-card { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   AGENCY UX/UI REDESIGN LAYER
   Final visual direction: refined product studio aesthetic, restrained palette,
   generous whitespace, consistent surfaces and mobile-first clarity.
   ========================================================================== */
:root {
  --page: #f7f8fa;
  --paper: #ffffff;
  --surface: #eef2f5;
  --ink: #0b1220;
  --ink-soft: #263241;
  --muted: #667085;
  --line: rgba(11, 18, 32, 0.1);
  --ember: #1f6feb;
  --ember-soft: #e8f1ff;
  --teal: #008f6b;
  --teal-soft: #e4f8f1;
  --gold: #a16207;
  --gold-soft: #fff7df;
  --danger: #c2410c;
  --blue: #102a43;
  --blue-soft: #e9f2fb;
  --violet: #6d5dfc;
  --violet-soft: #eeedff;
  --shadow-sm: 0 8px 24px rgba(11, 18, 32, 0.06);
  --shadow: 0 20px 60px rgba(11, 18, 32, 0.11);
  --shadow-lg: 0 36px 90px rgba(11, 18, 32, 0.14);
  --radius: 18px;
  --radius-lg: 30px;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(31, 111, 235, 0.08), transparent 32rem),
    radial-gradient(circle at 92% 10%, rgba(0, 143, 107, 0.09), transparent 30rem),
    linear-gradient(180deg, #fbfcfd 0%, #f7f8fa 48%, #eef2f5 100%);
}

.topbar {
  max-width: 1180px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 40px rgba(11, 18, 32, 0.08);
}

.brand__mark {
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.12);
  filter: none;
}

.tag {
  border-color: rgba(0, 143, 107, 0.16);
  background: rgba(0, 143, 107, 0.08);
  color: var(--teal);
}

.btn--primary {
  background: #0b1220;
  box-shadow: 0 16px 34px rgba(11, 18, 32, 0.22);
}

.btn--primary:hover {
  background: #172033;
  box-shadow: 0 20px 46px rgba(11, 18, 32, 0.28);
}

.btn--outline {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.12);
}

.hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(36px, 6vw, 84px);
}

.hero__title {
  max-width: 11.5ch;
  color: var(--ink);
}

.hero__lead {
  color: var(--ink-soft);
}

.launch-card,
.ledger,
.step,
.feature,
.testimonial-card,
.faq__item,
.cta__card,
.policy-section,
.policy-sidebar,
.beta-form {
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 18px 48px rgba(11, 18, 32, 0.075);
}

.launch-card {
  border-radius: 28px;
}

.launch-card__eyebrow,
.ledger__kicker,
.cta__label,
.beta-form__header span {
  color: var(--teal);
}

.countdown__item,
.ledger__gauge,
.privacy__card,
.policy-summary-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.2), transparent 34%),
    linear-gradient(145deg, #0b1220, #122033);
  border-color: rgba(255, 255, 255, 0.08);
}

.countdown__item strong,
.gauge__amount,
.privacy__badge,
.privacy__link {
  color: #9fffd2;
}

.ledger::before,
.ledger::after,
.privacy__card::after,
.testimonial-card::before,
.feature::after,
.step::after {
  display: none !important;
}

.ledger__item {
  background: #f7f9fb;
  border-color: transparent;
}

.ledger__item:hover {
  background: #ffffff;
  border-color: rgba(31, 111, 235, 0.14);
}

.ledger__checkbox.checked {
  background: var(--teal);
  border-color: var(--teal);
}

.sandbox-submit-btn {
  background: var(--teal);
}

.sandbox-submit-btn:hover {
  background: #057a5e;
}

.hero__trust li,
.footer__badge {
  background: #ffffff;
  border-color: rgba(0, 143, 107, 0.14);
  color: var(--teal);
}

.step,
.feature,
.testimonial-card {
  min-height: auto;
}

.step::before,
.feature::before {
  height: 4px;
  inset: auto 26px 22px 26px;
  opacity: 0.78;
}

.feature__icon-wrapper,
.step__icon {
  background: color-mix(in srgb, var(--bar, var(--swatch)) 10%, #ffffff);
  border-color: color-mix(in srgb, var(--bar, var(--swatch)) 18%, transparent);
  box-shadow: none;
}

.testimonial__quote {
  color: var(--ink-soft);
}

.faq__item[open] {
  border-color: rgba(31, 111, 235, 0.2);
  box-shadow: 0 18px 46px rgba(11, 18, 32, 0.1);
}

.policy-mini-card.local {
  background: var(--teal-soft);
}

.policy-mini-card.account {
  background: var(--blue-soft);
}

.beta-field input,
.beta-field textarea,
.beta-fieldset label,
.waitlist-form__input,
.ledger__add-form input {
  background: #f7f9fb;
  border-color: rgba(11, 18, 32, 0.1);
}

.beta-field input:focus,
.beta-field textarea:focus,
.waitlist-form__input:focus,
.ledger__add-form input:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.14);
}

.modal__panel {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.1);
}

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

@media (max-width: 700px) {
  body {
    background: linear-gradient(180deg, #fbfcfd 0%, #f7f8fa 52%, #eef2f5 100%);
  }

  .topbar {
    position: sticky;
    top: 8px;
    justify-content: space-between;
    width: calc(100% - 20px);
    border-radius: 18px;
  }

  .topbar__nav {
    display: none;
  }

  .hero,
  .steps,
  .features,
  .testimonials,
  .section-privacy,
  .faq-section,
  .section-cta,
  .footer__grid,
  .beta-main,
  .policy-container {
    width: calc(100% - 24px);
  }

  .hero {
    gap: 20px;
    padding: 22px 0 34px;
  }

  .hero__copy {
    text-align: left;
    justify-items: start;
  }

  .hero__title {
    max-width: 100%;
    margin: 0;
    font-size: clamp(2.25rem, 11vw, 3.3rem);
    line-height: 0.98;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .launch-card {
    padding: 14px;
    border-radius: 20px;
    text-align: left;
  }

  .launch-card__copy {
    display: none;
  }

  .countdown {
    grid-template-columns: repeat(4, 1fr);
  }

  .countdown__item {
    min-height: 48px;
    padding: 7px 4px;
  }

  .hero__actions {
    grid-template-columns: 1fr;
  }

  .hero__trust {
    grid-template-columns: 1fr;
  }

  .ledger,
  .step,
  .feature,
  .testimonial-card,
  .faq__item,
  .cta__card,
  .beta-form,
  .policy-section {
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(11, 18, 32, 0.07);
  }

  .step,
  .feature,
  .testimonial-card,
  .policy-section {
    padding: 18px;
  }

  .steps,
  .features,
  .testimonials,
  .section-privacy,
  .faq-section,
  .section-cta {
    padding: 28px 0;
  }
}

/* THEME TOGGLE & PRESETS */
.btn-theme {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--muted);
}

.btn-theme:hover {
  background: var(--surface);
  color: var(--ink);
  transform: rotate(15deg);
}

.btn-theme svg {
  width: 20px;
  height: 20px;
  transition: opacity 0.2s;
}

.btn-theme .sun-icon,
.btn-theme .moon-icon {
  position: absolute;
  transition: opacity 0.2s, transform 0.3s;
}

[data-theme="light"] .moon-icon { opacity: 1; transform: scale(1); }
[data-theme="light"] .sun-icon { opacity: 0; transform: scale(0); }
[data-theme="dark"] .sun-icon { opacity: 1; transform: scale(1); }
[data-theme="dark"] .moon-icon { opacity: 0; transform: scale(0); }

.ledger__presets {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.preset-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}

.preset-btn:hover {
  background: var(--ember-soft);
  color: var(--ember);
  border-color: var(--ember);
}
