:root {
  --brand: #37899e;
  --brand-dark: #236678;
  --brand-soft: #e8f3f5;
  --ink: #17282d;
  --muted: #5f6f73;
  --cream: #f8f5ef;
  --white: #ffffff;
  --gold: #d7aa5b;
  --border: #dce5e7;
  --shadow: 0 18px 50px rgba(23, 40, 45, .11);
  --radius: 24px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}
img { display: block; max-width: 100%; }
a { color: var(--brand-dark); }
a:hover { color: var(--brand); }
h1, h2, h3 { margin: 0 0 .65em; line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.35rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.25em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; padding: .7em 1em; background: var(--ink); color: white; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,229,231,.9);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 750; letter-spacing: -.04em; font-size: 1.35rem; }
.logo span { color: var(--brand); }
.logo img { flex: 0 0 auto; width: 38px; height: 38px; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .94rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--brand-dark); }
.menu-toggle { display: none; border: 0; background: transparent; font: inherit; font-weight: 700; color: var(--ink); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: .75em 1.55em;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: white !important;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--brand-dark); border-color: var(--brand-dark); box-shadow: 0 10px 25px rgba(55,137,158,.25); }
.button.alt { background: transparent; color: var(--ink) !important; border-color: rgba(23,40,45,.34); }
.button.alt:hover { background: var(--white); border-color: var(--ink); }
.button.small { min-height: 42px; padding: .55em 1.15em; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(118deg, var(--brand-dark), var(--brand) 62%, #76b3c1);
  color: white;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.24), transparent 29%), linear-gradient(90deg, rgba(13,40,47,.2), transparent); }
