:root {
  --bg: #030606;
  --panel: #081111;
  --panel-strong: #0d1818;
  --ink: #f7fbfb;
  --muted: #a8bbbb;
  --subtle: #718989;
  --turquoise: #40d2c4;
  --turquoise-dark: #18a99d;
  --line: rgba(64, 210, 196, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --glow: rgba(64, 210, 196, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(64, 210, 196, 0.08), transparent 420px),
    radial-gradient(circle at 80% 8%, rgba(64, 210, 196, 0.14), transparent 28%),
    var(--bg);
}

body,
button {
  font: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(3, 6, 6, 0.88);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.hero-metrics,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: white;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 5px rgba(64, 210, 196, 0.07);
}

.nav {
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

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

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: #031010;
  background: var(--turquoise);
  box-shadow: 0 14px 36px rgba(64, 210, 196, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-soft);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(46px, 7vw, 96px) clamp(18px, 6vw, 84px) 54px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--turquoise);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.16;
}

.hero-text,
.section-head p,
.contact-copy p,
.outcome-copy p,
.callout p,
.lead-card p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.hero-metrics {
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

.hero-metrics div {
  min-width: 168px;
  padding: 16px;
  border: 1px solid rgba(64, 210, 196, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(64, 210, 196, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(64, 210, 196, 0.08);
}

.hero-metrics dt {
  color: var(--turquoise);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.hero-card {
  display: grid;
  gap: 18px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(64, 210, 196, 0.12), rgba(255, 255, 255, 0.03)),
    #000;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  box-shadow: inset 0 -120px 100px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.portrait-signature {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(64, 210, 196, 0.28);
  border-radius: 18px;
  background: rgba(3, 6, 6, 0.72);
  backdrop-filter: blur(12px);
}

.portrait-signature strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.portrait-signature span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.mentor-photo {
  width: 100%;
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: center center;
  border-radius: 22px;
  background: #000;
  display: block;
}

.callout,
.cards article,
.lead-card,
.outcome-list div {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(64, 210, 196, 0.13), rgba(255, 255, 255, 0.035) 46%, rgba(64, 210, 196, 0.055)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 18px 42px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(64, 210, 196, 0.08),
    0 0 36px rgba(64, 210, 196, 0.07);
}

.callout:hover,
.cards article:hover,
.lead-card:hover,
.outcome-list div:hover {
  border-color: rgba(64, 210, 196, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 20px 48px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(64, 210, 196, 0.14),
    0 0 48px rgba(64, 210, 196, 0.12);
}

.callout,
.lead-card {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.callout h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.section {
  padding: 76px clamp(18px, 6vw, 84px);
}

.split {
  background: #050909;
  border-block: 1px solid var(--line-soft);
}

.section-head {
  margin-bottom: 32px;
}

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

.cards article {
  padding: 26px;
}

.cards p,
.outcome-list span,
.form-note {
  color: var(--muted);
  line-height: 1.6;
}

.outcome {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.92fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

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

.outcome-list div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.outcome-list strong {
  color: var(--turquoise);
  font-size: 1.04rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.78fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: start;
  background: #061010;
  border-top: 1px solid var(--line-soft);
}

.lead-card .button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .cards,
  .outcome,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-metrics div {
    width: 100%;
  }

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

  .mentor-photo {
    height: auto;
    min-height: 0;
  }

  .portrait-signature {
    position: static;
    margin-top: 10px;
  }

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