/* All fonts are self-hosted (assets/fonts). No third-party font requests. */

/* ITC Garamond Std Condensed, display / headings. */
@font-face {
  font-family: "ITC Garamond Std Condensed";
  src: url("assets/fonts/ITCGaramondStd-Condensed.woff2") format("woff2"),
       url("assets/fonts/ITCGaramondStd-Condensed.woff") format("woff"),
       url("assets/fonts/ITCGaramondStd-Condensed.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Nimbus Sans, body, navigation, buttons, descriptions. */
@font-face {
  font-family: "Nimbus Sans";
  src: url("assets/fonts/NimbusSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nimbus Sans";
  src: url("assets/fonts/NimbusSans-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nimbus Sans";
  src: url("assets/fonts/NimbusSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nimbus Sans";
  src: url("assets/fonts/NimbusSans-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #132238;
  --slate: #3a4a5f;
  --gold: #b68a35;
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --charcoal: #111827;
  --teal: #2f6f63;
  --line: rgba(19, 34, 56, 0.14);
  --soft: rgba(19, 34, 56, 0.06);
  --shadow: 0 16px 42px rgba(19, 34, 56, 0.08);
  --radius: 8px;
  --container: 1180px;
  --serif: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  --sans: "Nimbus Sans", "Nimbus Sans L", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(19, 34, 56, 0.1);
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
}

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-word small {
  color: var(--slate);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--navy);
  color: #fffdf8;
}

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

.button.secondary {
  border-color: rgba(19, 34, 56, 0.2);
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fffdf8;
}

.hero {
  position: relative;
  min-height: calc(82vh - 76px);
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: #fffdf8;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(19, 34, 56, 0.9) 0%, rgba(19, 34, 56, 0.65) 44%, rgba(19, 34, 56, 0.12) 100%),
    linear-gradient(180deg, rgba(19, 34, 56, 0) 72%, var(--ivory) 100%);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-inner {
  display: grid;
  min-height: calc(82vh - 76px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 78px 24px 104px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1;
}

h2 {
  font-size: clamp(40px, 5vw, 68px);
}

h3 {
  font-size: 32px;
}

.hero h1 {
  margin-top: 22px;
  color: #fffdf8;
  font-size: clamp(54px, 8vw, 104px);
  max-width: 830px;
}

.hero p {
  max-width: 630px;
  margin: 26px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.proof-strip {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(19, 34, 56, 0.5);
  backdrop-filter: blur(14px);
}

.proof-item {
  min-height: 84px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: #fffdf8;
  font-size: 20px;
}

.proof-item > span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 13px;
}

.logo-lockup {
  display: flex;
  min-height: 31px;
  align-items: center;
  gap: 14px;
}

.institution-logo {
  display: inline-flex;
  align-items: center;
  color: #fffdf8;
  line-height: 1;
}

.mit-logo {
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.wharton-logo {
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.logo-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 253, 248, 0.35);
}

.section {
  padding: 78px 24px;
}

.section.tight {
  padding-top: 62px;
  padding-bottom: 62px;
}

.section.navy {
  background: var(--navy);
  color: #fffdf8;
}

.section.paper {
  background: var(--paper);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(42px, 5.4vw, 72px);
}

.section-heading p,
.page-hero p,
.lead {
  margin: 0;
  color: var(--slate);
  font-size: 18px;
}

.navy .section-heading h2,
.navy h2,
.navy h3 {
  color: #fffdf8;
}

.navy .section-heading p,
.navy p,
.navy .muted {
  color: rgba(255, 253, 248, 0.74);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.36);
  padding: 24px;
}

.paper-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.card h3,
.track h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

.card p,
.track p {
  margin: 0;
  color: var(--slate);
}

.navy .card p {
  color: rgba(255, 253, 248, 0.74);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric strong {
  color: var(--navy);
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.metric span {
  color: var(--slate);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 52px;
  align-items: center;
}

.quote-panel {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.quote-panel p {
  margin: 0;
  color: var(--navy);
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.08;
}

.quote-panel span {
  display: block;
  margin-top: 18px;
  color: var(--slate);
  font-weight: 700;
}

.track {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.track:last-child {
  border-bottom: 1px solid var(--line);
}

.track-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag {
  border: 1px solid rgba(19, 34, 56, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.44);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(19, 34, 56, 0.05);
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: var(--slate);
}

tr:last-child td {
  border-bottom: 0;
}

.price {
  color: var(--navy);
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.price small {
  color: var(--slate);
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  font-weight: 600;
}

.page-hero {
  padding: 92px 24px 62px;
  background:
    linear-gradient(115deg, rgba(19, 34, 56, 0.95), rgba(19, 34, 56, 0.82)),
    url("assets/meridian-hero.png");
  background-size: cover;
  background-position: center;
  color: #fffdf8;
}

.page-hero h1 {
  max-width: 780px;
  color: #fffdf8;
}

.page-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.76);
}

.page-hero .eyebrow {
  margin-bottom: 18px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.founder-card {
  min-height: 260px;
}

.founder-card .initial {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(182, 138, 53, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.partner-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
}

.partner-portrait {
  display: grid;
  min-height: 340px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(19, 34, 56, 0.1), rgba(19, 34, 56, 0.72)),
    linear-gradient(135deg, #f3eee3, #c7d0d3);
}

.partner-portrait span {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: 50%;
  color: #fffdf8;
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 50px;
  font-weight: 700;
}

.partner-info {
  min-height: 180px;
  padding: 34px;
  background: var(--navy);
}

.partner-info h3 {
  max-width: 420px;
  color: #fffdf8;
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.08;
}

.partner-info p {
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 18px;
}

.partner-info span {
  display: inline-flex;
  margin-top: 16px;
  border: 1px solid rgba(182, 138, 53, 0.42);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--navy);
}

.timeline-item p {
  margin: 0;
  color: var(--slate);
}

.testimonial {
  min-height: 285px;
}

.testimonial blockquote {
  margin: 0;
  color: var(--navy);
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  line-height: 1.16;
}

.testimonial figcaption {
  margin-top: 24px;
  color: var(--slate);
  font-weight: 700;
}

.label {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(182, 138, 53, 0.42);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: 28px;
}

.form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(19, 34, 56, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  color: var(--charcoal);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.calendar-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: none;
  padding: 28px;
}

.calendar-panel h3 {
  margin-bottom: 18px;
}

.slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--slate);
}

.slot strong {
  color: var(--navy);
}

.note {
  margin: 22px 0 0;
  color: var(--slate);
}

.registration-section {
  padding: 74px 24px 92px;
  background:
    linear-gradient(180deg, rgba(247, 243, 234, 0.78), var(--ivory) 250px),
    url("assets/meridian-hero.png");
  background-size: cover;
  background-position: center top;
}

.registration-panel {
  position: relative;
  border: 1px solid rgba(8, 17, 43, 0.11);
  border-radius: 10px;
  background: linear-gradient(180deg, #fffefa 0%, #fbfaf7 100%);
  box-shadow: 0 28px 90px rgba(8, 17, 43, 0.06);
  padding: 52px 46px 46px;
}

.registration-panel::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(182, 160, 109, 0.18);
  border-radius: 7px;
  content: "";
  pointer-events: none;
}

.registration-panel::after {
  position: absolute;
  top: 0;
  right: 46px;
  left: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 160, 109, 0.58), transparent);
  content: "";
  pointer-events: none;
}

.registration-intro {
  max-width: 960px;
  margin: 0 auto 40px;
  text-align: center;
}

.registration-intro .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}

.registration-intro .eyebrow::before {
  display: none;
}

.registration-intro h1 {
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
}

.registration-intro p {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--slate);
  font-size: 20px;
}

.registration-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.registration-form .wide,
.registration-form .registration-submit {
  grid-column: 1 / -1;
}

.registration-form label {
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 600;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  min-height: 58px;
  border: 1px solid rgba(8, 17, 43, 0.06);
  border-radius: 999px;
  background: #f1f0ec;
  padding: 15px 22px;
  font-size: 17px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.registration-form select[name="Subject or service"] {
  background: #edf3f7;
}

.registration-form input[readonly] {
  color: var(--navy);
  font-weight: 700;
}

.registration-form textarea {
  min-height: 122px;
  border-radius: 28px;
}

.registration-submit {
  width: 100%;
  min-height: 62px;
  margin-top: 14px;
  border-radius: 999px;
  background: #08112b;
  box-shadow: 0 12px 30px rgba(8, 17, 43, 0.16);
  font-size: 18px;
}

.cta-band {
  background: var(--navy);
  color: #fffdf8;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 720px;
  color: #fffdf8;
  font-size: clamp(40px, 5vw, 68px);
}

.cta-inner p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.72);
}

.footer {
  border-top: 1px solid rgba(19, 34, 56, 0.11);
  background: #eee7da;
  padding: 44px 24px 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(0, 0.35fr));
  gap: 30px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer h3 {
  margin-bottom: 12px;
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: var(--slate);
  font-size: 14px;
}

.footer a {
  display: block;
  margin-top: 8px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.subfooter {
  max-width: var(--container);
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(19, 34, 56, 0.1);
  color: var(--slate);
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-actions .button {
    display: inline-flex;
  }

  .proof-inner,
  .section-heading,
  .grid.three,
  .grid.four,
  .split,
  .track,
  .form-shell,
  .partner-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    position: static;
    padding: 0 24px 28px;
    background: var(--ivory);
  }

  .proof-inner {
    background: var(--navy);
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 86px;
    padding-bottom: 72px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 13px 16px;
  }

  .brand-word small {
    display: none;
  }

  .hero h1 {
    font-size: 52px;
  }

  .section,
  .page-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .grid.two,
  .founder-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .registration-section {
    padding: 38px 18px 70px;
  }

  .registration-panel {
    padding: 30px 20px 24px;
  }

  .registration-intro {
    margin-bottom: 30px;
    text-align: left;
  }

  .registration-intro .eyebrow {
    justify-content: flex-start;
  }

  .registration-intro h1 {
    font-size: 34px;
  }

  .registration-intro p,
  .registration-form label,
  .registration-submit {
    font-size: 16px;
  }

  .card {
    padding: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .partner-portrait {
    min-height: 280px;
  }

  .partner-info {
    min-height: 150px;
    padding: 26px;
  }

  .partner-info h3 {
    font-size: 26px;
  }

  .hero-actions,
  .cta-inner .button,
  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 220px;
  }
}

/* Editorial Meridian theme */
body {
  background: #fbfaf7;
  color: #08112b;
}

.site-header {
  position: static;
  border-bottom: 0;
  background: #fbfaf7;
  backdrop-filter: none;
}

.nav {
  max-width: none;
  padding: 24px 24px;
}

.nav::after {
  color: #8b8f99;
  content: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.brand {
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.brand-word {
  display: block;
}

.brand-word small {
  display: none;
}

.nav-links,
.nav-actions {
  display: none;
}

.hero {
  min-height: calc(100vh - 80px);
  background: #fbfaf7;
  color: #08112b;
}

.hero::after,
.hero-media {
  display: none;
}

.hero-inner {
  min-height: calc(74vh - 80px);
  padding: 90px 24px 42px;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  color: #969aa3;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.hero h1,
.page-hero h1 {
  color: #08112b;
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 8vw, 116px);
  font-style: normal;
  font-weight: 500;
  line-height: 0.95;
}

.hero h1 {
  margin-top: 130px;
}

.hero p,
.page-hero p,
.lead {
  color: #454a57;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.45;
}

.hero p {
  max-width: 980px;
  margin: 42px auto 0;
}

.hero-actions {
  justify-content: center;
  margin-top: 58px;
}

.button {
  border-radius: 999px;
  min-height: 46px;
}

.button.primary,
.button.gold {
  background: #08112b;
  color: #fbfaf7;
}

.button.ghost,
.button.secondary {
  border-color: #d9d7d0;
  background: transparent;
  color: #08112b;
}

.proof-strip {
  position: static;
  right: auto;
  bottom: auto;
  left: auto;
  padding: 0 24px 86px;
  background: #fbfaf7;
}

.proof-inner {
  max-width: 1180px;
  border: 0;
  border-top: 1px solid #dedbd3;
  border-bottom: 1px solid #dedbd3;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.proof-item {
  min-height: 128px;
  border-right: 1px solid #dedbd3;
  padding: 28px 34px;
}

.proof-item strong,
.institution-logo {
  color: #08112b;
}

.proof-item > span,
.proof-item span {
  color: #666b75;
}

.logo-divider {
  background: #cfcac0;
}

.section,
.section.tight {
  padding: 116px 24px;
}

.section.paper,
.footer,
.registration-section {
  background: #fbfaf7;
}

.section.navy,
.cta-band {
  background: #fbfaf7;
  color: #08112b;
}

.container {
  max-width: 1180px;
}

.section-heading {
  display: block;
  margin-bottom: 72px;
}

.section-heading h2,
.cta-inner h2,
h2 {
  max-width: 980px;
  color: #08112b;
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6vw, 82px);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.section-heading p,
.cta-inner p {
  max-width: 760px;
  margin-top: 28px;
  color: #454a57;
  font-size: 22px;
}

.grid.three,
.grid.four,
.partner-grid,
.founder-grid {
  gap: 0;
}

.card {
  border: 0;
  border-left: 1px solid #dedbd3;
  border-radius: 0;
  background: transparent;
  padding: 28px 44px 28px 48px;
}

.card h3,
.track h3 {
  color: #08112b;
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
}

.card p,
.track p,
td {
  color: #454a57;
  font-size: 20px;
}

.tag {
  border-color: #dedbd3;
  color: #6e727c;
}

.page-hero {
  min-height: 54vh;
  padding: 100px 24px 84px;
  background: #fbfaf7;
  color: #08112b;
}

.page-hero .container {
  max-width: 980px;
  text-align: center;
}

.page-hero h1 {
  max-width: none;
}

.page-hero p {
  max-width: 880px;
  margin: 34px auto 0;
  color: #454a57;
}

.track {
  border-top: 1px solid #dedbd3;
  gap: 64px;
  padding: 42px 0;
}

.track:last-child {
  border-bottom: 1px solid #dedbd3;
}

.track-kicker,
.label,
.partner-info span {
  color: #9a9da5;
  font-weight: 500;
  text-transform: uppercase;
}

.partner-card {
  border: 0;
  border-left: 1px solid #dedbd3;
  border-radius: 0;
  background: transparent;
}

.partner-portrait {
  height: 420px;
  min-height: 0;
  background: #f2f0eb;
  overflow: hidden;
}

.partner-portrait span {
  border-color: #d6d1c6;
  color: #b2a06d;
}

.partner-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 46%;
}

.partner-info {
  min-height: 210px;
  padding: 34px 48px;
  background: transparent;
}

.partner-info h3 {
  color: #08112b;
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 500;
}

.partner-info p {
  color: #454a57;
}

.partner-info span {
  border: 0;
  padding: 0;
}

.cta-inner {
  display: block;
  text-align: center;
}

.cta-inner h2,
.cta-inner p {
  margin-right: auto;
  margin-left: auto;
}

.cta-inner .button {
  margin-top: 36px;
}

.footer {
  border-top: 1px solid #dedbd3;
  padding-top: 70px;
}

.footer h3,
.footer p,
.footer a,
.subfooter {
  color: #6d717a;
}

.subfooter {
  border-top: 1px solid #dedbd3;
}

.registration-section {
  padding-top: 76px;
  background: #fbfaf7;
}

.registration-panel {
  border-color: rgba(8, 17, 43, 0.11);
  background: linear-gradient(180deg, #fffefa 0%, #fbfaf7 100%);
}

.registration-intro h1 {
  color: #08112b;
}

@media (max-width: 980px) {
  .nav {
    padding: 24px;
  }

  .nav::after {
    font-size: 13px;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 58px;
  }

  .hero h1 {
    margin-top: 80px;
  }

  .proof-inner,
  .grid.three,
  .grid.four,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .card,
  .partner-card {
    border-right: 0;
    border-left: 1px solid #dedbd3;
    border-bottom: 1px solid #dedbd3;
  }
}

@media (max-width: 720px) {
  .hero h1,
  .page-hero h1 {
    font-size: 54px;
  }

  .hero p,
  .page-hero p,
  .lead {
    font-size: 20px;
  }

  .section,
  .section.tight {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .card,
  .partner-info {
    padding: 26px 22px;
  }

  .partner-portrait {
    height: 360px;
  }

  .section-heading h2,
  .cta-inner h2,
  h2 {
    font-size: 48px;
  }

  .section-heading p,
  .cta-inner p {
    font-size: 19px;
  }
}

/* Final editorial pass */
.brand,
.institution-logo,
.mit-logo,
.wharton-logo,
h1,
h2,
h3,
.hero h1,
.page-hero h1,
.section-heading h2,
.cta-inner h2,
.card h3,
.track h3,
.partner-info h3,
.metric strong,
.price,
.testimonial blockquote,
.footer h3 {
  font-family: var(--serif);
  letter-spacing: 0;
}

/* Body, navigation, buttons, forms, and descriptions use the sans face */
body,
button,
input,
select,
textarea,
.button,
.nav-links,
.eyebrow {
  font-family: var(--sans);
}

h1,
h2,
h3,
.hero h1,
.page-hero h1,
.section-heading h2,
.cta-inner h2 {
  font-style: normal;
}

body {
  font-size: 19px;
}

.nav::after {
  content: none;
}

.brand {
  font-size: 25px;
  font-weight: 600;
}

.brand-word {
  display: inline;
}

.eyebrow {
  font-size: 18px;
  text-transform: none;
}

.hero h1 {
  margin-top: 92px;
}

.hero p,
.page-hero p,
.lead,
.section-heading p,
.cta-inner p,
.card p,
.track p,
.partner-info p,
.footer p,
.footer a,
.subfooter,
label,
input,
select,
textarea {
  font-size: 20px;
}

.proof-item strong,
.institution-logo {
  font-size: 22px;
  font-weight: 600;
}

.proof-item > span {
  font-size: 18px;
}

.partner-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-portrait {
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 440px;
}

.partner-photo {
  object-fit: cover;
  object-position: center 31%;
}

.partner-info h3 {
  font-weight: 600;
}

.registration-intro h1 {
  font-family: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.8vw, 66px);
  font-style: normal;
  font-weight: 600;
}

.registration-form label {
  font-size: 20px;
  font-weight: 600;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  font-size: 20px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 720px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-portrait {
    min-height: 360px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 56px;
  }
}

/* ============================================================
   Conversion upgrade, components added in the homepage rebuild
   ============================================================ */
:root {
  --serif: "ITC Garamond Std Condensed", "ITC Garamond Condensed", "ITC Garamond Std", "Cormorant Garamond", Georgia, serif;
}

/* Restore a functional, elegant nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: #454a57;
  font-size: 14px;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: #08112b; }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: #b68a35;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .button { min-height: 44px; }

/* Proof band: 4 columns (first wider for logos) + institution logos */
.proof-inner { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.logo-lockup { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.inst-logo { height: 40px; width: auto; object-fit: contain; }
.inst-logo-wide { height: 30px; }

/* Founder logos on cards */
.founder-logo { height: 50px; width: auto; margin-top: 18px; object-fit: contain; display: block; }
.founder-logo-wide { height: 36px; }

/* The Meridian Method (5 steps) */
.grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.method-step .step-num,
.included-item .step-num {
  display: block;
  margin-bottom: 12px;
  color: #b68a35;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

/* Section caption + text link */
.section-cap { margin-top: 36px; }
.textlink {
  color: #08112b;
  border-bottom: 1px solid #c9a86a;
  padding-bottom: 2px;
  font-size: inherit;
}
.textlink:hover { color: #b68a35; }

/* Free-session "what's included" */
.included-split { align-items: center; }
.included-split .button { margin-top: 28px; }
.included-list { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.included-list li {
  counter-increment: step;
  position: relative;
  padding: 22px 0 22px 56px;
  border-top: 1px solid #dedbd3;
  color: #454a57;
  font-size: 19px;
}
.included-list li:last-child { border-bottom: 1px solid #dedbd3; }
.included-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 22px;
  color: #b68a35;
  font-family: var(--serif);
  font-size: 24px;
}
.included-list strong { color: #08112b; }

/* Parent check list */
.check-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 32px; color: #454a57; font-size: 19px; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: #b68a35; font-weight: 700; }

/* Program detail list */
.detail-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.detail-list li { position: relative; padding-left: 20px; color: #454a57; font-size: 19px; }
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #c9a86a;
}
.detail-list strong { color: #08112b; }

/* FAQ accordion */
.faq { max-width: 980px; border-top: 1px solid #dedbd3; }
.faq-item { border-bottom: 1px solid #dedbd3; }
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  font-family: var(--serif);
  font-size: 28px;
  color: #08112b;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 20px;
  color: #b68a35;
  font-size: 30px;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { margin: 0 0 26px; max-width: 760px; color: #454a57; font-size: 19px; }

/* Form notes + trial included strip */
.form-note { color: #6d717a; font-size: 16px; }
.registration-form .form-note { grid-column: 1 / -1; margin: 0; }
.included-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 34px;
  border-top: 1px solid #e4e0d6;
}
.included-item { padding: 22px 22px 22px 0; border-right: 1px solid #e4e0d6; }
.included-item:last-child { border-right: 0; }
.included-item p { margin: 0; color: #454a57; font-size: 16px; }

/* About: founder bios */
.founder-bio {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid #dedbd3;
}
.founder-bio:last-of-type { border-bottom: 1px solid #dedbd3; }
.founder-bio.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr); }
.founder-bio.reverse .founder-bio-media { order: 2; }
.founder-bio-media { display: grid; gap: 22px; }
.founder-bio-media .partner-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 4px;
  background: #f2f0eb;
}
.bio-logo { height: 60px; width: auto; object-fit: contain; justify-self: start; }
.bio-logo-wide { height: 42px; }
.founder-bio-body h2 { margin: 8px 0 0; font-size: clamp(40px, 5vw, 64px); }
.founder-bio-body .lead { margin: 18px 0; }
.founder-bio-body p { margin-bottom: 16px; color: #454a57; font-size: 20px; }
.founder-bio-body .profile-references {
  display: block;
  color: #132238;
  background: #fbf4e5;
  border: 1px solid rgba(182, 138, 53, 0.42);
  border-radius: 8px;
  padding: 14px 16px;
  line-height: 1.45;
  margin: 0 0 20px;
}
.founder-bio-body .profile-references span {
  display: block;
  color: #8b641d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.founder-bio-body .profile-references ol {
  margin: 0;
  padding-left: 24px;
}
.founder-bio-body .profile-references li {
  color: #132238;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 9px;
  padding-left: 2px;
}
.founder-bio-body .profile-references li:last-child { margin-bottom: 0; }
.founder-bio-body .profile-references .reference-name {
  color: #132238;
  display: inline;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 8px 0 0;
  text-transform: none;
}
.founder-bio-body .profile-references .reference-affiliation {
  color: #596070;
  display: inline;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 10px 0 0;
  text-transform: none;
}
.founder-bio-body .profile-references a {
  color: #132238;
  text-decoration-color: rgba(182, 138, 53, 0.55);
  text-underline-offset: 3px;
}
.founder-bio-body .profile-references a + a {
  margin-left: 10px;
  color: #6f5220;
  font-size: 15px;
}
.founder-bio-body .timeline { margin-top: 26px; }

/* Sticky mobile CTA */
.sticky-cta { display: none; }

@media (max-width: 980px) {
  .nav-links {
    position: static;
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #dedbd3;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 2px; }
  .menu-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
  .nav-actions .button.primary { display: inline-flex; }
  .proof-inner { grid-template-columns: 1fr 1fr; }
  .grid.five { grid-template-columns: repeat(2, 1fr); }
  .included-strip { grid-template-columns: 1fr 1fr; }
  .included-item { border-right: 0; border-bottom: 1px solid #e4e0d6; }
  .founder-bio,
  .founder-bio.reverse { grid-template-columns: 1fr; gap: 28px; }
  .founder-bio.reverse .founder-bio-media { order: 0; }
  .founder-bio-media .partner-photo { aspect-ratio: 3 / 2; max-height: 440px; object-position: center 22%; }
  .sticky-cta {
    display: block;
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 40;
    text-align: center;
    border-radius: 999px;
    background: #08112b;
    color: #fbfaf7;
    padding: 15px 20px;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(8, 17, 43, .28);
  }
}

@media (max-width: 720px) {
  .proof-inner,
  .grid.five,
  .included-strip { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 24px; }
  .nav-links a,
  .faq-item p,
  .included-list li,
  .check-list li,
  .detail-list li { font-size: 18px; }
}

/* ============================================================
   Batch 2, hero video, clickable programs, bigger logos,
   founder head alignment
   ============================================================ */

/* Hero video background, softly blended */
.hero { position: relative; overflow: hidden; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(251, 250, 247, .74) 0%, rgba(251, 250, 247, .86) 60%, rgba(251, 250, 247, .96) 100%);
}
.hero-inner,
.hero .proof-strip { position: relative; z-index: 2; }
.hero .proof-strip { background: transparent; }

/* Clickable program cards */
.card-link { display: block; color: inherit; cursor: pointer; transition: background .3s ease, transform .3s ease; }
.card-link:hover { background: rgba(19, 34, 56, .035); transform: translateY(-2px); }
.card-link:hover h3 { color: #b68a35; }
.card-cue {
  display: inline-block;
  margin-top: 18px;
  color: #b68a35;
  font-size: 16px;
  opacity: .55;
  transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease;
}
.card-link:hover .card-cue { opacity: 1; transform: none; }

/* Bigger institution logos */
.inst-logo { height: 140px; }
.inst-logo-wide { height: 120px; }
.founder-logo { height: 92px; }
.founder-logo-wide { height: 66px; }
.bio-logo { height: 84px; }
.bio-logo-wide { height: 58px; }
.proof-inner { grid-template-columns: 1.9fr 1fr 1fr 1fr; }

/* Founder head alignment (per-photo crop) */
.founder-bhimraj { object-position: center 82%; }
.founder-timothy { object-position: center 30%; }

/* Per-founder bio link inside each partner card (flat, no pill) */
.partner-bio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #08112b;
  font-size: 18px;
  border-bottom: 1px solid #c9a86a;
  padding-bottom: 3px;
  transition: color .25s ease, border-color .25s ease;
}
.partner-bio-link:hover { color: #b68a35; border-color: #b68a35; }

/* Offset anchored bios from the sticky header */
.founder-bio { scroll-margin-top: 110px; }

/* Founder LinkedIn link on about page */
.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 9px 16px;
  border: 1px solid #d9d7d0;
  border-radius: 999px;
  color: #08112b;
  font-size: 16px;
  transition: border-color .3s ease, color .3s ease;
}
.founder-link:hover { border-color: #b68a35; color: #b68a35; }

@media (max-width: 720px) {
  .inst-logo { height: 104px; }
  .inst-logo-wide { height: 74px; }
  .proof-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Adam (AI Agent), chat widget
   ============================================================ */
.adam-root {
  --adam-navy: #0b1530;
  --adam-cream: #fbfaf7;
  --adam-gold: #c9a86a;
  --adam-sans: "Nimbus Sans", "Nimbus Sans L", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
}
.adam-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--adam-navy);
  color: var(--adam-cream);
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(8, 17, 43, .32);
  transition: transform .2s ease, box-shadow .2s ease;
}
.adam-launcher:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(8, 17, 43, .4); }
.adam-launcher-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--adam-gold);
  box-shadow: 0 0 0 0 rgba(201, 168, 106, .6);
  animation: adam-pulse 2.4s infinite;
}
@keyframes adam-pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 106, .55); }
  70% { box-shadow: 0 0 0 9px rgba(201, 168, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0); }
}
.adam-open .adam-launcher { display: none; }

.adam-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(384px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  background: var(--adam-cream);
  border: 1px solid #e3dfd4;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  box-shadow: 0 24px 60px rgba(8, 17, 43, .28);
}
.adam-open .adam-panel { opacity: 1; transform: none; pointer-events: auto; }

.adam-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--adam-navy);
  color: var(--adam-cream);
}
.adam-id { display: flex; align-items: center; gap: 12px; }
.adam-avatar {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--adam-gold); color: #0b1530;
  font-family: var(--serif); font-size: 22px; font-weight: 700;
}
.adam-id strong { display: block; font-family: var(--serif); font-size: 20px; line-height: 1.1; }
.adam-role { font-family: var(--adam-sans); font-size: 12px; opacity: .72; letter-spacing: .3px; }
.adam-close {
  border: 0; background: transparent; color: var(--adam-cream);
  font-size: 26px; line-height: 1; cursor: pointer; opacity: .8;
}
.adam-close:hover { opacity: 1; }

.adam-log {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(201,168,106,.08), transparent 60%),
    var(--adam-cream);
}
.adam-msg { display: flex; }
.adam-user { justify-content: flex-end; }
.adam-bubble {
  max-width: 84%;
  padding: 11px 14px;
  border-radius: 14px;
  font-family: var(--adam-sans);
  font-size: 15px;
  line-height: 1.5;
}
.adam-assistant .adam-bubble {
  background: #fff;
  color: #1c2330;
  border: 1px solid #e7e3d8;
  border-bottom-left-radius: 4px;
}
.adam-user .adam-bubble {
  background: var(--adam-navy);
  color: var(--adam-cream);
  border-bottom-right-radius: 4px;
}
.adam-bubble a { color: var(--adam-gold); text-decoration: underline; }
.adam-user .adam-bubble a { color: #e7d3a6; }

.adam-dots { display: inline-flex; gap: 4px; align-items: center; }
.adam-dots i {
  width: 6px; height: 6px; border-radius: 50%; background: #9aa0ad;
  animation: adam-blink 1.2s infinite both;
}
.adam-dots i:nth-child(2) { animation-delay: .2s; }
.adam-dots i:nth-child(3) { animation-delay: .4s; }
@keyframes adam-blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }

.adam-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e7e3d8;
  background: var(--adam-cream);
}
.adam-input input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid #ddd8cc;
  border-radius: 999px;
  font-family: var(--adam-sans);
  font-size: 15px;
  background: #fff;
  color: #1c2330;
}
.adam-input input:focus { outline: none; border-color: var(--adam-gold); }
.adam-send {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--adam-navy);
  color: var(--adam-cream);
  font-family: var(--serif);
  font-size: 17px;
  cursor: pointer;
}
.adam-send:disabled { opacity: .55; cursor: default; }

@media (max-width: 720px) {
  .adam-root { right: 16px; bottom: 84px; }
  .adam-panel { height: min(70vh, 540px); }
}
@media (prefers-reduced-motion: reduce) {
  .adam-launcher-dot, .adam-dots i { animation: none; }
  .adam-panel { transition: none; }
}

/* ============================================================
   Homepage: transparent header that overlays the hero video,
   with a floating, curved (capsule) nav. Inner pages keep the
   solid header (this is scoped to body.home only).
   ============================================================ */
body.home .site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
body.home .nav {
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 18px;
}
/* the curved area, links float in a translucent rounded capsule over the mp4 */
body.home .nav-links {
  padding: 12px 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 34px rgba(8, 17, 43, 0.12);
}
body.home .nav-links a { color: #1c2433; }
body.home .nav-links a:hover,
body.home .nav-links a[aria-current="page"] { color: #08112b; }
body.home .brand { color: #08112b; }
/* hero fills the full viewport now that the header floats over it */
body.home .hero { min-height: 100vh; }
/* keep a little more breathing room at the very top of the capsule layout */
@media (max-width: 900px) {
  body.home .nav-links { backdrop-filter: blur(10px); }
}

/* Match the nav capsule and the CTA button: same height and radius so their
   rounded ends (the "circles") are identical. Homepage only. */
body.home .nav-links,
body.home .nav-actions .button {
  min-height: 54px;
  border-radius: 999px;
}
body.home .nav-links {
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
}
body.home .nav-actions .button {
  padding-top: 0;
  padding-bottom: 0;
}

/* ============================================================
   Spacing polish
   ============================================================ */
/* More air between the small kicker label and the heading, site-wide */
.eyebrow { display: inline-block; margin-bottom: 18px; }
.section-heading .eyebrow,
.page-hero .eyebrow,
.registration-intro .eyebrow { margin-bottom: 18px; }

/* Proof strip: separate the logos from the "Where our founders are now" caption */
.logo-lockup { margin-bottom: 18px; }

/* Homepage hero: more breathing room between the floating nav and the headline */
body.home .hero h1 { margin-top: 150px; }

/* Penn logo a touch larger on smaller screens too */
@media (max-width: 720px) {
  .inst-logo-wide { height: 88px; }
}

/* ============================================================
   Hero background after removing the mp4: a clean, soft light gradient
   ============================================================ */
body.home .hero {
  background: radial-gradient(135% 95% at 50% 0%, #f4efe5 0%, #fbfaf7 50%, #eceff4 100%);
}
body.home .hero::before,
body.home .hero::after { display: none; }

/* ============================================================
   Newsletter signup
   ============================================================ */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 13px 18px;
  border: 1px solid #ddd8cc;
  border-radius: 999px;
  background: #fff;
  font-family: var(--sans);
  font-size: 18px;
  color: #1c2330;
}
.newsletter-form input:focus { outline: none; border-color: #c9a86a; }
.newsletter-form .button { border-radius: 999px; padding-left: 26px; padding-right: 26px; }

/* Form success confirmation (after a submission is saved) */
.form-success {
  margin: 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(47, 111, 99, 0.10);
  border: 1px solid rgba(47, 111, 99, 0.30);
  color: #1f3d37;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.5;
}

.form-error {
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fbeae4;
  border: 1px solid rgba(125, 43, 29, 0.22);
  color: #7d2b1d;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
}

/* ---- booking widget (free first session, KAN-8) --------------------- */
.booking { display: flex; flex-direction: column; gap: 20px; }
.booking-status {
  font-size: 0.9rem; color: var(--slate); margin: 0;
  background: var(--ivory); border-radius: var(--radius); padding: 10px 14px;
}
.booking-status.is-error { color: #7d2b1d; background: #fbeae4; }

.booking-card {
  border: 1px solid var(--line); border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.5); overflow: hidden;
}
.booking-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 6px; flex-wrap: wrap; padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}
.booking-step { font-size: 0.85rem; font-weight: 800; color: var(--navy); }
.booking-tz-note { font-size: 0.75rem; color: var(--slate); opacity: 0.8; }
.booking-tz { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--slate); }
.booking-tz select {
  font-family: var(--sans); font-size: 0.78rem; color: var(--navy); cursor: pointer;
  padding: 4px 8px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; max-width: 230px;
}

.booking-pick { display: grid; grid-template-columns: 1.1fr 0.9fr; }
.booking-cal { padding: 18px; border-right: 1px solid var(--line); }
.booking-slots { padding: 18px; }

.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-title { font-size: 0.95rem; font-weight: 800; color: var(--navy); }
.cal-nav {
  width: 30px; height: 30px; font-size: 1.1rem; line-height: 1; cursor: pointer;
  border: 1px solid var(--line); background: transparent; border-radius: var(--radius);
  color: var(--navy);
}
.cal-nav:hover:not(:disabled) { background: var(--ivory); }
.cal-nav:disabled { opacity: 0.35; cursor: default; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; text-align: center; }
.cal-dow { font-size: 0.7rem; color: var(--slate); opacity: 0.7; padding-bottom: 4px; }
.cal-day {
  font-size: 0.85rem; color: rgba(19, 34, 56, 0.3); padding: 8px 0;
  border: 1px solid transparent; border-radius: var(--radius);
}
.cal-day.is-empty { visibility: hidden; }
.cal-day.is-open {
  color: var(--navy); font-weight: 700; cursor: pointer;
  background: var(--ivory); border-color: var(--line);
}
.cal-day.is-open:hover { border-color: var(--gold); }
.cal-day.is-selected { background: var(--navy); color: #fff; border-color: var(--navy); }

.slots-date { font-size: 0.8rem; color: var(--slate); margin: 0 0 12px; }
.slots-list { display: flex; flex-direction: column; gap: 8px; max-height: 290px; overflow-y: auto; }
.slot {
  padding: 10px; font-size: 0.9rem; font-weight: 700; cursor: pointer; font-family: var(--sans);
  border: 1px solid var(--line); background: transparent; border-radius: var(--radius); color: var(--navy);
}
.slot:hover { border-color: var(--gold); }
.slot.is-selected { background: var(--gold); border-color: var(--gold); color: #fff; }

.booking-form-head { margin-bottom: 4px; }
.booking-selected { font-size: 0.85rem; font-weight: 800; color: var(--gold); margin: 0 0 6px; min-height: 1.1em; }
.booking-submit:disabled { opacity: 0.5; cursor: default; }

@media (max-width: 720px) {
  .booking-pick { grid-template-columns: 1fr; }
  .booking-cal { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ---- custom cursor -------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor textarea,
  body.has-custom-cursor select,
  body.has-custom-cursor [role="button"] {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 999px;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity 160ms ease, width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
    will-change: transform, width, height;
  }

  .cursor-dot {
    width: 10px;
    height: 10px;
    background: #111;
    box-shadow: 0 0 18px rgba(17, 17, 17, 0.28);
  }

  .cursor-ring {
    width: 24px;
    height: 24px;
    border: 1.25px solid rgba(17, 17, 17, 0.42);
    background: rgba(17, 17, 17, 0.06);
  }

  body.cursor-active .cursor-dot,
  body.cursor-active .cursor-ring {
    opacity: 1;
  }

  body.cursor-interactive .cursor-dot {
    width: 6px;
    height: 6px;
    background: #111;
  }

  body.cursor-interactive .cursor-ring {
    width: 34px;
    height: 34px;
    border-color: rgba(17, 17, 17, 0.5);
    background: rgba(17, 17, 17, 0.08);
  }
}
