:root {
  --navy: #24348c;
  --navy-2: #132463;
  --teal: #078776;
  --orange: #ff9f18;
  --gold: #ffbd3d;
  --ink: #152033;
  --muted: #617086;
  --line: #dbe4ee;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(19, 36, 99, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.8;
  text-align: right;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(219, 228, 238, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(19, 36, 99, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 50px rgba(19, 36, 99, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.brand-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #4d5b72;
  font-size: 14px;
  font-weight: 700;
}

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

.join-btn,
.ghost-btn,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.join-btn {
  color: var(--navy-2);
  background: linear-gradient(135deg, #ffcf61, var(--orange));
  box-shadow: 0 14px 28px rgba(255, 159, 24, 0.28);
}

.join-btn:hover,
.ghost-btn:hover,
.contact-link:hover {
  transform: translateY(-2px);
}

.join-btn-glow {
  box-shadow: 0 0 0 7px rgba(255, 159, 24, 0.16), 0 22px 45px rgba(255, 159, 24, 0.32);
}

.join-btn-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

.btn-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(7, 135, 118, 0.14);
}

.ghost-btn {
  color: var(--navy);
  border: 1px solid rgba(36, 52, 140, 0.18);
  background: rgba(255, 255, 255, 0.84);
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 104px 16px 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 159, 24, 0.18), transparent 27%),
    radial-gradient(circle at 88% 20%, rgba(7, 135, 118, 0.16), transparent 26%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 74%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.055;
  pointer-events: none;
}

.hero-bg img {
  width: min(760px, 92vw);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(48px, 8vw, 98px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  color: var(--navy-2);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  color: var(--navy-2);
  font-size: 20px;
  line-height: 1.35;
}

.hero-hook {
  max-width: 920px;
  margin: 0 auto 12px;
  color: var(--ink);
  font-size: clamp(23px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1.45;
}

.hero-hook strong {
  color: var(--orange);
  white-space: nowrap;
}

.hero-sub {
  max-width: 780px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin: 0 auto 30px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(219, 228, 238, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats b {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.video-panel {
  width: min(860px, 100%);
  margin: 0 auto;
}

.play-frame {
  position: relative;
  width: 100%;
  min-height: 260px;
  padding: 34px;
  border: 1px solid rgba(36, 52, 140, 0.14);
  border-radius: 30px;
  overflow: hidden;
  color: var(--white);
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(19, 36, 99, 0.78), rgba(7, 135, 118, 0.70)),
    url("assets/foundation-small.png") center 42% / cover;
  box-shadow: var(--shadow);
}

.play-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(19, 36, 99, 0.34));
}

.play-badge {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.16);
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 4px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 19px solid var(--white);
}

.video-copy {
  position: relative;
  z-index: 1;
  display: block;
}

.video-copy strong,
.video-copy small {
  display: block;
}

.video-copy strong {
  font-size: 26px;
}

.video-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

section {
  padding: 92px 16px;
}

.section-head,
.split-copy,
.pain-grid,
.system-map,
.benefit-list,
.stage-grid,
.cta-band,
.founder-section,
.fit-grid,
.faq-list,
.contact-section,
.site-footer {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
  text-align: center;
}

.section-head p:not(.eyebrow),
.split-copy p,
.founder-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
}

.pain-section,
.stages-section,
.faq-section {
  background: var(--soft);
}

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

.pain-grid article,
.benefit-list article,
.fit-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(19, 36, 99, 0.06);
}

.pain-grid p,
.benefit-list p,
.stage-card p,
.fit-grid li,
.faq-list p {
  color: var(--muted);
}

.mini-icon {
  display: inline-block;
  width: 36px;
  height: 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.mini-icon.teal {
  background: var(--teal);
}

.mini-icon.orange {
  background: var(--orange);
}

.mini-icon.blue {
  background: var(--navy);
}

.split-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}

.system-map {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(36, 52, 140, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 52, 140, 0.07) 1px, transparent 1px),
    #ffffff;
  background-size: 56px 56px;
  box-shadow: var(--shadow);
}

