:root {
  --navy: #17106b;
  --navy-deep: #0b0a3f;
  --red: #d10f1a;
  --ink: #191922;
  --muted: #666774;
  --white: #ffffff;
  --soft: #f7f7fa;
  --soft-blue: #f4f4fa;
  --line: #e7e7ed;
  --shadow: 0 20px 58px rgba(11,10,63,.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --header-h: 92px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 40px), var(--max-width)); margin: 0 auto; }
.section { scroll-margin-top: var(--header-h); position: relative; }
.content-section { padding: 110px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231,231,237,.85);
}
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; flex: 0 0 184px; text-decoration: none; }
.brand img { width: 100%; height: 66px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 1.55vw, 26px); }
.main-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  transition: color .22s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 4px;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}
.main-nav a:hover,
.main-nav a.is-current { color: var(--navy); }
.main-nav a:hover::after,
.main-nav a.is-current::after { right: 0; }
.main-nav .nav-application { color: var(--red); }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: 14px; padding: 11px; }
.menu-button span { display: block; height: 2px; margin: 4px 0; border-radius: 99px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }

.hero-section {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 30%, rgba(23,16,107,.075), transparent 28%),
    radial-gradient(circle at 75% 78%, rgba(209,15,26,.05), transparent 23%),
    var(--white);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding: 70px 0 110px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 16px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .19em; }