.hero.has-photo {
  background:
    linear-gradient(90deg, rgba(12, 37, 44, .88) 0%, rgba(20, 65, 76, .72) 42%, rgba(20, 65, 76, .12) 70%),
    url("../../images/hero-mature-woman.png") center center / cover no-repeat;
}
.hero.has-photo::before { background: linear-gradient(0deg, rgba(8, 26, 31, .12), rgba(8, 26, 31, .12)); }
.hero.has-photo .hero-grid { grid-template-columns: minmax(0, 720px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); align-items: center; gap: 72px; padding-block: 84px; }
.hero-copy { max-width: 720px; }
.eyebrow { margin-bottom: 1em; font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero p { max-width: 670px; color: rgba(255,255,255,.9); font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero .button { background: white; border-color: white; color: var(--brand-dark) !important; }
.hero .button.alt { background: transparent; color: white !important; border-color: rgba(255,255,255,.62); }
.hero-art { position: relative; aspect-ratio: 4 / 5; max-height: 550px; min-height: 420px; border-radius: 220px 220px 28px 28px; border: 1px solid rgba(255,255,255,.4); background: linear-gradient(150deg, rgba(255,255,255,.38), rgba(255,255,255,.08)); box-shadow: 0 30px 70px rgba(7,33,40,.25); overflow: hidden; }
.hero-art::before { content: ""; position: absolute; width: 42%; aspect-ratio: 1; border-radius: 50%; left: 29%; top: 17%; background: rgba(255,255,255,.78); }
.hero-art::after { content: ""; position: absolute; width: 86%; height: 56%; border-radius: 50% 50% 0 0; left: 7%; bottom: -3%; background: rgba(255,255,255,.76); }
.image-note { position: absolute; z-index: 3; left: 50%; bottom: 28px; transform: translateX(-50%); width: max-content; max-width: 88%; padding: .5em .85em; border-radius: 999px; background: rgba(23,40,45,.72); color: white; font-size: .75rem; }

.trust-strip { background: var(--cream); border-bottom: 1px solid #ebe6dc; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 30px; text-align: center; border-right: 1px solid #e2ded6; }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 12px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); font-weight: 900; }
.trust-item strong { display: block; margin-bottom: 5px; }
.trust-item p { margin: 0; color: var(--muted); font-size: .92rem; }

.section { padding-block: 100px; }
.section.soft { background: var(--brand-soft); }
.section.cream { background: var(--cream); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 76px; align-items: center; }
.who-layout { display: grid; gap: 52px; }
.who-copy { max-width: 900px; margin-inline: auto; text-align: center; }
.who-copy .check-list { display: inline-block; max-width: 760px; text-align: left; }
.member-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.stat-card { position: relative; min-height: 180px; padding: 30px; overflow: hidden; border: 1px solid var(--border); border-top: 4px solid var(--brand); border-radius: 18px; background: var(--white); box-shadow: 0 12px 30px rgba(23,40,45,.08); }
.stat-card:nth-child(2) { border-top-color: #62bca7; }
.stat-card:nth-child(3) { border-top-color: #d7aa5b; }
.stat-card:nth-child(4) { border-top-color: #7d75c7; }
.stat-icon { display: grid; place-items: center; width: 43px; height: 43px; margin-bottom: 16px; border-radius: 13px; background: var(--brand-soft); color: var(--brand-dark); font-size: 1.45rem; font-weight: 800; }
.stat-card p { margin: 0 0 12px; color: var(--muted); font-weight: 700; line-height: 1.3; }
.stat-card strong { display: block; color: var(--ink); font-size: clamp(1.75rem, 3vw, 2.6rem); line-height: 1.1; }
.story-art { position: relative; min-height: 520px; border-radius: var(--radius); overflow: hidden; background: linear-gradient(140deg, var(--brand-soft), #b9dce3); box-shadow: var(--shadow); }
.story-art::before { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; left: calc(50% - 85px); top: 82px; background: rgba(255,255,255,.95); }
.story-art::after { content: ""; position: absolute; width: 75%; height: 52%; border-radius: 50% 50% 0 0; left: 12.5%; bottom: 0; background: rgba(255,255,255,.94); }
.check-list { padding: 0; margin: 24px 0 30px; list-style: none; }
.check-list li { position: relative; padding: 0 0 14px 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-dark); font-weight: 900; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card { padding: 34px; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: 0 8px 24px rgba(23,40,45,.05); }
.benefit-card .number { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 22px; border-radius: 50%; background: var(--brand); color: white; font-weight: 800; }
.benefit-card p { color: var(--muted); margin-bottom: 0; }

.reviews { background: #132c34; color: white; }
.reviews .section-heading p { color: rgba(255,255,255,.72); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { display: flex; flex-direction: column; align-items: center; padding: 34px 28px; border-radius: 20px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.13); text-align: center; }
.review-avatar { display: grid; place-items: center; width: 88px; height: 88px; margin-bottom: 20px; border-radius: 50%; background: linear-gradient(145deg, #91c4cf, var(--brand)); border: 4px solid rgba(255,255,255,.85); color: white; font-size: 1.25rem; font-weight: 800; overflow: hidden; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.stars { color: #ffd36a; letter-spacing: .16em; font-size: .9rem; }
.review-card blockquote { margin: 17px 0 20px; color: rgba(255,255,255,.9); font-size: .98rem; }
.review-card cite { margin-top: auto; font-style: normal; font-weight: 750; }
.review-source { color: rgba(255,255,255,.62); font-size: .77rem; }
.review-disclosure { max-width: 840px; margin: 32px auto 0; color: rgba(255,255,255,.64); text-align: center; font-size: .82rem; }
.review-disclosure a { color: white; }

.faq-list { max-width: 900px; margin-inline: auto; }
.faq-list details { padding: 22px 0; border-bottom: 1px solid var(--border); }
.faq-list summary { cursor: pointer; font-weight: 750; font-size: 1.08rem; }
.faq-list details p { margin: 15px 0 0; color: var(--muted); }

.cta-band { padding-block: 76px; background: linear-gradient(118deg, var(--brand), var(--brand-dark)); color: white; text-align: center; }
.cta-band p { max-width: 680px; margin: 0 auto 24px; color: rgba(255,255,255,.86); }
.cta-band .button { background: white; border-color: white; color: var(--brand-dark) !important; }

.page-hero { padding-block: 92px 80px; background: linear-gradient(135deg, var(--brand-soft), white); text-align: center; }
.page-hero .eyebrow { color: var(--brand-dark); }
.page-hero p { max-width: 760px; margin-inline: auto; color: var(--muted); font-size: 1.12rem; }
.article { max-width: 850px; margin-inline: auto; }
.article h2 { margin-top: 1.5em; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.article h3 { margin-top: 1.5em; }
.article p, .article li { color: #405258; }
.article-callout { margin: 34px 0; padding: 28px; border-left: 5px solid var(--brand); background: var(--brand-soft); border-radius: 0 16px 16px 0; }
.page-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.page-links a { padding: 18px; border: 1px solid var(--border); border-radius: 14px; text-decoration: none; font-weight: 700; }
.signup-panel { max-width: 760px; margin-inline: auto; padding: clamp(32px, 6vw, 64px); border-radius: var(--radius); background: white; box-shadow: var(--shadow); text-align: center; }

.site-footer { padding-block: 54px 34px; background: #0d2026; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
.site-footer .logo { color: white; }
.site-footer h3 { color: white; font-size: 1rem; }
.site-footer a { display: block; margin-bottom: 8px; color: rgba(255,255,255,.72); text-decoration: none; }
.legal { margin-top: 35px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 20px; right: 20px; top: 68px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: white; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 44px; }
  .hero-grid { padding-block: 64px; }
  .hero-art { min-height: 380px; max-width: 430px; width: 100%; margin-inline: auto; }
  .hero.has-photo { background-position: 60% center; }
  .benefit-grid, .review-grid { grid-template-columns: 1fr; }
  .member-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-card { max-width: 650px; width: 100%; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 66px; }
  .logo { font-size: 1.1rem; }
  .section { padding-block: 70px; }
  .hero-grid { padding-block: 52px; gap: 34px; }
  .hero.has-photo { min-height: 650px; background-position: 66% center; }
  .hero.has-photo::before { background: linear-gradient(90deg, rgba(9,31,37,.85), rgba(9,31,37,.38)); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-art { min-height: 330px; }
  .trust-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .trust-item { border-right: 0; border-bottom: 1px solid #e2ded6; padding: 24px 10px; }
  .trust-item:last-child { border-bottom: 0; }
  .story-art { min-height: 390px; }
  .benefit-card { padding: 27px; }
  .member-stats { grid-template-columns: 1fr; }
  .stat-card { min-height: 0; }
  .page-links, .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding-block: 68px 58px; }
}

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