:root {
  color-scheme: light;
  --bg: #f5f1ea;
  --bg-deep: #ede6db;
  --ink: #161616;
  --muted: #4f4b45;
  --accent: #c48f45;
  --accent-strong: #a8722f;
  --card: #ffffff;
  --border: rgba(22, 22, 22, 0.1);
  --shadow: 0 20px 60px rgba(20, 16, 10, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", "Times New Roman", Times, serif;
}

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

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top, #fbf7f1 0%, var(--bg) 40%, var(--bg-deep) 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

.page {
  background-image: linear-gradient(rgba(22, 22, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 22, 22, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

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

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

.hero {
  padding: 36px 24px 120px;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 6px rgba(196, 143, 69, 0.2);
}

.logo-text {
  font-size: 1.05rem;
}

.nav-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 3.4vw, 3.8rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.support {
  color: var(--muted);
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.primary,
.secondary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(22, 22, 22, 0.3);
}

.secondary {
  background: var(--accent);
  color: #1c140b;
  box-shadow: 0 12px 30px rgba(196, 143, 69, 0.35);
}

.ghost {
  border-color: var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.primary:hover,
.secondary:hover,
.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(22, 22, 22, 0.25);
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.panel.accent {
  background: #1d1a16;
  color: #f7f3ec;
  border-color: rgba(196, 143, 69, 0.3);
}

.panel-header {
  font-weight: 600;
  margin-bottom: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.stat strong {
  font-size: 1.4rem;
  color: var(--ink);
}

.panel.accent .stat strong {
  color: #fff;
}

.bars {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(196, 143, 69, 0.2));
  width: var(--size);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.stat-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-top: 6px;
}

.panel.accent .stat-grid strong {
  color: #fff;
}

.trend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.trend strong {
  color: var(--accent);
}

.section {
  padding: 90px 24px;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: left;
}

.section-header p {
  color: var(--muted);
}

.callout {
  max-width: 720px;
  margin: 0 auto;
  padding: 26px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  font-size: 1.05rem;
}

.callout strong {
  display: block;
  margin-top: 10px;
  font-size: 1.15rem;
}

.grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: 0 16px 40px rgba(22, 22, 22, 0.08);
}

.list {
  max-width: 720px;
  margin: 0 auto 24px;
  display: grid;
  gap: 12px;
}

.list-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 500;
}

.section-footnote {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.steps {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid var(--border);
  min-height: 120px;
  display: grid;
  gap: 10px;
}

.step span {
  font-weight: 600;
  color: var(--accent-strong);
}

.early {
  background: #1d1a16;
  color: #f8f3ec;
}

.early .section-header p {
  color: rgba(248, 243, 236, 0.7);
}

.form-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.form input,
.form select,
.form textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(14, 12, 10, 0.5);
  padding: 10px 12px;
  color: #fff;
  font-family: inherit;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form .primary,
.form .secondary {
  width: 100%;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(248, 243, 236, 0.7);
}

.form-status {
  font-size: 0.9rem;
  min-height: 20px;
}

.hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.footer {
  padding: 40px 24px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  border-top: 1px solid var(--border);
}

.footer p {
  color: var(--muted);
}

.footer-tag {
  text-align: right;
  font-weight: 600;
  color: var(--accent-strong);
}

.hero-copy,
.hero-visual,
.section,
.footer {
  animation: rise 0.8s ease both;
}

.hero-visual {
  animation-delay: 0.15s;
}

.section:nth-of-type(2) {
  animation-delay: 0.1s;
}

.section:nth-of-type(3) {
  animation-delay: 0.2s;
}

.section:nth-of-type(4) {
  animation-delay: 0.25s;
}

.section:nth-of-type(5) {
  animation-delay: 0.3s;
}

.section:nth-of-type(6) {
  animation-delay: 0.35s;
}

.section:nth-of-type(7) {
  animation-delay: 0.4s;
}

.section:nth-of-type(8) {
  animation-delay: 0.45s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid.four,
  .grid.three,
  .steps {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-tag {
    text-align: left;
  }
}
