:root {
  --navy: #071a38;
  --navy-2: #0d274f;
  --ink: #10254b;
  --ivory: #f7f1e8;
  --paper: #fcf8f2;
  --gold: #c89a3d;
  --gold-light: #e9c56d;
  --muted: #6e7480;
  --line: rgba(16, 37, 75, .18);
  --light-line: rgba(255, 255, 255, .18);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ivory); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(200,154,61,.10), transparent 28rem),
    var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--gold); color: var(--navy); }

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

.loader {
  position: fixed; inset: 0; z-index: 2000; display: grid; place-content: center;
  background: var(--navy); color: var(--paper); transition: opacity .65s var(--ease), visibility .65s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark { font-family: var(--serif); font-size: clamp(4rem, 12vw, 9rem); letter-spacing: -.08em; }
.loader-line { width: 180px; height: 1px; margin-top: 20px; background: rgba(255,255,255,.15); overflow: hidden; }
.loader-line span { display: block; width: 50%; height: 100%; background: var(--gold); animation: load 1.2s ease-in-out infinite; }
@keyframes load { from { transform: translateX(-120%); } to { transform: translateX(220%); } }

.section-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: clamp(92px, 12vw, 170px); }
.dark-section { color: var(--paper); background: var(--navy); }

.site-header {
  width: var(--shell); height: 88px; margin-inline: auto; display: flex; align-items: center;
  justify-content: space-between; gap: 30px; position: relative; z-index: 100;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--gold);
  color: var(--gold); font-family: var(--serif); font-size: 18px;
}
.brand-name { font-family: var(--serif); font-size: 25px; letter-spacing: -.03em; }
.site-header nav { display: flex; gap: 30px; font-size: 13px; letter-spacing: .03em; }
.site-header nav a { position: relative; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--gold); transition: right .35s var(--ease); }
.site-header nav a:hover::after { right: 0; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  min-height: 58px; padding: 0 28px; border: 1px solid transparent; cursor: pointer;
  font-weight: 650; letter-spacing: -.01em; transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s;
}
.button:hover { transform: translateY(-3px); }
.button-small { min-height: 45px; padding-inline: 20px; font-size: 13px; }
.button-dark { color: var(--paper); background: var(--navy); }
.button-dark:hover { background: var(--navy-2); }
.button-gold { color: var(--navy); background: var(--gold-light); }
.button-gold:hover { background: #f0d17f; }
.button-full { width: 100%; justify-content: space-between; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; border-bottom: 1px solid var(--line); padding-bottom: 6px; }
.text-link span { color: var(--gold); }

.hero {
  min-height: calc(100vh - 88px); display: grid; grid-template-columns: 1.08fr .92fr;
  align-items: center; gap: clamp(40px, 7vw, 100px); padding-block: 70px 100px;
}
.eyebrow { margin: 0 0 25px; color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .22em; font-weight: 700; }
.eyebrow-light { color: var(--gold-light); }
.hero-title, .display-title, .final-title {
  font-family: var(--serif); font-weight: 400; letter-spacing: -.055em; line-height: .94; margin: 0;
}
.hero-title { font-size: clamp(4.25rem, 8vw, 8.7rem); }
.hero-title em, .display-title em, .final-title em { color: var(--gold); font-weight: 400; }
.hero-subtitle { max-width: 620px; margin: 34px 0 0; font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: #34435f; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.hero-facts { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 48px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.hero-facts span { padding-right: 18px; border-right: 1px solid var(--line); }
.hero-facts span:last-child { border: 0; }

.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 80%; aspect-ratio: 1; border-radius: 50%; background: rgba(200,154,61,.20); filter: blur(70px); animation: breathe 6s ease-in-out infinite; }
@keyframes breathe { 50% { transform: scale(1.12); opacity: .68; } }
.roadmap-card {
  width: min(100%, 520px); aspect-ratio: .83; position: relative; padding: 26px; overflow: hidden;
  color: var(--paper); background: linear-gradient(145deg, #102c57, #06162f 70%);
  box-shadow: 0 40px 90px rgba(7,26,56,.22); transform: rotate(2deg);
}
.roadmap-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,.06), transparent 65%); transform: translateX(-100%); animation: sheen 7s infinite 1.5s; }
@keyframes sheen { 15%,100% { transform: translateX(120%); } }
.roadmap-top, .roadmap-footer { display: flex; justify-content: space-between; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; position: relative; z-index: 2; }
.roadmap-svg { position: absolute; inset: 72px 18px 66px; width: calc(100% - 36px); height: calc(100% - 138px); overflow: visible; }
.roadmap-svg path { fill: none; }
.roadmap-track { stroke: rgba(255,255,255,.12); stroke-width: 2; }
.roadmap-path { stroke: var(--gold-light); stroke-width: 3; stroke-dasharray: 760; stroke-dashoffset: 760; animation: draw 3.2s var(--ease) .7s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.roadmap-svg circle { fill: var(--gold-light); opacity: 0; animation: point .5s ease forwards; }
.roadmap-svg circle:nth-of-type(1) { animation-delay: 1s; }
.roadmap-svg circle:nth-of-type(2) { animation-delay: 1.7s; }
.roadmap-svg circle:nth-of-type(3) { animation-delay: 2.3s; }
.roadmap-svg circle:nth-of-type(4) { animation-delay: 2.9s; }
@keyframes point { to { opacity: 1; } }
.roadmap-label { position: absolute; z-index: 2; font-family: var(--serif); font-size: 20px; }
.label-1 { left: 48px; bottom: 90px; }.label-2 { left: 155px; bottom: 205px; }.label-3 { right: 142px; top: 205px; }.label-4 { right: 28px; top: 95px; }
.roadmap-footer { position: absolute; left: 26px; right: 26px; bottom: 25px; color: rgba(255,255,255,.72); }
.live-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); display: inline-block; margin-right: 8px; box-shadow: 0 0 0 5px rgba(233,197,109,.12); }

