:root {
  --forest: #174a38; --forest-deep: #0d3528; --forest-soft: #416b58;
  --gold: #c99525; --gold-deep: #9d6a0c; --ivory: #fbf8ef; --paper: #fffefb;
  --sage: #e9eee4; --sage-deep: #d8e1d3; --ink: #1b382d; --muted: #607067;
  --line: #dce3da; --shadow: 0 18px 48px rgba(28, 60, 45, .11);
  --radius: 20px; --serif: "Songti SC", STSong, SimSun, Georgia, serif;
  font-family: "Avenir Next", Avenir, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--ivory); color: var(--ink); font-size: 17px; line-height: 1.68; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; transform: translateY(-160%); padding: 10px 14px; border-radius: 8px; background: var(--forest-deep); color: #fff; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(201,149,37,.58); outline-offset: 3px; }

.site-header { position: absolute; z-index: 10; inset: 0 0 auto; display: flex; align-items: center; width: min(1160px, calc(100% - 64px)); height: 96px; margin: auto; }
.brand { width: 260px; }
.brand img { width: 100%; height: auto; }
.hero { position: relative; display: grid; min-height: 630px; overflow: hidden; background: #f8f4e8; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(252,249,240,.98) 0%, rgba(252,249,240,.92) 35%, rgba(252,249,240,.30) 64%, rgba(252,249,240,.04) 100%); }
.hero-inner { position: relative; z-index: 2; display: grid; align-items: center; width: min(1160px, calc(100% - 64px)); margin: auto; padding: 128px 0 72px; }
.hero-copy { max-width: 650px; }
.hero-kicker, .kicker { margin: 0 0 10px; color: var(--gold-deep); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.hero h1, .form-intro h2, .belief h2, .section-heading h2, .finance h2, .final-cta h2, .success-card h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -.035em; }
.hero h1 { margin: 0; color: var(--forest); font-size: clamp(50px, 5vw, 72px); line-height: 1.1; }
.hero-lead { max-width: 610px; margin: 18px 0 0; color: #3d574b; font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.primary-link, .secondary-link, .submit-button, .outline-button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 11px 25px; border-radius: 999px; font-weight: 780; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease; }
.primary-link, .submit-button { border: 1px solid var(--gold); background: var(--gold); color: var(--forest-deep); box-shadow: 0 8px 20px rgba(150,99,8,.17); }
.secondary-link, .outline-button { border: 1px solid var(--forest); background: rgba(255,255,255,.78); color: var(--forest); }
.button-reset { appearance: none; }
.primary-link:hover, .submit-button:hover { transform: translateY(-1px); background: #d7a536; }
.secondary-link:hover, .outline-button:hover { transform: translateY(-1px); background: var(--forest); color: #fff; }

.trust-strip { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); width: min(1100px, calc(100% - 48px)); margin: 24px auto 0; overflow: hidden; border: 1px solid rgba(23,74,56,.11); border-radius: var(--radius); background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
.trust-item { display: grid; gap: 4px; padding: 21px 18px; text-align: center; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { color: var(--forest); font-size: 15px; }
.trust-item span { color: var(--muted); font-size: 12px; line-height: 1.45; }

.form-wrap { width: min(980px, calc(100% - 48px)); margin: 38px auto 0; scroll-margin-top: 20px; }
.form-shell { padding: 36px 40px 28px; border: 1px solid rgba(23,74,56,.11); border-radius: var(--radius); background: rgba(255,255,255,.985); box-shadow: var(--shadow); }
.form-intro { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.form-intro h2 { margin: 0; color: var(--forest); font-size: clamp(32px,3vw,44px); line-height: 1.2; }
.form-intro > p:last-child { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.field-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px 20px; }
.field-grid > label, .choice-group, .finance-followup { display: grid; gap: 7px; margin: 0; color: var(--forest-deep); font-size: 15px; font-weight: 760; }
.field-grid input, .field-grid select { width: 100%; height: 52px; padding: 0 14px; border: 1px solid #d1d9d1; border-radius: 9px; background: #fff; color: var(--ink); font-size: 16px; font-weight: 400; }
.field-grid input:focus, .field-grid select:focus { border-color: var(--gold); outline: 3px solid rgba(201,149,37,.18); }
.field-span { grid-column: 1/-1; }
.optional, .choice-group legend span { color: var(--muted); font-weight: 400; }
.choice-group, .finance-followup { padding: 0; border: 0; }
.choice-group legend, .finance-followup legend { padding: 0; margin: 0 0 8px; }
.choice-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.choice-options label, .radio-options label { display: flex; min-height: 54px; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid #d8ded7; border-radius: 10px; background: #fffdf8; color: #2d4a3e; font-size: 15px; font-weight: 550; line-height: 1.4; cursor: pointer; }
.choice-options label:has(input:checked), .radio-options label:has(input:checked) { border-color: var(--gold); background: #fff8e4; box-shadow: 0 0 0 2px rgba(201,149,37,.08); }
.choice-options input, .radio-options input { flex: 0 0 auto; width: 18px; height: 18px; margin: 0; accent-color: var(--forest); }
.radio-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.finance-followup { padding: 18px; border: 1px solid rgba(201,149,37,.38); border-radius: 12px; background: #fffaf0; }
.finance-followup[hidden] { display: none; }
.trap { display: none !important; }
.form-message { min-height: 24px; margin: 14px 0 0; color: #992c25; font-size: 14px; font-weight: 760; text-align: center; }
.submit-button { min-width: 230px; margin: 2px auto 0; }
.submit-button:disabled { opacity: .65; cursor: wait; }
.preview-note { margin: 10px 0 0; color: #718078; font-size: 13px; text-align: center; }
.success-card { max-width: 650px; margin: 18px auto; padding: 42px 34px; border-radius: 18px; background: var(--sage); text-align: center; }
.success-mark { display: inline-grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: var(--forest); color: #fff; font-size: 28px; }
.success-card h3 { margin: 16px 0 6px; color: var(--forest); font-size: 34px; }
.success-card p { margin: 0; color: #486055; }
.success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }

.belief { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; width: min(980px,calc(100% - 48px)); padding: 78px 0 66px; margin: auto; }
.belief h2 { margin: 0; color: var(--forest); font-size: clamp(31px,3vw,43px); line-height: 1.22; }
.belief > p { margin: 0; color: #486055; font-family: var(--serif); font-size: 21px; line-height: 1.75; }
.section-shell { width: min(1100px,calc(100% - 48px)); margin: 0 auto 78px; }
.section-heading { max-width: 790px; margin: 0 auto 30px; text-align: center; }
.section-heading h2 { margin: 0; color: var(--forest); font-size: clamp(33px,3.5vw,47px); line-height: 1.2; }
.section-heading > p:last-child { margin: 10px 0 0; color: var(--muted); }
.compact-heading { margin-bottom: 22px; }
.how-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.how article { display: grid; min-height: 190px; align-content: start; padding: 27px 23px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.94); box-shadow: 0 9px 24px rgba(30,62,47,.06); }
.step-number { color: var(--gold-deep); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.how strong { margin-top: 16px; color: var(--forest); font-family: var(--serif); font-size: 24px; font-weight: 600; }
.how article > span:last-child { margin-top: 8px; color: var(--muted); font-size: 14px; }

.finance { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; width: min(1100px,calc(100% - 48px)); padding: 12px; margin: 0 auto 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 32px rgba(30,62,47,.08); }
.finance picture { overflow: hidden; border-radius: 14px; }
.finance img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: contain; background: #f1eee4; }
.finance-copy { padding: 32px 32px 32px 0; }
.finance h2 { margin: 0; color: var(--forest); font-size: clamp(32px,3.4vw,48px); line-height: 1.08; }
.finance-copy > p:not(.kicker) { margin: 14px 0 0; color: #52665b; font-size: 16px; }
.finance ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px 17px; padding: 0; margin: 20px 0 22px; list-style: none; }
.finance li { position: relative; padding-left: 17px; color: #365247; font-size: 14px; }
.finance li::before { content: ""; position: absolute; top: 10px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.outline-button { min-height: 48px; padding: 10px 20px; font-size: 14px; }
.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(1020px,calc(100% - 48px)); margin: 0 auto 78px; padding: 21px 25px; border-radius: 17px; background: var(--forest); color: #fff; }
.inline-cta p { margin: 0; font-size: 16px; }

.outcome-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 19px; }
.outcome-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 26px rgba(30,62,47,.07); }
.outcome-card picture, .outcome-card img { display: block; width: 100%; }
.outcome-card img { height: auto; aspect-ratio: 16/9; object-fit: contain; background: #f2efe7; }
.outcome-card > div { padding: 24px 25px 27px; }
.scene-label { display: inline-flex; padding: 4px 9px; border-radius: 999px; background: var(--sage); color: var(--forest); font-size: 12px; font-weight: 760; }
.outcome-card h3 { margin: 12px 0 8px; color: var(--forest); font-family: var(--serif); font-size: 25px; line-height: 1.25; }
.outcome-card p { margin: 0; color: var(--muted); font-size: 15px; }
.outcome-card-featured { border-color: rgba(201,149,37,.55); box-shadow: 0 13px 32px rgba(157,106,12,.12); }

.logo-section { padding-top: 8px; }
.logo-marquee { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.82); }
.logo-marquee::before, .logo-marquee::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 70px; pointer-events: none; }
.logo-marquee::before { left: 0; background: linear-gradient(90deg,var(--ivory),transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(-90deg,var(--ivory),transparent); }
.logo-track { display: flex; width: max-content; align-items: stretch; gap: 16px; padding: 20px 16px; animation: marquee 52s linear infinite; }
.mentor-track { animation-duration: 40s; }
.logo-marquee:hover .logo-track, .logo-marquee:focus-within .logo-track { animation-play-state: paused; }
.logo-tile { display: grid; width: 190px; min-height: 98px; flex: 0 0 auto; place-items: center; padding: 18px; border: 1px solid #e4e8e2; border-radius: 12px; background: #fff; }
.logo-tile img { max-width: 100%; max-height: 56px; object-fit: contain; }
.logo-tile--deloitte { background: #111; }
.logo-tile--ucla { background: #2774ae; }
.logo-tile--new-york-university { background: #57068c; }
.logo-tile--uc-irvine { background: #255799; }
.logo-tile--unc-chapel-hill { background: #13294b; }
.logo-disclaimer { max-width: 850px; margin: 14px auto 0; color: #748179; font-size: 12px; line-height: 1.55; text-align: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

.direction-grid, .video-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.direction-grid a, .video-card { position: relative; display: block; overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: inherit; text-align: left; text-decoration: none; box-shadow: 0 9px 24px rgba(30,62,47,.07); cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.direction-grid a:hover, .video-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(30,62,47,.12); }
.direction-grid picture, .direction-grid img, .video-card picture, .video-card img { width: 100%; }
.direction-grid img, .video-card img { height: auto; aspect-ratio: 16/9; object-fit: contain; background: #f1eee7; }
.direction-grid a > div { padding: 20px 22px 23px; }
.direction-grid h3 { margin: 0; color: var(--forest); font-family: var(--serif); font-size: 22px; line-height: 1.3; }
.direction-grid p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }
.video-title { display: block; min-height: 62px; padding: 17px 20px; color: var(--forest); font-size: 16px; font-weight: 780; }
.play-badge { position: absolute; top: calc(50% - 31px); left: 50%; display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid rgba(255,255,255,.86); border-radius: 50%; background: rgba(13,53,40,.88); color: #fff; transform: translate(-50%,-50%); box-shadow: 0 8px 20px rgba(0,0,0,.22); }
.inline-cta-after-videos { margin-bottom: 78px; }
.quality-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.quality-grid article { padding: 29px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.quality-grid article > span { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--sage); color: var(--forest); font-weight: 900; }
.quality-grid h3 { margin: 16px 0 7px; color: var(--forest); font-family: var(--serif); font-size: 21px; }
.quality-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.quality-framework blockquote { max-width: 830px; margin: 28px auto 0; padding: 21px 25px; border-left: 4px solid var(--gold); background: var(--sage); color: var(--forest); font-family: var(--serif); font-size: 20px; }
.final-cta { width: min(940px,calc(100% - 48px)); margin: 0 auto 82px; padding: 54px 36px; border-radius: 24px; background: linear-gradient(145deg,var(--forest-deep),var(--forest)); color: #fff; text-align: center; box-shadow: var(--shadow); }
.final-cta h2 { margin: 0; color: #fff; font-size: clamp(31px,3.5vw,46px); }
.final-cta > p:not(.kicker) { max-width: 680px; margin: 13px auto 24px; color: rgba(255,255,255,.78); }
.final-cta .kicker { color: #edcb7b; }
footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(1100px,calc(100% - 48px)); padding: 30px 0 38px; margin: auto; border-top: 1px solid var(--line); color: #4f665b; }
footer img { width: 210px; height: auto; }
footer p { margin: 0; font-family: var(--serif); font-size: 14px; }
.mobile-sticky-cta { display: none; }

.video-modal[hidden] { display: none; }
.video-modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 24px; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(6,23,17,.84); backdrop-filter: blur(4px); }
.video-modal-dialog { position: relative; z-index: 1; width: min(920px,100%); overflow: hidden; border-radius: 18px; background: #111; box-shadow: 0 28px 80px rgba(0,0,0,.5); }
.video-modal-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 16px; background: var(--paper); }
.video-modal-header h2 { margin: 0; color: var(--forest); font-size: 20px; }
.modal-close { width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--sage); color: var(--forest); font-size: 28px; cursor: pointer; }
.video-frame-wrap { aspect-ratio: 16/9; background: #000; }
.video-frame-wrap iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) {
  .site-header, .hero-inner { width: calc(100% - 44px); }
  .hero-copy { max-width: 570px; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .how-list { grid-template-columns: repeat(2,1fr); }
  .finance { grid-template-columns: .95fr 1.05fr; }
  .outcome-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  body { padding-bottom: 76px; font-size: 17px; line-height: 1.72; }
  .site-header { width: calc(100% - 32px); height: 76px; }
  .brand { width: 205px; }
  .hero { min-height: 680px; }
  .hero-media img { object-position: center bottom; }
  .hero::after { background: linear-gradient(180deg,rgba(252,249,240,.97) 0%,rgba(252,249,240,.92) 48%,rgba(252,249,240,.18) 74%,rgba(252,249,240,.02) 100%); }
  .hero-inner { width: calc(100% - 32px); align-items: start; padding: 112px 0 300px; }
  .hero h1 { font-size: clamp(40px,12vw,52px); }
  .hero-lead { font-size: 18px; }
  .hero-actions { gap: 10px; }
  .primary-link, .secondary-link { min-height: 50px; padding: 10px 18px; font-size: 15px; }
  .trust-strip { grid-template-columns: 1fr; width: calc(100% - 24px); margin-top: 18px; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item { padding: 16px 12px; }
  .form-wrap { width: calc(100% - 24px); margin-top: 26px; }
  .form-shell { padding: 26px 16px 21px; }
  .form-intro h2 { font-size: 31px; }
  .field-grid { grid-template-columns: 1fr; gap: 15px; }
  .field-span { grid-column: auto; }
  .field-grid > label, .choice-group, .finance-followup { font-size: 16px; }
  .field-grid input, .field-grid select { height: 53px; font-size: 16px; }
  .choice-options, .radio-options { grid-template-columns: 1fr; }
  .choice-options label, .radio-options label { font-size: 15px; }
  .submit-button { width: 100%; min-height: 53px; }
  .success-actions { display: grid; }
  .belief { grid-template-columns: 1fr; gap: 14px; width: calc(100% - 36px); padding: 60px 0 52px; }
  .belief > p { font-size: 19px; }
  .section-shell { width: calc(100% - 28px); margin-bottom: 60px; }
  .how-list, .finance, .direction-grid, .video-grid, .quality-grid { grid-template-columns: 1fr; }
  .how article { min-height: 0; }
  .finance { width: calc(100% - 24px); padding: 8px; }
  .finance-copy { padding: 24px 16px 18px; }
  .finance ul { grid-template-columns: 1fr; }
  .outline-button { width: 100%; white-space: normal; }
  .inline-cta { display: grid; width: calc(100% - 28px); margin-bottom: 60px; text-align: center; }
  .inline-cta .primary-link { width: 100%; }
  .outcome-card > div { padding: 22px 20px 25px; }
  .logo-marquee { overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
  .logo-marquee::before, .logo-marquee::after { display: none; }
  .logo-track { animation: none; }
  .logo-tile { width: 170px; min-height: 92px; scroll-snap-align: start; }
  .logo-disclaimer { text-align: left; }
  .quality-framework blockquote { font-size: 18px; }
  .final-cta { width: calc(100% - 28px); padding: 43px 22px; }
  footer { display: grid; justify-items: start; width: calc(100% - 32px); }
  footer img { width: 210px; }
  .mobile-sticky-cta { position: fixed; z-index: 80; right: 14px; bottom: 12px; left: 14px; display: flex; min-height: 53px; align-items: center; justify-content: center; border-radius: 999px; background: var(--gold); color: var(--forest-deep); font-size: 16px; font-weight: 850; text-decoration: none; box-shadow: 0 12px 30px rgba(15,56,43,.28); transition: transform .16s ease, opacity .16s ease; }
  .mobile-sticky-cta.is-hidden { transform: translateY(90px); opacity: 0; pointer-events: none; }
  .video-modal { padding: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .logo-marquee { overflow-x: visible; }
  .logo-track { display: grid; width: auto; grid-template-columns: repeat(4,minmax(0,1fr)); animation: none; }
  .logo-tile { width: auto; }
}
@media (max-width: 700px) and (prefers-reduced-motion: reduce) { .logo-track { grid-template-columns: repeat(2,minmax(0,1fr)); } }
