:root {
  --ink: #171715;
  --ink-soft: #4b4944;
  --mist: #f6f1e8;
  --paper: #fffbf2;
  --surface: #ffffff;
  --charcoal: #20211f;
  --charcoal-2: #2f312d;
  --amber: #f0b848;
  --amber-soft: #fdecc1;
  --sage: #7ea68a;
  --sage-soft: #e4efe5;
  --line: rgba(23, 23, 21, 0.12);
  --light-line: rgba(255, 251, 242, 0.18);
  --shadow: 0 24px 70px rgba(23, 23, 21, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--paper);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 251, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: linear-gradient(90deg, currentColor 50%, transparent 50%);
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.brand-mark::before {
  top: 0;
  background: var(--paper);
}

.brand-mark::after {
  bottom: 0;
  background: currentColor;
}

.site-header.scrolled .brand-mark::before,
.site-header.menu-active .brand-mark::before {
  background: var(--paper);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  font-size: 11px;
  color: currentColor;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  bottom: 15px;
}

.site-header.menu-active .menu-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.site-header.menu-active .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
  padding: 128px clamp(20px, 5vw, 72px) 58px;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 23, 21, 0.88) 0%, rgba(23, 23, 21, 0.72) 30%, rgba(23, 23, 21, 0.18) 60%, rgba(23, 23, 21, 0.1) 100%),
    linear-gradient(0deg, rgba(23, 23, 21, 0.62) 0%, rgba(23, 23, 21, 0) 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  font-weight: 800;
}

h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.05;
  font-weight: 800;
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 800;
}

.hero-lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 251, 242, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 18px 40px rgba(240, 184, 72, 0.22);
}

.btn-secondary {
  color: var(--paper);
  border-color: rgba(255, 251, 242, 0.5);
  background: rgba(255, 251, 242, 0.08);
  backdrop-filter: blur(12px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin-top: 46px;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-line);
}

