/* RSD NEW-LOOK DESIGN SYSTEM — brand/design-system.md */
:root {
  --brand: #00E58F;
  --brand-hover: #00C77C;
  --brand-10: rgba(0,229,143,0.1);
  --brand-20: rgba(0,229,143,0.2);
  --mint: #E5FBF4;
  --pill-ink: #144F36;
  --red: #FF5F5F;
  --darker: #0D131C;
  --dark: #161E29;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff; color: var(--gray-900);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; width: 100%;
}
h1, h2, h3 { font-family: 'Hanken Grotesk', 'Inter', Arial, sans-serif; font-weight: 600; letter-spacing: -0.4px; }
img { max-width: 100%; vertical-align: middle; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 28px; }
.center { text-align: center; }

.pill-light {
  display: inline-block; background: var(--mint); color: var(--pill-ink);
  border: 0.8px solid var(--brand-20); border-radius: 9999px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase;
  padding: 6px 20px; margin-bottom: 24px;
}
.pill-dark {
  display: inline-block; background: var(--brand-10); color: var(--brand);
  border: 0.8px solid var(--brand-20); border-radius: 9999px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase;
  padding: 6px 20px; margin-bottom: 24px;
}
.h2 { font-size: 4.5rem; font-weight: 600; line-height: 1.02; color: var(--gray-900); margin-bottom: 20px; }
.h2.on-dark { color: #fff; }
.sub { font-size: 1.125rem; color: var(--gray-800); line-height: 1.5; letter-spacing: -0.02em; max-width: 672px; margin: 0 auto; }
.sub.on-dark { color: var(--gray-300); }

.btn {
  display: inline-block; background: var(--brand); color: var(--darker);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: -0.02rem; line-height: 1;
  text-decoration: none; padding: 16px 34px; border-radius: 100vh; text-align: center;
  border: 1px solid var(--brand); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--gray-100); color: var(--pill-ink); border-color: var(--gray-100); }
.btn:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

