/* LifeForward, shared stylesheet
   Brand: GSU palette (navy #181b56 / orange #ff4600 / cream #f9f5ef)
   Type:  Gilroy (Title, Heading) + Inter (Subtitle, Section header, Body, Caption, Quote)
   Layout: centered throughout
   Tested: 344 to 1440 wide, plus short landscape (Nest Hub) */

/* Gilroy is a licensed font and is not served from a public CDN.
   Drop the files into /fonts and uncomment to activate. Until then the
   stack falls back to Figtree, the closest free geometric sans. */
/*
@font-face { font-family: "Gilroy"; src: url("fonts/Gilroy-SemiBold.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("fonts/Gilroy-Bold.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("fonts/Gilroy-ExtraBold.woff2") format("woff2"); font-weight: 800; font-display: swap; }
*/

:root {
  /* GSU palette */
  --navy: #181b56;
  --navy-2: #5d6087;
  --orange: #ff4600;
  --orange-2: #fb895d;
  --peach: #feddd1;
  --blush: #fcece7;
  --sand: #c6c8e0;
  --sand-2: #e4e6f2;
  --surface: #f2f3fa;
  --line-c: #e6e7f0;
  --cream: #f9f5ef;
  --white: #ffffff;
  --blue: #7f94f5;
  --lilac: #d1d2dd;
  --gray: #4d4d4d;
  --gray-2: #cccccc;

  /* roles */
  --bg: var(--cream);
  --ink: var(--navy);
  --body: var(--gray);
  --mute: #7c7c86;
  --line: #e4e2ea;
  --line-2: #edecf2;
  --accent: var(--orange);

  --display: "Gilroy", "Figtree", "Poppins", -apple-system, "Segoe UI", sans-serif;
  --ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1120px;
  --pad: 32px;
  --shadow: 0 1px 2px rgba(24,27,86,.05), 0 14px 40px rgba(24,27,86,.07);
}