.hero-copy h1 { margin: 0; color: var(--navy-deep); font-size: clamp(64px, 7vw, 104px); letter-spacing: -.058em; line-height: .92; }
.hero-subtitle { margin: 24px 0 0; font-size: clamp(23px, 2.6vw, 34px); font-weight: 650; }
.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 14px; border: 0; text-decoration: none; cursor: pointer; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 12px 28px rgba(209,15,26,.18); }
.button-secondary { background: var(--white); color: var(--navy); border: 1px solid var(--line); }
.hero-mark { display: grid; place-items: center; min-height: 420px; }
.compass-ring { width: min(390px, 80vw); aspect-ratio: 1; border: 22px solid rgba(23,16,107,.06); border-top-color: var(--navy); border-left-color: rgba(23,16,107,.18); border-radius: 50%; position: relative; transform: rotate(14deg); box-shadow: inset 0 0 0 1px rgba(23,16,107,.05); }
.compass-ring::before, .compass-ring::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(23,16,107,.12); border-radius: 50%; }
.compass-ring::after { inset: 29%; border-color: rgba(209,15,26,.14); }
.needle { position: absolute; left: 50%; top: 50%; width: 4px; height: 66%; transform-origin: center; border-radius: 99px; }
.needle-red { background: linear-gradient(var(--red) 0 50%, transparent 50%); transform: translate(-50%,-50%) rotate(28deg); }
.needle-navy { background: linear-gradient(var(--navy) 0 50%, transparent 50%); transform: translate(-50%,-50%) rotate(208deg); }
.center-dot { position: absolute; width: 22px; height: 22px; background: var(--white); border: 7px solid var(--navy); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 7px rgba(209,15,26,.1); }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); display: inline-flex; flex-direction: column; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }
.scroll-cue i { width: 1px; height: 34px; background: linear-gradient(var(--red), transparent); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: .35; transform: scaleY(.65); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

.statement-section { min-height: calc(100svh - var(--header-h)); display: grid; align-items: center; overflow: hidden; background: var(--white); border-top: 1px solid var(--line); }
.statement-section-alt { background: var(--soft); }
.statement-wrap { position: relative; min-height: 580px; display: flex; align-items: center; padding: 84px 0; }
.statement-watermark { position: absolute; right: -1vw; top: 50%; transform: translateY(-50%); z-index: 0; color: var(--navy); opacity: .035; font-size: clamp(92px, 13vw, 192px); font-weight: 950; line-height: .72; letter-spacing: -.075em; pointer-events: none; user-select: none; text-align: right; }
.statement-watermark span { display: block; }
.statement-watermark-right { right: auto; left: -1vw; text-align: left; }
.statement-content { position: relative; z-index: 1; width: min(760px, 72%); }
.statement-content-right { margin-left: auto; }
.statement-content h2, .section-heading h2, .success-heading h2, .application-intro h2, .legal-heading h2 { margin: 0; color: var(--navy-deep); font-size: clamp(38px, 4.6vw, 64px); letter-spacing: -.045em; line-height: 1; }
.statement-copy { margin-top: 32px; display: grid; gap: 18px; }
.statement-copy p { margin: 0; color: #444550; font-size: clamp(16px, 1.45vw, 19px); line-height: 1.85; }

.announcements-section { background: var(--white); }
.section-heading { margin-bottom: 48px; }
.section-description { margin: 16px 0 0; color: var(--muted); font-size: 15px; }
.announcements-shell { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.announcement-slot { min-height: 210px; border: 1px dashed rgba(23,16,107,.18); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(23,16,107,.018), rgba(209,15,26,.01)); position: relative; }
.announcement-slot::after { content: ""; position: absolute; left: 30px; right: 30px; top: 50%; height: 1px; background: var(--line); }

.success-section { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.success-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.success-total { display: flex; align-items: baseline; gap: 10px; }
.success-total span { position: relative; display: inline-block; color: var(--navy); font-size: clamp(72px, 9vw, 124px); line-height: .78; font-weight: 950; letter-spacing: -.07em; }
.success-total span::after { content: ""; position: absolute; left: 10%; right: 2%; bottom: -12px; height: 5px; background: var(--red); border-radius: 99px; }
.success-total small { color: var(--muted); font-size: 13px; font-weight: 800; }
.success-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 12px; }
.success-card { min-height: 154px; padding: 28px 12px 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; box-shadow: 0 8px 22px rgba(11,10,63,.035); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.success-card:hover { transform: translateY(-5px); border-color: rgba(23,16,107,.2); box-shadow: var(--shadow); }
.success-card strong { color: var(--red); font-size: 42px; line-height: 1; letter-spacing: -.04em; }
.success-card span { color: var(--navy-deep); font-size: 12px; font-weight: 850; text-align: center; }

.management-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.person-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 16px 45px rgba(11,10,63,.045); }
.person-photo, .photo-placeholder { aspect-ratio: 4 / 4.7; background: var(--soft); overflow: hidden; }
.person-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }
.photo-placeholder { display: grid; place-items: center; background: linear-gradient(145deg, rgba(23,16,107,.08), rgba(209,15,26,.035)), var(--soft); border-bottom: 1px dashed rgba(23,16,107,.16); }
.photo-placeholder span { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--navy); font-size: 21px; font-weight: 900; box-shadow: 0 12px 32px rgba(23,16,107,.1); }
.person-copy { padding: 22px 22px 25px; }
.person-copy h3 { margin: 0; color: var(--navy-deep); font-size: 21px; letter-spacing: -.025em; }
.person-role { margin: 9px 0 0; color: var(--red); font-size: 13px; font-weight: 850; }
.person-card-featured { border-color: rgba(23,16,107,.15); }

