:root {
  --cream: #fbf7f2;
  --paper: #fffdf9;
  --text: #172235;
  --muted: #667085;
  --line: #eadfd4;
  --coral: #ff7a59;
  --teal: #1aa996;
  --indigo: #536bdc;
  --soft-teal: #e9f8f5;
  --soft-coral: #fff0eb;
  --shadow: 0 24px 70px rgba(23, 34, 53, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 16% 8%, rgba(26, 169, 150, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 3%, rgba(255, 122, 89, 0.16), transparent 30rem),
    var(--cream);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
.topbar {
  align-items: center;
  background: rgba(251, 247, 242, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234, 223, 212, 0.85);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { align-items: center; display: flex; gap: 12px; font-size: 22px; font-weight: 950; }
.brand img { border-radius: 10px; height: 42px; object-fit: contain; width: 42px; }
.nav { align-items: center; color: var(--muted); display: flex; flex-wrap: wrap; gap: 18px; font-weight: 850; }
.button {
  align-items: center;
  border-radius: 14px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}
.primary { background: var(--coral); color: #fff; }
.secondary { background: #fff; border: 1px solid var(--line); color: var(--text); }
.hero, .section { padding: clamp(48px, 6vw, 82px) clamp(18px, 5vw, 72px); }
.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}
.eyebrow {
  background: var(--soft-teal);
  border-radius: 999px;
  color: #137e70;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 18px;
  padding: 9px 13px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(46px, 7vw, 88px); letter-spacing: 0; line-height: 0.9; margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4.8vw, 58px); letter-spacing: 0; line-height: 0.98; margin-bottom: 16px; }
h3 { font-size: 22px; margin-bottom: 10px; }
p, li { color: var(--muted); font-size: 18px; line-height: 1.6; }
.lede { font-size: clamp(19px, 2vw, 24px); max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card img { aspect-ratio: 16 / 11; display: block; object-fit: cover; width: 100%; }
.stat-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 18px;
}
.stat {
  background: rgba(251, 247, 242, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.stat strong { display: block; font-size: 26px; }
.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(23, 34, 53, 0.06);
  padding: 24px;
}
.wide {
  background: linear-gradient(135deg, var(--text), #247f75);
  border-radius: 28px;
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
}
.wide p, .wide li { color: rgba(255, 255, 255, 0.82); }
.wide img { border-radius: 20px; height: 100%; max-height: 340px; object-fit: cover; width: 100%; }
.link-list { display: grid; gap: 12px; margin-top: 18px; }
.link-list a { background: #fff; border: 1px solid var(--line); border-radius: 14px; color: var(--text); font-weight: 900; padding: 16px 18px; }
.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 26px clamp(18px, 5vw, 72px);
}
@media (max-width: 900px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .hero-grid, .wide, .grid, .stat-strip { grid-template-columns: 1fr; }
  h1 { font-size: 44px; }
}
