:root {
  --green-950: #071f17;
  --green-900: #0a2a1e;
  --green-800: #0f3d2e;
  --green-700: #15503b;
  --green-600: #1a5c44;
  --green-100: #dcebe3;
  --green-50: #eff7f2;
  --gold-600: #b8901c;
  --gold-500: #c9a227;
  --gold-400: #e8c05a;
  --gold-100: #f9ecc0;
  --ink: #10251d;
  --ink-soft: #40584d;
  --muted: #6f8379;
  --line: #dce6e0;
  --surface: #ffffff;
  --surface-soft: #f5f8f6;
  --danger: #a53d35;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 46px;
  --shadow-sm: 0 8px 26px rgba(9, 42, 30, 0.08);
  --shadow-md: 0 20px 60px rgba(9, 42, 30, 0.13);
  --shadow-lg: 0 36px 90px rgba(6, 29, 21, 0.22);
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --display: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--green-950);
  background: var(--gold-400);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.section-compact {
  padding: 76px 0;
}

.section-white {
  background: var(--surface);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(201, 162, 39, 0.12), transparent 34%),
    linear-gradient(145deg, var(--green-950), var(--green-800));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: var(--gold-500);
}

.section-dark .eyebrow,
.hero .eyebrow,
.launch-page .eyebrow,
.legal-hero .eyebrow {
  color: var(--gold-400);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.cta-panel h2,
.launch-copy h1,
.legal-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
}

.section-heading p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading.center p {
  margin-inline: auto;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.site-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav.solid {
  position: sticky;
  top: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 61, 46, 0.1);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 30px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.solid .nav-links a {
  color: var(--ink-soft);
}

.nav-links a:hover,
.solid .nav-links a:hover {
  color: var(--gold-500);
}

.nav-actions {
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  cursor: pointer;
}

.solid .nav-toggle {
  border-color: var(--line);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 12px 34px rgba(201, 162, 39, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 38px rgba(201, 162, 39, 0.38);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-dark {
  color: #fff;
  background: var(--green-800);
}

.btn-dark:hover {
  background: var(--green-700);
  box-shadow: var(--shadow-sm);
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-weight: 750;
}

.text-link:hover {
  color: var(--gold-600);
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(232, 192, 90, 0.15), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(95, 175, 122, 0.12), transparent 30%),
    linear-gradient(145deg, var(--green-950), var(--green-800) 60%, var(--green-700));
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 830px;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 70px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.15rem, 6.1vw, 6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--gold-400);
  font-style: normal;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.check {
  color: var(--gold-400);
}

.product-stage {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.product-stage::before {
  position: absolute;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(232, 192, 90, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(232, 192, 90, 0.06);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(340px, 82vw);
  padding: 11px;
  overflow: hidden;
  color: var(--ink);
  background: #09120e;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 44px;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
}

.phone-screen {
  min-height: 640px;
  padding: 21px 18px;
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: 35px;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-800);
  font-family: var(--display);
  font-weight: 700;
}

.phone-brand img {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.avatar-dot {
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--green-800);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 32px;
  text-align: center;
}

.balance-card {
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(232, 192, 90, 0.28), transparent 38%),
    linear-gradient(145deg, var(--green-800), var(--green-600));
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(15, 61, 46, 0.2);
}

.balance-label,
.ledger-meta,
.stat-caption {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.balance-amount {
  margin-top: 3px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.balance-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.balance-stat {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  font-weight: 700;
}

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 2px 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.phone-section-title span {
  color: var(--gold-600);
  font-size: 0.69rem;
}

.ledger-list {
  display: grid;
  gap: 10px;
}

.ledger-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.ledger-icon {
  width: 38px;
  height: 38px;
  color: var(--green-800);
  background: var(--green-50);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 38px;
  text-align: center;
}

.ledger-name {
  font-size: 0.78rem;
  font-weight: 750;
}

.ledger-meta {
  color: var(--muted);
  font-size: 0.63rem;
}

.ledger-value {
  font-size: 0.76rem;
  font-weight: 800;
}

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

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 180px;
  padding: 15px 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  display: block;
  color: var(--green-800);
  font-size: 0.9rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.72rem;
}

.floating-card.receipt {
  top: 105px;
  right: -12px;
}

.floating-card.offline {
  bottom: 104px;
  left: -28px;
}

.proof-strip {
  position: relative;
  z-index: 4;
  margin-top: -35px;
}

.proof-grid {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 25px 26px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--green-800);
  font-size: 1rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.problem-grid,
.feature-grid,
.steps,
.trust-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-card,
.feature-card,
.trust-card,
.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.problem-card {
  padding: 30px;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--green-800);
  background: var(--gold-100);
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 850;
}

.problem-card h3,
.feature-card h3,
.trust-card h3,
.pricing-card h3,
.step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
}

.problem-card p,
.feature-card p,
.trust-card p,
.step p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.feature-grid {
  grid-template-columns: repeat(12, 1fr);
}

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 34px;
  overflow: hidden;
  grid-column: span 4;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card.wide {
  grid-column: span 8;
}

.feature-card.dark {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(232, 192, 90, 0.2), transparent 38%),
    var(--green-800);
  border-color: transparent;
}