.ticker { overflow: hidden; background: var(--gold-light); color: var(--navy); border-block: 1px solid rgba(7,26,56,.18); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; padding-block: 17px; font-size: 12px; letter-spacing: .15em; animation: ticker 25s linear infinite; }
.ticker i { font-size: 8px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.problem { display: grid; grid-template-columns: 80px 1.25fr 1fr; gap: clamp(35px, 7vw, 100px); align-items: start; }
.section-number { font-family: var(--serif); color: var(--gold); font-size: 20px; }
.display-title { font-size: clamp(3.2rem, 6vw, 6.5rem); }
.problem-list { border-top: 1px solid var(--line); }
.problem-list article { display: grid; grid-template-columns: 42px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.problem-list span { color: var(--gold); font-size: 11px; letter-spacing: .12em; }
.problem-list p { margin: 0; font-size: 17px; }

.outcomes-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(55px, 9vw, 130px); }
.light { color: var(--paper); }
.section-copy { max-width: 610px; font-size: 18px; color: #5f6a7d; }
.dark-section .section-copy { color: rgba(255,255,255,.65); }
.outcomes-intro .section-copy { margin-top: 35px; }
.outcome-cards { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--light-line); border-left: 1px solid var(--light-line); }
.outcome-card { min-height: 250px; padding: 30px; border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); transition: background .35s var(--ease), transform .35s var(--ease); }
.outcome-card:hover { background: rgba(255,255,255,.045); transform: translateY(-4px); }
.outcome-card > span { color: var(--gold-light); font-size: 11px; }
.outcome-card h3 { margin: 62px 0 14px; font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.05; }
.outcome-card p { color: rgba(255,255,255,.62); margin: 0; }