.application-section { background: linear-gradient(150deg, #fff 0 42%, #f7f7fb 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.application-wrap { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.application-intro { position: sticky; top: calc(var(--header-h) + 48px); }
.application-intro p:last-child { max-width: 440px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.application-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field > span { color: var(--navy-deep); font-size: 12px; font-weight: 850; }
.form-field input, .form-field select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field input:focus, .form-field select:focus { border-color: rgba(23,16,107,.42); box-shadow: 0 0 0 4px rgba(23,16,107,.06); }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.privacy-check input { margin-top: 3px; accent-color: var(--navy); }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.form-status { margin: 0; color: var(--muted); font-size: 12px; }

.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.25fr .8fr 1.05fr; gap: 18px; }
.contact-card { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 12px 40px rgba(11,10,63,.035); display: flex; flex-direction: column; align-items: flex-start; }
.contact-index { color: rgba(23,16,107,.22); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.contact-card h3 { margin: auto 0 12px; color: var(--navy-deep); font-size: 23px; }
.contact-value { color: var(--muted); font-size: 15px; line-height: 1.6; overflow-wrap: anywhere; }
.contact-link { text-decoration: none; }
.contact-link:hover { color: var(--red); }
.directions-link { margin-top: 16px; padding: 0; border: 0; background: none; color: var(--red); font-weight: 850; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }

.legal-section { background: var(--white); border-top: 1px solid var(--line); }
.legal-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.legal-heading > p { margin: 0; color: var(--muted); line-height: 1.7; }
.legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.legal-card { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); display: grid; grid-template-columns: 46px 1fr; gap: 16px; background: var(--white); }
.legal-card-wide { grid-column: 1 / -1; }
.law-number { color: rgba(23,16,107,.24); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.law-ref { margin: 0 0 7px; color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.legal-card h3 { margin: 0; color: var(--navy-deep); font-size: 20px; }
.legal-card div > p:last-child { margin: 12px 0 0; color: var(--muted); line-height: 1.65; font-size: 14px; }
.legal-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.legal-links a { padding: 12px 15px; border: 1px solid var(--line); border-radius: 12px; color: var(--navy); text-decoration: none; font-size: 12px; font-weight: 850; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .brand { flex-basis: 154px; }
  .main-nav { gap: 13px; }
  .main-nav a { font-size: 12px; }
  .success-grid { grid-template-columns: repeat(5, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 78px; }
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .header-inner { min-height: var(--header-h); }
  .brand { flex-basis: 166px; }
  .brand img { height: 58px; }
  .menu-button { display: block; }
  .main-nav { display: none; position: absolute; top: calc(var(--header-h) - 1px); left: 14px; right: 14px; max-height: calc(100svh - var(--header-h) - 18px); overflow-y: auto; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 10px; font-size: 14px; }
  .main-nav a::after { display: none; }
  .main-nav a.is-current { background: var(--soft); border-radius: 10px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; padding: 60px 0 92px; }
  .hero-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-mark { min-height: 260px; }
  .compass-ring { width: min(290px, 74vw); border-width: 17px; }
  .statement-wrap { min-height: auto; padding: 90px 0; }
  .statement-content, .statement-content-right { width: 100%; margin: 0; }
  .statement-watermark, .statement-watermark-right { right: -2vw; left: auto; top: 55%; text-align: right; font-size: clamp(82px, 23vw, 160px); }
  .success-heading { align-items: center; }
  .success-grid { grid-template-columns: repeat(3, 1fr); }
  .application-wrap { grid-template-columns: 1fr; gap: 34px; }
  .application-intro { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 190px; }
  .legal-heading { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 620px) {
  .content-section { padding: 78px 0; }
  .hero-section { min-height: calc(100svh - var(--header-h)); }
  .hero-copy h1 { font-size: clamp(56px, 19vw, 82px); }
  .hero-subtitle { font-size: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-mark { min-height: 220px; }
  .compass-ring { width: min(230px, 68vw); }
  .scroll-cue { bottom: 16px; }
  .statement-section { min-height: 0; }
  .statement-wrap { padding: 82px 0; }
  .statement-copy p { font-size: 15px; line-height: 1.78; }
  .announcements-shell { grid-template-columns: 1fr; }
  .announcement-slot { min-height: 140px; }
  .success-heading { align-items: flex-start; flex-direction: column; gap: 32px; }
  .success-grid { grid-template-columns: repeat(2, 1fr); }
  .success-card { min-height: 128px; }
  .team-grid { grid-template-columns: 1fr; }
  .person-photo, .photo-placeholder { aspect-ratio: 4 / 4.2; }
  .person-photo img { object-position: center 34%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .application-form { padding: 22px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card-wide { grid-column: auto; }
  .legal-card { grid-template-columns: 36px 1fr; padding: 20px; }
}

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