:root {
  --bg: #0b0f0d;
  --bg-alt: #111713;
  --surface: #1a2320;
  --surface-2: #243330;
  --outline: #3d4a45;
  --text: #e5ebe8;
  --text-soft: #b8c5bf;
  --accent: #b4d8a5;
  --accent-soft: #a3bcb0;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(180, 216, 165, 0.18), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(163, 188, 176, 0.12), transparent 25%),
    linear-gradient(135deg, var(--bg), var(--bg-alt) 58%, #0d1210);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.eyebrow,
.section-eyebrow {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
}

.hero {
  padding: 12px 0 30px;
}

.hero-grid,
.closing-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1,
.feature-section h2,
.callout-panel h3,
.info-panel h3 {
  margin: 0;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.hero-copy p,
.section-copy,
.callout-panel p,
.site-footer p,
.info-panel li {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 1.05rem;
}

.cta-row,
.chip-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row {
  margin: 28px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--outline);
  font-weight: 700;
}

.button-primary {
  background: var(--accent);
  color: #0b0f0d;
  border-color: transparent;
}

.button-secondary {
  background: rgba(26, 35, 32, 0.8);
}

.chip-row span,
.badge,
.footer-banner,
.stat-card {
  border: 1px solid var(--outline);
  background: rgba(26, 35, 32, 0.82);
}

.chip-row span,
.badge,
.footer-banner {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  font-weight: 600;
}

.hero-panel {
  position: relative;
  min-height: 620px;
}

.mock-card,
.footer-card,
.stat-card,
.feature-card,
.info-panel,
.callout-panel {
  border-radius: 24px;
  border: 1px solid var(--outline);
  background: rgba(26, 35, 32, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.mock-card {
  position: absolute;
  width: min(360px, 82%);
  padding: 18px;
}

.mock-card.offset {
  top: 160px;
  right: 10px;
}

.mock-card-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text);
}

.mock-card ul,
.info-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.mock-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--text);
}

.mock-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.footer-card {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  padding: 18px;
}

.footer-banner {
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 36px;
}

.stat-card {
  padding: 16px 18px;
}

.stat-card strong {
  display: block;
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 6px;
}

.feature-section {
  padding: 4px 0 30px;
}

.feature-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 14ch;
  margin-top: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.feature-card,
.info-panel,
.callout-panel {
  padding: 22px;
}

.feature-card h3,
.info-panel h3,
.callout-panel h3 {
  margin-bottom: 10px;
}

.feature-card p,
.callout-panel p,
.info-panel li {
  margin: 0;
}

.info-panel li + li {
  margin-top: 14px;
}

.info-panel strong {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
}

.callout-panel {
  background: linear-gradient(135deg, rgba(42, 56, 53, 0.96), rgba(36, 51, 48, 0.96));
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid var(--outline);
  border-radius: 22px;
  background: rgba(26, 35, 32, 0.74);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.site-footer p {
  margin: 0;
}

.footer-links a {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 920px) {
  .hero-grid,
  .closing-grid,
  .feature-grid,
  .stats,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-panel {
    min-height: 560px;
  }

  .mock-card {
    width: 92%;
  }

  .mock-card.offset {
    right: 0;
  }

  .footer-card {
    left: 20px;
    right: 20px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 16px;
  }

  .hero-panel {
    min-height: 500px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}