:root {
  --navy: #13263C;
  --navy-2: #1E3854;
  --navy-3: #29445F;
  --gold: #D9B56D;
  --gold-2: #E8CE94;
  --slate: #596875;
  --cream: #F3EEE2;
  --cream-2: #EDE6D5;
  --white: #FFFFFF;
  --ink: #142437;
  --muted: #5D6974;
  --line: #D7D8D8;
  --shadow: 0 26px 70px rgba(19, 38, 60, .16);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Segoe UI", Arial, sans-serif; color: var(--ink); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; background: var(--gold); color: var(--navy); padding: 10px 16px; z-index: 9999; font-weight: 700; }
.skip-link:focus { top: 16px; }

.scroll-progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 1000; background: transparent; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--gold); }

.site-header { position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(19,38,60,.08); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; gap: 12px; align-items: center; min-width: 240px; }
.brand-mark { width: 34px; height: 5px; background: var(--gold); display: inline-block; }
.brand strong { display: block; font-size: .77rem; letter-spacing: .12em; color: var(--navy); line-height: 1.1; }
.brand small { display: block; margin-top: 5px; color: var(--slate); font-size: .72rem; letter-spacing: .04em; }
.tm { font-size: .55em; vertical-align: super; }
.primary-nav { display: flex; align-items: center; gap: 20px; font-size: .85rem; font-weight: 650; }
.primary-nav > a:not(.btn) { position: relative; padding: 30px 0; }
.primary-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 2px; background: var(--gold); transition: right .25s ease; }
.primary-nav > a:not(.btn):hover::after { right: 0; }
.nav-login { color: var(--navy-2); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s ease; }

.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 24px; border-radius: 4px; font-weight: 800; letter-spacing: .015em; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 12px 28px rgba(217,181,109,.24); }
.btn-gold:hover { background: var(--gold-2); box-shadow: 0 16px 32px rgba(217,181,109,.32); }
.btn-outline { border-color: rgba(19,38,60,.28); color: var(--navy); background: rgba(255,255,255,.55); }
.btn-outline:hover { border-color: var(--navy); }
.btn-light { background: var(--cream); color: var(--navy); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-small { min-height: 42px; padding: 0 15px; font-size: .77rem; }
.btn-wide { width: 100%; }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 12px 28px rgba(19,38,60,.16); }
.btn-navy:hover { background: var(--navy-2); }