* { box-sizing: border-box; min-width: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--body);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.62;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.sr { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---------------------------------------------------------------- type */

h1, h2 {
  font-family: var(--display);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.025em;
}
h3, h4 {
  font-family: var(--ui);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.012em;
}

h1 { font-size: clamp(1.95rem, 6.2vw, 3.5rem); line-height: 1.06; }
h2 { font-size: clamp(1.55rem, 4.4vw, 2.4rem); line-height: 1.14; }
h3 { font-size: clamp(1.02rem, 2.4vw, 1.18rem); line-height: 1.34; }
h4 { font-size: .98rem; line-height: 1.35; }

h1 em, h2 em, h3 em { font-style: normal; color: var(--accent); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  line-height: 1.62;
  color: var(--body);
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}
.lede-tight { max-width: 46ch; }

.eyebrow {
  font-family: var(--ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  flex: none;
  opacity: .7;
}

.small { font-size: .87rem; line-height: 1.55; color: var(--mute); }
.note {
  font-size: .79rem;
  line-height: 1.55;
  color: var(--mute);
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------------- layout */

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

section { padding: 80px 0; }
section.alt { background: var(--white); }
.alt .card, .alt .decade, .alt .dcard { background: var(--cream); }
section.blush { background: var(--blush); }
section.white { background: var(--white); }
section.ink { background: var(--navy); }

.ink { color: #c6c8e0; }
.ink h1, .ink h2, .ink h3, .ink h4 { color: var(--white); }
.ink .lede { color: #c6c8e0; }
.ink .eyebrow { color: var(--orange-2); }
.ink .small, .ink .note { color: #9a9db8; }
.ink h1 em, .ink h2 em, .ink h3 em { color: var(--orange-2); }

.head { max-width: 46ch; margin: 0 auto 44px; }
.head-wide { max-width: 58ch; }
.head .lede { margin-top: 16px; }

.stack { display: grid; gap: 44px; justify-items: center; }

.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.narrow { max-width: 680px; margin: 0 auto; }
.mid { max-width: 860px; margin: 0 auto; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .5rem;
  font-family: var(--ui);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.005em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #e33e00; }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: #23276e; }

.btn-ghost { background: transparent; color: var(--navy); border-color: #cfc9bd; }
.btn-ghost:hover { border-color: var(--navy); background: rgba(24,27,86,.05); }

.ink .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.32); }
.ink .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

.txtlink { font-weight: 700; font-size: .9rem; color: var(--accent); display: inline-flex; align-items: center; gap: .35rem; }
.txtlink::after { content: "\2192"; transition: transform .18s ease; }
.txtlink:hover { text-decoration: none; }
.txtlink:hover::after { transform: translateX(3px); }

/* ---------------------------------------------------------------- nav */

.bar {
  background: var(--navy);
  color: var(--sand);
  font-size: .79rem;
  line-height: 1.4;
  padding: 9px var(--pad);
}
.bar a { color: var(--white); font-weight: 700; }

header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(249,245,239,.94);
  backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; gap: 20px; height: 64px; }
.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -.03em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-right: auto;
  white-space: nowrap;
}
.logo:hover { text-decoration: none; }
.logo .mark { width: 19px; height: 19px; flex: none; }

.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: .87rem; font-weight: 500; color: var(--body); white-space: nowrap; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-links a.on { color: var(--navy); font-weight: 700; }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.burger {
  display: none;
  background: none;
  border: 1.5px solid #cfc9bd;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font: inherit;
  font-size: .84rem;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 1150px) {
  .nav-links {
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 4px var(--pad) 16px;
    display: none;
    box-shadow: 0 16px 30px rgba(24,27,86,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line-2); }
  .burger { display: inline-block; }
}

/* ---------------------------------------------------------------- hero */

.hero { padding: 72px 0 68px; }
.hero h1 { margin-bottom: 18px; }
.hero .lede { margin-bottom: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 26px; }
.chip {
  font-size: .76rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
}
.ink .chip { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #d7d9ea; }

.hero-visual { margin: 46px auto 0; max-width: 660px; width: 100%; }

/* ---------------------------------------------------------------- cards */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.ink .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .92rem; color: var(--body); margin-bottom: 0; }
.ink .card p { color: #b7bad2; }

.card-link { display: block; color: inherit; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.card-link:hover { text-decoration: none; border-color: var(--orange); transform: translateY(-3px); }

.tag {
  display: block;
  font-family: var(--ui);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 11px;
}
.ink .tag { color: var(--orange-2); }

.dot-lg {
  display: block;
  width: 34px; height: 34px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--navy-2);
}

/* ---------------------------------------------------------------- readiness meter */

.meter {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.meter-cap { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); font-weight: 700; }
.meter-score {
  font-family: var(--display);
  font-size: clamp(3rem, 12vw, 4.2rem);
  line-height: .92;
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--navy);
  margin: 6px 0 4px;
}
.meter-score span { font-size: .32em; color: var(--mute); letter-spacing: 0; }
.meter-who { font-size: .84rem; color: var(--mute); padding-bottom: 22px; border-bottom: 1px solid var(--line-2); margin-bottom: 22px; }

.bars { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 24px; }
.bar-row { text-align: center; }
.bar-name { display: block; font-size: .78rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.bar-track { height: 7px; border-radius: 999px; background: var(--sand-2); overflow: hidden; }
.ink .bar-track { background: rgba(255,255,255,.16); }
.bar-fill { height: 100%; border-radius: 999px; }
.bar-val { display: block; font-size: .74rem; font-variant-numeric: tabular-nums; color: var(--mute); margin-top: 5px; }

.meter-foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
  font-size: .87rem;
  color: var(--body);
}
.meter-foot strong { color: var(--navy); }

/* domain colors, drawn from the GSU palette */
.c-health { background: #181b56; }
.c-daily { background: #3d4280; }
.c-social { background: #7f94f5; }
.c-community { background: #a9b0d4; }
.c-care { background: #ff4600; }
.c-finance { background: #fb895d; }
.c-home { background: #5d6087; }
.c-transitions { background: #4d4d4d; }

/* ---------------------------------------------------------------- stats */

.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px 18px; }
.stat-n {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 5.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--orange);
  margin-bottom: 8px;
}
.ink .stat-n { color: var(--orange-2); }
.stat-l { font-size: .84rem; line-height: 1.45; color: var(--body); }
.ink .stat-l { color: #a8abc4; }

/* ---------------------------------------------------------------- pull quote */

.pull {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3.6vw, 1.9rem);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--navy);
  max-width: 30ch;
  margin: 0 auto;
  padding: 22px 0;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}
.ink .pull { color: var(--white); border-color: var(--orange-2); }

/* ---------------------------------------------------------------- steps */

.steps { display: grid; gap: 0; border-top: 1px solid var(--line); max-width: 760px; margin: 0 auto; }
.step { padding: 28px 0; border-bottom: 1px solid var(--line); }
.ink .steps, .ink .step { border-color: rgba(255,255,255,.16); }
.step-n {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--orange);
  margin-bottom: 10px;
}
.ink .step-n { color: var(--orange-2); }
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .94rem; margin: 0 auto; max-width: 60ch; }
.ink .step p, .ink .step li { color: #b7bad2; }
.step ul { list-style: none; margin: 14px auto 0; padding: 0; max-width: 56ch; }
.step li { font-size: .88rem; padding: 5px 0; }
.step li::before { content: "\00b7\00a0"; color: var(--orange); font-weight: 700; }

/* ---------------------------------------------------------------- decades */

.decades { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.decade {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.ink .decade { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.decade-n { font-family: var(--display); font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--navy); letter-spacing: -.03em; }
.ink .decade-n { color: var(--white); }
.decade-v { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); font-weight: 800; margin: 8px 0 14px; }
.decade ul { margin: 0; padding: 0; list-style: none; }
.decade li { font-size: .86rem; color: var(--body); padding: 8px 0; border-top: 1px solid var(--line-2); }
.ink .decade li { color: #b7bad2; border-color: rgba(255,255,255,.14); }

/* ---------------------------------------------------------------- mock UI */

.mock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.mock-bar {
  padding: 11px 16px;
  background: var(--navy);
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.mock-bar .sp { display: block; text-transform: none; letter-spacing: .02em; color: var(--sand); font-weight: 500; font-size: .74rem; margin-top: 3px; }
.mock-body { padding: 20px 18px; }
.mock-h { font-family: var(--display); font-size: 1.2rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.mock-sub { font-size: .8rem; color: var(--mute); margin: 4px 0 18px; }
.mock-block {
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 15px 14px;
  margin-bottom: 10px;
  background: var(--cream);
}
.mock-block:last-child { margin-bottom: 0; }
.mock-label {
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 7px;
}
.mock-line { font-size: .87rem; color: var(--body); line-height: 1.5; }
.mock-line strong { color: var(--navy); }
.mock-gap { font-size: .74rem; color: var(--mute); margin-top: 9px; padding-top: 9px; border-top: 1px dashed var(--line); }
.pill-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 11px; }
.pill { font-size: .7rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; border: 1px solid var(--line); color: var(--mute); }
.pill.on { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pill.warn { background: var(--peach); color: #b23100; border-color: #f7c9b6; }

/* ---------------------------------------------------------------- form */

.formcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .8rem; font-weight: 700; color: var(--navy); text-align: center; }
.field input, .field select, .field textarea {
  font-family: var(--ui);
  font-size: .95rem;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  width: 100%;
  text-align: center;
}
.field textarea { min-height: 104px; resize: vertical; text-align: center; }
.field select { text-align: center; text-align-last: center; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,70,0,.14);
}
.form-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.checks { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .89rem; color: var(--body); }
.check input { width: 16px; height: 16px; flex: none; accent-color: var(--orange); }
.form button[type="submit"] { justify-self: center; }
.thanks { display: none; }
.thanks.show { display: block; }

/* ---------------------------------------------------------------- faq */

.faq { border-top: 1px solid var(--line); max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.ink .faq, .ink .faq details { border-color: rgba(255,255,255,.16); }
.faq summary {
  cursor: pointer;
  padding: 20px 34px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  list-style: none;
  position: relative;
}
.ink .faq summary { color: var(--white); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
}
.faq details[open] summary::after { content: "\2212"; }
.faq p { font-size: .93rem; color: var(--body); padding: 0 0 22px; max-width: 62ch; margin: 0 auto; }
.ink .faq p { color: #b7bad2; }

/* ---------------------------------------------------------------- footer */

footer.ft { background: var(--navy); color: #9a9db8; padding: 52px 0 30px; font-size: .88rem; border-top: 1px solid rgba(255,255,255,.14); }
footer.ft h4 {
  color: var(--white);
  font-family: var(--ui);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 14px;
}
footer.ft a { color: #c6c8e0; }
footer.ft a:hover { color: var(--white); }
.ft-lead { max-width: 46ch; margin: 0 auto 44px; }
.ft-logo { font-family: var(--display); font-size: 1.3rem; color: var(--white); font-weight: 800; letter-spacing: -.03em; display: block; margin-bottom: 12px; }
.ft-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px; }
.ft-grid ul { list-style: none; margin: 0; padding: 0; }
.ft-grid li { margin-bottom: 9px; }
.ft-bot {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .78rem;
  color: #8285a0;
  display: grid;
  gap: 8px;
}

/* ---------------------------------------------------------------- responsive */

/* iPad Pro 1024, Nest Hub 1024, Surface Pro 7 912 */
@media (max-width: 1080px) {
  :root { --pad: 28px; }
}

/* Surface Pro 7 (912), Zenbook Fold (853), iPad Air (820) */
@media (max-width: 960px) {
  section { padding: 68px 0; }
  .hero { padding: 60px 0 60px; }
  .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .decades { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* iPad Mini 768 */
@media (max-width: 820px) {
  .g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .head { margin-bottom: 36px; }
}

/* Surface Duo 540 and below: single column */
@media (max-width: 660px) {
  :root { --pad: 22px; }
  section { padding: 56px 0; }
  .hero { padding: 48px 0 52px; }
  .g2, .g3, .g4 { grid-template-columns: minmax(0, 1fr); }
  .decades { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-2 { grid-template-columns: minmax(0, 1fr); }
  .checks { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { margin-top: 34px; }
  .stack { gap: 34px; }
  .ft-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}

/* iPhone 14 Pro Max 430, XR 414, Pixel 7 412, iPhone 12 Pro 390, SE 375 */
@media (max-width: 440px) {
  :root { --pad: 18px; }
  body { font-size: 16px; }
  .bars { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .meter, .formcard { padding: 22px 16px; }
  .card { padding: 22px 18px; }
  .mock-body { padding: 16px 14px; }
  .btns { gap: 10px; }
  .btns .btn { width: 100%; }
  .faq summary { padding: 18px 30px; font-size: .95rem; }
}

.cta-short { display: none; }
@media (max-width: 470px) {
  .cta-long { display: none; }
  .cta-short { display: inline; }
  .nav-cta .btn { padding: 10px 16px; }
}

/* Galaxy S8+ 360, Galaxy Z Fold 5 folded 344 */
@media (max-width: 380px) {
  :root { --pad: 15px; }
  body { font-size: 15.5px; }
  h1 { letter-spacing: -.02em; }
  .stats { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .chip { font-size: .72rem; padding: 5px 11px; }
  .logo { font-size: 1.05rem; }
  .burger { padding: 7px 11px; font-size: .8rem; }
  .nav-cta .btn { padding: 10px 14px; font-size: .82rem; }
  .meter { padding: 20px 14px; }
}

/* Nest Hub 1024x600 and other short landscape screens */
@media (orientation: landscape) and (max-height: 620px) {
  .hero { padding: 40px 0 44px; }
  section { padding: 52px 0; }
  .hero-visual { margin-top: 28px; }
  h1 { font-size: clamp(1.8rem, 4.4vw, 2.6rem); }
}

/* very wide */
@media (min-width: 1440px) {
  :root { --maxw: 1180px; }
}

@media print {
  header.nav, .bar, .btn { display: none; }
  body { background: #fff; }
}

/* ================================================================ PHONE MOCKUP
   Ported from the original LifeForward site and recolored to the GSU palette. */

.phone-row { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; align-items: flex-start; }

.phone {
  width: 296px;
  flex: none;
  background: var(--navy);
  border-radius: 42px;
  padding: 11px;
  box-shadow: 0 2px 6px rgba(24,27,86,.1), 0 26px 60px rgba(24,27,86,.18);
}
.phone.float { animation: phfloat 7s ease-in-out infinite; }
@keyframes phfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.screen {
  background: var(--cream);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  height: 604px;
  text-align: left;
}
.notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 126px; height: 25px;
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.sbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 20px 4px;
  font-size: 11.5px; font-weight: 700; color: var(--navy);
}
.app { padding: 6px 15px 15px; height: 100%; overflow: hidden; }
.app-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin: 6px 0 13px; }
.app-hi { font-family: var(--display); font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.15; }
.app-av {
  width: 33px; height: 33px; border-radius: 50%; flex: none;
  background: var(--lilac); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.app-av.brand { background: var(--navy); color: #fff; }

.pchip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--lilac); color: var(--navy);
  font-size: 10.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px;
}
.pchip.muted { background: var(--sand-2); color: #7a7469; }
.pchip.pos { background: var(--peach); color: #b23100; }

.pcard {
  background: #fff; border: 1px solid var(--line); border-radius: 15px; padding: 13px;
  box-shadow: 0 1px 2px rgba(24,27,86,.04);
}
.pcard + .pcard { margin-top: 9px; }
.pmini { font-size: 12px; line-height: 1.45; color: #7a7469; }

/* snapshot */
.ring {
  width: 116px; height: 116px; border-radius: 50%; margin: 4px auto 9px;
  background: conic-gradient(var(--navy) 0 68%, var(--sand-2) 68% 100%);
  display: flex; align-items: center; justify-content: center;
}
.ring i {
  width: 90px; height: 90px; border-radius: 50%; background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; font-style: normal;
}
.ring i b { font-family: var(--display); font-size: 25px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.ring i s { font-size: 9.5px; color: #8a8478; text-decoration: none; }
.pstate { font-family: var(--display); font-size: 15px; font-weight: 800; color: var(--navy); text-align: center; letter-spacing: -.02em; }

.dims { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.dims.one { grid-template-columns: 1fr; }
.dim { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 9px 10px; }
.dim .t { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: #7a7469; }
.dim .v { font-weight: 700; font-size: 12.5px; margin-top: 2px; color: var(--navy); }
.dim .v span { font-weight: 400; color: #8a8478; }
.sdot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.s-strong { background: #181b56; }
.s-build { background: #fb895d; }
.s-focus { background: #ff4600; }

.unlock { background: var(--orange); color: #fff; border-radius: 14px; padding: 12px 13px; margin-top: 10px; }
.unlock .e { font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: #ffe3d6; font-weight: 700; }
.unlock .h { font-family: var(--display); font-size: 14.5px; font-weight: 800; margin-top: 3px; line-height: 1.22; letter-spacing: -.02em; }

.vpill {
  display: flex; align-items: center; gap: 7px;
  background: var(--lilac); color: var(--navy);
  border-radius: 12px; padding: 11px 12px; margin-top: 10px;
  font-weight: 700; font-size: 12.5px; line-height: 1.35;
}

/* roadmap */
.timeline { display: flex; gap: 6px; margin: 4px 0 13px; }
.tl { flex: 1; text-align: center; }
.tl .tbar { height: 5px; border-radius: 3px; background: var(--sand-2); }
.tl.active .tbar { background: var(--navy); }
.tl .lab { font-size: 9px; color: #8a8478; margin-top: 6px; line-height: 1.3; }
.tl.active .lab { color: var(--navy); font-weight: 800; }
.act { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line-2); text-align: left; }
.act:last-child { border-bottom: none; }
.act .box { width: 19px; height: 19px; border-radius: 6px; border: 2px solid var(--line); flex: none; margin-top: 1px; }
.act .box.done { background: var(--navy); border-color: var(--navy); position: relative; }
.act .box.done::after { content: "\2713"; color: #fff; font-size: 11px; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.act .tt { font-size: 12.5px; font-weight: 700; line-height: 1.3; color: var(--navy); }
.act.done .tt { color: #9a9488; text-decoration: line-through; }
.act .tag { font-size: 10.5px; color: #8a8478; margin-top: 2px; text-transform: none; letter-spacing: 0; font-weight: 500; }

/* coach */
.bub { max-width: 86%; padding: 11px 13px; border-radius: 16px; font-size: 12.5px; line-height: 1.45; margin-bottom: 9px; text-align: left; }
.bub.ai { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; color: var(--gray); }
.bub.me { background: var(--navy); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.cite { font-size: 10px; color: #8a8478; margin: -3px 0 12px 3px; text-align: left; }
.cact { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 11px; margin-bottom: 10px; text-align: left; }
.cact .h { font-size: 12.5px; font-weight: 700; color: var(--navy); }
.cact .b { font-size: 11px; color: #8a8478; margin: 3px 0 9px; line-height: 1.4; }
.go { background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 7px 13px; border-radius: 999px; display: inline-block; }
.prompts { display: flex; gap: 6px; overflow: hidden; margin-top: auto; }
.prompts .p { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 11px; font-size: 10px; color: #8a8478; white-space: nowrap; }
.inputbar { display: flex; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; margin-top: 8px; font-size: 11.5px; color: #9a9488; }

/* benefits */
.bbanner { background: var(--navy); color: #fff; border-radius: 14px; padding: 13px 14px; }
.bbanner .n { font-family: var(--display); font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.bbanner .l { font-size: 10.5px; opacity: .84; line-height: 1.4; margin-top: 2px; }
.filters { display: flex; gap: 6px; margin: 12px 0 4px; overflow: hidden; }
.ben { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; margin-top: 9px; text-align: left; }
.ben .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.ben .nm { font-size: 12.5px; font-weight: 700; color: var(--navy); }
.ben .pr { font-size: 10.5px; color: #8a8478; margin-top: 2px; }
.ben .why { font-size: 11.5px; color: #7a7469; margin-top: 5px; line-height: 1.42; }

/* guides */
.guide { display: flex; gap: 11px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; margin-top: 10px; text-align: left; }
.g-av { width: 44px; height: 44px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-family: var(--display); font-size: 16px; letter-spacing: -.02em; }
.guide .nm { font-size: 13px; font-weight: 700; color: var(--navy); }
.guide .meta { font-size: 10.5px; color: #8a8478; }
.guide .help { font-size: 11px; margin-top: 3px; color: #7a7469; }

@media (max-width: 380px) {
  .phone { width: 268px; border-radius: 38px; padding: 9px; }
  .screen { height: 560px; border-radius: 30px; }
}

/* ================================================================ IMAGE PLACEHOLDERS
   Replace each <figure class="ph ..."> with:
   <figure class="ph ..."><img src="..." alt="..."></figure>
   The aspect ratio and rounding carry over automatically. */

.ph {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 2px;
  background:
    repeating-linear-gradient(135deg, rgba(24,27,86,.028) 0 2px, transparent 2px 9px),
    linear-gradient(160deg, #eceef7 0%, #f7f5f0 55%, #e9ebf5 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-icon { width: 26px; height: 26px; opacity: .5; }
.ph-mark { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: #9c9aad; }
.ph-spec { font-size: .78rem; line-height: 1.45; color: #86849a; max-width: 32ch; }

.ph-wide { aspect-ratio: 16 / 7; }
.ph-band { aspect-ratio: 24 / 8; border-radius: 0; border-left: 0; border-right: 0; }
.ph-portrait { aspect-ratio: 3 / 4; }
.ph-square { aspect-ratio: 1 / 1; }
.ph-round { border-radius: 999px; aspect-ratio: 1 / 1; max-width: 168px; margin: 0 auto; }

@media (max-width: 660px) {
  .ph-wide { aspect-ratio: 4 / 3; }
  .ph-band { aspect-ratio: 3 / 2; }
}

/* ================================================================ HERO STAGE
   Wide image with the app overlapping its lower edge. */

.hero-stage { position: relative; max-width: 980px; margin: 46px auto 0; padding-bottom: 90px; }
.hero-stage .ph-wide { aspect-ratio: auto; height: 560px; border-radius: 22px; }
/* In the hero the app sits over the image, so the annotation moves to the top left. */
.hero-stage .ph { justify-content: flex-start; align-items: flex-start; padding: 0px; text-align: left; gap: 7px; }
.hero-stage .ph .ph-spec { max-width: 25ch; font-size: .74rem; }
.hero-stage .phone { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); }
.hero-stage .phone.float { animation: phfloatx 7s ease-in-out infinite; }
@keyframes phfloatx {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
@media (max-width: 1000px) {
  .hero-stage .ph-wide { height: 480px; }
  .hero-stage { padding-bottom: 170px; }
}
@media (max-width: 860px) {
  .hero-stage { padding-bottom: 0; }
  .hero-stage .ph-wide { height: auto; aspect-ratio: 16 / 9; }
  .hero-stage .phone { position: static; left: auto; bottom: auto; transform: none; margin: 26px auto 0; }
  .hero-stage .phone.float { animation: phfloat 7s ease-in-out infinite; }
}
@media (max-width: 660px) {
  .hero-stage .ph-wide { aspect-ratio: 4 / 3; }
}

/* ================================================================ STATEMENT BAND */

.statement { background: var(--navy); padding: 52px 0; }
.statement p {
  font-family: var(--display);
  font-size: clamp(1.45rem, 4.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.16;
  color: #fff;
  max-width: 26ch;
  margin: 0 auto;
}
.statement p em { font-style: normal; color: var(--orange-2); }

/* ================================================================ PORTRAIT TRIPTYCH */

.trip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.trip figure { margin: 0; }
.trip .cap { margin-top: 14px; }
.trip .cap .d { font-family: var(--display); font-size: 1.3rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.trip .cap .t { font-size: .88rem; color: var(--body); margin-top: 5px; }
@media (max-width: 760px) { .trip { grid-template-columns: minmax(0, 1fr); gap: 30px; max-width: 340px; margin: 0 auto; } }

/* ================================================================ FEATURE BLOCK (features page) */

.fblock { padding: 66px 0; border-bottom: 1px solid var(--line); }
.fblock:last-child { border-bottom: none; }
.fblock .phone-row { margin-top: 38px; }

/* ================================================================ DARK LAYERED HERO
   Human image behind a navy veil, copy on the left, floating UI cards on the right. */

.hero-dark {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  text-align: left;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }

/* IMAGE SLOT: delete .hero-ph and drop in
   <img class="hero-img" src="hero.jpg" alt="..."> */
.hero-ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 10px),
    linear-gradient(120deg, #2a2f6b 0%, #3a3560 50%, #4a3054 100%);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 80% at 100% 108%, rgba(255,70,0,.3) 0%, rgba(255,70,0,0) 62%),
    radial-gradient(70% 70% at 88% 0%, rgba(127,148,245,.16) 0%, rgba(127,148,245,0) 60%),
    linear-gradient(100deg, rgba(24,27,86,.97) 0%, rgba(24,27,86,.9) 42%, rgba(24,27,86,.66) 100%);
}
.hero-imgnote {
  position: absolute; bottom: 14px; left: 0; right: 0;
  margin: 0 auto;
  padding: 0 var(--pad);
  max-width: var(--maxw);
  font-size: .68rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.4);
  text-align: left;
  z-index: 2;
}

.hero-dark-in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 54px;
  align-items: center;
}

.hero-copy { text-align: left; }
.hero-copy .eyebrow { justify-content: flex-start; color: var(--orange-2); margin-bottom: 20px; }
.hero-copy .eyebrow::after { display: none; }
.hero-copy .eyebrow::before { display: none; }
.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.9vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: -.035em;
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(96deg, #ff4600 0%, #fb895d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .lede { color: #c9cbe2; margin: 0; max-width: 42ch; }
.hero-copy .btns { justify-content: flex-start; margin-top: 32px; }
.hero-copy .chips { justify-content: flex-start; }
.hero-copy .btn-primary { box-shadow: 0 10px 30px rgba(255,70,0,.38); }
.hero-copy .btn-ghost { color: #fff; border-color: rgba(255,255,255,.36); }
.hero-copy .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.66); }
.hero-copy .chip { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #d7d9ea; }

/* floating cards */
.hero-cards { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.hero-cards > * { animation: hcrise .7s cubic-bezier(.2,.7,.3,1) both; }
.hero-cards > *:nth-child(1) { animation-delay: .05s; }
.hero-cards > *:nth-child(2) { animation-delay: .18s; }
.hero-cards > *:nth-child(3) { animation-delay: .31s; }
.hero-cards > *:nth-child(4) { animation-delay: .44s; }
@keyframes hcrise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.hcard {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(8,10,38,.4);
  overflow: hidden;
}
.hcard-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-2);
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 800; color: var(--navy);
}
.livedot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex: none; animation: livepulse 2s ease-in-out infinite; }
@keyframes livepulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hcard-head .sp { margin-left: auto; text-transform: none; letter-spacing: .01em; color: var(--mute); font-weight: 600; }

.hrow { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line-2); }
.hrow:last-child { border-bottom: none; }
.hrow .sw { width: 22px; height: 22px; border-radius: 7px; flex: none; }
.hrow .tx { min-width: 0; display: block; }
.hrow .nm { display: block; font-size: .86rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
.hrow .mt { display: block; font-size: .74rem; color: var(--mute); margin-top: 1px; }
.hrow .vl {
  margin-left: auto; flex: none;
  font-family: var(--display); font-weight: 800; font-size: 1.02rem;
  color: var(--navy); letter-spacing: -.03em;
}
.hrow .vl.low { color: var(--orange); }

.hbub {
  align-self: flex-end;
  max-width: 80%;
  background: #262a72;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: 15px;
  border-bottom-right-radius: 5px;
  padding: 11px 15px;
  font-size: .87rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 14px 34px rgba(8,10,38,.32);
}

.hmsg {
  align-self: flex-start;
  max-width: 92%;
  background: #fff;
  border-radius: 15px;
  border-bottom-left-radius: 5px;
  padding: 13px 15px;
  box-shadow: 0 20px 46px rgba(8,10,38,.34);
}
.hmsg .ln { display: flex; gap: 10px; align-items: flex-start; }
.hmsg .av {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .64rem; font-weight: 800;
}
.hmsg .bd { display: block; font-size: .87rem; font-weight: 700; color: var(--navy); line-height: 1.38; }
.hmsg .by { font-size: .72rem; color: var(--mute); margin-top: 5px; padding-left: 34px; }

.hdone {
  align-self: flex-start;
  max-width: 78%;
  display: flex; align-items: center; gap: 11px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: 0 18px 42px rgba(8,10,38,.32);
}
.hdone .tick {
  width: 24px; height: 24px; border-radius: 7px; flex: none;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .8rem;
}
.hdone .t1 { display: block; font-size: .84rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
.hdone .t2 { display: block; font-size: .74rem; color: var(--mute); margin-top: 1px; }

@media (max-width: 940px) {
  .hero-dark { padding: 62px 0 74px; }
  .hero-dark-in { grid-template-columns: minmax(0, 1fr); gap: 40px; text-align: center; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-copy .eyebrow::before, .hero-copy .eyebrow::after { display: block; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-copy .btns, .hero-copy .chips { justify-content: center; }
  .hero-cards { max-width: 440px; margin: 0 auto; width: 100%; }
  .hero-veil {
    background:
      radial-gradient(90% 60% at 100% 100%, rgba(255,70,0,.28) 0%, rgba(255,70,0,0) 64%),
      linear-gradient(180deg, rgba(24,27,86,.9) 0%, rgba(24,27,86,.95) 60%, rgba(24,27,86,.98) 100%);
  }
  .hero-imgnote { position: static; margin-top: 0; }
}
@media (max-width: 480px) {
  .hbub, .hmsg, .hdone { max-width: 100%; }
  .hero-copy .btns .btn { width: 100%; }
}

/* navy nav on pages that open with the dark hero */
.navdark header.nav { background: var(--navy); border-bottom-color: rgba(255,255,255,.12); }
.navdark .logo { color: #fff; }
.navdark .logo .mark path { stroke: #fff; }
.navdark .nav-links a { color: #b9bcd6; }
.navdark .nav-links a:hover, .navdark .nav-links a.on { color: #fff; }
.navdark .burger { color: #fff; border-color: rgba(255,255,255,.32); }
.navdark .burger:hover { border-color: rgba(255,255,255,.6); }
@media (max-width: 1150px) {
  .navdark .nav-links { background: var(--navy); border-bottom-color: rgba(255,255,255,.12); }
  .navdark .nav-links a { border-bottom-color: rgba(255,255,255,.1); }
}

/* ================================================================ PILLARS DIAGRAM */
.dots { max-width: 700px; margin: 0 auto; }
.dots svg { width: 100%; height: auto; display: block; overflow: visible; }
@media (max-width: 560px) {
  .dots svg text { font-size: 15px !important; }
  .dots svg text + text { font-size: 11.5px !important; }
}

/* footer: four columns on one row */
.ft-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
@media (max-width: 820px) { .ft-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; } }
@media (max-width: 400px) { .ft-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; } }

/* ================================================================ COMPASS
   Segmented readiness ring plus a card per domain. Replaces the stacked bars. */

.compass {
  --holebg: #fff;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  max-width: 980px;
  margin: 0 auto;
}
.alt .compass { --holebg: var(--cream); background: var(--cream); }

.compass-top {
  display: grid;
  grid-template-columns: 244px 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-2);
}
.ringwrap { position: relative; width: 230px; height: 230px; margin: 0 auto; }
.ring8 { width: 100%; height: 100%; border-radius: 50%; }
.ring8::after {
  content: "";
  position: absolute;
  inset: 27px;
  border-radius: 50%;
  background: var(--holebg);
}
.ringnum {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ringnum b {
  font-family: var(--display);
  font-size: 3.2rem; font-weight: 800; line-height: 1;
  letter-spacing: -.045em; color: var(--navy);
}
.ringnum s { text-decoration: none; font-size: .64rem; letter-spacing: .19em; text-transform: uppercase; font-weight: 800; color: var(--mute); margin-top: 8px; }

.compass-say h3 { font-family: var(--display); font-size: clamp(1.2rem, 2.6vw, 1.55rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.22; }
.compass-say h3 em { font-style: normal; color: var(--orange); }
.compass-say p { font-size: .92rem; color: var(--body); margin: 12px 0 0; }
.compass-say .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.compass-say .tg { font-size: .72rem; font-weight: 700; border-radius: 999px; padding: 5px 12px; }
.tg.good { background: #e9ebf7; color: var(--navy); }
.tg.focus { background: var(--peach); color: #b23100; }

.dcards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.dcard { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 16px 15px; text-align: left; }
.dcard .nm { display: flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
.dcard .nm i { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dcard .sc { font-family: var(--display); font-size: 1.85rem; font-weight: 800; color: var(--navy); letter-spacing: -.045em; margin: 12px 0 0; line-height: 1; }
.dcard .sc span { font-size: .46em; color: var(--mute); letter-spacing: 0; }
.dcard .tr { height: 5px; border-radius: 999px; background: var(--sand-2); margin: 11px 0 10px; overflow: hidden; }
.dcard .tr i { display: block; height: 100%; border-radius: 999px; }
.dcard .st { font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
.st.ok { color: #3d4280; }
.st.look { color: #d1592b; }
.st.att { color: var(--orange); }

@media (max-width: 860px) {
  .compass-top { grid-template-columns: minmax(0, 1fr); gap: 26px; text-align: center; }
  .compass-say h3, .compass-say p { text-align: center; }
  .compass-say .tags { justify-content: center; }
  .dcards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 440px) {
  .compass { padding: 24px 16px; }
  .ringwrap { width: 200px; height: 200px; }
  .dcards { grid-template-columns: minmax(0, 1fr); }
}

/* ================================================================ DEVICE FRAME */

.frame {
  background: var(--navy);
  border-radius: 20px;
  padding: 11px;
  box-shadow: 0 30px 74px rgba(8,10,38,.3);
  max-width: 1120px;
  margin: 0 auto;
}
.frame-bar { display: flex; gap: 6px; padding: 3px 8px 11px; }
.frame-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.28); }
.frame-in { background: var(--surface); border-radius: 12px; overflow: hidden; text-align: left; }
.frame-cap { font-size: .78rem; color: var(--mute); margin: 16px auto 0; max-width: 62ch; }

/* shared screen chrome */
.sc-top { background: var(--navy); color: #fff; display: flex; align-items: center; gap: 12px; padding: 11px 15px; }
.sc-logo { font-family: var(--display); font-weight: 800; font-size: 14px; letter-spacing: -.02em; white-space: nowrap; }
.sc-logo em { font-style: normal; font-size: 8.5px; letter-spacing: .13em; color: #9ea3ce; margin-left: 5px; }
.sc-pill { background: rgba(255,255,255,.15); border-radius: 6px; padding: 4px 9px; font-size: 9.5px; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.sc-tabs { margin: 0 auto; display: flex; gap: 5px; }
.sc-tabs span { padding: 5px 13px; border-radius: 8px; font-size: 11.5px; font-weight: 600; color: #b3b7d6; white-space: nowrap; }
.sc-tabs span.on { background: #fff; color: var(--navy); font-weight: 700; }
.sc-right { display: flex; align-items: center; gap: 9px; font-size: 10.5px; color: #c3c6e0; margin-left: auto; white-space: nowrap; }
.sc-av { width: 22px; height: 22px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; flex: none; }

/* ---------------- advisor console ---------------- */
.cs-body { display: grid; grid-template-columns: 196px 1fr 268px; }
.cs-side { background: #fff; border-right: 1px solid var(--line-c); padding: 14px 12px; }
.cs-main { padding: 18px 18px 22px; min-width: 0; }
.cs-rail { background: #fff; border-left: 1px solid var(--line-c); padding: 16px 15px; }

.cs-lbl { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 11px; }
.cs-lbl b { font-size: 11.5px; font-weight: 800; color: var(--navy); }
.cs-lbl span { font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: #9297b0; }
.cs-add { background: #eef0fa; border-radius: 8px; padding: 8px; text-align: center; font-size: 10.5px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.ml { display: flex; align-items: center; gap: 9px; padding: 8px; border-radius: 9px; }
.ml.on { background: #e9ebf7; }
.ml .rg { width: 31px; height: 31px; border-radius: 50%; border: 2px solid #ccd1e8; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: var(--navy); flex: none; }
.ml.on .rg { border-color: var(--navy); }
.ml > span:last-child { display: block; min-width: 0; }
.ml .nm { display: block; font-size: 11.5px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.ml .mt { display: block; font-size: 9.5px; color: #8a8fa8; margin-top: 1px; }

.cs-h { display: flex; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.cs-h h4 { font-family: var(--display); font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.cs-h > span:first-child { min-width: 0; }
.cs-h .mt { display: block; font-size: 10.5px; color: #7b8099; margin-top: 3px; }
.cs-h .fp { margin-left: auto; background: #eef0fa; border-radius: 999px; padding: 5px 11px; font-size: 9.5px; font-weight: 700; color: var(--navy); }
.cs-nav { display: flex; gap: 18px; border-bottom: 1px solid var(--line-c); margin: 14px 0 16px; overflow-x: auto; }
.cs-nav span { padding: 8px 0; font-size: 11.5px; font-weight: 600; color: #7b8099; border-bottom: 2px solid transparent; white-space: nowrap; }
.cs-nav span.on { color: var(--navy); font-weight: 700; border-bottom-color: var(--orange); }

.kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.kpi { background: #fff; border: 1px solid var(--line-c); border-radius: 11px; padding: 13px 12px; }
.kpi b { font-family: var(--display); font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -.035em; }
.kpi b i { font-style: normal; font-size: 10.5px; color: var(--orange); margin-left: 4px; }
.kpi span { display: block; font-size: 9.5px; color: #8a8fa8; margin-top: 4px; line-height: 1.35; }

.cs-chart { background: #fff; border: 1px solid var(--line-c); border-radius: 13px; padding: 18px; margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.cs-chart .cap { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: #9297b0; text-align: center; }
.cs-chart .ringwrap { width: 168px; height: 168px; }
.cs-chart .ring8::after { inset: 21px; background: #fff; }
.cs-chart .ringnum b { font-size: 2.1rem; }
.cs-chart .ringnum s { font-size: .55rem; margin-top: 5px; }
.cs-state { text-align: center; margin-top: 10px; }
.cs-state span { background: #e9ebf7; border-radius: 999px; padding: 4px 12px; font-size: 10px; font-weight: 700; color: var(--navy); }

.cs-run { display: flex; align-items: center; gap: 11px; margin-top: 13px; flex-wrap: wrap; }
.cs-btn { background: var(--navy); color: #fff; border-radius: 999px; padding: 8px 15px; font-size: 10.5px; font-weight: 700; }
.cs-run .hint { font-size: 10px; color: #8a8fa8; }
.cs-cap { font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: #9297b0; margin: 16px 0 9px; }

.fdims { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; }
.fdim { background: #fff; border: 1px solid var(--line-c); border-radius: 11px; padding: 11px 10px; }
.fdim.on { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(24,27,86,.09); }
.fdim .hd { display: flex; align-items: baseline; justify-content: space-between; gap: 6px; }
.fdim .nm { display: flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; color: var(--navy); }
.fdim .nm i { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.fdim .vv { font-family: var(--display); font-size: 15px; font-weight: 800; letter-spacing: -.035em; }
.fdim .sub { font-size: 9px; color: #9297b0; margin-top: 3px; line-height: 1.35; }
.fdim .tr { height: 4px; border-radius: 999px; background: #e9ebf7; margin: 8px 0 7px; overflow: hidden; }
.fdim .tr i { display: block; height: 100%; border-radius: 999px; }
.fdim .wt { font-size: 9.5px; color: #5b6079; line-height: 1.4; }
.fdim .wt b { color: var(--navy); }

.rl-h { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; font-weight: 800; color: var(--orange); display: flex; align-items: center; gap: 6px; }
.rl-t { font-family: var(--display); font-size: 16px; font-weight: 800; color: var(--navy); margin: 9px 0 4px; letter-spacing: -.025em; }
.rl-p { font-size: 10.5px; color: #5b6079; line-height: 1.48; }
.rl-chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin: 13px 0 4px; }
.rl-chip { background: #eef0fa; border-radius: 9px; padding: 9px 7px; text-align: center; }
.rl-chip b { display: block; font-size: 10px; font-weight: 800; color: var(--orange); }
.rl-chip span { display: block; font-size: 8.5px; color: #7b8099; line-height: 1.4; margin-top: 4px; }
.rl-lbl { font-size: 8.5px; letter-spacing: .15em; text-transform: uppercase; font-weight: 800; color: var(--orange); margin: 15px 0 7px; }
.rl-q { border-left: 2px solid var(--orange); padding-left: 11px; font-size: 10.5px; font-style: italic; color: #4a4f66; line-height: 1.48; }
.rl-box { background: #eef0fa; border-radius: 10px; padding: 11px; font-size: 10.5px; color: #4a4f66; line-height: 1.48; }
.rl-box em { font-style: italic; display: block; margin-bottom: 6px; color: #7b8099; }
.rl-ul { list-style: none; margin: 0; padding: 0; }
.rl-ul li { font-size: 10.5px; color: #5b6079; line-height: 1.45; padding-left: 13px; position: relative; margin-bottom: 7px; }
.rl-ul li::before { content: "\2022"; color: var(--orange); position: absolute; left: 0; }

/* ---------------- member compass screen ---------------- */
.mc-nav { background: #fff; display: flex; gap: 20px; padding: 0 18px; border-bottom: 1px solid var(--line-c); overflow-x: auto; }
.mc-nav span { padding: 13px 0; font-size: 12px; font-weight: 600; color: #6b7089; border-bottom: 2px solid transparent; white-space: nowrap; }
.mc-nav span.on { color: var(--navy); font-weight: 700; border-bottom-color: var(--orange); }
.mc-body { padding: 22px 20px 26px; }
.mc-pill { display: inline-block; background: #e9ebf7; border-radius: 999px; padding: 5px 12px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: var(--navy); }
.mc-h { font-family: var(--display); font-size: 25px; font-weight: 800; color: var(--navy); letter-spacing: -.032em; margin: 13px 0 7px; line-height: 1.12; }
.mc-s { font-size: 12px; color: #5b6079; max-width: 56ch; line-height: 1.5; }
.mc-card { background: #fff; border: 1px solid var(--line-c); border-radius: 15px; padding: 24px; margin-top: 18px; display: grid; grid-template-columns: 236px 1fr; gap: 30px; align-items: center; }
.mc-card .ring8::after { background: #fff; }
.mc-say h5 { font-family: var(--display); font-size: 19px; font-weight: 800; color: var(--navy); letter-spacing: -.028em; line-height: 1.25; }
.mc-say h5 em { font-style: normal; color: var(--orange); }
.mc-say p { font-size: 11.5px; color: #5b6079; line-height: 1.55; margin: 11px 0 0; }
.mc-say .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.mc-say .tg { font-size: 10px; font-weight: 700; border-radius: 999px; padding: 5px 11px; }
.mc-dims { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 11px; margin-top: 16px; }
.mcd { background: #fff; border: 1px solid var(--line-c); border-radius: 13px; padding: 15px 14px; }
.mcd .nm { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; color: var(--navy); }
.mcd .nm i { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.mcd .sc { font-family: var(--display); font-size: 25px; font-weight: 800; color: var(--navy); letter-spacing: -.042em; margin: 11px 0 0; line-height: 1; }
.mcd .sc span { font-size: .44em; color: #9297b0; letter-spacing: 0; }
.mcd .tr { height: 4px; border-radius: 999px; background: #e9ebf7; margin: 11px 0 9px; overflow: hidden; }
.mcd .tr i { display: block; height: 100%; border-radius: 999px; }
.mcd .st { font-size: 9px; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }

/* ---------------- screen responsiveness ---------------- */
@media (max-width: 1040px) {
  .cs-body { grid-template-columns: 176px 1fr; }
  .cs-rail { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line-c); }
  .rl-chips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cs-chart { grid-template-columns: minmax(0, 1fr); }
  .fdims { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mc-dims { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .sc-tabs { display: none; }
  .cs-body { grid-template-columns: minmax(0, 1fr); }
  .cs-side { border-right: 0; border-bottom: 1px solid var(--line-c); }
  .kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fdims { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mc-card { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .mc-dims { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .frame { border-radius: 16px; padding: 8px; }
}
@media (max-width: 460px) {
  .sc-right span { display: none; }
  .kpis, .fdims, .mc-dims { grid-template-columns: minmax(0, 1fr); }
  .mc-body, .cs-main { padding: 16px 14px 20px; }
  .mc-card { padding: 18px 15px; }
}

/* ================================================================ ROADMAP SCREEN */

.rm-rail { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); position: relative; margin: 22px 0 16px; }
.rm-rail::before { content: ""; position: absolute; left: 10%; right: 10%; top: 50%; height: 2px; background: #f9cebc; transform: translateY(-50%); }
.rm-node { display: flex; justify-content: center; position: relative; z-index: 1; }
.rm-node i { width: 13px; height: 13px; border-radius: 50%; background: #fff; border: 2px solid #dfe0ea; }
.rm-node.on i { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 4px #f2f3fa, 0 0 0 7px rgba(255,70,0,.2); }

.rm-cols { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; align-items: start; }
.rm-col { background: #fff; border: 1px solid var(--line-c); border-radius: 13px; padding: 15px 13px; }
.rm-col.on { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(255,70,0,.11); }
.rm-d { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.rm-d b { font-family: var(--display); font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -.038em; }
.rm-d span { font-size: 8.5px; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; color: #7b8099; }
.rm-here { display: inline-block; background: var(--orange); color: #fff; border-radius: 999px; padding: 3px 10px; font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; margin-top: 9px; }
.rm-p { font-size: 10.5px; color: #5b6079; line-height: 1.45; margin: 10px 0 11px; }
.rm-i { display: flex; align-items: flex-start; gap: 7px; background: #f7f8fd; border-radius: 9px; padding: 9px 10px; margin-bottom: 7px; font-size: 10.5px; font-weight: 600; color: var(--navy); line-height: 1.35; }
.rm-i:last-child { margin-bottom: 0; }
.rm-i i { width: 7px; height: 7px; border-radius: 50%; flex: none; margin-top: 4px; }
.rm-leg { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 14px; margin-top: 18px; font-size: 9.5px; color: #7b8099; }
.rm-leg b { font-weight: 800; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; font-size: 8.5px; }
.rm-leg span { display: flex; align-items: center; gap: 5px; }
.rm-leg span i { width: 7px; height: 7px; border-radius: 50%; flex: none; }

@media (max-width: 1040px) { .rm-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } .rm-rail { display: none; } }
@media (max-width: 760px) { .rm-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .rm-cols { grid-template-columns: minmax(0, 1fr); } }

/* ================================================================ PRODUCTS TAB */

.pg-ban { background: var(--navy); color: #fff; border-radius: 12px; padding: 15px 17px; font-size: 11.5px; line-height: 1.52; }
.pg-wrap { position: relative; margin-top: 14px; }
.pgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
.pcd { background: #fff; border: 1px solid var(--line-c); border-radius: 13px; padding: 15px 14px; display: flex; flex-direction: column; }
.pcd-t { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.pcd-tag { display: flex; align-items: center; gap: 5px; background: #eef0fa; border-radius: 999px; padding: 4px 10px; font-size: 9.5px; font-weight: 700; color: var(--navy); }
.pcd-tag i { width: 7px; height: 7px; border-radius: 50%; }
.pcd-kind { font-size: 8.5px; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; color: #9297b0; }
.pcd h6 { font-family: var(--display); font-size: 15px; font-weight: 800; color: var(--navy); letter-spacing: -.028em; margin: 11px 0 0; line-height: 1.2; }
.pcd .rule { border-top: 1px solid var(--line-c); margin: 11px 0; }
.pcd .gap { font-size: 10.5px; color: #5b6079; line-height: 1.45; }
.pcd .gap b { color: var(--navy); }
.pcd .best { font-size: 10.5px; color: #5b6079; margin-top: 8px; }
.pcd .best b { color: var(--navy); }
.pcd .est { background: #eef0fa; border-radius: 9px; padding: 10px; font-size: 9.5px; color: #5b6079; line-height: 1.45; margin-top: 11px; }
.pcd .uw { align-self: flex-start; background: #f2f3fa; border: 1px solid var(--line-c); border-radius: 999px; padding: 4px 10px; font-size: 9px; font-weight: 700; color: #7b8099; margin-top: 11px; }
.pcd .cls { background: #f7f8fd; border-radius: 9px; padding: 9px 10px; font-size: 9.5px; color: #5b6079; line-height: 1.42; margin-top: 9px; }
.pcd .cls b { color: var(--navy); }
.pcd .add { margin-top: auto; background: var(--navy); color: #fff; border-radius: 9px; padding: 10px; text-align: center; font-size: 10.5px; font-weight: 700; }
.pcd .add-sp { margin-top: 12px; }

.pg-scrim { position: absolute; inset: -6px; background: rgba(242,243,250,.58); border-radius: 14px; z-index: 1; }
.pg-modal {
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  width: min(366px, 90%); background: #fff; border-radius: 14px;
  box-shadow: 0 30px 70px rgba(8,10,38,.32); padding: 20px 18px; z-index: 2;
}
.pg-modal .mh { display: flex; align-items: flex-start; gap: 12px; }
.pg-modal .mh h6 { font-family: var(--display); font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -.028em; }
.pg-modal .mh span { margin-left: auto; color: #9297b0; font-size: 15px; line-height: 1; }
.pg-modal .mp { font-size: 10.5px; color: #5b6079; line-height: 1.5; margin: 10px 0 14px; }
.pg-modal .mp b { color: var(--navy); }
.pg-modal .ml2 { font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: #9297b0; margin-bottom: 7px; }
.pg-opt { display: flex; align-items: center; gap: 8px; padding: 9px 11px; border-radius: 9px; font-size: 10.5px; color: #5b6079; border: 1.5px solid transparent; }
.pg-opt.on { background: #fff5f1; border-color: var(--orange); color: var(--navy); font-weight: 700; }
.pg-opt i { width: 12px; flex: none; color: var(--orange); font-style: normal; }
.pg-acts { display: flex; gap: 9px; margin-top: 15px; }
.pg-acts span { flex: 1; text-align: center; border-radius: 9px; padding: 10px; font-size: 10.5px; font-weight: 700; }
.pg-acts .c { background: #f2f3fa; color: #7b8099; }
.pg-acts .g { background: var(--orange); color: #fff; }

@media (max-width: 1040px) { .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .pgrid { grid-template-columns: minmax(0, 1fr); } }

/* ================================================================ SLIDER */

.slider { max-width: 1120px; margin: 0 auto; }
.slider-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
.stab {
  font-family: var(--ui); font-size: .85rem; font-weight: 700;
  padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--line); background: transparent; color: var(--navy);
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.stab:hover { border-color: var(--navy); }
.stab.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.ink .stab { color: #fff; border-color: rgba(255,255,255,.3); }
.ink .stab.on { background: #fff; color: var(--navy); border-color: #fff; }

.slider-track {
  position: relative;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 100%; scroll-snap-align: center; min-width: 0; }

.slider-foot { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
.slider-dots { display: flex; align-items: center; gap: 7px; }
.sldot {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
  background: #cfcddb; cursor: pointer; transition: width .2s ease, background .2s ease;
}
.sldot.on { background: var(--orange); width: 24px; border-radius: 999px; }
.ink .sldot { background: rgba(255,255,255,.32); }
.snav {
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1.5px solid var(--line); color: var(--navy);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
}
.snav:hover { border-color: var(--navy); }
.ink .snav { color: #fff; border-color: rgba(255,255,255,.3); }
.slide-cap { font-size: .8rem; color: var(--mute); margin: 16px auto 0; max-width: 62ch; }

/* ---------------- console: plan, programs, products ---------------- */
.plc { background: #fff; border: 1px solid var(--line-c); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.plc .act { padding: 9px 0; }
.pl-sum { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.pl-sum span { background: #eef0fa; border-radius: 999px; padding: 5px 11px; font-size: 10px; font-weight: 700; color: var(--navy); }

.prog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.prog { background: #fff; border: 1px solid var(--line-c); border-radius: 12px; padding: 13px; }
.prog b { display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin: 8px 0 3px; line-height: 1.3; }
.prog .fm { display: block; font-size: 9.5px; color: #9297b0; }
.prog .wy { display: block; font-size: 10px; color: #5b6079; line-height: 1.45; margin-top: 7px; padding-top: 7px; border-top: 1px dashed var(--line-c); }

.prod-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.prod { background: #fff; border: 1px solid var(--line-c); border-radius: 12px; padding: 13px; }
.prod .gp { font-size: 9px; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; color: var(--orange); }
.prod b { display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin: 7px 0 4px; line-height: 1.3; }
.prod .wh { display: block; font-size: 10px; color: #5b6079; line-height: 1.45; }
.prod .when { display: inline-block; margin-top: 9px; background: #eef0fa; border-radius: 999px; padding: 4px 10px; font-size: 9.5px; font-weight: 700; color: var(--navy); }

@media (max-width: 760px) {
  .prog-grid, .prod-grid { grid-template-columns: minmax(0, 1fr); }
  .slider-track { gap: 14px; }
}

/* ================================================================ DEVICE LINEUP
   One row: phone, tablet, desktop. Each frame lays out at its natural width and
   is shrunk with `zoom`, which collapses the layout box (transform does not). */

.devrow { display: flex; align-items: flex-end; justify-content: center; gap: 26px; flex-wrap: wrap; }
.dev { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.dev-lbl { font-size: .66rem; letter-spacing: .19em; text-transform: uppercase; font-weight: 800; color: var(--mute); }

.tabframe {
  background: var(--navy);
  border-radius: 30px;
  padding: 18px 15px;
  box-shadow: 0 26px 62px rgba(8,10,38,.28);
}
.tabframe-in { background: var(--surface); border-radius: 16px; overflow: hidden; text-align: left; }
.tabframe .cam { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.3); margin: 0 auto 11px; }

.dev-phone .phone { zoom: .82; }
.dev-tab .tabframe { width: 730px; zoom: .44; }
.dev-desk .frame { width: 1202px; max-width: none; margin: 0; zoom: .40; }

@media (max-width: 1160px) {
  .devrow { gap: 20px; }
  .dev-tab .tabframe { zoom: .40; }
  .dev-desk .frame { zoom: .355; }
}
@media (max-width: 940px) {
  .dev-phone .phone { zoom: 1; }
  .dev-tab .tabframe { zoom: .62; }
  .dev-desk .frame { zoom: .54; }
}
/* Below this width a scaled desktop screen is unreadable and would overflow, so
   each device gets its own row at full width and the frames reflow normally. */
@media (max-width: 700px) {
  .devrow { flex-direction: column; align-items: center; gap: 40px; }
  .dev { width: 100%; }
  .dev-phone .phone { zoom: 1; }
  .dev-tab .tabframe { width: 100%; zoom: 1; }
  .dev-desk .frame { width: 100%; max-width: 100%; zoom: 1; }
}

/* Screens adapt to the frame they sit in, not the viewport, so a narrow
   tablet frame reflows even on a wide page. */
.frame-in, .tabframe-in { container-type: inline-size; }

@container (max-width: 800px) {
  .sc-tabs { display: none; }
  .mc-card { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .mc-dims { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rm-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rm-rail { display: none; }
  .cs-body { grid-template-columns: minmax(0, 1fr); }
  .cs-side { border-right: 0; border-bottom: 1px solid var(--line-c); }
  .cs-rail { border-left: 0; border-top: 1px solid var(--line-c); }
  .kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fdims { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cs-chart { grid-template-columns: minmax(0, 1fr); }
  .pgrid { grid-template-columns: minmax(0, 1fr); }
}
@container (max-width: 520px) {
  .mc-dims, .kpis, .fdims { grid-template-columns: minmax(0, 1fr); }
  .rm-cols { grid-template-columns: minmax(0, 1fr); }
  .mc-nav { gap: 13px; padding: 0 13px; }
  .mc-nav span { font-size: 11px; }
}

/* ================================================================ COACH ACADEMY */

.ac-body { padding: 18px; }
.ac-hero {
  background: linear-gradient(118deg, #181b56 0%, #262a72 58%, #3a3560 100%);
  border-radius: 14px; padding: 20px; color: #fff;
  display: grid; grid-template-columns: 1fr 120px; gap: 20px; align-items: center;
}
.ac-hero .eyeb { font-size: 8.5px; letter-spacing: .15em; text-transform: uppercase; font-weight: 800; color: var(--orange-2); }
.ac-hero h5 { font-family: var(--display); font-size: 20px; font-weight: 800; margin: 8px 0 6px; letter-spacing: -.028em; color: #fff; }
.ac-hero p { font-size: 10.5px; color: #c6c8e0; line-height: 1.5; max-width: 56ch; }
.ac-prog { margin-top: 15px; max-width: 380px; }
.ac-prog .row { display: flex; justify-content: space-between; font-size: 9.5px; color: #b9bcd6; margin-bottom: 5px; }
.ac-bar { height: 5px; border-radius: 999px; background: rgba(255,255,255,.16); overflow: hidden; }
.ac-bar i { display: block; height: 100%; background: var(--orange); border-radius: 999px; }
.ac-btn { display: inline-block; margin-top: 14px; background: var(--orange); color: #fff; font-size: 10.5px; font-weight: 700; padding: 9px 15px; border-radius: 8px; }
.ac-badge { text-align: center; }
.ac-badge .ac-ring { width: 72px; height: 72px; border-radius: 50%; border: 2px solid rgba(255,255,255,.22); margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.ac-badge .pill { display: inline-block; margin-top: 10px; background: rgba(255,255,255,.15); border-radius: 999px; padding: 4px 10px; font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.ac-band { border-radius: 12px; padding: 15px 16px; color: #fff; margin: 18px 0 11px; display: flex; align-items: center; gap: 14px; }
.ac-band .tx { min-width: 0; }
.ac-band .k { display: block; font-size: 8.5px; letter-spacing: .15em; text-transform: uppercase; font-weight: 800; opacity: .72; }
.ac-band h6 { font-family: var(--display); font-size: 16px; font-weight: 800; margin: 5px 0 3px; letter-spacing: -.022em; color: #fff; }
.ac-band p { font-size: 10px; opacity: .82; line-height: 1.45; margin: 0; }
.ac-band .pill { margin-left: auto; flex: none; background: rgba(255,255,255,.18); border-radius: 999px; padding: 4px 10px; font-size: 9px; font-weight: 700; }

.ac-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.acm { background: #fff; border: 1px solid var(--line-c); border-radius: 12px; overflow: hidden; }
.acm-med { background: #181b56; height: 88px; position: relative; display: flex; align-items: center; justify-content: center; }
.acm-type { position: absolute; top: 9px; left: 9px; background: rgba(255,255,255,.18); color: #fff; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 3px 7px; border-radius: 5px; }
.acm-play { width: 38px; height: 38px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; }
.acm-done { position: absolute; top: 9px; right: 9px; width: 18px; height: 18px; border-radius: 50%; background: #fff; color: #181b56; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.acm-b { padding: 12px; }
.acm-b b { display: block; font-size: 11.5px; color: var(--navy); font-weight: 700; line-height: 1.3; }
.acm-b span { display: block; font-size: 10px; color: #7b8099; line-height: 1.45; margin-top: 5px; }
.acm-f { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 11px; padding-top: 10px; border-top: 1px solid var(--line-c); }
.acm-f .d { font-size: 9.5px; color: #9297b0; }
.acm-f .s { font-size: 8.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 3px 8px; border-radius: 999px; }
.s-done { background: #e9ebf7; color: #3d4280; }
.s-start { background: var(--peach); color: #b23100; }

/* ================================================================ PLAN BY DECADE + MODAL */

.frame-in { position: relative; }
.pd-cols { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; }
.pd-col { background: #fff; border: 1px solid var(--line-c); border-radius: 12px; padding: 12px 11px; }
.pd-col.on { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(24,27,86,.09); }
.pd-h { display: flex; align-items: center; gap: 7px; }
.pd-h b { font-family: var(--display); font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.pd-now { background: var(--orange); color: #fff; border-radius: 4px; padding: 2px 6px; font-size: 7.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pd-b { font-size: 9.5px; color: #7b8099; line-height: 1.4; margin: 6px 0 10px; }
.pd-chip { display: flex; align-items: center; gap: 6px; background: #eef0fa; border-radius: 7px; padding: 6px 8px; font-size: 9.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.pd-chip i { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.pd-empty { font-size: 9.5px; color: #a3a7bd; margin: 0 0 6px; }
.pd-add { font-size: 9px; font-weight: 700; color: #7b8099; border-top: 1px dashed var(--line-c); padding-top: 8px; margin-top: 4px; }
.pd-leg { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }
.pd-leg span { display: flex; align-items: center; gap: 6px; font-size: 9.5px; color: #7b8099; }
.pd-leg i { width: 7px; height: 7px; border-radius: 50%; }

.pm-ov {
  position: absolute; inset: 0; z-index: 5;
  background: rgba(10,12,40,.5);
  display: flex; align-items: center; justify-content: center;
  padding: 26px;
}
.pm { background: #fff; border-radius: 14px; width: 100%; max-width: 360px; box-shadow: 0 30px 70px rgba(8,10,38,.45); overflow: hidden; }
.pm-t { display: flex; align-items: center; justify-content: space-between; padding: 15px 16px 0; }
.pm-t b { font-family: var(--display); font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -.025em; }
.pm-x { color: #9297b0; font-size: 15px; }
.pm-seg { display: flex; gap: 4px; background: #eef0fa; border-radius: 9px; padding: 4px; margin: 14px 16px; }
.pm-seg span { flex: 1; text-align: center; font-size: 10px; font-weight: 700; color: #7b8099; padding: 6px 4px; border-radius: 6px; }
.pm-seg span.on { background: #fff; color: var(--navy); box-shadow: 0 1px 3px rgba(24,27,86,.12); }
.pm-list { padding: 0 16px; max-height: 232px; overflow: hidden; }
.pm-row { display: flex; align-items: flex-start; gap: 10px; border: 1px solid var(--line-c); border-radius: 10px; padding: 10px 11px; margin-bottom: 8px; }
.pm-row > i { width: 8px; height: 8px; border-radius: 50%; background: var(--navy-2); flex: none; margin-top: 4px; }
.pm-row b { display: block; font-size: 10.5px; font-weight: 700; color: var(--navy); }
.pm-row span span { display: block; font-size: 9.5px; color: #7b8099; line-height: 1.4; margin-top: 2px; }
.pm-f { display: flex; justify-content: flex-end; padding: 6px 16px 16px; }
.pm-cancel { background: #eef0fa; border-radius: 8px; padding: 8px 16px; font-size: 10.5px; font-weight: 700; color: var(--navy); }

/* ================================================================ SILO CONTRAST */

.silo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 900px; margin: 0 auto; text-align: left; }
.silo-col { border-radius: 16px; padding: 26px 24px; border: 1px solid var(--line); background: #fff; }
.silo-col.now { background: var(--navy); border-color: var(--navy); }
.silo-col h3 { font-family: var(--display); font-size: 1.25rem; font-weight: 800; letter-spacing: -.025em; }
.silo-col.now h3 { color: #fff; }
.silo-col .sub { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; color: var(--mute); margin-bottom: 10px; }
.silo-col.now .sub { color: var(--orange-2); }
.silo-col ul { list-style: none; margin: 18px 0 0; padding: 0; }
.silo-col li { font-size: .9rem; color: var(--body); line-height: 1.5; padding: 11px 0 11px 22px; border-top: 1px solid var(--line-2); position: relative; }
.silo-col li::before { content: "\2013"; position: absolute; left: 0; color: var(--mute); }
.silo-col.now li { color: #c6c8e0; border-color: rgba(255,255,255,.14); }
.silo-col.now li::before { content: "\2192"; color: var(--orange-2); }

@media (max-width: 1040px) { .ac-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .pd-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .ac-hero { grid-template-columns: minmax(0, 1fr); }
  .ac-badge { display: none; }
  .ac-grid { grid-template-columns: minmax(0, 1fr); }
  .pd-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pm-ov { padding: 14px; }
  .silo { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 460px) { .pd-cols { grid-template-columns: minmax(0, 1fr); } .ac-body { padding: 14px; } }

/* ================================================================ COMMUNITY SCREEN */

.cmgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.cmc { background: #fff; border: 1px solid var(--line-c); border-radius: 14px; padding: 16px 15px; display: flex; flex-direction: column; }
.cmc-t { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.cmc-match { background: var(--peach); color: #b23100; border-radius: 999px; padding: 4px 10px; font-size: 9.5px; font-weight: 700; white-space: nowrap; }
.cmc h6 { font-family: var(--display); font-size: 15px; font-weight: 800; color: var(--navy); letter-spacing: -.028em; margin: 12px 0 0; line-height: 1.22; }
.cmc .bd { font-size: 10.5px; color: #5b6079; line-height: 1.5; margin: 9px 0 0; }
.cmc .meta { font-size: 9.5px; color: #9297b0; margin: 13px 0 0; }
.cmc .join { margin-top: auto; background: var(--navy); color: #fff; border-radius: 9px; padding: 10px; text-align: center; font-size: 10.5px; font-weight: 700; margin-top: 14px; }

@container (max-width: 800px) { .cmgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@container (max-width: 520px) { .cmgrid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 640px) { .cmgrid { grid-template-columns: minmax(0, 1fr); } }

/* ================================================================ STEPS AS A GRID
   Variant of .steps for sections where a tall stacked list reads poorly. */

.steps.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 0;
  max-width: none;
  align-items: start;
}
.steps-grid .step {
  border-bottom: 0;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.alt .steps-grid .step { background: var(--cream); }
.ink .steps-grid .step { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.steps-grid .step ul { margin-top: 13px; }

@media (max-width: 900px) { .steps.steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .steps.steps-grid { grid-template-columns: minmax(0, 1fr); } }

/* body padding for hero cards that hold coaching copy rather than rows */
.hcard-body { padding: 15px 16px 17px; }
/* the rl-* styles are sized for the scaled console rail, so scale them back up here */
.hcard-body .rl-lbl { font-size: .63rem; margin: 16px 0 8px; }
.hcard-body .rl-q { font-size: .845rem; line-height: 1.5; padding-left: 13px; }
.hcard-body .rl-p, .hcard-body .rl-ul li { font-size: .845rem; line-height: 1.5; }
.hcard-body .rl-lbl:first-child { margin-top: 0; }
.hcard-body .rl-ul li:last-child { margin-bottom: 0; }

/* Lighter veil variant, for heroes where the photograph should carry more of the frame. */
.hero-dark.light .hero-veil {
  background:
    radial-gradient(90% 80% at 100% 108%, rgba(255,70,0,.26) 0%, rgba(255,70,0,0) 62%),
    radial-gradient(70% 70% at 88% 0%, rgba(127,148,245,.14) 0%, rgba(127,148,245,0) 60%),
    linear-gradient(100deg, rgba(24,27,86,.9) 0%, rgba(24,27,86,.76) 38%, rgba(24,27,86,.4) 100%);
}
/* a soft scrim directly behind the copy column keeps the headline legible
   even where the photograph is bright */
.hero-dark.light .hero-copy { position: relative; }
.hero-dark.light .hero-copy::before {
  content: "";
  position: absolute;
  inset: -40px -60px -40px -80px;
  background: radial-gradient(60% 70% at 30% 50%, rgba(24,27,86,.5) 0%, rgba(24,27,86,0) 75%);
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 940px) {
  .hero-dark.light .hero-veil {
    background:
      radial-gradient(90% 60% at 100% 100%, rgba(255,70,0,.24) 0%, rgba(255,70,0,0) 64%),
      linear-gradient(180deg, rgba(24,27,86,.82) 0%, rgba(24,27,86,.88) 60%, rgba(24,27,86,.92) 100%);
  }
  .hero-dark.light .hero-copy::before { display: none; }
}

/* ================================================================ MEMBER HOME SCREEN */

.mh-head { font-family: var(--display); font-size: 25px; font-weight: 800; color: var(--navy); letter-spacing: -.032em; line-height: 1.14; }
.mh-sub { font-size: 12px; color: #5b6079; margin-top: 6px; }
.mh-sub a { color: var(--orange); font-weight: 700; }

.mh-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 14px; margin-top: 18px; align-items: start; }
.mh-plan { background: var(--navy); border-radius: 14px; padding: 20px 18px; }
.mh-plan .lbl { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; font-weight: 800; color: var(--orange-2); }
.mh-plan h5 { font-family: var(--display); font-size: 19px; font-weight: 800; letter-spacing: -.03em; color: #fff; margin: 11px 0 0; line-height: 1.2; }
.mh-plan .bd { font-size: 11.5px; color: #c6c8e0; line-height: 1.5; margin: 10px 0 0; }
.mh-today { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 12px 13px; margin-top: 16px; display: flex; gap: 9px; align-items: flex-start; }
.mh-today i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex: none; margin-top: 5px; }
.mh-today .t1 { display: block; font-size: 12px; font-weight: 700; color: #fff; }
.mh-today .t2 { display: block; font-size: 10.5px; color: #a8abc4; margin-top: 2px; }
.mh-launch { display: inline-block; background: var(--orange); color: #fff; border-radius: 999px; padding: 11px 18px; font-size: 12px; font-weight: 700; margin-top: 17px; }

.mh-side { display: grid; gap: 12px; }
.mh-card { background: #fff; border: 1px solid var(--line-c); border-radius: 14px; padding: 16px 15px; }
.mh-ready { display: flex; gap: 14px; align-items: center; }
.mh-ready .ringwrap { width: 94px; height: 94px; flex: none; }
.mh-ready .ring8::after { inset: 13px; background: #fff; }
.mh-ready .ringnum b { font-size: 1.32rem; }
.mh-ready .ringnum s { font-size: .4rem; margin-top: 3px; letter-spacing: .14em; }
.mh-ready .nm { font-family: var(--display); font-size: 13.5px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.mh-ready .bd { font-size: 11px; color: #5b6079; line-height: 1.45; margin-top: 5px; }
.mh-ready .lk { display: inline-block; font-size: 11px; font-weight: 700; color: var(--orange); margin-top: 8px; text-decoration: underline; }

.mh-coach { display: flex; align-items: center; gap: 11px; }
.mh-coach .av { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12.5px; flex: none; }
.mh-coach .nm { display: block; font-size: 12.5px; font-weight: 700; color: var(--navy); }
.mh-coach .rl { display: block; font-size: 10.5px; color: #7b8099; margin-top: 1px; }
.mh-coach .bk { margin-left: auto; background: #eef0fa; color: var(--navy); border-radius: 8px; padding: 8px 12px; font-size: 10.5px; font-weight: 700; white-space: nowrap; }

.mh-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.mh-tile { background: #fff; border: 1px solid var(--line-c); border-radius: 14px; padding: 16px 15px; }
.mh-tile .ic { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 13px; }
.mh-tile .nm { display: block; font-size: 12.5px; font-weight: 700; color: var(--navy); }
.mh-tile .bd { display: block; font-size: 10.5px; color: #7b8099; margin-top: 3px; }

@container (max-width: 800px) {
  .mh-grid { grid-template-columns: minmax(0, 1fr); }
  .mh-tiles { grid-template-columns: minmax(0, 1fr); }
}

/* a full product screen sitting in the right column of a dark hero */
.hero-dark-in.wide-right { grid-template-columns: .82fr 1.18fr; gap: 44px; }
/* natural width 880, scaled to fill the column at each breakpoint */
.hero-screen .frame { width: 880px; max-width: none; margin: 0; zoom: .71; }
@media (max-width: 1280px) { .hero-screen .frame { zoom: .66; } }
@media (max-width: 1180px) { .hero-screen .frame { zoom: .58; } }
@media (max-width: 1040px) { .hero-screen .frame { zoom: .52; } }
@media (max-width: 940px) {
  .hero-dark-in.wide-right { grid-template-columns: minmax(0, 1fr); }
  .hero-screen .frame { width: 100%; zoom: 1; }
}

/* ================================================================ LIGHT SPLIT HERO
   Same two-column shape as the dark hero, kept on cream. */

.hero-light { background: var(--cream); padding: 74px 0 78px; text-align: left; }
.hero-light-in { display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px; align-items: center; }
.hero-light .hero-copy h1 { color: var(--navy); }
.hero-light .hero-copy .lede { color: var(--body); }
.hero-light .hero-copy .chip { background: #fff; border-color: var(--line); color: var(--navy); }
.hero-light .hero-copy .btn-ghost { color: var(--navy); border-color: #cfc9bd; }
.hero-light .hero-copy .btn-ghost:hover { border-color: var(--navy); background: rgba(24,27,86,.05); }
.hero-light .hero-copy .btn-primary { box-shadow: 0 10px 26px rgba(255,70,0,.26); }

@media (max-width: 940px) {
  .hero-light { padding: 56px 0 62px; }
  .hero-light-in { grid-template-columns: minmax(0, 1fr); gap: 38px; text-align: center; }
  .hero-light .hero-copy { text-align: center; }
  .hero-light .hero-copy .eyebrow { justify-content: center; }
  .hero-light .hero-copy .eyebrow::before, .hero-light .hero-copy .eyebrow::after { display: block; }
  .hero-light .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-light .hero-copy .btns, .hero-light .hero-copy .chips { justify-content: center; }
}
