:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17352f;
  background: #f4f1e9;
  --ink: #17352f;
  --green: #1d7565;
  --paper: #fffdfa;
  --muted: #697b75;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
a { color: inherit; }
.landing-header {
  width: min(1200px, calc(100% - 64px)); height: 82px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { font: 800 18px Georgia, serif; letter-spacing: .09em; text-decoration: none; }
.brand span { color: #51a995; }
.landing-header nav { display: flex; align-items: center; gap: 25px; }
.landing-header nav a { color: #61736d; text-decoration: none; font-size: 12px; font-weight: 700; }
.landing-header nav .nav-cta {
  padding: 11px 15px; border-radius: 10px; color: white; background: var(--ink);
}
.hero {
  width: min(1200px, calc(100% - 64px)); min-height: 660px; margin: 0 auto;
  display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(45px, 8vw, 110px);
  align-items: center;
}
.eyebrow { color: var(--green); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 {
  margin: 16px 0 24px; font: 500 clamp(52px, 6.3vw, 88px)/.91 Georgia, serif;
  letter-spacing: -.052em;
}
.hero h1 em { color: var(--green); font-weight: inherit; }
.hero-copy > p { max-width: 610px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.hero-copy > .promise-intro { margin-bottom: 7px; color: var(--ink); font-weight: 750; }
.promise-list {
  margin: 0; padding: 0; display: grid; gap: 7px; color: var(--muted);
  list-style: none; font-size: 15px;
}
.promise-list li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 900; }
.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 22px; }
.primary-button {
  padding: 15px 18px; border-radius: 12px; display: inline-flex; justify-content: center; gap: 22px;
  color: white; background: var(--green); text-decoration: none; font-size: 12px; font-weight: 800;
  box-shadow: 0 10px 26px rgba(29,117,101,.18);
}
.secondary-link { color: var(--ink); font-size: 11px; font-weight: 750; }
.trust-list { margin: 24px 0 0; padding: 0; display: flex; gap: 23px; color: #74837e; list-style: none; font-size: 10px; }
.trust-list li::before { content: "✓"; margin-right: 5px; color: var(--green); }
.hero-demo {
  position: relative; padding: 31px; border-radius: 26px; color: white; background: var(--ink);
  box-shadow: 0 30px 70px rgba(23,53,47,.2); transform: rotate(1deg);
}
.hero-demo::before {
  content: ""; position: absolute; z-index: -1; inset: 16px -16px -16px 16px;
  border: 1px solid rgba(23,53,47,.18); border-radius: 26px;
}
.demo-top { margin-bottom: 42px; display: grid; grid-template-columns: auto 1fr; gap: 2px 9px; }
.demo-top small { color: #91aaa3; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.demo-top b { grid-column: 2; font-size: 11px; }
.demo-dot { grid-row: 1 / 3; width: 29px; height: 29px; border-radius: 50%; background: #70c3ae; }
.demo-label, .demo-action span { color: #8ed1c0; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-demo h2 { margin: 10px 0 28px; font: 500 34px/1.06 Georgia, serif; }
.demo-action { padding: 20px; border-radius: 15px; display: grid; gap: 7px; background: rgba(255,255,255,.08); }
.demo-action strong { font-size: 14px; line-height: 1.4; }
.demo-action small { color: #9ab0aa; font-size: 10px; }
.demo-checkin { margin-top: 17px; padding: 14px 17px; border-left: 3px solid #70c3ae; background: rgba(112,195,174,.08); }
.demo-checkin span { color: #8ed1c0; font-size: 10px; font-weight: 800; }
.demo-checkin p { margin: 5px 0 0; color: #bdcdc8; font-size: 10px; }
.domains-section, .coaches-preview { padding: 100px max(32px, calc((100% - 1200px)/2)); }
.section-heading h2 { margin: 12px 0 20px; font: 500 clamp(38px, 4vw, 57px)/1 Georgia, serif; letter-spacing: -.035em; }
.section-heading > p { max-width: 560px; color: var(--muted); line-height: 1.65; }
.domains-section {
  padding-top: 60px; padding-bottom: 60px;
  display: grid; grid-template-columns: .72fr 1.28fr; align-items: center;
  gap: 60px; background: var(--paper);
}
.domains-section .section-heading h2 { font-size: clamp(34px, 3.5vw, 48px); }
.domains-section .section-heading > p { margin-bottom: 0; }
.domains-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.domains-grid a {
  min-height: 66px; padding: 11px 14px; border: 1px solid #e0e7e2; border-radius: 13px;
  display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 11px;
  color: inherit; background: white; text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.domains-grid a:hover, .domains-grid a:focus-visible {
  border-color: var(--green); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(23,53,47,.09); outline: none;
}
.domains-grid i {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: #edf5f1; font-size: 19px; font-style: normal;
}
.domains-grid span {
  display: grid; gap: 3px; color: inherit; text-transform: none; letter-spacing: 0;
}
.domains-grid strong { font: 500 17px Georgia, serif; }
.domains-grid small { color: var(--muted); font-size: 9px; font-weight: 750; }
.domains-grid b { color: var(--green); font-size: 15px; }
.coaches-preview { background: #ece9e1; }
.landing-coach-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.landing-coach-grid a {
  overflow: hidden; border-radius: 20px; display: grid; grid-template-columns: 180px 1fr;
  color: inherit; background: var(--paper); text-decoration: none;
  box-shadow: 0 10px 35px rgba(23,53,47,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.landing-coach-grid a:hover, .landing-coach-grid a:focus-visible {
  transform: translateY(-3px); box-shadow: 0 16px 40px rgba(23,53,47,.12); outline: none;
}
.landing-coach-grid img { width: 100%; height: 230px; object-fit: cover; }
.landing-coach-grid a > div { padding: 28px; align-self: center; }
.landing-coach-grid span { color: var(--accent); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.landing-coach-grid span i { margin-right: 4px; font-size: 14px; font-style: normal; }
.landing-coach-grid h3 { margin: 7px 0 13px; font: 500 26px Georgia, serif; }
.landing-coach-grid p { color: var(--muted); font-size: 11px; line-height: 1.55; }
.final-cta { padding: 110px 24px; color: white; background: var(--ink); text-align: center; }
.final-cta h2 { max-width: 760px; margin: 14px auto; font: 500 clamp(40px, 5vw, 66px)/.98 Georgia, serif; }
.final-cta p { max-width: 590px; margin: 20px auto 30px; color: #9fb0ab; line-height: 1.65; }
footer {
  min-height: 100px; padding: 0 max(32px, calc((100% - 1200px)/2));
  display: flex; align-items: center; gap: 30px; background: #102722; color: white;
}
footer p { margin-right: auto; color: #789088; font-size: 10px; }
footer > a:last-child { color: #a9b9b4; font-size: 10px; }
@media (max-width: 760px) {
  .landing-header { width: calc(100% - 30px); height: 65px; }
  .landing-header nav a:not(.nav-cta) { display: none; }
  .hero { width: calc(100% - 30px); padding: 48px 0 75px; grid-template-columns: 1fr; gap: 55px; }
  .hero h1 { font-size: 52px; }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .primary-button { justify-content: center; }
  .secondary-link { text-align: center; }
  .trust-list { gap: 10px; flex-wrap: wrap; }
  .hero-demo { padding: 24px; transform: none; }
  .hero-demo h2 { font-size: 29px; }
  .coaches-preview { padding: 70px 20px; }
  .domains-section { padding: 45px 20px; grid-template-columns: 1fr; gap: 26px; }
  .domains-grid { grid-template-columns: repeat(2, 1fr); }
  .domains-grid a {
    min-height: 58px; padding: 9px 10px; grid-template-columns: 34px 1fr; gap: 8px;
  }
  .domains-grid i { width: 34px; height: 34px; font-size: 17px; }
  .domains-grid strong { font-size: 15px; }
  .domains-grid small, .domains-grid b { display: none; }
  .landing-coach-grid { grid-template-columns: 1fr; }
  .landing-coach-grid a { grid-template-columns: 110px 1fr; }
  .landing-coach-grid img { height: 190px; }
  .landing-coach-grid a > div { padding: 18px; }
  .landing-coach-grid h3 { font-size: 21px; }
  footer { padding: 25px 20px; align-items: flex-start; flex-direction: column; gap: 8px; }
  footer p { margin: 0; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