.hero { position: relative; overflow: hidden; background: linear-gradient(122deg, #FAF8F3 0%, #F3EEE2 58%, #E9E0CE 100%); }
.hero::before { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(19,38,60,.08); border-radius: 50%; right: -150px; top: -130px; }
.hero::after { content: ""; position: absolute; width: 190px; height: 190px; background: rgba(217,181,109,.14); border-radius: 50%; left: -70px; bottom: -80px; }
.hero-grid { min-height: 760px; padding: 96px 0 82px; display: grid; grid-template-columns: 1.06fr .94fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 17px; color: var(--navy-2); font-size: .76rem; font-weight: 850; letter-spacing: .18em; }
.eyebrow.gold { color: var(--gold); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--navy); font-weight: 700; line-height: 1.11; margin-top: 0; }
h1 { max-width: 760px; font-size: clamp(3.15rem, 6vw, 5.65rem); letter-spacing: -.045em; margin-bottom: 25px; }
h1 em { color: var(--navy-2); font-weight: 500; }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.3rem); letter-spacing: -.03em; margin-bottom: 24px; }
h3 { font-size: 1.38rem; letter-spacing: -.01em; }
.hero-lead { font-size: 1.22rem; max-width: 690px; color: #465767; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 620px; margin-top: 48px; border-top: 1px solid rgba(19,38,60,.17); padding-top: 22px; }
.hero-meta div { padding-right: 22px; }
.hero-meta div + div { border-left: 1px solid rgba(19,38,60,.13); padding-left: 22px; }
.hero-meta strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: clamp(1.15rem, 2vw, 1.75rem); line-height: 1.05; }
.hero-meta span { display: block; margin-top: 8px; color: var(--muted); font-size: .77rem; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-panel { width: min(100%, 520px); min-height: 570px; background: var(--navy); border-radius: 30px; box-shadow: 0 30px 80px rgba(19,38,60,.27); padding: 42px; position: relative; overflow: hidden; }
.hero-panel::before { content: ""; position: absolute; inset: 70px -160px auto auto; width: 390px; height: 390px; border: 1px solid rgba(217,181,109,.17); border-radius: 50%; }
.hero-panel::after { content: ""; position: absolute; inset: auto auto -120px -120px; width: 330px; height: 330px; background: rgba(217,181,109,.06); border-radius: 50%; }
.panel-topline { display: flex; align-items: center; gap: 12px; color: var(--gold); font-size: .68rem; letter-spacing: .16em; font-weight: 800; position: relative; z-index: 1; }
.panel-topline span:first-child { display: block; width: 52px; height: 4px; background: var(--gold); }
.decision-ring { width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); margin: 55px auto 46px; position: relative; display: grid; place-items: center; }
.decision-ring::before, .decision-ring::after { content: ""; position: absolute; border: 1px solid rgba(217,181,109,.22); border-radius: 50%; }
.decision-ring::before { width: 250px; height: 250px; }
.decision-ring::after { width: 150px; height: 150px; background: rgba(217,181,109,.06); }
.ring-center { position: relative; z-index: 2; text-align: center; color: var(--white); }
.ring-center strong { display: block; font-family: Georgia, serif; font-size: 1.45rem; letter-spacing: .08em; }
.ring-center small { color: var(--gold-2); }
.ring-label { position: absolute; background: var(--navy-2); border: 1px solid rgba(217,181,109,.32); color: var(--gold-2); font-size: .63rem; letter-spacing: .13em; font-weight: 800; padding: 8px 11px; border-radius: 40px; z-index: 3; }
.label-1 { top: -15px; left: 50%; transform: translateX(-50%); }
.label-2 { top: 50%; right: -26px; transform: translateY(-50%); }
.label-3 { bottom: -15px; left: 50%; transform: translateX(-50%); }
.label-4 { top: 50%; left: -36px; transform: translateY(-50%); }
.hero-panel blockquote { position: relative; z-index: 2; max-width: 265px; margin: 0; color: var(--white); font-family: Georgia, serif; font-size: 1.17rem; line-height: 1.45; border-left: 3px solid var(--gold); padding-left: 18px; }
.floating-card { position: absolute; width: 190px; padding: 16px 18px; background: var(--white); box-shadow: var(--shadow); border-radius: 10px; display: flex; align-items: center; gap: 12px; }
.floating-card span { color: var(--gold); font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; }
.floating-card p { margin: 0; font-size: .78rem; font-weight: 750; line-height: 1.35; color: var(--navy); }
.card-one { left: -16px; top: 125px; }
.card-two { right: -8px; bottom: 65px; }

