:root {
  --ink: #070708;
  --navy: #102331;
  --pine: #17322b;
  --cream: #f6f3eb;
  --paper: #ffffff;
  --mist: #d8dde0;
  --muted: #7a8386;
  --gold: #e3c27c;
  --rust: #b63d2b;
  --copper: #c6783f;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(7, 7, 8, 0.12);
  --shadow: 0 24px 70px rgba(7, 7, 8, 0.32);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 16px 18px auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 14px;
  background: rgba(7, 7, 8, 0.68);
  border: 1px solid rgba(227, 194, 124, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.brand {
  width: 66px;
  height: 66px;
  display: inline-grid;
  place-items: center;
}

.brand img,
.footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand img,
.promise-mark,
.footer img {
  border-radius: 50%;
  clip-path: circle(47.6% at 50% 50%);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--gold);
}

.header-cta {
  min-width: 74px;
  text-align: center;
  background: var(--rust);
  color: white;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(182, 61, 43, 0.32);
}

.section-dark,
.section-light,
.section-white {
  position: relative;
  isolation: isolate;
}

.section-dark {
  color: white;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.94), rgba(16, 35, 49, 0.97)),
    linear-gradient(135deg, rgba(227, 194, 124, 0.12), transparent 44%);
}

.section-light {
  background: var(--cream);
  color: var(--ink);
}

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

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-inner.narrow {
  width: min(880px, calc(100% - 40px));
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 3.35rem;
}

h1 span,
h2 span,
.final-cta h2 span {
  color: var(--gold);
}

h2 {
  margin-bottom: 18px;
  font-size: 2.8rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  margin-bottom: 14px;
}

.kicker,
.eyebrow {
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 800;
  color: var(--rust);
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .kicker,
.section-dark .eyebrow {
  color: var(--gold);
}

.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title p {
  margin-bottom: 0;
}

.section-title .section-lede {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #4b5563;
  font-size: 1.06rem;
}

.section-dark .section-title .section-lede {
  color: rgba(255, 255, 255, 0.72);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(227, 194, 124, 0.13), transparent 36%);
  background-size: 58px 58px, 58px 58px, 100% 100%;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
  animation: gridDrift 16s linear infinite;
}

.hero {
  min-height: 100vh;
  padding: 136px 0 68px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  width: min(1050px, 100%);
}

.hero-copy .eyebrow {
  margin-bottom: 4px;
}

.hero-copy .eyebrow + .eyebrow {
  margin-bottom: 12px;
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.hero-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 0 12px;
  filter: drop-shadow(0 16px 28px rgba(227, 194, 124, 0.18));
}

