:root {
  --ink: #12231f;
  --green: #173d37;
  --green-2: #24584f;
  --cream: #f5f0e7;
  --paper: #fffdf8;
  --rose: #a33355;
  --line: rgba(18, 35, 31, .16);
  --muted: #5b6b65;
  --shadow: 0 22px 60px rgba(18, 35, 31, .09);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  background: #fff;
  color: var(--green);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.masthead,
main,
.footer {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}
.masthead {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 44% 56%;
  background: var(--green);
  color: #fff;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  transform: rotate(-4deg);
}
.brand > span:last-child { display: grid; line-height: 1.1; }
.brand strong { font-size: 17px; letter-spacing: .01em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.masthead nav,
.footer nav { display: flex; align-items: center; gap: 28px; }
.masthead nav a,
.footer nav a { text-decoration: none; font-size: 14px; font-weight: 700; }
.masthead nav a:hover,
.footer nav a:hover,
.card-actions a:hover,
.text-link:hover { color: var(--rose); }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  gap: clamp(44px, 7vw, 104px);
  padding: clamp(72px, 9vw, 132px) 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -130px;
  border: 1px solid rgba(163, 51, 85, .25);
  border-radius: 44% 56% 62% 38%;
  transform: rotate(18deg);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 18px;
  color: #f1c7d5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--rose); }
h1,
h2,
h3 { overflow-wrap: normal; word-break: normal; }
p { overflow-wrap: break-word; }
h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.04;
}
h1 { max-width: 820px; font-size: clamp(50px, 6.6vw, 94px); }
h2 { font-size: clamp(38px, 4.5vw, 64px); }
h3 { margin: 0; font-size: 25px; line-height: 1.18; }
.lede { max-width: 790px; margin: 28px 0 0; color: #40524c; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.hero-actions,
.card-actions,
.embed-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero-actions { margin-top: 36px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
.button--primary,
.button--dark { background: var(--green); color: #fff; }
.button--ghost { background: rgba(255, 255, 255, .28); }
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(18, 35, 31, .12); }
.hero-panel {
  align-self: center;
  position: relative;
  padding: 42px;
  background: var(--green);
  color: #fff;
  border-radius: 30px 30px 90px 30px;
  box-shadow: var(--shadow);
}
.orb {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  margin: -82px 0 32px auto;
  background: var(--rose);
  border: 9px solid var(--cream);
  border-radius: 50%;
}
.orb span { font-family: var(--serif); font-size: 44px; line-height: 1; }
.panel-kicker { margin: 0 0 10px; color: #bdd5cd; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-panel h2 { font-size: clamp(32px, 3vw, 40px); }
.hero-panel ul { margin: 28px 0 0; padding: 0; list-style: none; }
.hero-panel li { padding: 11px 0; border-top: 1px solid rgba(255,255,255,.16); }
.hero-panel li::before { content: "✓"; margin-right: 10px; color: #f4b4c8; font-weight: 900; }
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: solid var(--line);
  border-width: 1px 0;
}
.facts div { display: grid; gap: 2px; padding: 34px 38px; }
.facts div + div { border-left: 1px solid var(--line); }
.facts strong { color: var(--rose); font-family: var(--serif); font-size: clamp(30px, 3.2vw, 46px); font-weight: 500; line-height: 1; }
.facts span { color: var(--muted); font-size: 14px; font-weight: 700; }
.section { padding: clamp(80px, 9vw, 130px) 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}
.section-head > p { margin: 0 0 6px; color: var(--muted); font-size: 18px; }
.tool-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.tool-card {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(18,35,31,.035);
}
.tool-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .13;
}
.tool-card--rose { color: #7d2944; }
.tool-card--green { color: #28564b; }
.tool-card--amber { color: #81572d; }
.tool-card--blue { color: #335971; }
.card-topline { display: flex; justify-content: space-between; gap: 16px; color: currentColor; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-symbol {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 48px 0 28px;
  border: 1px solid currentColor;
  border-radius: 22px;
  font-family: var(--serif);
  font-size: 38px;
}
.card-symbol--tooth { font-size: 25px; border-radius: 42% 42% 55% 55%; }
.tool-card h3 { max-width: 78%; color: var(--ink); font-family: var(--serif); font-size: clamp(29px, 3.2vw, 42px); font-weight: 500; letter-spacing: -.025em; }
.tool-card p { margin: 18px 0 0; color: #495b55; }
.tool-card ul { margin: 24px 0 34px; padding-left: 20px; color: #495b55; font-size: 15px; }
.card-release {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: -8px 0 24px;
  padding: 14px 16px;
  background: #eef4f2;
  border: 1px solid rgba(40, 86, 75, .2);
  border-radius: 16px;
  color: var(--ink);
}
.card-release > span { display: grid; gap: 2px; min-width: 0; }
.card-release strong { font-size: 14px; line-height: 1.3; }
.card-release small { color: var(--muted); font-size: 12px; line-height: 1.35; }
.card-release a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  background: var(--green);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}
.card-release a:hover { background: var(--rose); }
.card-actions { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.card-actions a { color: var(--ink); font-size: 14px; font-weight: 800; text-underline-offset: 4px; }
.card-actions a:first-child { margin-right: auto; text-decoration: none; }
.principles {
  margin-inline: calc((100vw - min(1280px, calc(100vw - 64px))) / -2);
  padding: clamp(80px, 9vw, 130px) max(32px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
  background: var(--green);
  color: #fff;
}
.principles-copy p:last-child { max-width: 580px; color: #c8d9d3; font-size: 19px; }
.principle-list { border-top: 1px solid rgba(255,255,255,.2); }
.principle-list article { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.principle-list article > span { color: #efacc2; font-family: var(--serif); font-size: 25px; }
.principle-list h3 { font-size: 19px; }
.principle-list p { margin: 5px 0 0; color: #c8d9d3; font-size: 15px; }
.embed {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding: clamp(80px, 9vw, 130px) 0;
}
.embed p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 18px; }
.embed-actions { flex-direction: column; align-items: stretch; }
.text-link { color: var(--green); font-size: 14px; font-weight: 800; text-align: center; text-underline-offset: 5px; }
.footer {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
}
.footer > div { display: grid; }
.footer strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.footer span { color: var(--muted); font-size: 13px; }

@media (max-width: 980px) {
  .masthead,
  main,
  .footer { width: min(100% - 40px, 1280px); }
  .hero { grid-template-columns: 1fr; padding-top: 76px; }
  .hero-panel { margin-top: 42px; }
  .hero-panel h2 { max-width: 620px; }
  .section-head,
  .principles,
  .embed { grid-template-columns: 1fr; }
  .section-head { gap: 24px; }
  .principles { margin-inline: -20px; padding-inline: 20px; }
  .embed-actions { max-width: 520px; }
  .card-release { grid-template-columns: 1fr; margin-top: -4px; }
  .card-release a { justify-self: start; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .masthead { min-height: 78px; }
  .masthead nav { display: none; }
  .hero { padding: 58px 0 58px; gap: 28px; }
  .hero::before { width: 250px; height: 250px; right: -120px; top: -65px; }
  h1 { font-size: clamp(44px, 13vw, 63px); }
  .lede { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-panel { padding: 34px 26px; border-radius: 24px 24px 60px 24px; }
  .orb { width: 82px; height: 82px; margin-top: -68px; border-width: 7px; }
  .orb span { font-size: 36px; }
  .facts { grid-template-columns: 1fr; }
  .facts div { padding: 24px 4px; }
  .facts div + div { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 34px; }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: 0; padding: 28px 24px; }
  .card-symbol { margin: 36px 0 24px; }
  .tool-card h3 { max-width: 90%; }
  .card-actions { flex-direction: column; align-items: flex-start; }
  .principles { padding-block: 76px; gap: 48px; }
  .embed { padding-block: 76px; }
  .footer { min-height: 220px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .footer nav { flex-wrap: wrap; gap: 14px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