.trust-strip { background: var(--navy); color: rgba(255,255,255,.75); }
.trust-grid { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .7rem; font-weight: 800; letter-spacing: .18em; }
.trust-grid p { margin: 0; }
.trust-grid span { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.section { padding: 112px 0; }
.section-light { background: #FAFAF8; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: rgba(255,255,255,.78); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.split-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: start; }
.section-heading h2 { max-width: 620px; }
.section-copy { font-size: 1.05rem; color: var(--muted); }
.lead { color: var(--ink); font-size: 1.24rem; line-height: 1.55; }
.challenge-grid { margin-top: 68px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.challenge-card { background: var(--white); border: 1px solid rgba(19,38,60,.08); padding: 30px 26px; min-height: 238px; box-shadow: 0 12px 40px rgba(19,38,60,.06); }
.challenge-card span { font-family: Georgia, serif; color: var(--gold); font-size: 2.2rem; }
.challenge-card h3 { margin: 27px 0 12px; }
.challenge-card p { color: var(--muted); margin-bottom: 0; }

.center-heading { max-width: 820px; text-align: center; margin: 0 auto 65px; }
.center-heading p:last-child { font-size: 1.05rem; }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.12); border-left: 1px solid rgba(255,255,255,.12); }
.outcome { padding: 30px 28px; min-height: 245px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.outcome:nth-child(5), .outcome:nth-child(6), .outcome:nth-child(7) { min-height: 220px; }
.outcome-icon { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(217,181,109,.45); color: var(--gold); border-radius: 50%; font-size: .72rem; font-weight: 800; }
.outcome h3 { margin: 35px 0 13px; }
.outcome p { margin: 0; }

.section-title-row { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; margin-bottom: 55px; }
.section-title-row p:last-child { color: var(--muted); font-size: 1.02rem; }
.module-list { border-top: 1px solid rgba(19,38,60,.17); }
.module-row { display: grid; grid-template-columns: 70px 1.05fr 1.15fr 126px; gap: 30px; align-items: center; padding: 34px 0; border-bottom: 1px solid rgba(19,38,60,.17); }
.module-number { font-family: Georgia, serif; color: var(--gold); font-size: 2rem; }
.module-kicker { margin: 0 0 7px; color: var(--slate); font-size: .67rem; font-weight: 850; letter-spacing: .14em; }
.module-row h3 { font-size: 1.42rem; margin: 0; }
.module-row > p { color: var(--muted); margin: 0; }
.text-button { border: 0; border-bottom: 1px solid rgba(19,38,60,.33); background: transparent; color: var(--navy); padding: 8px 0; font-size: .77rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; display: inline-flex; justify-content: space-between; align-items: center; gap: 10px; }
.text-button span { color: var(--gold); font-size: 1.1rem; transition: transform .2s ease; }
.text-button[aria-expanded="true"] span { transform: rotate(45deg); }
.module-detail { display: none; grid-column: 2 / 5; padding: 4px 0 6px; color: var(--navy-2); max-width: 900px; }
.module-row.open .module-detail { display: block; animation: fadeDown .25s ease both; }

.audience-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 72px; align-items: center; }
.audience-copy .lead { color: var(--muted); }
.audience-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.audience-tags span { border: 1px solid rgba(19,38,60,.17); padding: 9px 14px; border-radius: 40px; font-size: .78rem; color: var(--navy); font-weight: 700; }
.not-school-card { background: var(--navy); color: rgba(255,255,255,.82); border-radius: var(--radius); padding: 45px; box-shadow: var(--shadow); }
.not-school-card h3 { color: var(--white); font-size: 2.05rem; }
.not-school-card ul { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 13px; }
.not-school-card li { padding-left: 26px; position: relative; }
.not-school-card li::before { content: ""; width: 9px; height: 9px; background: var(--gold); position: absolute; left: 0; top: .55em; transform: rotate(45deg); }

.playbook-section { background: linear-gradient(135deg, #182F48, #0F2134); color: rgba(255,255,255,.8); overflow: hidden; }
.playbook-section h2 { color: var(--white); }
.playbook-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.playbook-art { position: relative; }
.playbook-art img { width: 100%; height: auto; margin: 0 auto; box-shadow: 0 34px 66px rgba(0,0,0,.28); position: relative; z-index: 2; }
.playbook-copy > p { font-size: 1.05rem; }
.playbook-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 34px 0; }
.playbook-columns ul { list-style: none; padding: 0; margin: 0; }
.playbook-columns li { position: relative; padding: 9px 0 9px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.playbook-columns li::before { content: ""; width: 7px; height: 7px; background: var(--gold); position: absolute; left: 0; top: 18px; }
.application-path { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 28px 0 10px; color: var(--white); }
.application-path span { border: 1px solid rgba(217,181,109,.5); padding: 8px 13px; border-radius: 40px; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.application-path i { color: var(--gold); font-style: normal; }
.playbook-format { color: var(--gold-2); font-size: .83rem !important; font-weight: 750; letter-spacing: .03em; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-portrait img { width: 100%; height: auto; border-radius: 16px; box-shadow: var(--shadow); }
.portrait-frame { min-height: 530px; background: linear-gradient(160deg, var(--navy), var(--navy-3)); border-radius: 26px; position: relative; overflow: hidden; display: grid; place-items: center; box-shadow: var(--shadow); }
.portrait-frame::before { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(217,181,109,.22); border-radius: 50%; top: 70px; left: 50%; transform: translateX(-50%); }
.portrait-frame::after { content: ""; position: absolute; width: 220px; height: 220px; background: rgba(217,181,109,.08); border-radius: 50%; top: 140px; left: 50%; transform: translateX(-50%); }
.portrait-monogram { font-family: Georgia, serif; color: var(--gold); font-size: 7.2rem; font-weight: 700; z-index: 1; letter-spacing: -.06em; }
.portrait-caption { position: absolute; left: 28px; right: 28px; bottom: 28px; padding: 21px 22px; background: rgba(255,255,255,.94); z-index: 2; }
.portrait-caption strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 1.3rem; }
.portrait-caption span { color: var(--slate); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.prototype-note { font-size: .72rem; color: #7C858D; margin: 12px 4px 0; font-style: italic; }
.about-copy blockquote { margin: 32px 0 0; padding: 21px 24px; border-left: 4px solid var(--gold); background: var(--cream); font-family: Georgia, serif; color: var(--navy); font-size: 1.3rem; }
.credibility-bar { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(19,38,60,.14); border-bottom: 1px solid rgba(19,38,60,.14); }
.credibility-bar div { padding: 25px 22px; }
.credibility-bar div + div { border-left: 1px solid rgba(19,38,60,.14); }
.credibility-bar strong, .credibility-bar span { display: block; }
.credibility-bar strong { color: var(--navy); font-family: Georgia, serif; font-size: 1.12rem; }
.credibility-bar span { color: var(--slate); margin-top: 5px; font-size: .73rem; letter-spacing: .06em; text-transform: uppercase; }

.included-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 82px; align-items: start; }
.included-list { border-top: 1px solid rgba(19,38,60,.16); }
.included-list div { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(19,38,60,.16); }
.included-list strong { color: var(--gold); font-family: Georgia, serif; font-size: 1.05rem; }
.included-list span { color: var(--navy); font-weight: 650; }

.statement-section { background: var(--navy); color: rgba(255,255,255,.78); text-align: center; }
.statement-section h2 { color: var(--white); max-width: 950px; margin-inline: auto; }
.statement-wrap > p:last-child { max-width: 850px; margin: 0 auto; font-size: 1.08rem; }

.team-inquiry { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; }
.team-inquiry h2 { font-size: clamp(2.3rem, 4vw, 3.8rem); }
.team-inquiry p:last-child { max-width: 780px; color: var(--muted); font-size: 1.04rem; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 86px; align-items: start; }
.faq-heading { position: sticky; top: 125px; }
.faq-heading > p:last-child { color: var(--muted); }
.faq-list details { border-top: 1px solid rgba(19,38,60,.16); }
.faq-list details:last-child { border-bottom: 1px solid rgba(19,38,60,.16); }
.faq-list summary { list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 25px 0; font-family: Georgia, serif; font-size: 1.18rem; color: var(--navy); cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font-family: Arial, sans-serif; font-size: 1.45rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 0 27px; color: var(--muted); max-width: 790px; }

.video-cta-section { background: linear-gradient(132deg, #F8F5EE 0%, var(--cream) 100%); }
.video-cta-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 68px; align-items: center; }
.video-cta-copy .lead { color: var(--muted); margin-bottom: 31px; }
.cta-video-frame { padding: 10px; background: #0B1826; border-radius: 18px; box-shadow: 0 30px 70px rgba(19,38,60,.22); overflow: hidden; }
.cta-video-frame video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; background: #0B1826; border-radius: 11px; }

.insights-section { padding: 78px 0; background: #0F2134; color: rgba(255,255,255,.78); }
.insights-section h2 { color: var(--white); font-size: clamp(2rem, 3.6vw, 3.3rem); }
.insights-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.insights-form label { display: block; margin-bottom: 9px; color: var(--white); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.insights-form > div { display: flex; }
.insights-form input { flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.25); border-right: 0; background: rgba(255,255,255,.08); color: var(--white); padding: 0 16px; min-height: 52px; border-radius: 4px 0 0 4px; }
.insights-form input::placeholder { color: rgba(255,255,255,.48); }
.insights-form .btn { border-radius: 0 4px 4px 0; }

.final-cta { padding: 95px 0; background: linear-gradient(118deg, var(--navy) 0%, var(--navy-2) 100%); color: rgba(255,255,255,.82); }
.final-cta h2 { color: var(--white); font-size: clamp(2.5rem, 4.7vw, 4.25rem); }
.final-cta-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: center; }
.cta-actions { display: grid; gap: 13px; }
.cta-actions small { text-align: center; color: rgba(255,255,255,.56); }

.site-footer { background: #0B1826; color: rgba(255,255,255,.64); padding: 72px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 55px; }
.footer-brand strong { color: var(--white); }
.footer-brand small { color: rgba(255,255,255,.5); }
.footer-grid > div:first-child p { max-width: 390px; margin-top: 24px; }
.footer-grid h3 { color: var(--white); font-family: "Segoe UI", Arial, sans-serif; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.footer-grid > div:not(:first-child) a { display: block; padding: 5px 0; font-size: .88rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 55px; padding-top: 20px; font-size: .77rem; }
.footer-bottom p { margin: 0; }

.page-hero { padding: 88px 0 72px; background: linear-gradient(122deg, #FAF8F3 0%, #F3EEE2 100%); }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 16px; }
.page-hero p:last-child { max-width: 760px; color: var(--muted); font-size: 1.12rem; }
.content-page { padding: 88px 0 110px; }
.content-narrow { width: min(820px, calc(100% - 48px)); margin-inline: auto; }
.content-narrow h2 { margin-top: 48px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.content-narrow h3 { margin-top: 30px; }
.content-narrow p, .content-narrow li { color: var(--muted); }
.content-narrow a { color: var(--navy-2); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 72px; align-items: start; }
.contact-options { background: var(--navy); color: rgba(255,255,255,.78); padding: 38px; border-radius: 18px; }
.contact-options h2 { color: var(--white); font-size: 2rem; }
.contact-options a { color: var(--gold-2); }
.contact-form { display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 7px; color: var(--navy); font-weight: 700; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #C9CFD4; background: var(--white); color: var(--ink); border-radius: 4px; padding: 12px 13px; }
.contact-form textarea { min-height: 160px; resize: vertical; }
.form-note { color: var(--muted); font-size: .82rem; }
.form-status { min-height: 24px; color: var(--navy); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .primary-nav { gap: 12px; font-size: .76rem; }
  .primary-nav .btn { display: none; }
  .hero-grid { gap: 36px; }
  .floating-card { display: none; }
  .challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .module-row { grid-template-columns: 58px 1fr 1fr 110px; gap: 20px; }
}

@media (max-width: 900px) {
  .container { width: min(var(--container), calc(100% - 34px)); }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .primary-nav { display: none; position: absolute; left: 0; right: 0; top: 71px; background: var(--white); padding: 20px 24px 28px; box-shadow: 0 24px 40px rgba(19,38,60,.14); flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav.open { display: flex; }
  .primary-nav > a:not(.btn) { padding: 13px 0; border-bottom: 1px solid rgba(19,38,60,.08); }
  .primary-nav > a:not(.btn)::after { display: none; }
  .primary-nav .btn { margin-top: 13px; }
  .primary-nav .btn { display: inline-flex; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding: 80px 0; }
  .hero-visual { min-height: 520px; }
  .hero-panel { min-height: 520px; }
  .split-grid, .audience-grid, .playbook-grid, .about-grid, .included-grid, .faq-grid, .video-cta-grid, .final-cta-grid, .insights-grid, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .section-title-row { grid-template-columns: 1fr; gap: 10px; }
  .module-row { grid-template-columns: 58px 1fr 118px; }
  .module-row > p { grid-column: 2 / 4; }
  .module-detail { grid-column: 2 / 4; }
  .faq-heading { position: static; }
  .playbook-art img { max-width: 560px; }
  .credibility-bar { grid-template-columns: 1fr 1fr; }
  .credibility-bar div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(19,38,60,.14); }
  .credibility-bar div:nth-child(4) { border-top: 1px solid rgba(19,38,60,.14); }
  .team-inquiry { grid-template-columns: 1fr; gap: 24px; }
  .team-inquiry .btn { justify-self: start; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  .section { padding: 82px 0; }
  .brand strong { font-size: .67rem; }
  .brand small { font-size: .64rem; }
  .brand-mark { width: 25px; }
  h1 { font-size: clamp(2.55rem, 12.2vw, 3.15rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .hero-meta div + div { border-left: 0; padding-left: 0; }
  .hero-meta div { display: flex; align-items: center; gap: 14px; padding: 0; }
  .hero-meta span { margin: 0; }
  .hero-visual { min-height: 430px; }
  .hero-panel { min-height: 430px; padding: 28px 22px; border-radius: 20px; }
  .decision-ring { width: 260px; height: 260px; margin: 45px auto 35px; }
  .decision-ring::before { width: 195px; height: 195px; }
  .decision-ring::after { width: 115px; height: 115px; }
  .label-2 { right: -19px; }
  .label-4 { left: -28px; }
  .trust-grid { padding: 18px 0; flex-wrap: wrap; justify-content: center; }
  .trust-grid span { display: none; }
  .challenge-grid, .outcome-grid { grid-template-columns: 1fr; }
  .module-row { grid-template-columns: 46px 1fr; }
  .module-row > p, .module-row .text-button, .module-detail { grid-column: 2; }
  .module-row .text-button { justify-self: start; }
  .playbook-columns { grid-template-columns: 1fr; gap: 0; }
  .not-school-card { padding: 32px 26px; }
  .application-path { gap: 7px; }
  .application-path span { padding: 7px 10px; font-size: .7rem; }
  .credibility-bar { grid-template-columns: 1fr; }
  .credibility-bar div + div, .credibility-bar div:nth-child(3), .credibility-bar div:nth-child(4) { border-left: 0; border-top: 1px solid rgba(19,38,60,.14); }
  .insights-form > div { display: grid; gap: 10px; }
  .insights-form input, .insights-form .btn { border-radius: 4px; border: 1px solid rgba(255,255,255,.25); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .content-narrow { width: min(820px, calc(100% - 34px)); }
}