.hero-lede {
  width: min(880px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-lede span {
  display: block;
}

.event-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  width: fit-content;
  max-width: 100%;
  margin: 12px auto 16px;
  padding: 9px 14px;
  border: 1px solid rgba(227, 194, 124, 0.32);
  border-radius: 999px;
  background: rgba(227, 194, 124, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.event-ribbon strong {
  color: var(--gold);
}

.event-ribbon span:first-child {
  color: white;
}

.video-stage {
  position: relative;
  width: min(1080px, 100%);
  margin: 0;
  grid-column: 1;
  grid-row: auto;
  justify-self: center;
}

.video-stage::before,
.video-stage::after {
  content: "";
  position: absolute;
  inset: -10px -10px;
  border: 1px solid rgba(227, 194, 124, 0.18);
  z-index: -1;
}

.video-stage::after {
  inset: 10px -18px -16px 18px;
  border-color: rgba(182, 61, 43, 0.2);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(227, 194, 124, 0.38);
  background: #111;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-chip {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: white;
  background: rgba(7, 7, 8, 0.78);
  padding: 10px 13px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.sound-chip.hidden {
  opacity: 0;
  pointer-events: none;
}

.icon-volume {
  width: 17px;
  height: 17px;
  display: inline-block;
  background:
    linear-gradient(90deg, white 0 42%, transparent 42%),
    conic-gradient(from 315deg at 72% 50%, transparent 0 18%, white 18% 31%, transparent 31% 100%);
  clip-path: polygon(0 34%, 34% 34%, 62% 12%, 62% 88%, 34% 66%, 0 66%);
}

.event-details {
  background:
    linear-gradient(180deg, rgba(246, 243, 235, 0.98), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, rgba(227, 194, 124, 0.2), transparent 54%);
}

.event-details .section-title h2 span,
.team .section-title h2 span,
.application-copy h2 span {
  color: var(--rust);
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.event-fact {
  padding: 24px 20px;
  border: 1px solid var(--dark-line);
  border-top: 3px solid var(--rust);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 38px rgba(7, 7, 8, 0.055);
}

.event-fact span,
.venue-plan span,
.team-copy > span,
.proof-spotlight-copy > span,
.application-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--rust);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.event-fact strong {
  display: block;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.3;
}

.event-program {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 28px;
  margin-bottom: 24px;
  padding: 34px;
  border: 1px solid rgba(227, 194, 124, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(16, 35, 49, 0.98), rgba(23, 50, 43, 0.96)),
    linear-gradient(135deg, rgba(227, 194, 124, 0.12), transparent);
  color: white;
  box-shadow: 0 24px 60px rgba(16, 35, 49, 0.14);
}

.program-copy h3,
.experience-heading h3,
.featured-proof-heading h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.program-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.program-copy .program-audience {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(227, 194, 124, 0.2);
  color: rgba(255, 255, 255, 0.86);
}

.program-copy .program-audience strong {
  color: var(--gold);
}

.venue-plan {
  display: grid;
  gap: 12px;
}

.venue-plan > div {
  padding: 22px;
  border: 1px solid rgba(227, 194, 124, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.venue-plan span {
  color: var(--gold);
}

.venue-plan h4 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
}

.venue-plan p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
}

.planned-experiences {
  margin-bottom: 30px;
  padding: 34px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 45px rgba(7, 7, 8, 0.06);
}

.experience-heading {
  text-align: center;
  width: min(760px, 100%);
  margin: 0 auto 26px;
}

.experience-heading h3 {
  color: var(--navy);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-grid li {
  min-height: 172px;
  padding: 20px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--cream);
}

.experience-grid li > span {
  display: block;
  margin-bottom: 14px;
  color: var(--rust);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.experience-grid strong,
.experience-grid small {
  display: block;
}

.experience-grid strong {
  margin-bottom: 8px;
  color: var(--navy);
}

.experience-grid small {
  color: #5f686d;
  font-size: 0.85rem;
  line-height: 1.45;
}

.event-note {
  margin: 18px 0 0;
  color: #6b7280;
  font-size: 0.82rem;
  text-align: center;
}

.primary-cta,
.secondary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: 58px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-inner > .primary-cta {
  grid-column: 1;
  grid-row: auto;
  justify-self: center;
  align-self: center;
}

.primary-cta {
  padding: 20px 28px;
  color: white;
  background: linear-gradient(135deg, var(--rust), #d36d45);
  box-shadow: 0 18px 42px rgba(182, 61, 43, 0.35);
}

.secondary-cta {
  padding: 18px 26px;
  color: white;
  background: var(--rust);
  box-shadow: 0 14px 28px rgba(182, 61, 43, 0.22);
}

.primary-cta:hover,
.secondary-cta:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.primary-cta svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro p,
.promise p,
.final-cta p,
.choice p {
  font-size: 1.08rem;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(135deg, rgba(16, 35, 49, 0.96), rgba(23, 50, 43, 0.94)),
    linear-gradient(90deg, rgba(227, 194, 124, 0.16), transparent);
  border: 1px solid rgba(227, 194, 124, 0.28);
  box-shadow: 0 24px 60px rgba(16, 35, 49, 0.18);
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.045) 34px 35px),
    linear-gradient(135deg, transparent 0 58%, rgba(227, 194, 124, 0.13) 58% 59%, transparent 59%);
  pointer-events: none;
}

.feature-panel > * {
  position: relative;
}

.feature-panel.bright {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(246, 243, 235, 0.96), rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, rgba(182, 61, 43, 0.1), transparent);
  border-color: var(--dark-line);
}

.panel-heading {
  text-align: center;
  margin-bottom: 26px;
}

.panel-heading h2 {
  margin-bottom: 0;
}

.icon-list {
  display: grid;
  gap: 14px;
  width: min(900px, 100%);
  margin: 0 auto 28px;
  padding: 0;
  list-style: none;
}

.icon-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.86);
}

.bright .icon-list li {
  color: #374151;
}

.icon-list li::before,
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--gold), #ffe5a6);
  box-shadow: 0 0 0 5px rgba(227, 194, 124, 0.11);
}

