:root {
  --red: #e30613;
  --red-deep: #a60018;
  --blue: #075a9f;
  --blue-bright: #087dcc;
  --navy: #063764;
  --ink: #092d50;
  --white: #fff;
  --soft: #f4f7fa;
  --soft-blue: #eaf3fa;
  --muted: #5a6d7f;
  --border: rgba(6, 55, 100, 0.14);
  --shadow: 0 24px 70px rgba(6, 55, 100, 0.13);
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 em,
h2 em,
.statement em {
  color: var(--red);
  font-style: normal;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button span {
  font-size: 21px;
  line-height: 0;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
}

.button-primary {
  background: var(--red);
  box-shadow: 0 14px 30px rgba(227, 6, 19, 0.22);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-deep);
  box-shadow: 0 17px 34px rgba(166, 0, 24, 0.28);
}

.button-white {
  background: var(--white);
  box-shadow: 0 15px 36px rgba(3, 31, 56, 0.22);
  color: var(--navy);
}

.eyebrow,
.section-index,
.micro-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--blue);
}

.eyebrow > span {
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-index {
  color: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 74px;
}

.hero::before {
  position: absolute;
  top: 0;
  right: -10%;
  width: 52%;
  height: 100%;
  background: radial-gradient(circle at 40% 43%, rgba(8, 125, 204, 0.09), transparent 58%);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(38px, 6vw, 90px);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(55px, 6.25vw, 92px);
}

.hero-lead {
  max-width: 675px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  margin-left: 5px;
  color: var(--red);
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.check-row li::before {
  margin-right: 7px;
  color: var(--blue);
  content: "✓";
}

.hero-visual {
  min-width: 0;
}

.portal-frame {
  position: relative;
  min-height: 0;
  aspect-ratio: 5 / 6;
  padding: 14px;
  background:
    linear-gradient(var(--red), var(--red)) top / 100% 14px no-repeat,
    linear-gradient(var(--blue), var(--blue)) bottom / 100% 14px no-repeat,
    linear-gradient(var(--red-deep), var(--red)) left / 14px 100% no-repeat,
    linear-gradient(var(--blue), var(--blue-bright)) right / 14px 100% no-repeat;
  box-shadow: var(--shadow);
}

.portal-frame::before {
  position: absolute;
  inset: 14px;
  background: linear-gradient(145deg, #f7fafc, #e9f2f8);
  content: "";
}

.portal-frame img {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 24px rgba(6, 55, 100, 0.12));
}

.portal-copy {
  position: absolute;
  top: 38px;
  left: 38px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  color: var(--blue);
  line-height: 1.85;
}

.floating-note {
  position: absolute;
  right: -30px;
  bottom: 56px;
  z-index: 5;
  max-width: 270px;
  padding: 20px 22px;
  border-left: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 17px 45px rgba(6, 55, 100, 0.16);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.floating-note span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.mountain-line {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 34px;
  background: var(--soft-blue);
  clip-path: polygon(0 100%, 10% 38%, 18% 75%, 28% 20%, 38% 78%, 49% 29%, 62% 73%, 73% 12%, 83% 68%, 91% 37%, 100% 100%);
}

.signal-strip {
  padding: 23px 0;
  background: var(--navy);
  color: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: center;
  gap: 38px;
}

.signal-grid > div {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.signal-grid span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.signal-grid strong {
  font-size: 13px;
  text-transform: uppercase;
}

.signal-grid p {
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.section {
  padding: 112px 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 55px;
}

.split-heading h2,
.section-heading h2,
.courses-heading h2,
.audience-title h2,
.founder-copy h2,
.join-copy h2,
.faq-grid h2,
.next-steps h2 {
  margin-bottom: 28px;
  font-size: clamp(43px, 5vw, 70px);
}

.split-heading > div > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.tension-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 66px;
}

.tension-grid article {
  position: relative;
  min-height: 290px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 8px solid #c8d1d9;
  background: var(--white);
}

.tension-grid article.positive {
  border-top-color: var(--blue);
  background: var(--soft-blue);
}

.tension-mark {
  position: absolute;
  top: 18px;
  right: 25px;
  color: #c8d1d9;
  font-size: 45px;
  font-weight: 200;
}

.positive .tension-mark {
  color: var(--blue);
}

.tension-grid h3 {
  max-width: 200px;
  margin: 74px 0 12px;
  font-size: 24px;
  line-height: 1.05;
}

.tension-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.benefits-section {
  border-top: 1px solid var(--border);
  background: var(--soft);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 55px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  position: relative;
  min-height: 530px;
  padding: 46px 38px 40px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 55, 100, 0.08);
}

.benefit-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.red-card {
  border-radius: 28px;
}

.red-card::before {
  background: linear-gradient(90deg, var(--red-deep), var(--red));
}

.blue-card {
  border-radius: 28px;
}

.blue-card::before {
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.mountain-card {
  padding-top: 88px;
  clip-path: polygon(0 8%, 9% 4%, 19% 8%, 31% 6%, 43% 0, 53% 7%, 64% 4%, 76% 10%, 87% 5%, 100% 9%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, #e4f1fa, var(--white) 28%);
}

.mountain-card::before {
  height: 38px;
  background: rgba(7, 90, 159, 0.14);
  clip-path: polygon(0 100%, 9% 45%, 19% 90%, 31% 65%, 43% 0, 53% 75%, 64% 45%, 76% 100%, 87% 55%, 100% 95%, 100% 100%);
}

.card-number {
  position: absolute;
  top: 28px;
  right: 32px;
  color: rgba(6, 55, 100, 0.16);
  font-size: 13px;
  font-weight: 900;
}

.mountain-card .card-number {
  top: 68px;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 25px;
  font-weight: 900;
}

.red-card .card-icon {
  background: rgba(227, 6, 19, 0.09);
  color: var(--red);
}

.benefit-card h3 {
  margin-bottom: 18px;
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.benefit-card p {
  color: var(--muted);
  font-size: 16px;
}

.benefit-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.benefit-card li::before {
  margin-right: 9px;
  color: var(--red);
  content: "→";
}

.community-window {
  overflow: hidden;
}

.window-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 72px;
}

.window-copy h2 {
  margin: 18px 0 22px;
  font-size: clamp(42px, 4.3vw, 62px);
}

.window-copy > p:not(.section-index) {
  color: var(--muted);
  font-size: 18px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--border);
}

.mini-stats div {
  padding: 20px 9px 0 0;
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--red);
  font-size: 29px;
}

.mini-stats span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 14px;
  background:
    linear-gradient(var(--red), var(--red)) top / 100% 14px no-repeat,
    linear-gradient(var(--blue), var(--blue)) bottom / 100% 14px no-repeat,
    linear-gradient(var(--red-deep), var(--red)) left / 14px 100% no-repeat,
    linear-gradient(var(--blue), var(--blue-bright)) right / 14px 100% no-repeat;
  box-shadow: var(--shadow);
}

.preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.preview-frame figcaption {
  position: absolute;
  right: 32px;
  bottom: -17px;
  padding: 9px 15px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(6, 55, 100, 0.14);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.courses-section {
  background: var(--navy);
  color: var(--white);
}

.courses-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
}

.courses-heading > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
}

.course-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.course-rail article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.course-rail img {
  width: 100%;
  aspect-ratio: 1.94 / 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.course-rail article:hover img {
  transform: scale(1.035);
}

.course-rail span {
  display: block;
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-section {
  background: var(--soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.audience-title .section-index {
  margin-bottom: 40px;
}

.audience-title h2 {
  margin-bottom: 16px;
}

.statement {
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.audience-list {
  border-top: 1px solid var(--border);
}

.audience-list > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 25px 5px;
  border-bottom: 1px solid var(--border);
}

.audience-list span {
  padding-top: 3px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.audience-list p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

.founder-section {
  overflow: hidden;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 90px;
}

.founder-portrait {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.portrait-backdrop {
  position: absolute;
  inset: 25px 8% 0;
  border-radius: 48% 48% 6px 6px;
  background: linear-gradient(150deg, var(--soft-blue), #d5e7f4);
}

.portrait-backdrop::after {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(7, 90, 159, 0.17);
  border-radius: inherit;
  content: "";
}

.founder-portrait img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.founder-copy .founder-lead {
  color: var(--navy) !important;
  font-size: 22px !important;
  font-weight: 700;
}

.founder-copy blockquote {
  max-width: 610px;
  margin: 32px 0 0;
  padding: 21px 26px;
  border-left: 5px solid var(--red);
  background: var(--soft);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.4;
}

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

.join-frame {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  padding: 72px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 28px 75px rgba(7, 90, 159, 0.24);
}

.join-frame::before {
  position: absolute;
  right: -8%;
  bottom: -50%;
  width: 52%;
  aspect-ratio: 1;
  border: 60px solid rgba(255, 255, 255, 0.075);
  border-radius: 50%;
  content: "";
}

.join-frame::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: var(--red);
  content: "";
}

.join-copy,
.join-action {
  position: relative;
  z-index: 2;
}

.join-copy h2 {
  max-width: 700px;
}

.join-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.included {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.included span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
}

.join-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.light-label {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
}

.checkout-note {
  max-width: 310px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 90px;
}

.faq-grid h2 {
  margin-top: 18px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

details {
  border-bottom: 1px solid var(--border);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

summary span {
  color: var(--red);
  font-size: 26px;
  font-weight: 400;
  transition: transform 180ms ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 760px;
  padding: 0 42px 25px 4px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  padding: 100px 0 112px;
  overflow: hidden;
  background: var(--soft-blue);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 100px;
  background: rgba(7, 90, 159, 0.08);
  clip-path: polygon(0 100%, 15% 50%, 25% 72%, 43% 8%, 58% 70%, 72% 37%, 87% 75%, 100% 30%, 100% 100%);
  content: "";
}

.final-cta .shell {
  position: relative;
  z-index: 2;
}

.final-cta p {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-bottom: 34px;
  font-size: clamp(48px, 7vw, 90px);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.legal-links a,
.footer-grid > a:not(.wordmark) {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Thank-you page */
.simple-header {
  position: relative;
}

.success-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eaf7ef;
  color: #21613c;
  font-size: 12px;
  font-weight: 850;
}

.success-pill span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2d8a54;
  color: var(--white);
  font-size: 11px;
}

.thanks-hero {
  position: relative;
  padding: 90px 0 130px;
  overflow: hidden;
  background: var(--soft);
}

.thanks-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 65px;
  background: var(--soft-blue);
  clip-path: polygon(0 100%, 12% 35%, 22% 72%, 38% 18%, 53% 76%, 67% 24%, 82% 70%, 92% 38%, 100% 100%);
  content: "";
}

.thanks-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 60px;
}

.thanks-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 7vw, 90px);
}

.thanks-copy > p:not(.eyebrow) {
  max-width: 710px;
  color: var(--muted);
  font-size: 20px;
}

.thanks-badge {
  justify-self: center;
  text-align: center;
}

.thanks-badge > div {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 12px solid rgba(7, 90, 159, 0.1);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 18px 45px rgba(7, 90, 159, 0.22);
  color: var(--white);
  font-size: 50px;
}

.thanks-badge span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.narrow-shell {
  max-width: 990px;
}

.video-section {
  padding: 85px 0 55px;
}

.video-shell {
  aspect-ratio: 16 / 9;
  padding: 14px;
  background:
    linear-gradient(var(--red), var(--red)) top / 100% 14px no-repeat,
    linear-gradient(var(--blue), var(--blue)) bottom / 100% 14px no-repeat,
    linear-gradient(var(--red-deep), var(--red)) left / 14px 100% no-repeat,
    linear-gradient(var(--blue), var(--blue-bright)) right / 14px 100% no-repeat;
  box-shadow: var(--shadow);
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.play-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 25px;
}

.video-placeholder p,
.video-placeholder strong,
.video-placeholder span {
  display: block;
  margin: 0;
}

.video-placeholder strong {
  font-size: 19px;
}

.video-placeholder span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.whatsapp-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.button-whatsapp {
  background: #168c4d;
  box-shadow: 0 14px 30px rgba(22, 140, 77, 0.22);
  color: var(--white);
}

.button-whatsapp:hover {
  background: #10743e;
  box-shadow: 0 17px 34px rgba(16, 116, 62, 0.28);
}

.next-steps {
  padding: 70px 0 120px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid article {
  padding: 30px;
  border: 1px solid var(--border);
  border-top: 7px solid var(--blue);
  background: var(--white);
}

.steps-grid article:first-child {
  border-top-color: var(--red);
}

.steps-grid span {
  color: rgba(6, 55, 100, 0.23);
  font-size: 12px;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 38px 0 10px;
  font-size: 22px;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mail-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 25px;
  padding: 24px 28px;
  background: var(--soft-blue);
}

.mail-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.mail-note p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Legal page */
.legal-page {
  padding: 85px 0 110px;
}

.legal-copy {
  max-width: 850px;
}

.legal-copy h1 {
  margin-bottom: 25px;
  font-size: clamp(48px, 7vw, 78px);
}

.legal-copy h2 {
  margin: 48px 0 12px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.legal-copy p {
  color: var(--muted);
}

.legal-copy .legal-intro {
  color: var(--navy);
  font-size: 20px;
}

.legal-copy a {
  color: var(--blue);
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 35px;
  }

  .portal-frame {
    min-height: 490px;
  }

  .floating-note {
    right: -10px;
  }

  .benefit-grid {
    gap: 14px;
  }

  .benefit-card {
    padding-right: 27px;
    padding-left: 27px;
  }

  .window-grid,
  .founder-grid {
    gap: 45px;
  }

  .join-frame {
    padding: 55px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 84px 0;
  }

  .hero {
    padding-top: 65px;
  }

  .hero-grid,
  .split-heading,
  .window-grid,
  .courses-heading,
  .audience-grid,
  .founder-grid,
  .join-frame,
  .faq-grid,
  .thanks-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 600px;
    margin: 15px auto 0;
  }

  .portal-frame {
    min-height: 620px;
  }

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

  .signal-grid p {
    display: none;
  }

  .tension-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .tension-grid article {
    min-height: 240px;
  }

  .benefit-card {
    min-height: auto;
  }

  .course-rail {
    grid-template-columns: 1fr 1fr;
  }

  .audience-grid,
  .faq-grid {
    gap: 50px;
  }

  .founder-portrait {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }

  .join-action {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .thanks-badge {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid h3 {
    margin-top: 18px;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 34px), var(--shell));
  }

  .header-inner {
    min-height: 68px;
  }

  .wordmark {
    font-size: 11px;
  }

  .wordmark img {
    width: 42px;
    height: 42px;
  }

  .site-header .button-small {
    min-height: 39px;
    padding: 9px 13px;
    font-size: 11px;
  }

  .site-header .button-small span {
    display: none;
  }

  .hero {
    padding: 50px 0 60px;
  }

  .hero h1,
  .thanks-copy h1 {
    font-size: clamp(47px, 14vw, 62px);
  }

  .hero-lead,
  .thanks-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    align-self: center;
  }

  .check-row {
    display: grid;
  }

  .portal-frame {
    min-height: 420px;
  }

  .portal-copy {
    top: 27px;
    left: 28px;
  }

  .portal-frame img {
    right: 14px;
    width: calc(100% - 28px);
  }

  .floating-note {
    right: -5px;
    bottom: 37px;
    max-width: 220px;
    padding: 15px 17px;
  }

  .signal-strip {
    padding: 17px 0;
  }

  .signal-grid {
    gap: 8px;
  }

  .signal-grid > div {
    justify-content: center;
  }

  .signal-grid span {
    display: none;
  }

  .signal-grid strong {
    font-size: 9px;
  }

  .section {
    padding: 70px 0;
  }

  .split-heading {
    gap: 20px;
  }

  .split-heading h2,
  .section-heading h2,
  .courses-heading h2,
  .audience-title h2,
  .founder-copy h2,
  .join-copy h2,
  .faq-grid h2,
  .next-steps h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .split-heading > div > p,
  .window-copy > p:not(.section-index),
  .join-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .tension-grid {
    margin-top: 42px;
  }

  .tension-grid article {
    min-height: auto;
    padding: 28px;
  }

  .tension-grid h3 {
    margin-top: 45px;
  }

  .benefit-card {
    padding: 40px 27px 32px;
  }

  .mountain-card {
    padding-top: 78px;
  }

  .mini-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .preview-frame {
    padding: 8px;
    background:
      linear-gradient(var(--red), var(--red)) top / 100% 8px no-repeat,
      linear-gradient(var(--blue), var(--blue)) bottom / 100% 8px no-repeat,
      linear-gradient(var(--red-deep), var(--red)) left / 8px 100% no-repeat,
      linear-gradient(var(--blue), var(--blue-bright)) right / 8px 100% no-repeat;
  }

  .course-rail {
    grid-template-columns: 1fr;
  }

  .audience-title .section-index {
    margin-bottom: 22px;
  }

  .audience-list p {
    font-size: 15px;
  }

  .founder-portrait {
    min-height: 400px;
  }

  .founder-portrait img {
    left: 0;
    width: 100%;
  }

  .founder-copy .founder-lead {
    font-size: 19px !important;
  }

  .join-section {
    padding-top: 35px;
  }

  .join-frame {
    gap: 15px;
    padding: 40px 28px 44px;
  }

  .button-white {
    width: 100%;
  }

  summary {
    font-size: 15px;
  }

  .final-cta {
    padding: 75px 0 90px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .legal-links {
    justify-content: center;
  }

  .success-pill {
    font-size: 10px;
  }

  .success-pill span {
    display: none;
  }

  .thanks-hero {
    padding: 65px 0 100px;
  }

  .video-section {
    padding-top: 60px;
  }

  .video-shell {
    padding: 8px;
    background:
      linear-gradient(var(--red), var(--red)) top / 100% 8px no-repeat,
      linear-gradient(var(--blue), var(--blue)) bottom / 100% 8px no-repeat,
      linear-gradient(var(--red-deep), var(--red)) left / 8px 100% no-repeat,
      linear-gradient(var(--blue), var(--blue-bright)) right / 8px 100% no-repeat;
  }

  .play-icon {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .video-placeholder strong {
    font-size: 15px;
  }

  .video-placeholder span {
    font-size: 11px;
  }

  .button-whatsapp {
    width: 100%;
  }

  .mail-note {
    padding: 20px;
  }

  .legal-page {
    padding: 60px 0 85px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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