.feature-card.dark h3 {
  color: #fff;
}

.feature-card.dark p {
  color: rgba(255, 255, 255, 0.67);
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 52px;
  padding: 7px 11px;
  color: var(--green-700);
  background: var(--green-50);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dark .feature-kicker {
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.08);
}

.feature-visual {
  position: absolute;
  top: 26px;
  right: 26px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--gold-600);
  background: var(--gold-100);
  border-radius: 26px;
  font-size: 1.55rem;
  font-weight: 850;
  transform: rotate(6deg);
}

.dark .feature-visual {
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.08);
}

.steps {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
}

.steps::before {
  position: absolute;
  top: 33px;
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  content: "";
  background: rgba(232, 192, 90, 0.26);
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 26px;
  text-align: center;
}

.step-number {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 25px;
  place-items: center;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border: 8px solid var(--green-900);
  border-radius: 50%;
  font-weight: 850;
}

.step h3 {
  color: #fff;
}

.step p {
  color: rgba(255, 255, 255, 0.62);
}

.pricing-grid {
  max-width: 940px;
  margin-inline: auto;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 38px;
}

.pricing-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(232, 192, 90, 0.22), transparent 38%),
    var(--green-800);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.pricing-card.featured h3 {
  color: #fff;
}

.plan-label {
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 22px 0 4px;
  font-size: 3rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.price small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
}

.featured .price small,
.featured .plan-note {
  color: rgba(255, 255, 255, 0.6);
}

.plan-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.feature-list {
  display: grid;
  gap: 13px;
  padding: 26px 0 0;
  margin: 28px 0 30px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.featured .feature-list {
  border-color: rgba(255, 255, 255, 0.14);
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.featured .feature-list li {
  color: rgba(255, 255, 255, 0.76);
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-card {
  padding: 32px;
}

.trust-card .icon-box {
  margin-bottom: 22px;
}

.faq-list {
  max-width: 820px;
  margin-inline: auto;
}

.faq-list details {
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq-list details + details {
  margin-top: 12px;
}

.faq-list summary {
  padding: 20px 24px;
  font-weight: 750;
  cursor: pointer;
}

.faq-list details p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--ink-soft);
}

.cta-wrap {
  padding: 0 0 108px;
  background: #fff;
}

.cta-panel {
  position: relative;
  display: grid;
  padding: 66px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(232, 192, 90, 0.22), transparent 35%),
    linear-gradient(135deg, var(--green-950), var(--green-700));
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.cta-panel p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer {
  padding: 72px 0 32px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.8fr;
  gap: 60px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
}

.footer-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 54px;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.launch-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(232, 192, 90, 0.17), transparent 32%),
    radial-gradient(circle at 8% 90%, rgba(95, 175, 122, 0.14), transparent 34%),
    linear-gradient(145deg, var(--green-950), var(--green-800));
}

.launch-main {
  display: grid;
  min-height: calc(100vh - 82px);
  align-items: center;
  padding: 132px 0 70px;
}

.launch-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  align-items: center;
}

.launch-copy h1,
.legal-hero h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.launch-copy h1 em {
  color: var(--gold-400);
  font-style: normal;
}

.launch-copy > p {
  max-width: 650px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  margin-bottom: 20px;
  color: var(--gold-400);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 750;
}

.launch-status::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(232, 192, 90, 0.1);
}

.notify-card {
  max-width: 620px;
  padding: 26px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  backdrop-filter: blur(16px);
}

.notify-card label {
  display: block;
  margin-bottom: 11px;
  font-size: 0.87rem;
  font-weight: 750;
}

.notify-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.notify-row input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.notify-row input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.notify-row input:focus {
  border-color: var(--gold-400);
  outline: 0;
}

