:root {
  --bg: #0f1115;
  --surface: #151821;
  --surface-soft: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text-primary: #f5f7fa;
  --text-secondary: #a0a6b3;
  --accent: #22d3ee;
  --accent-strong: #06b6d4;
  --cta: #f5f5f5;
  --cta-text: #0f1115;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.22);
  --shadow-lift: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 24px;
  --radius-md: 18px;
}

body:is(.landing-page, .mentorship-page, .about-page) main {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.header__inner {
  width: 100%;
  max-width: 1120px;
}

.site-wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
}

.site-wordmark__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-wordmark__role {
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page .menu__inner li a,
.mentorship-page .menu__inner li a,
.about-page .menu__inner li a {
  opacity: 0.8;
}

.menu-trigger,
.theme-toggle,
.submenu .dropbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  appearance: none;
  color: inherit;
  font: inherit;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 1rem;
  margin-bottom: 0;
  width: auto;
  max-width: none;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--cta);
  color: var(--cta-text);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, outline-color 0.2s ease;
}

:is(.landing-page .landing-shell, .mentorship-page .mentorship-shell, .about-page .about-shell) {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

:is(.landing-page, .mentorship-page, .about-page) h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

:is(.landing-page, .mentorship-page, .about-page) h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 1rem;
}

:is(.landing-page, .mentorship-page, .about-page) p,
:is(.landing-page, .mentorship-page, .about-page) li {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

:is(.landing-page, .mentorship-page, .about-page) .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.funnel-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.funnel-hero::before {
  content: "";
  position: absolute;
  inset: -40px auto auto 10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 70%);
  filter: blur(80px);
  z-index: -1;
}

.funnel-hero__copy > p {
  max-width: 44rem;
}

.funnel-hero__media {
  display: flex;
  justify-content: center;
}

.funnel-portrait {
  width: min(320px, 100%);
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.funnel-portrait img {
  width: 100%;
  border-radius: 22px;
}

.funnel-section {
  margin-bottom: 3rem;
  animation: fadeUp 0.6s ease both;
}

.surface-block {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.proof-strip,
.transformation-grid,
.offer-grid,
.objection-list,
.about-proof-grid {
  display: grid;
  gap: 1rem;
}

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

.transformation-grid,
.offer-grid,
.about-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-card,
.transformation-card,
.offer-card,
.objection-item,
.about-proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.proof-card:hover,
.transformation-card:hover,
.offer-card:hover,
.objection-item:hover,
.about-proof-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lift);
}

.funnel-cta {
  margin-top: 1.25rem;
}

.funnel-cta__context {
  margin-bottom: 0.75rem;
}

.funnel-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.funnel-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.funnel-cta__button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.header-cta:focus-visible,
.funnel-cta__button:focus-visible,
.menu-trigger:focus-visible,
.theme-toggle:focus-visible,
.submenu .dropbtn:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.65);
  outline-offset: 3px;
}

.funnel-cta__button--primary {
  background: var(--cta);
  color: var(--cta-text);
}

.funnel-cta__button--ghost {
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
}

.limited-note {
  color: var(--text-primary);
  font-weight: 700;
}

:is(.landing-page, .mentorship-page, .about-page) a {
  transition: opacity 0.2s ease;
}

:is(.landing-page, .mentorship-page, .about-page) a:hover {
  opacity: 0.9;
}

.submenu.dropdown:focus-within .dropdown-content {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .funnel-hero {
    grid-template-columns: 1fr;
  }

  .funnel-hero__media {
    order: 2;
  }

  .proof-strip,
  .transformation-grid,
  .offer-grid,
  .objection-list,
  .about-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-cta {
    display: none;
  }

  .site-wordmark {
    min-width: 0;
  }

  .site-wordmark__name {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 1rem;
  }

  :is(.landing-page, .mentorship-page, .about-page) .eyebrow {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  :is(.landing-page .landing-shell, .mentorship-page .mentorship-shell, .about-page .about-shell) {
    padding-inline: 1rem;
  }
}