.agenda-heading, .speakers-heading { display: flex; justify-content: space-between; gap: 60px; align-items: end; margin-bottom: 70px; }
.agenda-heading .section-copy, .speakers-heading .section-copy { width: min(100%, 430px); margin: 0; }
.agenda-tabs { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.agenda-tab { text-align: left; padding: 28px; background: transparent; border: 0; cursor: pointer; display: grid; gap: 8px; transition: background .3s, color .3s; }
.agenda-tab + .agenda-tab { border-left: 1px solid var(--line); }
.agenda-tab span { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.agenda-tab strong { font-family: var(--serif); font-size: 30px; font-weight: 400; }
.agenda-tab small { color: var(--muted); }
.agenda-tab.active { background: var(--navy); color: var(--paper); }
.agenda-tab.active small { color: rgba(255,255,255,.6); }
.agenda-panels { border-inline: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.agenda-panel article { display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 28px; border-top: 1px solid var(--line); }
.agenda-panel article:first-child { border-top: 0; }
.agenda-panel time { color: var(--gold); font-size: 12px; letter-spacing: .12em; }
.agenda-panel h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.agenda-panel p { margin: 0; color: var(--muted); }

.founder { background: var(--paper); }
.founder-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.founder-visual { position: relative; padding: 34px; background: var(--navy); }
.founder-visual img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.founder-stamp { position: absolute; right: -30px; bottom: 40px; width: 115px; height: 115px; border-radius: 50%; display: grid; place-content: center; text-align: center; background: var(--gold-light); color: var(--navy); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; transform: rotate(8deg); }
.founder-copy .section-copy { margin: 35px 0; }
.credential-strip { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.credential-strip span { padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 14px; }
.credential-strip strong { display: block; font-family: var(--serif); font-size: 23px; font-weight: 400; }

.speaker-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.speaker-card { min-height: 390px; border: 1px solid var(--light-line); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.speaker-card::before { content: ""; position: absolute; width: 190px; aspect-ratio: 1; border-radius: 50%; right: -60px; top: -60px; border: 1px solid rgba(233,197,109,.35); }
.speaker-card .speaker-index { color: var(--gold-light); font-size: 11px; letter-spacing: .15em; }
.speaker-image { width: 120px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-light); margin-top: 30px; }
.speaker-monogram { width: 120px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; margin-top: 30px; color: var(--gold-light); border: 1px solid var(--gold-light); font-family: var(--serif); font-size: 54px; background: rgba(255,255,255,.025); }
.speaker-card h3 { font-family: var(--serif); font-size: 42px; font-weight: 400; margin: 30px 0 0; }
.speaker-card strong { color: var(--gold-light); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.speaker-card p { color: rgba(255,255,255,.65); margin-bottom: 0; }
.speaker-note { margin-top: 18px; padding: 20px 25px; border: 1px solid var(--light-line); color: rgba(255,255,255,.6); font-size: 13px; }

.fit-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 60px; gap: 50px; }
.fit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.fit-card { min-height: 310px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fit-card span { color: var(--gold); font-size: 11px; }
.fit-card h3 { margin: 80px 0 20px; font-family: var(--serif); font-size: 30px; line-height: 1.05; font-weight: 400; }
.fit-card p { margin: 0; color: var(--muted); }

.register { background: #efe4d6; }
.register-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.register-copy { position: sticky; top: 120px; }
.register-copy .section-copy { margin-block: 35px; }
.event-card { border-top: 1px solid var(--line); }
.event-card div { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); gap: 20px; }
.event-card span { color: var(--muted); font-size: 13px; }
.event-card strong { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.registration-form { background: var(--paper); padding: clamp(26px, 5vw, 50px); box-shadow: 0 30px 80px rgba(7,26,56,.08); }
.form-heading { display: flex; justify-content: space-between; padding-bottom: 25px; margin-bottom: 28px; border-bottom: 1px solid var(--line); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.form-heading span:last-child { color: var(--gold); }
.field-grid { display: grid; gap: 18px; }
.field-grid.two { grid-template-columns: 1fr 1fr; }
.registration-form label { display: grid; gap: 8px; margin-bottom: 18px; font-size: 13px; font-weight: 650; }
.registration-form label small { color: var(--muted); font-weight: 400; }
input, select, textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 14px 0; color: var(--ink); border-radius: 0; outline: none; transition: border-color .25s, background .25s; }
input:focus, select:focus, textarea:focus { border-bottom-color: var(--gold); background: rgba(200,154,61,.035); }
textarea { resize: vertical; }
.check-row { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; font-weight: 400 !important; line-height: 1.4; }
.check-row input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--navy); }
.check-row em { color: var(--gold); font-style: normal; }
.form-error { color: #9f2f2f; min-height: 24px; font-size: 13px; }
.form-fineprint { color: var(--muted); font-size: 11px; margin: 14px 0 0; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 120px); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; display: flex; justify-content: space-between; gap: 30px; cursor: pointer; padding: 27px 0; font-family: var(--serif); font-size: 24px; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--gold); transition: transform .3s; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -5px 0 28px; color: var(--muted); max-width: 680px; }

.final-cta { padding-block: 130px; }
.final-cta-inner { text-align: center; }
.final-title { color: var(--paper); font-size: clamp(4rem, 9vw, 9rem); margin-bottom: 50px; }

footer { background: #041126; color: rgba(255,255,255,.72); padding-block: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr 1fr; gap: 40px; }
.footer-brand { color: var(--paper); font-family: var(--serif); font-size: 34px; }
footer p { max-width: 300px; }
footer div > span { display: block; color: var(--gold-light); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 15px; }
footer a { display: block; margin: 9px 0; }
.footer-meta { font-size: 11px; }
.footer-meta span { color: rgba(255,255,255,.55); text-transform: none; letter-spacing: 0; }

.modal { position: fixed; inset: 0; z-index: 1500; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,17,38,.72); backdrop-filter: blur(10px); }
.modal-card { position: relative; z-index: 1; width: min(620px, 100%); background: var(--paper); padding: clamp(35px, 6vw, 70px); box-shadow: 0 40px 100px rgba(0,0,0,.3); }
.modal-card h2 { font-family: var(--serif); font-size: clamp(3rem, 7vw, 5rem); line-height: .95; font-weight: 400; margin: 0 0 25px; }
.modal-close { position: absolute; top: 18px; right: 18px; border: 0; background: transparent; font-size: 28px; cursor: pointer; }
.calendar-buttons { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.modal-note { color: var(--muted); font-size: 13px; margin-top: 20px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 34px, 820px); }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-visual { min-height: 500px; }
  .roadmap-card { max-width: 460px; }
  .problem { grid-template-columns: 40px 1fr; }
  .problem-list { grid-column: 2; }
  .outcomes-grid, .founder-grid, .register-grid, .faq { grid-template-columns: 1fr; }
  .register-copy { position: static; }
  .fit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  .section-pad { padding-block: 85px; }
  .site-header { height: 75px; }
  .brand-name { font-size: 22px; }
  .site-header .button { display: none; }
  .hero { min-height: auto; padding-block: 60px 80px; }
  .hero-title { font-size: clamp(3.55rem, 19vw, 5.5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { flex-direction: column; gap: 9px; }
  .hero-facts span { border: 0; padding: 0; }
  .hero-visual { min-height: 430px; }
  .roadmap-card { transform: none; padding: 20px; }
  .roadmap-top, .roadmap-footer { font-size: 9px; }
  .roadmap-label { font-size: 15px; }
  .label-1 { left: 30px; bottom: 77px; }.label-2 { left: 105px; bottom: 160px; }.label-3 { right: 90px; top: 170px; }.label-4 { right: 20px; top: 85px; }
  .problem { grid-template-columns: 1fr; gap: 20px; }
  .section-number, .problem-list { grid-column: auto; }
  .display-title { font-size: clamp(3rem, 15vw, 4.7rem); }
  .outcome-cards, .agenda-tabs, .field-grid.two, .credential-strip { grid-template-columns: 1fr; }
  .outcome-card { min-height: 220px; }
  .agenda-heading, .speakers-heading, .fit-heading { flex-direction: column; align-items: start; }
  .agenda-tab + .agenda-tab { border-left: 0; border-top: 1px solid var(--line); }
  .agenda-panel article { grid-template-columns: 65px 1fr; padding: 22px 18px; gap: 15px; }
  .founder-stamp { right: -6px; bottom: -32px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card { min-height: 260px; }
  .registration-form { padding: 25px 18px; }
  .form-heading { flex-direction: column; gap: 8px; }
  .faq { gap: 45px; }
  .final-title { font-size: clamp(3.5rem, 18vw, 6rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .calendar-buttons { flex-direction: column; }
  .calendar-buttons .button { width: 100%; }
}

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