.hero-facts div {
  min-height: 94px;
  padding: 18px;
  background: rgba(23, 23, 21, 0.34);
  backdrop-filter: blur(16px);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.hero-facts span {
  margin-top: 7px;
  color: rgba(255, 251, 242, 0.74);
  font-size: 13px;
}

.section {
  padding: clamp(82px, 10vw, 140px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 110px;
}

.text-stack {
  display: grid;
  gap: 22px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.text-stack p,
.balance-copy p,
.apply-copy p {
  margin: 0;
}

.contrast-section,
.format-section {
  color: var(--paper);
  background: var(--charcoal);
}

.center-header {
  width: min(820px, 100%);
  margin: 0 auto clamp(40px, 6vw, 74px);
  text-align: center;
}

.center-header h2 {
  margin: 0 auto;
}

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

.compare-card,
.result-card,
.mentor-card,
.audience-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 18px 48px rgba(23, 23, 21, 0.06);
}

.compare-card {
  color: var(--ink);
  min-height: 440px;
}

.compare-card-dark {
  color: var(--paper);
  background: var(--charcoal-2);
  border-color: var(--light-line);
}

.card-label,
.timeline-item span,
.result-number {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber-soft);
  font-size: 12px;
  font-weight: 800;
}

.compare-card h3 {
  margin-top: 22px;
}

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

.compare-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.compare-card-dark li {
  color: rgba(255, 251, 242, 0.76);
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.result-section {
  background: var(--mist);
}

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

.result-card {
  min-height: 320px;
}

.result-card h3,
.audience-card h3 {
  margin-top: 26px;
}

.result-card p,
.mentor-card p,
.audience-card p,
.timeline-item p,
.faq-list p {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

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

.balance-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.yin-yang-mark {
  position: relative;
  aspect-ratio: 1;
  width: min(360px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 25%, var(--paper) 0 12%, transparent 12.5%),
    radial-gradient(circle at 50% 75%, var(--charcoal) 0 12%, transparent 12.5%),
    radial-gradient(circle at 50% 25%, var(--charcoal) 0 25%, transparent 25.5%),
    radial-gradient(circle at 50% 75%, var(--paper) 0 25%, transparent 25.5%),
    linear-gradient(90deg, var(--charcoal) 50%, var(--paper) 50%);
  box-shadow: var(--shadow);
}

.yin-dot,
.yang-dot {
  position: absolute;
  left: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.yin-dot {
  top: 20%;
  background: var(--charcoal);
}

.yang-dot {
  bottom: 20%;
  background: var(--paper);
  border: 1px solid var(--line);
}

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

.balance-copy p {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.program-section {
  background: var(--surface);
}

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

.timeline-item {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.timeline-item h3 {
  margin-top: 24px;
  font-size: 22px;
}

.mentors-section {
  background: var(--mist);
}

.mentor-card {
  min-height: 300px;
  overflow: hidden;
}

.mentor-card h3 {
  margin-top: 28px;
  font-size: clamp(30px, 4vw, 48px);
}

.mentor-tech {
  color: var(--paper);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.mentor-tech p {
  color: rgba(255, 251, 242, 0.76);
}

.mentor-creative {
  background: var(--amber-soft);
}

.experience-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--sage);
}

.experience-band strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
}

.experience-band span {
  max-width: 720px;
  font-size: clamp(17px, 2vw, 21px);
}

.format-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-line);
}

.format-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  background: rgba(255, 251, 242, 0.06);
}

.format-row strong {
  color: var(--amber);
}

.format-row span {
  color: rgba(255, 251, 242, 0.78);
}

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

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

.audience-card {
  min-height: 240px;
}

.audience-card h3 {
  font-size: clamp(22px, 1.7vw, 26px);
  overflow-wrap: anywhere;
}

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

.apply-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.apply-copy p {
  margin-top: 24px;
  max-width: 620px;
  color: rgba(255, 251, 242, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.apply-note {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  background: rgba(255, 251, 242, 0.06);
}

.apply-note strong {
  color: var(--amber);
}

.price-panel {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-line);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255, 251, 242, 0.06);
}

.price-row span,
.installment-note {
  color: rgba(255, 251, 242, 0.76);
}

.price-row strong {
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  white-space: nowrap;
}

.price-row-accent strong {
  color: var(--amber);
}

.installment-note {
  padding: 18px 20px;
  background: rgba(126, 166, 138, 0.14);
  font-size: 15px;
  font-weight: 700;
}

.question-box {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  background: rgba(255, 251, 242, 0.06);
}

.question-box h3 {
  font-size: 24px;
}

.question-box p {
  margin-top: 10px;
  font-size: 16px;
}

.messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.messenger-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.messenger-links a:hover {
  border-color: var(--amber);
  background: rgba(240, 184, 72, 0.12);
  transform: translateY(-1px);
}

.crm-form-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.crm-form-loader {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.crm-form-panel:has(iframe) .crm-form-loader {
  display: none;
}

.crm-form-frame,
.crm-form-frame iframe {
  display: block;
  width: 100%;
}

.crm-form-frame iframe {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.faq-section {
  background: var(--mist);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0 22px;
}

summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
}

summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: 0 0 auto;
}

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

details p {
  padding: 0 0 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, auto) auto;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--paper);
  background: var(--charcoal);
  border-top: 1px solid var(--light-line);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: rgba(255, 251, 242, 0.68);
  font-size: 13px;
}

.footer-legal {
  color: rgba(255, 251, 242, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.footer-legal p {
  margin: 0;
}

.footer-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
}

.site-footer a {
  color: var(--amber);
  font-weight: 800;
}

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

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

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

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

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

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

  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-panel {
    position: fixed;
    inset: 78px 14px auto;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.menu-active .mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-panel a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: var(--ink);
    font-weight: 800;
    border-radius: var(--radius);
  }

  .mobile-panel a:hover {
    background: var(--amber-soft);
  }

  .split,
  .balance-layout,
  .apply-shell {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 118px 18px 36px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(23, 23, 21, 0.92) 0%, rgba(23, 23, 21, 0.72) 56%, rgba(23, 23, 21, 0.34) 100%),
      linear-gradient(0deg, rgba(23, 23, 21, 0.72) 0%, rgba(23, 23, 21, 0) 42%);
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
  }

  .section {
    padding: 76px 18px;
  }

  .comparison-grid,
  .mentors-grid,
  .result-grid,
  .timeline,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .compare-card,
  .result-card,
  .mentor-card,
  .audience-card,
  .timeline-item {
    min-height: auto;
  }

  .format-row,
  .experience-band {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}
