:root {
  --bg: #fff8f1;
  --surface: rgba(255, 252, 247, 0.94);
  --surface-strong: #ffffff;
  --ink: #213b38;
  --muted: #60706c;
  --line: #e9ddd5;
  --leaf: #2f6f6a;
  --sage: #eaf4ee;
  --blush: #ffeef4;
  --peach: #f7dbc7;
  --gold: #f4b75e;
  --shadow: 0 18px 50px rgba(33, 59, 56, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 183, 94, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(47, 111, 106, 0.10), transparent 26%),
    linear-gradient(180deg, #fffaf5 0%, var(--bg) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  background: var(--surface-strong);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.skip-link:focus { left: 12px; }

.site-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-mark img {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.nav a:hover,
.button:hover,
.feature-card:hover,
.resource-card:hover,
.disabled-card:hover {
  transform: translateY(-1px);
}

.nav a[aria-current="page"] {
  background: rgba(47, 111, 106, 0.10);
  color: var(--leaf);
}

.nav .cta {
  background: var(--leaf);
  color: white;
  box-shadow: var(--shadow);
}

.hero,
.section,
.content-grid {
  margin-top: 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 34px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--leaf);
  margin: 0 0 10px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  max-width: 12ch;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  border: 1px solid transparent;
  min-height: 46px;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button.primary {
  background: var(--leaf);
  color: white;
  box-shadow: var(--shadow);
}

.button.secondary,
.button.ghost {
  background: rgba(255,255,255,0.72);
  border-color: var(--line);
  color: var(--ink);
}

.hero-visual,
.card,
.panel,
.feature-card,
.resource-card,
.disabled-card {
  background: var(--surface);
  border: 1px solid rgba(233, 221, 213, 0.95);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-visual {
  min-height: 420px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(0px);
}

.hero-visual::before {
  width: 210px;
  height: 210px;
  background: rgba(247, 219, 199, 0.75);
  top: -50px;
  right: -40px;
}

.hero-visual::after {
  width: 160px;
  height: 160px;
  background: rgba(234, 244, 238, 0.95);
  bottom: -34px;
  left: -20px;
}

.visual-card {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.52)),
    linear-gradient(180deg, #fffaf6, #fff);
  border: 1px solid rgba(255,255,255,0.72);
  padding: 20px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.visual-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(233, 221, 213, 0.8);
}

.visual-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.45;
}

.visual-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
}

.visual-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.visual-mini-grid div {
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(233, 221, 213, 0.85);
}

.visual-mini-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.visual-mini-grid strong {
  font-size: 0.95rem;
}

.visual-blob {
  border-radius: 999px;
  filter: drop-shadow(0 14px 28px rgba(33, 59, 56, 0.08));
}

.blob-one { width: 100px; height: 100px; background: rgba(244, 183, 94, 0.44); }
.blob-two { width: 148px; height: 148px; background: rgba(47, 111, 106, 0.16); margin-left: auto; }
.blob-three { width: 84px; height: 84px; background: rgba(232, 141, 170, 0.22); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-copy {
  color: var(--muted);
  line-height: 1.7;
  max-width: 68ch;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 16px;
}

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

.panel,
.feature-card,
.resource-card,
.disabled-card {
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card {
  min-height: 190px;
}

.feature-card .icon,
.resource-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
}

.story-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.62));
}

.callout {
  border-left: 4px solid var(--gold);
}

.resource-card,
.disabled-card {
  display: grid;
  gap: 14px;
}

.resource-card a,
.disabled-card .disabled-button {
  justify-self: start;
}

.disabled-card {
  opacity: .9;
}

.disabled-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px dashed #d7c6bb;
  color: var(--muted);
  padding: 12px 16px;
  font-weight: 800;
  background: rgba(255,255,255,.58);
}

.section {
  padding: 14px 0;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
}

.footer {
  margin-top: 48px;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(233, 221, 213, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

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

.fine-print {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

.small-note {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.page-heading {
  max-width: 16ch;
}

.long-copy {
  max-width: 75ch;
  line-height: 1.8;
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.legal-meta {
  font-size: .92rem;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 12px;
}

@media (max-width: 940px) {
  .hero,
  .grid-2,
  .grid-3,
  .footer-grid,
  .section-split {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 1160px);
  }

  .hero-visual {
    min-height: 300px;
  }

  .visual-mini-grid {
    grid-template-columns: 1fr;
  }
}