.form-note,
.form-status {
  margin: 11px 2px 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.form-note a,
.form-status a {
  color: var(--gold-400);
  text-decoration: underline;
}

.launch-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.launch-art {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.launch-art .phone {
  width: 310px;
  transform: rotate(-3deg);
}

.launch-art .phone-screen {
  min-height: 590px;
}

.launch-orbit {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(232, 192, 90, 0.2);
  border-radius: 50%;
}

.launch-orbit::before,
.launch-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.launch-orbit::before {
  inset: 50px;
}

.launch-orbit::after {
  inset: 105px;
}

.launch-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.launch-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.launch-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.launch-footer a:hover {
  color: var(--gold-400);
}

.legal-page {
  background: #f7f9f7;
}

.legal-hero {
  position: relative;
  padding: 142px 0 70px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(232, 192, 90, 0.15), transparent 35%),
    linear-gradient(145deg, var(--green-950), var(--green-800));
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.legal-hero p {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.05rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  gap: 64px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 110px;
}

.legal-toc {
  position: sticky;
  top: 110px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 7px 9px;
  color: var(--ink-soft);
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.legal-toc a:hover,
.legal-toc a.active {
  color: var(--green-800);
  background: var(--green-50);
}

.legal-content {
  min-width: 0;
}

.policy-summary {
  padding: 28px;
  margin-bottom: 36px;
  background: linear-gradient(135deg, var(--gold-100), #fffaf0);
  border: 1px solid rgba(201, 162, 39, 0.34);
  border-radius: 20px;
}

.policy-summary strong {
  color: var(--green-800);
}

.policy-summary p {
  margin: 7px 0 0 !important;
  color: var(--ink) !important;
}

.legal-content section {
  padding-bottom: 44px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 18px;
  color: var(--green-900);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 28px 0 9px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
  margin: 12px 0 18px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(21, 80, 59, 0.3);
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--gold-600);
}

.legal-note,
.legal-warning {
  padding: 20px 22px;
  margin: 22px 0;
  border-radius: 15px;
}

.legal-note {
  background: var(--green-50);
  border: 1px solid var(--green-100);
}

.legal-warning {
  background: #fff7ef;
  border: 1px solid #edd9c5;
}

.legal-note p,
.legal-warning p {
  margin: 0;
  color: var(--ink);
}

.data-table-wrap {
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

.data-table th,
.data-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--green-900);
  background: var(--green-50);
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.legal-contact {
  display: grid;
  padding: 32px;
  color: #fff;
  background: var(--green-800);
  border-radius: 22px;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.legal-contact h3 {
  margin: 0 0 5px;
  color: #fff;
}

.legal-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    padding: 20px;
    color: var(--ink);
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .solid .nav-links a {
    padding: 10px;
    color: var(--ink-soft);
  }

  .nav-actions .btn {
    display: none;
  }

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

  .hero-grid {
    padding-top: 150px;
    text-align: center;
  }

  .hero-copy,
  .hero h1 {
    margin-inline: auto;
  }

  .hero .eyebrow,
  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .product-stage {
    min-height: 650px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-card,
  .feature-card.wide {
    grid-column: span 6;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .launch-copy {
    text-align: center;
  }

  .launch-copy > p,
  .notify-card {
    margin-inline: auto;
  }

  .launch-points {
    justify-content: center;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    display: flex;
    gap: 6px;
    overflow-x: auto;
  }

  .legal-toc strong {
    display: none;
  }

  .legal-toc a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-actions .btn,
  .notify-row .btn {
    width: 100%;
  }

  .product-stage {
    min-height: 600px;
  }

  .product-stage::before,
  .launch-orbit {
    width: 380px;
    height: 380px;
  }

  .floating-card.receipt {
    right: 0;
  }

  .floating-card.offline {
    left: 0;
  }

  .problem-grid,
  .steps,
  .trust-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card.wide {
    grid-column: span 12;
  }

  .steps {
    gap: 42px;
  }

  .steps::before {
    display: none;
  }

  .pricing-card,
  .cta-panel {
    padding: 30px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom,
  .launch-footer .container {
    flex-direction: column;
  }

  .launch-main {
    padding-top: 132px;
  }

  .launch-grid {
    gap: 30px;
  }

  .notify-row {
    grid-template-columns: 1fr;
  }

  .launch-art {
    min-height: 590px;
  }

  .legal-hero {
    padding-top: 132px;
  }

  .legal-layout {
    gap: 36px;
    padding-top: 38px;
  }

  .legal-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 470px) {
  .brand {
    font-size: 1.2rem;
  }

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

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

  .proof-item,
  .proof-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .phone {
    width: 290px;
  }

  .phone-screen {
    min-height: 600px;
  }

  .floating-card {
    min-width: 155px;
    padding: 12px;
  }

  .floating-card.receipt {
    top: 75px;
  }

  .floating-card.offline {
    bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-nav,
  .site-footer,
  .legal-toc,
  .skip-link,
  .legal-contact .btn {
    display: none !important;
  }

  .legal-hero {
    padding: 24px 0;
    color: #000;
    background: #fff;
  }

  .legal-hero p,
  .legal-meta {
    color: #333;
  }

  .legal-layout {
    display: block;
    padding: 20px 0;
  }

  .legal-content section {
    break-inside: avoid;
  }
}