/* ---------- header ---------- */
.topbar { background: #fff; }
.topbar-in {
  max-width: 1200px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.topbar img { height: 30px; width: auto; display: block; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { font-size: 14px; font-weight: 600; color: var(--gray-600); text-decoration: none; }
.nav a:hover { color: var(--gray-900); }
.nav .btn { padding: 12px 24px; font-size: 14px; }

/* ---------- hero ---------- */
.hero { background: #fff; padding: 84px 0 36px; text-align: center; }
.hero h1 {
  font-size: 3.6rem; font-weight: 600; line-height: 1.06;
  color: var(--gray-900); margin-bottom: 24px; text-wrap: balance;
}
.stroke-w {
  background-image: url(/assets/brand/brush-stroke-pink.svg);
  background-repeat: no-repeat; background-position: 50% 94%; background-size: 104% 0.38em;
  padding-bottom: 0.1em; padding-right: 0.26em; margin-right: -0.14em;
}
.hero .three { font-size: 19px; color: var(--gray-800); margin-bottom: 38px; letter-spacing: -0.02em; }

/* ---------- hero media (rotating, EE-style) ---------- */
.hero-media { max-width: 1100px; margin: 44px auto 0; padding: 0 28px; }
.hslides { position: relative; aspect-ratio: 16 / 8.5; }
.hslide { position: absolute; inset: 0; opacity: 0; animation: heroRot 28s linear infinite; }
.hslide:nth-child(1) { animation-delay: 0s; }
.hslide:nth-child(2) { animation-delay: 7s; }
.hslide:nth-child(3) { animation-delay: 14s; }
.hslide:nth-child(4) { animation-delay: 21s; }
@keyframes heroRot { 0% {opacity:0;} 3% {opacity:1;} 25% {opacity:1;} 28% {opacity:0;} 100% {opacity:0;} }
@media (prefers-reduced-motion: reduce) { .hslide { animation: none; } .hslide:first-child { opacity: 1; } }
.hslide .himg {
  position: absolute; inset: 0; background: var(--dark); border-radius: 20px;
}
.hslide .himg { overflow: hidden; }
.hslide .himg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 20px; display: block;
}
.statcard {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2;
  background: #fff; border-radius: 16px; box-shadow: 0 16px 44px rgba(13,19,28,0.3);
  padding: 18px 22px; min-width: 205px; text-align: left;
}
.statcard::before, .statcard::after {
  content: ''; position: absolute; inset: 0; background: #fff; border-radius: 16px; z-index: -1;
  box-shadow: 0 10px 30px rgba(13,19,28,0.18);
}
.statcard::before { transform: rotate(-4deg) translate(-7px, 5px); opacity: 0.9; }
.statcard::after { transform: rotate(3deg) translate(8px, 7px); opacity: 0.75; }
.statcard .sv {
  font-family: 'Hanken Grotesk', 'Inter', sans-serif; font-size: 34px; font-weight: 700;
  letter-spacing: -0.4px; color: var(--gray-900); line-height: 1; display: inline-block;
  background-image: url(/assets/brand/brush-stroke-pink.svg); background-repeat: no-repeat;
  background-position: 50% 100%; background-size: 100% 9px; padding-bottom: 9px;
}
.statcard .sl { font-size: 13.5px; color: var(--gray-600); margin-top: 8px; }
.statcard .sd { font-size: 13px; font-weight: 600; color: #00A96C; margin-top: 14px; }
@media (max-width: 760px) { .hslides { aspect-ratio: 4 / 5; } }

/* ---------- results gallery ---------- */
.gallery-sec { background: #fff; padding: 26px 0 46px; }
.marquee { overflow: hidden; padding: 4px 0 10px; }
.mtrack { display: flex; align-items: center; gap: 0; width: max-content; animation: gscroll 45s linear infinite; }
.marquee:hover .mtrack { animation-play-state: paused; }
@keyframes gscroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { overflow-x: auto; } .mtrack { animation: none; } }
.mitem { flex: 0 0 auto; text-align: center; padding: 0 34px; }
.mitem .amt {
  font-family: 'Hanken Grotesk', 'Inter', sans-serif; font-size: 30px; font-weight: 700;
  letter-spacing: -0.4px; color: var(--gray-900); line-height: 1.1;
}
.mitem .who { font-size: 12.5px; font-weight: 600; color: var(--gray-500); margin-top: 2px; letter-spacing: 0.1px; }
.trustline { text-align: center; font-size: 13px; font-weight: 700; color: var(--gray-800); letter-spacing: 1.6px; text-transform: uppercase; }

/* ---------- sections ---------- */
.section { padding: 92px 0; }
.section.tint { background: #F4F6F8; }
.section.strip { background: #F8F9FA; }
.section.dark { background: var(--dark); position: relative; overflow: hidden; }
.section.dark::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 600px; height: 600px; background: var(--brand-10);
  border-radius: 9999px; filter: blur(100px);
  transform: translate(300px, -300px); pointer-events: none;
}
.section.dark > .wrap, .section.dark > .wrap-narrow { position: relative; z-index: 1; }

/* problem */
.problem-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.problem-grid .h2 { margin-bottom: 18px; }
.problem-grid .sub { margin: 0; max-width: none; }
.chart-card { background: #fff; border: 0.8px solid var(--gray-200); border-radius: 16px; padding: 22px; }

/* mentors */
.mentor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; max-width: 1080px; margin: 0 auto; }
.mcard { position: relative; }
.mcard::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #00C77C, #0e5c40);
  border-radius: 18px; transform: rotate(1.8deg) translate(4px, 2px); opacity: 0.85;
}
.mcard::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: #12241d;
  border-radius: 18px; transform: rotate(-1.3deg) translate(-4px, 3px);
}
.mcard .panel { z-index: 1; }
.mcard .panel {
  position: relative; border-radius: 18px; overflow: hidden;
  background: linear-gradient(165deg, #0c1713 0%, #0D131C 70%);
  height: 420px; display: flex; align-items: flex-end; justify-content: center;
}
.mcard .panel img { height: 96%; width: auto; max-width: 96%; object-fit: contain; }
.mcard .cap {
  position: absolute; left: 12px; right: 12px; bottom: 10px;
  background: rgba(13,19,28,0.85); backdrop-filter: blur(6px);
  border-radius: 12px; padding: 12px 16px; text-align: left;
}
.mcard .cap .nm { font-family: 'Hanken Grotesk', 'Inter', sans-serif; font-size: 17px; font-weight: 600; color: #fff; }
.mcard .cap .rl { font-size: 13px; font-weight: 600; color: var(--brand); line-height: 1.45; margin-top: 2px; }

/* featured videos */
.vids { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1060px; margin: 0 auto 40px; }
.db-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 52px; flex-wrap: wrap; }
.db-cta { display: flex; align-items: flex-end; gap: 14px; }
.db-arrow { width: 120px; height: 56px; margin-bottom: 8px; }
@media (max-width: 760px) { .db-arrow { display: none; } }
.vcard { background: #fff; border: 0.8px solid var(--gray-200); border-radius: 16px; overflow: hidden; }
.vcard .frame { position: relative; aspect-ratio: 16 / 9; background: var(--dark); }
.vcard .frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vcard .frame a.vph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.vcard .frame .play { width: 64px; height: 64px; border-radius: 9999px; background: var(--brand); display: flex; align-items: center; justify-content: center; }
.vcard .frame .play svg { margin-left: 4px; }
.vcard .cap { padding: 14px 20px 16px; }
.vcard .cap .t { font-size: 15px; font-weight: 700; }
.vcard .cap .d { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

/* gap statement */
.gap-sec { padding: 100px 0; background: var(--darker); position: relative; overflow: hidden; }
.gap-sec::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 600px; height: 600px; background: var(--brand-10);
  border-radius: 9999px; filter: blur(100px); transform: translate(300px,-300px); pointer-events: none;
}
.gap-sec .wrap-narrow { position: relative; z-index: 1; }
.gap-sec h2 { font-size: 3rem; font-weight: 600; line-height: 1.18; color: #fff; text-wrap: balance; }
.gap-sec h2 .close { color: var(--brand); }

/* how it works */
.steps { display: grid; gap: 72px; max-width: 1080px; margin: 0 auto; position: relative; padding-left: 46px; }
.steps::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 5px; border-radius: 9999px; background: var(--brand); }
.step { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.step .txt { order: 0; }
.step .visualwrap { order: 1; }
@media (max-width: 880px) { .step { grid-template-columns: 1fr; gap: 34px; } .steps { padding-left: 26px; } .step h3 { font-size: 1.4rem; } }
.step .visual {
  position: relative; background: var(--darker); border-radius: 16px;
  height: 300px;
}
.step .visual > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 16px; display: block;
}
.step .visual .uicard {
  position: absolute; top: 32px; left: 48px; right: -14px; bottom: -14px;
  border-radius: 12px; overflow: hidden; background: #fff;
  box-shadow: 0 18px 44px rgba(13,19,28,0.45);
}
.step .visual .uicard img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
@media (max-width: 880px) { .step .visual .uicard { right: 0; } }
.step .insert {
  position: absolute; bottom: -16px; left: 20px; z-index: 2;
  background: #fff; border-radius: 10px; box-shadow: 0 8px 24px rgba(13,19,28,0.35);
  padding: 10px 16px; display: flex; align-items: baseline; gap: 8px; white-space: nowrap;
}
.step .insert .iv { font-family: 'Hanken Grotesk', 'Inter', sans-serif; font-size: 19px; font-weight: 700; color: var(--gray-900); }
.step .insert .il { font-size: 11.5px; font-weight: 600; color: var(--gray-500); }
.step .n { font-family: 'Hanken Grotesk', 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: #00A96C; margin-bottom: 12px; }
.step h3 { font-size: 1.8rem; font-weight: 600; color: var(--gray-900); margin-bottom: 14px; line-height: 1.2; }
.step p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }

/* members get */
.get-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1180px; margin: 0 auto -130px; position: relative; z-index: 2; }
.getcard { background: #F0F2F4; border-radius: 24px; padding: 30px; }
.getcard .gimg {
  aspect-ratio: 16 / 9; border-radius: 14px; background: var(--gray-200);
  overflow: hidden; margin-bottom: 26px;
}
.getcard .gimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.getcard h3 { font-size: 1.75rem; font-weight: 600; margin-bottom: 14px; }
.getcard ul { list-style: none; margin: 0; padding: 0; }
.getcard li { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 6px; padding-left: 14px; position: relative; }
.getcard li::before { content: '-'; position: absolute; left: 0; color: var(--gray-500); }
.getcard.wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
.getcard.wide .gimg { aspect-ratio: 16 / 8; margin-bottom: 0; }
@media (max-width: 880px) { .get-grid { grid-template-columns: 1fr; } .getcard.wide { grid-template-columns: 1fr; gap: 22px; } .getcard h3 { font-size: 1.4rem; } }
.qual-band {
  background: var(--darker); position: relative; overflow: hidden;
  padding: 176px 28px 96px; text-align: center; margin-top: 0;
}
.qual-band .qdoodle { position: absolute; pointer-events: none; opacity: 0.85; }
.qual-band .qd1 { left: 5%; top: 176px; width: 130px; }
.qual-band .qd2 { right: 5%; top: 158px; width: 120px; }
.qualifier {
  font-family: 'Hanken Grotesk', 'Inter', sans-serif; font-size: 2.75rem; font-weight: 600; letter-spacing: -0.4px; color: #fff;
  position: relative; z-index: 1;
}
.qual-sub {
  max-width: 580px; margin: 18px auto 0; font-size: 1.05rem; color: var(--gray-300);
  line-height: 1.55; letter-spacing: -0.02em; position: relative; z-index: 1;
}
.qtiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1180px; margin: 56px auto 0; position: relative; z-index: 1;
}
.qtile {
  background: #fff; border-radius: 24px; padding: 29px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex; flex-direction: column; gap: 12px; text-align: left;
}
.qtile .qicon { display: flex; }
.qtile .qicon svg { width: 32px; height: 32px; }
.qtile h3 { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.56px; line-height: 1.1; color: var(--gray-900); }
.qtile p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
@media (max-width: 960px) { .qual-band .qdoodle { display: none; } .qtiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .qtiles { grid-template-columns: 1fr; } .qualifier { font-size: 2.1rem; } }

/* results wall */
.wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 1000px; margin: 0 auto; }
.chipr {
  background: #fff; border: 0.8px solid var(--gray-200); border-radius: 9999px;
  font-size: 13.5px; padding: 8px 18px; color: var(--gray-800);
}
.chipr b { color: var(--brand-hover); font-weight: 800; }
.honesty { text-align: center; margin-top: 30px; font-size: 14.5px; color: var(--gray-500); }
.honesty a { color: var(--gray-800); font-weight: 600; }

/* closing */
.closing h2 { font-size: 4.5rem; font-weight: 600; line-height: 1.02; color: var(--darker); margin-bottom: 22px; text-wrap: balance; }

/* hero partners */
.hero-partners { display: flex; align-items: center; justify-content: center; gap: 42px; flex-wrap: nowrap; margin-top: 56px; }
@media (max-width: 760px) { .hero-partners { flex-wrap: wrap; gap: 20px 28px; } }
.hero-partners img { filter: brightness(0); opacity: 0.78; }
.hero-partners .p-planna { height: 16px; }
.hero-partners .p-eqf { height: 20px; }
.hero-partners .p-eqp { height: 20px; }
.hero-partners .p-wb { height: 17px; }
.hero-partners .p-malolo { height: 28px; }

/* closing extras — EE's contrast flip: the one full brand-colour section */
.closing { background: var(--brand); position: relative; overflow: hidden; }
.closing .doodle { position: absolute; pointer-events: none; opacity: 0.9; }
.btn-onbrand { background: var(--mint); border-color: var(--mint); color: var(--darker); }
.btn-onbrand:hover { background: #fff; border-color: #fff; color: var(--darker); }
.closing .doodle.dl { left: -40px; bottom: -30px; width: 220px; }
.closing .doodle.dr { right: -30px; top: 60px; width: 200px; }
.closing-partners { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: nowrap; margin-top: 44px; position: relative; z-index: 1; }
.closing-partners img { filter: brightness(0); opacity: 0.72; flex: 0 1 auto; min-width: 0; }
.closing-partners .p-planna { height: 16px; }
.closing-partners .p-eqf { height: 20px; }
.closing-partners .p-eqp { height: 20px; }
.closing-partners .p-wb { height: 17px; }
.closing-partners .p-malolo { height: 28px; }
@media (max-width: 760px) { .closing-partners { flex-wrap: wrap; gap: 24px 32px; } }
@media (max-width: 960px) { .closing .doodle { display: none; } }

/* footer — EE footer8 anatomy: logo, then link groups left / newsletter right */
footer { background: var(--darker); padding: 72px 0 40px; }
footer .foot-logo img { height: 26px; opacity: 0.9; }
.foot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.foot-links { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
.foot-group { display: flex; flex-direction: column; }
.foot-group .gl { font-size: 14px; color: var(--gray-500); line-height: 2; }
.foot-group a { font-size: 14px; color: var(--gray-400); text-decoration: none; line-height: 2; }
.foot-group a:hover { color: #fff; }
.newsletter { max-width: 420px; margin-left: auto; }
@media (max-width: 880px) {
  .foot-grid { display: flex; flex-direction: column; gap: 44px; }
  .foot-grid .newsletter { order: -1; }
}
.newsletter .t { font-size: 14.5px; font-weight: 700; color: #fff; text-align: right; }
.nlpanel {
  background: var(--brand); border-radius: 14px; padding: 12px;
  display: flex; gap: 10px; align-items: stretch;
}
.nlpanel input {
  flex: 1; min-width: 0; background: rgba(13,19,28,0.08);
  border: 1px solid rgba(13,19,28,0.28); border-radius: 10px;
  padding: 13px 16px; color: var(--darker); font-family: 'Inter', sans-serif; font-size: 14px;
}
.nlpanel input::placeholder { color: rgba(13,19,28,0.55); }
.nlpanel button {
  background: var(--mint); color: var(--darker); border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 600; letter-spacing: -0.02rem;
  padding: 13px 26px; border-radius: 100vh; white-space: nowrap;
}
.nlpanel button:hover { background: #fff; }
.nlnote { font-size: 13px; color: var(--gray-500); margin-top: 14px; text-align: right; }
.nlnote a { color: var(--gray-300); text-decoration: underline; }
@media (max-width: 640px) { .nlpanel { flex-direction: column; } }
.foot-legal {
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 44px; padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--gray-500);
}
.foot-legal a { color: var(--gray-500); text-decoration: none; margin-right: 16px; }
.foot-legal a:hover { color: var(--gray-300); }

/* responsive */
@media (max-width: 960px) {
  .hero h1 { font-size: 2.6rem; }
  .get-grid .getcard { flex-basis: 100%; }
  .h2 { font-size: 2.75rem; }
  .gap-sec h2 { font-size: 2.1rem; }
  .closing h2 { font-size: 2.75rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 36px; }
  .mentor-grid, .trio, .get-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .vids { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .h2, .closing h2 { font-size: 2.1rem; }
  .hero h1 { font-size: 2.15rem; }
  .hero { padding: 52px 0 32px; }
  .hero .three { font-size: 16.5px; }
  .section { padding: 64px 0; }
  .gap-sec { padding: 64px 0; }
  .topbar-in { padding: 12px 18px; }
  .topbar img { height: 24px; }
  .nav { gap: 14px; }
  .nav a { font-size: 13px; }
  .nav .btn { padding: 10px 18px; font-size: 13px; }
  .wrap, .wrap-narrow, .hero-media { padding-left: 18px; padding-right: 18px; }
  .statcard { padding: 14px 18px; min-width: 172px; }
  .statcard .sv { font-size: 28px; }
  .statcard .sl { font-size: 12.5px; }
  .statcard .sd { font-size: 12px; margin-top: 10px; }
  .hero-partners { margin-top: 40px; }
  .mitem { padding: 0 22px; }
  .mitem .amt { font-size: 24px; }
  .step .visual { height: 240px; }
  .step .visual .uicard { top: 22px; left: 28px; }
  .step .insert { left: 12px; right: 12px; bottom: -14px; padding: 9px 14px; white-space: normal; flex-wrap: wrap; row-gap: 2px; }
  .step .insert .iv { font-size: 17px; }
  .step h3 { font-size: 1.3rem; }
  .getcard { padding: 22px; }
  .getcard h3 { font-size: 1.3rem; }
  .qual-band { padding: 150px 18px 72px; }
  .qual-sub { font-size: 0.97rem; }
  .db-head { margin-bottom: 36px; }
  .chipr { font-size: 12.5px; padding: 7px 14px; }
}

/* ==========================================================================
   SUBPAGES — legal + contact (added for site build, Sep 2026)
   ========================================================================== */
.page-hero { background: var(--gray-100); padding: 72px 0 56px; border-bottom: 1px solid var(--gray-200); }
.page-hero h1 { font-size: 3rem; line-height: 1.1; margin: 0 0 12px; }
.page-hero .sub { color: var(--gray-600); font-size: 1.05rem; margin: 0; }
.page-body { padding: 64px 0 88px; }
.page-body h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.page-body h2:first-child { margin-top: 0; }
.page-body p { margin: 0 0 16px; color: var(--gray-800); }
.page-body ul { margin: 0 0 20px; padding-left: 22px; color: var(--gray-800); }
.page-body li { margin-bottom: 8px; }
.page-body a { color: var(--pill-ink); text-decoration: underline; }
.page-meta { color: var(--gray-500); font-size: .9rem; margin-bottom: 32px; }

.notice { border: 1px solid var(--gray-300); border-left: 4px solid var(--brand);
  background: var(--gray-100); padding: 20px 24px; border-radius: 8px; margin: 0 0 24px; }
.notice p:last-child { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.contact-form { min-height: 640px; }
.contact-form iframe { width: 100%; border: 0; min-height: 640px; display: block; }
.contact-aside h2 { font-size: 1.15rem; margin: 0 0 10px; }
.contact-aside .block { margin-bottom: 32px; }
.contact-aside .big { font-size: 1.1rem; font-weight: 600; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero h1 { font-size: 2.2rem; }
  .page-hero { padding: 48px 0 36px; }
}

/* ==========================================================================
   ARTICLES
   ========================================================================== */
.article-body { padding: 56px 0 88px; }
.article-body img { border-radius: 10px; margin: 28px 0; height: auto; }
.article-body p { margin: 0 0 18px; color: var(--gray-800); font-size: 1.05rem; line-height: 1.75; }
.article-body h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.article-body h3 { font-size: 1.25rem; margin: 32px 0 12px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 24px; color: var(--gray-800); line-height: 1.75; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--pill-ink); text-decoration: underline; }
.article-body blockquote { margin: 28px 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--brand); color: var(--gray-600); font-style: italic; }
.article-meta { color: var(--gray-500); font-size: .92rem; margin: 0; }
.article-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.article-tags span { display: inline-block; background: var(--gray-100); color: var(--gray-600);
  border-radius: 100vh; padding: 5px 13px; font-size: .82rem; margin: 0 6px 8px 0; }
.article-cta { background: var(--gray-100); border-radius: 12px; padding: 34px; margin-top: 48px; text-align: center; }
.article-cta h2 { margin: 0 0 10px; font-size: 1.4rem; }
.article-cta p { margin: 0 0 20px; color: var(--gray-600); }

.post-list { display: grid; gap: 4px; padding: 8px 0 88px; }
.post-item { padding: 26px 0; border-bottom: 1px solid var(--gray-200); }
.post-item a { text-decoration: none; color: inherit; display: block; }
.post-item h2 { font-size: 1.32rem; margin: 0 0 8px; }
.post-item a:hover h2 { color: var(--pill-ink); }
.post-item .d { color: var(--gray-500); font-size: .85rem; margin: 0 0 8px; }
.post-item p.x { color: var(--gray-600); margin: 0; font-size: .97rem; }

/* Contact — community strip (wireframe 03: photos only, never dates or locations) */
.community-strip { background: var(--gray-100); padding: 64px 0 72px; }
.community-strip h2 { font-size: 1.6rem; margin: 0 0 8px; }
.community-strip .cs-note { color: var(--gray-600); margin: 0 0 28px; }
.cs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cs-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
@media (max-width: 860px) { .cs-grid { grid-template-columns: repeat(2, 1fr); } }

/* Legal pages — 820px per wireframe 04 */
.wrap-legal { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* Footer newsletter — frames the GHL iframe so the white form reads as a
   deliberate card against the dark footer rather than a stray white block.
   If the form background is ever set transparent in GHL, drop this. */
.nlcard { background: transparent; padding: 0; }
/* GHL's form_embed.js rewrites the iframe style attribute, wiping any inline
   min-height, so the height is enforced from here with !important. Keep this
   close to the form's real content height - the GHL canvas is taller than the
   fields, and any excess shows as dead space. */
.nlcard iframe { display: block; width: 100% !important; min-height: 240px !important;
  height: 240px !important; border: 0; background: transparent; }
.contact-form iframe { min-height: 640px !important; }
