:root {
  color-scheme: light;
  --bg: #eef2f5;
  --bg-2: #e4eced;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.88);
  --text: #10212c;
  --muted: #556471;
  --accent: #2f7f77;
  --accent-2: #d8a64d;
  --line: rgba(16, 33, 44, 0.10);
  --shadow: 0 20px 60px rgba(16, 33, 44, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 920px;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.78), transparent 38%),
    radial-gradient(circle at 20% 10%, rgba(47, 127, 119, 0.10), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(216, 166, 77, 0.12), transparent 20%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
.shell { max-width: var(--max); margin: 0 auto; padding: 28px 20px 72px; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.62));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -38% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 127, 119, 0.14), transparent 68%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 33, 44, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), #55a6a0);
  box-shadow: 0 0 0 6px rgba(47, 127, 119, 0.10);
}
h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.lede { max-width: 58ch; margin-top: 16px; color: var(--muted); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 650;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, background 120ms ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  color: white;
  background: linear-gradient(180deg, #2f7f77, #256a63);
  box-shadow: 0 14px 28px rgba(47, 127, 119, 0.22);
}
.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(16, 33, 44, 0.10);
}
.grid { display: grid; gap: 16px; margin-top: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  padding: 22px;
  background: var(--card-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 32px rgba(16, 33, 44, 0.06);
}
.card.soft { background: rgba(255, 255, 255, 0.56); }
.section { margin-top: 20px; }
.section-title {
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stack { display: grid; gap: 12px; }
.list { display: grid; gap: 12px; }
.item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(16, 33, 44, 0.08);
}
.item strong { display: block; margin-bottom: 4px; }
.muted { color: var(--muted); }
.small { font-size: 0.95rem; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 20px;
  align-items: center;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 184px;
  height: 184px;
  margin-left: auto;
  border-radius: 42px;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.62) 62%, rgba(255, 255, 255, 0.30));
  border: 1px solid rgba(16, 33, 44, 0.08);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.52), 0 16px 34px rgba(16, 33, 44, 0.08);
}
.brand-mark img,
.brand-mark svg {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(16, 33, 44, 0.12));
}
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(16, 33, 44, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}
.footer { margin-top: 24px; padding-top: 18px; color: var(--muted); font-size: 0.92rem; }
.footnote { margin-top: 14px; color: var(--muted); font-size: 0.9rem; }
@media (max-width: 860px) {
  .split, .grid.two, .grid.three { grid-template-columns: 1fr; }
  .hero { padding: 24px; }
  .brand-mark { width: 156px; height: 156px; margin: 0; }
}
@media (max-width: 560px) {
  .shell { padding-left: 14px; padding-right: 14px; }
  .hero { padding: 22px 18px; border-radius: 28px; }
  h1 { font-size: clamp(2.1rem, 10vw, 3rem); }
}
