/* ============ Design tokens (from design_handoff_promo_website/README.md) ============ */
:root {
  --navy: #0A1B2E;
  --navy-light: #16345C;
  --navy-gradient: linear-gradient(165deg, #16345C, #0A1B2E 58%);
  --gold: #D4AF37;
  --gold-hover: #F0C959;
  --cream: #F4F3EE;
  --card-white: #FFFFFF;
  --card-border: #EBE9E1;
  --text-body: #4D5A68;
  --text-body-strong: #3D4A58;
  --text-muted: #6B7A89;
  --text-faint: #8A97A5;
  --text-on-navy: #9FB0C3;
  --text-on-navy-muted: #7C8DA3;
  --text-on-navy-faint: #5E7186;
  --green: #1F8A5B;
  --green-on-dark: #5FD39B;
  --font-display: 'Lora', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ============ Base ============ */
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); background: var(--cream); overflow-x: hidden; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }
img { max-width: 100%; }
button { font-family: inherit; }
::selection { background: rgba(212, 175, 55, .35); }

@keyframes ufade { 0% { opacity: 0; transform: translateY(14px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes uwave { 0%, 60%, 100% { transform: rotate(0deg); } 10%, 30% { transform: rotate(14deg); } 20% { transform: rotate(-8deg); } }
@keyframes goalGrow { 0% { width: 0; } 100% { width: 60%; } }

/* ============ Shared ============ */
.container { max-width: 1180px; margin: 0 auto; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 1.6px; color: var(--gold); text-transform: uppercase; }
.section { padding: 100px 32px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-title { font-family: var(--font-display); font-size: 36px; font-weight: 600; margin: 14px 0 0; }
.section-title--dark { color: var(--navy); }
.section-title--light { color: #fff; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: var(--navy); border: none; cursor: pointer;
  font-size: 14.5px; font-weight: 800; padding: 15px 24px; border-radius: 13px;
  box-shadow: 0 10px 24px -8px rgba(212, 175, 55, .5); white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-hover); color: var(--navy); }

/* ============ Nav ============ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 27, 46, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.site-nav__inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__icon { width: 34px; height: 34px; border-radius: 9px; display: block; }
.wordmark { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: #fff; }
.wordmark em { font-style: normal; color: var(--gold); }
.site-nav__links { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.site-nav__links a { font-size: 14px; font-weight: 600; color: #C5D2E0; }
.site-nav__links a:hover { color: #fff; }
.btn-pill {
  background: var(--gold); color: var(--navy); font-size: 13.5px; font-weight: 800;
  padding: 11px 20px; border-radius: 99px;
  box-shadow: 0 8px 18px -8px rgba(212, 175, 55, .6);
}
.btn-pill:hover { background: var(--gold-hover); color: var(--navy); }

/* ============ Hero ============ */
.hero { background: var(--navy-gradient); padding: 76px 32px 96px; position: relative; overflow: hidden; }
.hero__inner { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; }
.hero__copy { flex: 1 1 460px; min-width: 320px; animation: ufade .6s cubic-bezier(.22, 1, .36, 1) both; }
.hero__title {
  font-family: var(--font-display); font-size: 52px; line-height: 1.12; font-weight: 600;
  color: #fff; margin: 16px 0 0; max-width: 560px;
}
.hero__sub { font-size: 17.5px; line-height: 1.6; color: var(--text-on-navy); margin: 20px 0 0; max-width: 500px; }

.waitlist { margin-top: 32px; }
.waitlist__form { display: flex; gap: 10px; max-width: 440px; flex-wrap: wrap; }
.waitlist__input {
  flex: 1 1 220px; background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .14); border-radius: 13px;
  padding: 15px 16px; font-size: 14.5px; color: #fff; font-family: var(--font-body); outline: none;
}
.waitlist__input::placeholder { color: var(--text-on-navy-muted); }
.waitlist__input:focus { border-color: rgba(212, 175, 55, .6); }
.waitlist__success {
  display: flex; align-items: center; gap: 10px;
  background: rgba(31, 138, 91, .14); border: 1px solid rgba(95, 211, 155, .4);
  border-radius: 14px; padding: 15px 18px; max-width: 440px;
  animation: ufade .3s ease;
}
.waitlist__success span { font-size: 14px; font-weight: 700; color: #fff; }
.waitlist__error { font-size: 13px; font-weight: 600; color: #F0A99F; margin-top: 10px; }
.waitlist__note { font-size: 12.5px; color: var(--text-on-navy-muted); margin-top: 10px; }
.btn-gold:disabled { opacity: .7; cursor: default; }
.hidden { display: none !important; }

.store-badges { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px; padding: 10px 16px;
}
.store-badge__kicker { font-size: 9.5px; font-weight: 700; color: var(--text-on-navy-muted); letter-spacing: .5px; }
.store-badge__name { font-size: 14px; font-weight: 800; color: #fff; }

.built-for { margin-top: 28px; font-size: 12.5px; color: var(--text-on-navy-faint); }
.built-for b { color: var(--text-on-navy); }

/* ============ Phone mockup ============ */
.phone-viewport { flex: 0 0 auto; margin: 0 auto; overflow: hidden; }
.phone-viewport--hero { width: 308px; height: 660px; animation: ufade .7s cubic-bezier(.22, 1, .36, 1) .1s both; }
.phone-viewport--community { width: 280px; height: 600px; }
.phone-frame {
  width: 392px; height: 844px; transform-origin: top left;
  background: #05080d; border-radius: 56px; padding: 13px;
  box-shadow: 0 50px 120px -30px rgba(0, 0, 0, .8), 0 0 0 2px rgba(255, 255, 255, .04);
}
.phone-viewport--hero .phone-frame { transform: scale(.786); }
.phone-viewport--community .phone-frame { transform: scale(.714); box-shadow: 0 50px 120px -30px rgba(0, 0, 0, .8); }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 44px; overflow: hidden; }
.phone-screen--navy { background: var(--navy); }
.phone-screen--cream { background: var(--cream); }
.phone-notch {
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 118px; height: 33px; background: #05080d; border-radius: 20px; z-index: 30;
}
.phone-status {
  position: absolute; top: 0; left: 0; right: 0; height: 54px; padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between; z-index: 20; color: #fff;
}
.phone-status__time { font-size: 15px; font-weight: 700; }
.phone-status__icons { display: flex; align-items: center; gap: 7px; }
.phone-scroll { position: absolute; inset: 0; overflow-y: auto; scrollbar-width: none; }
.phone-scroll::-webkit-scrollbar { display: none; }
.phone-scroll--home { padding-bottom: 40px; }
.phone-scroll--community { padding-bottom: 70px; }

/* --- Home screen (hero phone) --- */
.home-header { background: var(--navy); padding: 62px 22px 20px; }
.home-header__row { display: flex; align-items: center; justify-content: space-between; }
.home-header__wordmark { font-family: var(--font-display); font-size: 23px; font-weight: 600; color: #fff; }
.home-header__wordmark em { font-style: normal; color: var(--gold); }
.home-header__bell {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, .06);
  display: flex; align-items: center; justify-content: center;
}
.home-header__greeting {
  margin-top: 16px; font-size: 21px; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: 6px;
}
.home-header__greeting .wave { display: inline-block; animation: uwave 2.4s ease infinite; }
.home-header__sub { margin-top: 4px; font-size: 13px; color: var(--text-on-navy); }

.zuri-card {
  margin: 16px 20px 0; background: linear-gradient(135deg, #13294a, #0d1f38);
  border: 1px solid rgba(212, 175, 55, .25); border-radius: 20px; padding: 15px 15px 16px;
}
.zuri-card__row { display: flex; align-items: center; gap: 6px; }
.zuri-card__mascot { flex: 0 0 66px; height: 82px; position: relative; }
.zuri-card__mascot .zuri { position: absolute; bottom: 0; left: -8px; transform: scale(.56); transform-origin: bottom left; }
.zuri-card__body { flex: 1; }
.zuri-card__bubble {
  background: #fff; border-radius: 14px; border-bottom-left-radius: 4px;
  padding: 9px 12px; font-size: 12px; font-weight: 700; color: var(--navy); line-height: 1.35;
}
.zuri-card__track { margin-top: 8px; height: 7px; background: rgba(255, 255, 255, .1); border-radius: 99px; overflow: hidden; }
.zuri-card__fill {
  height: 100%; width: 60%; background: linear-gradient(90deg, #D4AF37, #F0C959);
  border-radius: 99px; animation: goalGrow 1s cubic-bezier(.34, 1.56, .64, 1);
}

.home-topics { padding: 20px 20px 8px; }
.home-topics__label { font-size: 11px; font-weight: 700; letter-spacing: 1.3px; color: var(--text-on-navy-muted); margin-bottom: 12px; }
.home-topics__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.topic-tile { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.topic-tile__icon {
  width: 50px; height: 50px; border-radius: 16px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .07);
  display: flex; align-items: center; justify-content: center;
}
.topic-tile__icon img { width: 30px; height: 30px; }
.topic-tile__label { font-size: 9.5px; font-weight: 600; color: #C5D2E0; }
.home-cta {
  margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); border-radius: 13px; padding: 13px;
  box-shadow: 0 10px 24px -8px rgba(212, 175, 55, .5);
}
.home-cta span { font-size: 13.5px; font-weight: 800; color: var(--navy); }

/* --- Zuri mascot (happy variant) --- */
@keyframes happyHop {
  0%, 100% { transform: translateY(0) scale(1, 1); }
  30% { transform: translateY(-24px) scale(1.06, .94); }
  50% { transform: translateY(-24px) scale(1.04, .96); }
  70% { transform: translateY(0) scale(.9, 1.1); }
  85% { transform: translateY(0) scale(1.04, .96); }
}
@keyframes zcrest { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(7deg); } }
@keyframes zwingL { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(-16deg); } }
@keyframes zwingR { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(16deg); } }
@keyframes ztail { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(6deg); } }
.zuri { width: 130px; height: 152px; position: relative; }
.zuri svg { overflow: visible; }
.zuri__body { transform-origin: 65px 132px; animation: happyHop .7s cubic-bezier(.34, 1.56, .64, 1) infinite; }
.zuri__tail { transform-origin: 88px 128px; animation: ztail 2.8s ease-in-out infinite; }
.zuri__crest { transform-origin: 62px 24px; animation: zcrest 2.2s ease-in-out infinite; }
.zuri__wing-l { transform-origin: 28px 74px; animation: zwingL .35s ease-in-out infinite; }
.zuri__wing-r { transform-origin: 102px 74px; animation: zwingR .35s ease-in-out infinite; }

/* ============ Features ============ */
.feature-card {
  background: var(--card-white); border: 1px solid var(--card-border); border-radius: 20px;
  padding: 30px; box-shadow: 0 2px 8px rgba(10, 27, 46, .04);
}
.feature-card__icon {
  width: 52px; height: 52px; border-radius: 15px; background: rgba(212, 175, 55, .13);
  display: flex; align-items: center; justify-content: center;
}
.feature-card__icon img { width: 30px; height: 30px; }
.feature-card__title { font-size: 19px; font-weight: 800; color: var(--navy); margin-top: 18px; }
.feature-card__desc { font-size: 14.5px; line-height: 1.6; color: var(--text-body); margin-top: 8px; }

.preview-topic { margin-top: 20px; display: flex; align-items: center; gap: 12px; background: #F7F6F1; border-radius: 14px; padding: 12px; }
.preview-topic__icon {
  width: 38px; height: 38px; border-radius: 11px; background: rgba(232, 106, 106, .13);
  display: flex; align-items: center; justify-content: center; flex: 0 0 38px;
}
.preview-topic__icon img { width: 22px; height: 22px; }
.preview-topic__body { flex: 1; }
.preview-topic__title { font-size: 13px; font-weight: 700; color: var(--navy); }
.preview-topic__meta { font-size: 11px; color: var(--text-muted); }

.preview-question { margin-top: 20px; background: #0D1F38; border-radius: 14px; padding: 13px; }
.preview-question__stem { font-size: 11px; font-weight: 700; color: var(--text-on-navy); }
.preview-question__answer {
  margin-top: 9px; background: rgba(31, 138, 91, .16); border: 1px solid rgba(31, 138, 91, .5);
  border-radius: 9px; padding: 8px 11px; font-size: 12px; font-weight: 700; color: var(--green-on-dark);
}

.preview-progress { margin-top: 20px; display: flex; align-items: center; gap: 14px; background: #F7F6F1; border-radius: 14px; padding: 13px; }
.preview-progress__ring {
  width: 52px; height: 52px; border-radius: 50%;
  background: conic-gradient(var(--gold) 0 72%, var(--card-border) 0);
  display: flex; align-items: center; justify-content: center; flex: 0 0 52px;
}
.preview-progress__ring div {
  width: 38px; height: 38px; border-radius: 50%; background: #F7F6F1;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: var(--navy);
}
.preview-progress__title { font-size: 13px; font-weight: 800; color: var(--navy); }
.preview-progress__meta { font-size: 11px; color: var(--text-muted); }

/* ============ Community ============ */
.community { background: var(--navy-gradient); padding: 100px 32px; }
.community__inner { display: flex; align-items: center; gap: 56px; flex-wrap: wrap-reverse; }
.community__copy { flex: 1 1 460px; min-width: 320px; }
.community__copy .section-title { max-width: 480px; }
.community__desc { font-size: 16px; line-height: 1.65; color: var(--text-on-navy); margin-top: 18px; max-width: 480px; }
.community__hint { font-size: 12px; color: var(--text-on-navy-faint); margin-top: 14px; }
.community__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; max-width: 480px; }
.comm-card {
  cursor: pointer; border-radius: 14px; padding: 15px; text-align: left;
  background: rgba(255, 255, 255, .06); border: 1.5px solid rgba(255, 255, 255, .1);
  transition: background .2s ease, border-color .2s ease;
}
.comm-card.active { background: rgba(212, 175, 55, .16); border-color: var(--gold); }
.comm-card__title { font-size: 13.5px; font-weight: 800; color: #fff; }
.comm-card__sub { font-size: 12px; color: var(--text-on-navy); margin-top: 4px; }

.app-screen { display: none; }
.app-screen.active { display: block; animation: ufade .3s ease; }

.app-header { background: var(--navy); padding: 62px 18px 16px; }
.app-header__title { font-size: 17px; font-weight: 800; color: #fff; }
.app-header--back { padding: 62px 16px 14px; display: flex; align-items: center; gap: 10px; }
.app-header--back .app-header__title { font-size: 16px; }
.app-tabs { display: flex; gap: 16px; margin-top: 14px; }
.app-tabs span { font-size: 12px; font-weight: 700; color: var(--text-on-navy-muted); padding-bottom: 7px; }
.app-tabs .active { color: var(--gold); border-bottom: 2.5px solid var(--gold); }

/* --- Match screen --- */
.match-body { padding: 18px 20px 8px; }
.match-body__title { font-size: 15px; font-weight: 800; color: var(--navy); }
.match-body__sub { font-size: 11.5px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.match-fields { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.match-field {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--card-border); border-radius: 13px; padding: 12px;
}
.match-field__body { flex: 1; }
.match-field__title { font-size: 12px; font-weight: 800; color: var(--navy); }
.match-field__value { font-size: 10.5px; color: var(--text-faint); }
.match-cta {
  margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); border-radius: 13px; padding: 13px;
  box-shadow: 0 10px 24px -8px rgba(212, 175, 55, .5);
}
.match-cta span { font-size: 13px; font-weight: 800; color: var(--navy); }

/* --- Sessions screen --- */
.sessions-body { padding: 16px 18px 8px; display: flex; flex-direction: column; gap: 11px; }
.session-card { background: #fff; border: 1px solid var(--card-border); border-radius: 15px; padding: 14px; }
.session-card__row { display: flex; align-items: flex-start; justify-content: space-between; }
.session-card__badge { font-size: 9.5px; font-weight: 800; color: var(--navy); background: var(--gold); padding: 3px 8px; border-radius: 99px; }
.session-card__badge--muted { color: var(--text-muted); background: #EFEDE5; }
.session-card__title { font-size: 13px; font-weight: 800; color: var(--navy); margin-top: 8px; }
.session-card__join { background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 13px; border-radius: 99px; }
.session-card__meta { font-size: 11px; color: var(--text-muted); margin-top: 7px; }
.sessions-cta { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--navy); border-radius: 13px; padding: 13px; }
.sessions-cta span { font-size: 12.5px; font-weight: 800; color: #fff; }

/* --- Feed screen --- */
.feed-body { padding: 13px 15px 8px; }
.feed-pills { display: flex; gap: 7px; }
.feed-pill { font-size: 10.5px; font-weight: 700; padding: 6px 13px; border-radius: 99px; }
.feed-pill--active { background: var(--gold); color: var(--navy); font-weight: 800; }
.feed-pill--idle { background: #fff; border: 1px solid var(--card-border); color: var(--text-muted); }
.feed-topics { display: flex; gap: 6px; overflow-x: auto; margin-top: 8px; scrollbar-width: none; }
.feed-topics::-webkit-scrollbar { display: none; }
.feed-topic { font-size: 10px; font-weight: 700; padding: 5px 11px; border-radius: 99px; white-space: nowrap; flex: 0 0 auto; }
.feed-topic--active { background: var(--navy); color: #fff; }
.feed-topic--idle { background: #fff; border: 1px solid var(--card-border); color: var(--text-muted); }
.feed-sort { display: flex; justify-content: flex-end; gap: 6px; margin-top: 8px; }
.feed-sort__hot { background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 800; padding: 5px 12px; border-radius: 99px; }
.feed-sort__new { color: #9AA7B4; font-size: 10px; font-weight: 700; padding: 5px 6px; }
.feed-posts { display: flex; flex-direction: column; gap: 10px; margin-top: 11px; }
.feed-post { display: flex; background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--card-border); }
.feed-post__votes { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 9px; gap: 1px; }
.feed-post__votes--hot { background: #F7EFD8; }
.feed-post__count { font-size: 10px; font-weight: 800; color: var(--text-faint); }
.feed-post__votes--hot .feed-post__count { color: var(--gold); }
.feed-post__body { padding: 11px 12px; flex: 1; min-width: 0; }
.feed-post__author { display: flex; align-items: center; gap: 6px; }
.feed-post__avatar { width: 19px; height: 19px; border-radius: 50%; flex: 0 0 19px; }
.feed-post__name { font-size: 10.5px; font-weight: 800; color: var(--navy); }
.feed-post__meta { font-size: 9px; color: #9AA7B4; margin-top: 1px; margin-left: 25px; }
.feed-post__meta em { font-style: normal; color: #8B7FD4; }
.feed-post__title { font-size: 12px; font-weight: 800; color: var(--navy); margin-top: 6px; }
.feed-post__text { font-size: 10.5px; color: var(--text-body); margin-top: 3px; line-height: 1.35; }
.feed-post__actions { display: flex; gap: 12px; margin-top: 8px; }
.feed-post__actions span { font-size: 9.5px; color: var(--text-muted); font-weight: 700; }

/* --- Wellness screen --- */
.wellness-body { padding: 16px 16px 8px; }
.wellness-hero { background: var(--navy); border-radius: 16px; padding: 20px 16px; text-align: center; }
.wellness-hero svg { margin: 0 auto; display: block; }
.wellness-hero__title { font-size: 15px; font-weight: 800; color: #fff; margin-top: 9px; }
.wellness-hero__sub { font-size: 10.5px; color: var(--text-on-navy); margin-top: 6px; line-height: 1.4; }
.wellness-list { margin-top: 13px; background: #fff; border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; }
.wellness-row { display: flex; align-items: center; gap: 11px; padding: 12px 13px; border-bottom: 1px solid #EFEDE5; }
.wellness-row:last-child { border-bottom: none; }
.wellness-row__emoji { font-size: 15px; }
.wellness-row__label { flex: 1; font-size: 11.5px; font-weight: 700; color: var(--navy); }

/* --- Phone tab bar --- */
.tabbar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--card-border); padding: 9px 10px 14px;
  display: flex; justify-content: space-around;
}
.tabbar__item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.tabbar__label { font-size: 8.5px; font-weight: 700; color: #A3AEBB; }
.tabbar__item--active .tabbar__label { font-weight: 800; color: var(--gold); }

/* ============ Stories ============ */
.quote-card { background: var(--card-white); border: 1px solid var(--card-border); border-radius: 20px; padding: 28px; }
.quote-card__mark { font-family: var(--font-display); font-size: 34px; color: var(--gold); line-height: .5; }
.quote-card__text { font-size: 15px; line-height: 1.6; color: var(--text-body-strong); margin-top: 10px; }
.quote-card__author { display: flex; align-items: center; gap: 11px; margin-top: 20px; }
.quote-card__avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800;
}
.quote-card__name { font-size: 13.5px; font-weight: 800; color: var(--navy); }
.quote-card__program { font-size: 11.5px; color: var(--text-faint); }

/* ============ Philosophy ============ */
.philosophy { padding: 0 32px 100px; }
.philosophy__card {
  max-width: 840px; margin: 0 auto; background: var(--navy-gradient);
  border-radius: 28px; padding: 64px 48px; text-align: center;
}
.philosophy__quote { font-family: var(--font-display); font-style: italic; font-size: 38px; font-weight: 600; color: #fff; margin-top: 18px; }
.philosophy__text { font-size: 15.5px; line-height: 1.75; color: #C5D2E0; margin: 24px auto 0; max-width: 600px; }
.philosophy__signoff { font-size: 13px; font-weight: 700; color: var(--text-on-navy-muted); margin-top: 26px; }

/* ============ Pricing ============ */
.pricing { padding: 0 32px 100px; }
.pricing__row { display: flex; justify-content: center; }
.plan-card {
  flex: 1 1 320px; max-width: 440px; background: var(--navy);
  border: 1.5px solid var(--gold); border-radius: 22px; padding: 36px; position: relative;
}
.plan-card__badge {
  position: absolute; top: -14px; left: 36px; background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 99px;
}
.plan-card__name { font-size: 15px; font-weight: 800; color: #fff; }
.plan-card__price-row { margin-top: 10px; display: flex; align-items: baseline; gap: 4px; }
.plan-card__price { font-size: 38px; font-weight: 800; color: #fff; }
.plan-card__cadence { font-size: 13px; color: var(--text-on-navy); }
.plan-card__tagline { font-size: 13.5px; color: var(--text-on-navy); margin-top: 8px; }
.plan-card__list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.plan-card__item { display: flex; align-items: center; gap: 10px; }
.plan-card__item span { font-size: 13.5px; color: #DBE4EE; }
.plan-card__cta {
  display: block; text-align: center; margin-top: 28px;
  background: var(--gold); color: var(--navy); font-size: 14px; font-weight: 800;
  padding: 14px; border-radius: 13px; box-shadow: 0 10px 24px -8px rgba(212, 175, 55, .5);
}
.plan-card__cta:hover { background: var(--gold-hover); color: var(--navy); }
.pricing__footnote { text-align: center; font-size: 13px; color: var(--text-faint); margin-top: 24px; }

/* ============ FAQ ============ */
.faq { padding: 0 32px 110px; }
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 44px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-white); border: 1px solid var(--card-border); border-radius: 16px; padding: 6px 22px; }
.faq-item__toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 16px 0; cursor: pointer;
  background: none; border: none; text-align: left;
}
.faq-item__q { font-size: 15px; font-weight: 700; color: var(--navy); }
.faq-item__chevron {
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
  transition: transform .25s ease;
}
.faq-item.open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a { display: none; font-size: 14px; line-height: 1.65; color: var(--text-body); padding: 0 0 18px; max-width: 600px; margin: 0; }
.faq-item.open .faq-item__a { display: block; }

/* ============ Footer ============ */
.site-footer { background: var(--navy); padding: 64px 32px 32px; }
.site-footer__top {
  display: flex; gap: 56px; flex-wrap: wrap; justify-content: space-between;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-footer__about { flex: 1 1 280px; max-width: 340px; }
.site-footer__about .brand__icon { width: 38px; height: 38px; border-radius: 10px; }
.site-footer__about .wordmark { font-size: 22px; }
.site-footer__desc { font-size: 13.5px; color: var(--text-on-navy-muted); margin-top: 10px; line-height: 1.6; }
.site-footer__tagline { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--gold); margin-top: 16px; }
.site-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.site-footer__col-title { font-size: 11.5px; font-weight: 700; letter-spacing: 1px; color: var(--text-on-navy-faint); margin-bottom: 14px; }
.site-footer__links { display: flex; flex-direction: column; gap: 11px; }
.site-footer__links a { font-size: 13.5px; color: var(--text-on-navy); }
.site-footer__links a:hover { color: #fff; }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; flex-wrap: wrap; gap: 12px;
}
.site-footer__bottom span { font-size: 12.5px; color: var(--text-on-navy-faint); }

/* ============ Help band (homepage) ============ */
.help-band { padding: 0 32px 110px; }
.help-band__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.help-band__text { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 16px 0 24px; }

/* ============ Legal pages (terms/, privacy/) ============ */
.legal-page { max-width: 760px; margin: 0 auto; padding: 64px 32px 100px; }
.legal-page h1 { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--navy); margin: 0; }
.legal-page .legal-meta { font-size: 13px; color: var(--text-faint); margin-top: 10px; }
.legal-page h2 { font-size: 19px; font-weight: 800; color: var(--navy); margin: 36px 0 0; }
.legal-page p, .legal-page li { font-size: 14.5px; line-height: 1.7; color: var(--text-body); }
.legal-page p { margin: 12px 0 0; }
.legal-page ul { margin: 12px 0 0; padding-left: 22px; }
.legal-page li { margin-top: 6px; }

/* ============ Responsive ============ */
@media (max-width: 720px) {
  .hero__title { font-size: 40px; }
  .section-title { font-size: 30px; }
  .philosophy__quote { font-size: 30px; }
  .philosophy__card { padding: 48px 28px; }
  .section, .community { padding-left: 20px; padding-right: 20px; }
  .hero, .philosophy, .pricing, .faq { padding-left: 20px; padding-right: 20px; }
  .site-nav__inner { padding: 14px 20px; }
  .site-nav__links { gap: 18px; }
}