.icon-list li::after,
.compare-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.35em + 4px);
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

.contrast {
  overflow: hidden;
}

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

.compare-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.compare-card.new {
  border-color: rgba(227, 194, 124, 0.36);
  background: linear-gradient(145deg, rgba(227, 194, 124, 0.12), rgba(255, 255, 255, 0.05));
}

.compare-label {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 6px;
}

.compare-card h3 {
  color: white;
  font-size: 1.45rem;
  margin-bottom: 22px;
}

.compare-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.82);
}

.compare-card.old li::before {
  background: linear-gradient(135deg, #d36d45, var(--rust));
  box-shadow: 0 0 0 5px rgba(182, 61, 43, 0.13);
}

.process .section-inner {
  padding-top: 80px;
}

.steps {
  display: grid;
  gap: 16px;
  width: min(920px, 100%);
  margin: 0 auto 28px;
}

.step {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: start;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 38px rgba(7, 7, 8, 0.06);
}

.step span {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--rust);
  font-size: 2rem;
  font-weight: 800;
}

.step h3 {
  margin-top: 4px;
  color: var(--navy);
}

.step p {
  margin-bottom: 0;
  color: #4b5563;
}

.results {
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.98), rgba(16, 35, 49, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 80px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial {
  overflow: hidden;
  border: 1px solid rgba(227, 194, 124, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.testimonial-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #050506;
  filter: saturate(0.92) contrast(1.08);
}

.testimonial p,
.testimonial h3 {
  padding: 0 20px;
}

.testimonial p {
  min-height: 120px;
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.testimonial p strong {
  color: #fff;
  font-weight: 800;
}

.testimonial h3 {
  margin-bottom: 22px;
  color: var(--gold);
}

.featured-proof {
  margin-top: 42px;
  padding: 30px;
  border: 1px solid rgba(227, 194, 124, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.featured-proof + .testimonial-grid {
  margin-top: 32px;
}

.featured-proof-heading {
  width: min(720px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

.featured-proof-heading h3 {
  margin-bottom: 8px;
  color: white;
}

.featured-proof-heading > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.proof-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-spotlight {
  overflow: hidden;
  border: 1px solid rgba(227, 194, 124, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 7, 8, 0.54);
}

.proof-spotlight-primary {
  border-color: rgba(227, 194, 124, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.youtube-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050506;
}

.youtube-frame iframe,
.youtube-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.youtube-frame iframe {
  border: 0;
}

.youtube-facade {
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #050506;
  cursor: pointer;
}

.youtube-facade img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.youtube-facade:hover img {
  transform: scale(1.018);
  filter: brightness(0.88);
}

.youtube-facade:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -4px;
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  border-radius: 14px;
  background: #ff0033;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
}

.youtube-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid white;
  transform: translate(-50%, -50%);
}

.proof-spotlight-copy {
  padding: 18px;
}

.proof-spotlight-copy > span {
  color: var(--gold);
}

.proof-spotlight-copy h4 {
  margin: 0 0 6px;
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.proof-spotlight-copy p {
  min-height: 0;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.metrics div {
  padding: 25px 18px;
  text-align: center;
  border-top: 1px solid rgba(227, 194, 124, 0.35);
  border-bottom: 1px solid rgba(227, 194, 124, 0.18);
}

.metrics strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 900;
}

.promise-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.founder {
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.98), rgba(16, 35, 49, 0.98)),
    linear-gradient(135deg, rgba(227, 194, 124, 0.12), transparent 42%);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.founder-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.founder-copy strong {
  color: var(--gold);
}

.founder-media {
  position: sticky;
  top: 120px;
  isolation: isolate;
  padding: 18px;
  border: 1px solid rgba(227, 194, 124, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(227, 194, 124, 0.12), rgba(182, 61, 43, 0.08));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.founder-media::before,
.founder-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(227, 194, 124, 0.18);
  border-radius: var(--radius);
}

.founder-media::before {
  inset: -14px 18px 18px -14px;
}

.founder-media::after {
  inset: 18px -14px -14px 18px;
  border-color: rgba(182, 61, 43, 0.24);
}

.founder-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid rgba(227, 194, 124, 0.22);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.team {
  background:
    linear-gradient(180deg, #ffffff, #f8f6f0),
    linear-gradient(135deg, rgba(227, 194, 124, 0.14), transparent 48%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 48px rgba(7, 7, 8, 0.09);
}

.team-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.03);
}

.team-card:first-child .team-photo {
  object-position: center 34%;
}

.team-card:last-child .team-photo {
  object-position: center 30%;
}

.team-copy {
  padding: 24px;
}

.team-copy h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.team-copy p {
  margin-bottom: 0;
  color: #505a60;
  font-size: 0.92rem;
}

.choice {
  overflow: hidden;
}

.choice .section-inner {
  padding-bottom: 92px;
}

.choice h2 {
  color: var(--gold);
}

.choice-lines,
.because {
  margin: 30px auto;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(227, 194, 124, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.because {
  background: rgba(182, 61, 43, 0.16);
  border-color: rgba(182, 61, 43, 0.28);
}

.choice-lines p,
.because p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.choice-lines p:last-child,
.because p:last-child {
  margin-bottom: 0;
}

.choice .question {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

.choice h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.15rem;
  color: white;
}

.choice h3 span {
  display: block;
  color: var(--gold);
}

.application {
  background:
    linear-gradient(180deg, rgba(246, 243, 235, 0.99), rgba(255, 255, 255, 0.99)),
    linear-gradient(135deg, rgba(182, 61, 43, 0.08), transparent 54%);
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.application-copy {
  position: sticky;
  top: 120px;
}

.application-copy > p:not(.kicker):not(.application-note) {
  color: #4b5563;
  font-size: 1.02rem;
}

.application-summary {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.application-summary div {
  padding: 17px 18px;
  border-left: 3px solid var(--rust);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(7, 7, 8, 0.04);
}

.application-summary span {
  margin-bottom: 3px;
}

.application-summary strong {
  display: block;
  color: var(--navy);
  line-height: 1.35;
}

.application-note {
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
  color: #6b7280;
  font-size: 0.86rem;
}

.event-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--dark-line);
  border-top: 4px solid var(--rust);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 24px 64px rgba(7, 7, 8, 0.11);
}

.assessment-heading {
  display: grid;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-line);
}

.assessment-heading .kicker,
.assessment-heading h3,
.assessment-heading p {
  margin: 0;
}

.assessment-heading h3 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.assessment-progress {
  width: 100%;
  height: 7px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece8df;
}

.assessment-progress span {
  display: block;
  width: 7.142857%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rust), #d9835f);
  transition: width 220ms ease;
}

.assessment-step-count {
  color: #687178;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-step {
  display: grid;
  gap: 18px;
  min-width: 0;
  margin: 0;
  padding: 4px 0 0;
  border: 0;
}

html.has-js .application-step:not(.is-active) {
  display: none;
}

.application-step legend {
  width: 100%;
  padding: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.18;
}

.application-step > p {
  margin: -4px 0 0;
  color: #5b656c;
  font-size: 0.94rem;
  line-height: 1.65;
}

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

.event-form > label,
.form-row label,
.application-step > label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.event-form input,
.event-form textarea,
.event-form select {
  width: 100%;
  border: 1px solid #cfd5d8;
  border-radius: 6px;
  background: #fbfbfa;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.event-form input,
.event-form select {
  min-height: 50px;
  padding: 11px 13px;
}

.event-form textarea {
  min-height: 110px;
  padding: 13px;
  resize: vertical;
}

.event-form input:focus,
.event-form textarea:focus,
.event-form select:focus {
  border-color: var(--rust);
  background: white;
  box-shadow: 0 0 0 4px rgba(182, 61, 43, 0.1);
}

.event-form input::placeholder,
.event-form textarea::placeholder {
  color: #91999d;
}

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

.choice-group-stack {
  grid-template-columns: 1fr;
}

.choice-group label {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-group input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-group span {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid #cfd5d8;
  border-radius: 8px;
  background: #fbfbfa;
  color: #37434a;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.choice-group input:checked + span {
  border-color: var(--rust);
  background: rgba(182, 61, 43, 0.08);
  color: var(--navy);
  box-shadow: 0 0 0 3px rgba(182, 61, 43, 0.09);
}

.choice-group input:focus-visible + span {
  outline: 3px solid rgba(182, 61, 43, 0.2);
  outline-offset: 2px;
}

.select-label {
  display: grid;
  gap: 9px;
  color: #4f5a61;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-agreements {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--cream);
}

.form-agreements legend {
  padding: 0 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.check-label {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 10px;
  align-items: start;
  color: #465158;
  font-size: 0.86rem;
  line-height: 1.45;
  cursor: pointer;
}

.event-form .check-label input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--rust);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.event-form .form-submit {
  width: min(100%, 310px);
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.assessment-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.assessment-button {
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.assessment-next {
  margin-left: auto;
  border-color: var(--rust);
  background: var(--rust);
  color: white;
}

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

.assessment-prev:hover {
  background: var(--navy);
  color: white;
}

.assessment-next:hover {
  background: #9f3124;
}

.assessment-actions [hidden] {
  display: none;
}

.assessment-submit[aria-busy="true"] {
  opacity: 0.72;
  pointer-events: none;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: #9f3124;
  font-size: 0.86rem;
  font-weight: 700;
}

.registration-page {
  background: var(--navy);
}

.registration-header > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.registration-hero {
  position: relative;
  min-height: 100vh;
  padding: 152px 0 92px;
  overflow: hidden;
}

.registration-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: start;
}

.registration-intro {
  position: sticky;
  top: 126px;
  padding-top: 20px;
}

.registration-intro h1 {
  margin: 10px 0 20px;
  font-size: clamp(3rem, 4.5vw, 4.55rem);
}

.registration-intro h1 span {
  display: block;
  color: var(--gold);
}

.registration-intro > p:not(.kicker):not(.registration-private-note) {
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.05rem;
}

.registration-facts {
  display: grid;
  gap: 10px;
  margin: 28px 0 22px;
}

.registration-facts div {
  padding: 15px 17px;
  border: 1px solid rgba(227, 194, 124, 0.18);
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.registration-facts span,
.application-summary span {
  display: block;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.registration-facts strong {
  display: block;
  color: white;
  line-height: 1.4;
}

.registration-private-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.83rem;
}

.registration-form {
  gap: 24px;
  padding: 38px;
}

.registration-form .assessment-heading > p:last-child {
  color: #687178;
  font-size: 0.88rem;
}

.registration-form .assessment-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.registration-page .registration-form .text-reveal {
  opacity: 1;
  filter: none;
  transform: none;
}

.registration-fieldset {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0 0 25px;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
}

.registration-fieldset legend {
  width: 100%;
  margin-bottom: 3px;
  padding: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.registration-fieldset > label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.guest-fields {
  display: grid;
  gap: 17px;
  padding: 22px;
  border: 1px solid rgba(16, 35, 49, 0.13);
  border-radius: 10px;
  background: #f7f6f2;
}

.guest-fields[hidden] {
  display: none;
}

.guest-fields > label,
.guest-fields .form-row > label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.guest-fields-intro {
  margin: 0;
  color: #687178;
  font-size: 0.86rem;
  line-height: 1.55;
}

.optional-label {
  color: #7b858b;
  font-size: 0.72rem;
  font-weight: 700;
}

.registration-submit[aria-busy="true"] {
  opacity: 0.72;
  pointer-events: none;
}

.registration-security {
  margin: -8px 0 0;
  color: #7b858b;
  font-size: 0.76rem;
  text-align: center;
}

.registration-footer {
  border-top: 1px solid rgba(227, 194, 124, 0.12);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.96), rgba(16, 35, 49, 0.98)),
    linear-gradient(135deg, rgba(227, 194, 124, 0.12), transparent 44%);
}

.thanks-card {
  width: min(700px, 100%);
  padding: 52px;
  border: 1px solid rgba(227, 194, 124, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.thanks-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.thanks-card h1 {
  color: var(--gold);
}

.thanks-card p {
  color: rgba(255, 255, 255, 0.75);
}

.thanks-card .secondary-cta {
  margin-top: 26px;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(940px, 100%);
  margin: 0 auto;
}

details {
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 30px rgba(7, 7, 8, 0.05);
}

summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 54px 22px 22px;
  font-weight: 900;
  color: var(--navy);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rust);
  font-size: 1.45rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 24px;
  color: #4b5563;
}

.final-cta {
  text-align: center;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 46px 20px;
  color: rgba(255, 255, 255, 0.62);
  background: #050506;
  text-align: center;
}

.footer img {
  width: 174px;
  height: 174px;
}

.footer p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(22px);
  transition: opacity 760ms ease, filter 760ms ease, transform 760ms ease;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.text-reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(14px);
  transition: opacity 720ms ease, filter 720ms ease, transform 720ms ease;
  transition-delay: var(--text-delay, 0ms);
  will-change: opacity, filter, transform;
}

.text-reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 58px 58px, 58px 58px, 0 0;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 100vh;
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-mark {
    margin: 0 auto 12px;
  }

  .hero-lede {
    margin: 0 auto 22px;
  }

  .video-stage {
    grid-column: auto;
    grid-row: auto;
    width: min(720px, 100%);
    margin: 0 auto 24px;
    justify-self: center;
    order: 2;
  }

  .hero-inner > .primary-cta {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    order: 3;
    margin-bottom: 4px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .comparison-grid,
  .founder-grid,
  .event-program,
  .application-grid,
  .registration-hero-inner {
    grid-template-columns: 1fr;
  }

  .founder-media,
  .application-copy,
  .registration-intro {
    position: static;
  }

  .registration-intro {
    width: min(720px, 100%);
    margin: 0 auto;
    text-align: center;
  }

  .registration-facts {
    text-align: left;
  }

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

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

  .proof-spotlight-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    inset: 10px 10px auto;
    grid-template-columns: auto auto;
    padding: 10px 12px;
  }

  .nav-links {
    display: none;
  }

  .registration-header > p {
    display: none;
  }

  .brand {
    width: 60px;
    height: 60px;
  }

  .section-inner,
  .hero-inner,
  .section-inner.narrow {
    width: min(100% - 28px, 680px);
  }

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

  .registration-hero {
    padding: 126px 0 64px;
  }

  .registration-intro h1 {
    font-size: 2.75rem;
  }

  .registration-form {
    padding: 24px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede,
  .intro p,
  .promise p,
  .final-cta p,
  .choice p {
    font-size: 1rem;
  }

  .feature-panel,
  .compare-card,
  .event-program,
  .planned-experiences,
  .featured-proof,
  .event-form {
    padding: 24px;
  }

  .comparison-grid {
    gap: 14px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .testimonial-grid,
  .metrics,
  .event-facts,
  .experience-grid,
  .team-grid,
  .form-row,
  .choice-group {
    grid-template-columns: 1fr;
  }

  .assessment-actions {
    flex-wrap: wrap;
  }

  .assessment-button,
  .event-form .form-submit {
    width: 100%;
    max-width: none;
  }

  .assessment-prev {
    order: 2;
  }

  .assessment-next,
  .assessment-submit {
    order: 1;
  }

  .testimonial p {
    min-height: auto;
  }

  .sound-chip {
    top: 10px;
    width: max-content;
    max-width: calc(100% - 24px);
    font-size: 0.76rem;
  }

  .primary-cta,
  .secondary-cta {
    width: min(100%, 340px);
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .event-ribbon {
    width: min(100%, 340px);
    border-radius: var(--radius);
  }

  .event-ribbon span,
  .event-ribbon strong {
    width: 100%;
  }

  .event-fact,
  .experience-grid li {
    min-height: auto;
  }

  .thanks-card {
    padding: 34px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .text-reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
