:root {
  color-scheme: light;
  --bg: #faf7f2;
  --bg-2: #f3eee6;
  --panel: rgba(255, 253, 248, 0.92);
  --text: #12120f;
  --muted: #62584f;
  --line: rgba(12, 79, 72, 0.14);
  --primary: #0c4f48;
  --accent: #17807c;
  --mint: #00d6be;
  --shadow: 0 20px 50px rgba(12, 79, 72, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 214, 190, 0.18), transparent 24%),
    radial-gradient(circle at 88% 0%, rgba(23, 128, 124, 0.14), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

a {
  color: inherit;
}

.page {
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.28;
  pointer-events: none;
}

.page::before {
  top: -5rem;
  right: -4rem;
  background: rgba(0, 214, 190, 0.5);
}

.page::after {
  bottom: 10rem;
  left: -7rem;
  background: rgba(23, 128, 124, 0.35);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--primary), #114d46);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  display: block;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.brand-name span {
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: clamp(24px, 4vw, 44px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.lede {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.cta.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 16px 34px rgba(12, 79, 72, 0.18);
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--primary);
  border-color: rgba(12, 79, 72, 0.12);
}

.feature-shell {
  display: grid;
  gap: 14px;
}

.feature-hero {
  background: linear-gradient(180deg, rgba(12, 79, 72, 0.98), rgba(12, 79, 72, 0.88));
  color: #fff;
  border-radius: 30px;
  padding: clamp(22px, 4vw, 38px);
  min-height: 100%;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-hero::before {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 214, 190, 0.55) 0%, rgba(0, 214, 190, 0) 68%);
}

.feature-hero h2 {
  margin: 0 0 10px;
  font-size: 1.65rem;
}

.feature-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 79, 72, 0.12);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(12, 79, 72, 0.05);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  color: var(--primary);
}

.feature-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.section {
  margin-top: 24px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(12, 79, 72, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--primary);
}

.section p.section-lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(23, 128, 124, 0.12);
  border: 1px solid rgba(23, 128, 124, 0.18);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.stat {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 248, 247, 0.9));
  border: 1px solid rgba(12, 79, 72, 0.12);
  padding: 16px;
}

.stat strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.stat span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  margin-top: 24px;
  padding: 24px 4px 0;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 960px) {
  .topbar,
  .hero {
    grid-template-columns: 1fr;
    display: grid;
  }

  .feature-grid,
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 24px, 1180px);
    padding-top: 20px;
  }

  .hero-card,
  .feature-hero,
  .section {
    border-radius: 22px;
  }
}