.map-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  padding: 26px;
  border-radius: 50%;
  color: var(--navy-2);
  text-align: center;
  background: var(--white);
  border: 2px solid rgba(255, 159, 24, 0.52);
  box-shadow: 0 24px 70px rgba(255, 159, 24, 0.18);
  transform: translate(-50%, -50%);
}

.map-core img {
  width: 78px;
}

.map-core strong {
  font-size: 21px;
  line-height: 1.45;
}

.map-node {
  position: absolute;
  min-width: 172px;
  padding: 16px 20px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 16px 34px rgba(19, 36, 99, 0.16);
}

.node-1,
.node-4 {
  background: var(--navy);
}

.node-2,
.node-5 {
  background: var(--teal);
}

.node-3,
.node-6 {
  background: var(--orange);
  color: var(--navy-2);
}

.node-1 { top: 68px; right: 16%; }
.node-2 { top: 68px; left: 16%; }
.node-3 { top: 238px; right: 6%; }
.node-4 { top: 238px; left: 6%; }
.node-5 { bottom: 70px; right: 20%; }
.node-6 { bottom: 70px; left: 20%; }

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

.benefit-list article {
  grid-column: span 2;
}

.benefit-list article:nth-child(4),
.benefit-list article:nth-child(5) {
  grid-column: span 3;
}

.benefit-list b,
.stage-card span {
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
}

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

.stage-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(19, 36, 99, 0.08);
}

.stage-card img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  object-position: center 36%;
  background: #eef3f7;
}

.stage-card div {
  padding: 22px;
}

.stage-card h3 {
  margin-bottom: 8px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 159, 24, 0.24), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef7f5);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 740px;
  margin-bottom: 0;
  font-size: clamp(28px, 3.5vw, 46px);
}

.founder-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 46px;
}

.founder-media {
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 159, 24, 0.22), transparent 32%),
    #f6fafc;
  box-shadow: var(--shadow);
}

.founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.founder-points span {
  padding: 10px 14px;
  border: 1px solid rgba(7, 135, 118, 0.18);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(7, 135, 118, 0.06);
  font-weight: 800;
}

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

.fit-grid ul {
  margin: 0;
  padding: 0 22px 0 0;
}

.fit-grid li {
  margin-bottom: 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--navy-2);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 30px;
  padding: 46px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 159, 24, 0.35), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: var(--shadow);
}

.contact-section h2,
.contact-section .eyebrow,
.contact-section p {
  color: var(--white);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  min-height: 44px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 16px 46px;
  color: var(--muted);
  font-size: 14px;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 36, 99, 0.5);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(19, 36, 99, 0.34);
}

.modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 26px;
}

.modal-video {
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 34px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(19, 36, 99, 0.82), rgba(7, 135, 118, 0.76)),
    url("assets/marketing-small.png") center / cover;
}

.play-badge.large {
  width: 92px;
  height: 92px;
}

.modal-video p {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-stats,
  .pain-grid,
  .stage-grid,
  .fit-grid,
  .contact-section,
  .founder-section,
  .split-copy {
    grid-template-columns: 1fr;
  }

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

  .benefit-list article,
  .benefit-list article:nth-child(4),
  .benefit-list article:nth-child(5) {
    grid-column: auto;
  }

  .system-map {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 22px;
  }

  .map-core,
  .map-node {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    min-width: 0;
  }

  .map-core {
    border-radius: 28px;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    border-radius: 18px;
  }

  .brand span {
    display: none;
  }

  .join-btn-small {
    min-height: 40px;
    padding-inline: 14px;
  }

  section {
    padding: 66px 12px;
  }

  .hero {
    min-height: auto;
    padding-inline: 12px;
  }

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

  .play-frame {
    min-height: 230px;
    padding: 24px;
  }

  .hero-stats div,
  .pain-grid article,
  .benefit-list article,
  .fit-grid article,
  .cta-band,
  .contact-section {
    border-radius: 20px;
  }

  .stage-grid {
    gap: 14px;
  }

  .stage-card {
    border-radius: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
