:root {
  color-scheme: dark;
  --bg: #070b12;
  --surface: #0b1320;
  --surface-2: #101a2a;
  --surface-3: #142033;
  --line: rgba(171, 190, 215, 0.14);
  --line-soft: rgba(171, 190, 215, 0.09);
  --line-green: rgba(64, 224, 135, 0.62);
  --text: #f2f6fb;
  --muted: #9aa7b8;
  --muted-2: #748196;
  --green: #3ee680;
  --green-2: #1fbf62;
  --green-dim: rgba(62, 230, 128, 0.12);
  --red: #ff5968;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --radius: 26px;
  --font: Inter, Manrope, Onest, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; }

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #070b12 0%, #05080d 100%);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -7%, rgba(62, 230, 128, 0.055), transparent 25rem),
    radial-gradient(circle at 100% 12%, rgba(35, 122, 255, 0.05), transparent 20rem);
}

.landing { overflow: hidden; }

.screen {
  position: relative;
  padding: clamp(52px, 10vw, 88px) 0;
  display: flex;
  align-items: center;
}

.screen--hero { padding-top: 34px; }
.screen:not(.screen--hero) { min-height: auto; }

.wrap {
  width: min(100% - 36px, 760px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(12px, 2.9vw, 15px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

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

h1, h2 {
  color: var(--text);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(47px, 13.4vw, 92px);
  text-transform: uppercase;
}

h2 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(36px, 9.3vw, 66px);
}

.subtitle {
  margin: 8px 0 27px;
  color: var(--muted);
  font-size: clamp(20px, 5.6vw, 30px);
  font-weight: 560;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.free-pill {
  display: inline-flex;
  margin: 0 0 28px;
  padding: 10px 15px 11px;
  border: 1px solid var(--line-green);
  border-radius: 999px;
  color: var(--green);
  background: rgba(62, 230, 128, 0.035);
  font-size: clamp(15px, 3.9vw, 19px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.02em;
}

.copy, .lead {
  color: var(--muted);
  font-size: clamp(18px, 4.35vw, 24px);
  line-height: 1.43;
  letter-spacing: -0.028em;
  text-wrap: pretty;
}

.lead { margin: 27px 0 28px; }
.copy { margin-bottom: 0; }

.authors {
  display: flex;
  gap: 13px;
  align-items: center;
  margin: 0 0 30px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  min-width: 70px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}

.avatar + .avatar { margin-left: -15px; }
.avatar--m { background: #122641; color: #d6e8ff; }
.avatar--s { background: #123b2b; color: #bbffd0; }

.authors__name {
  margin: 0 0 4px;
  color: var(--text);
  font-size: clamp(18px, 4.45vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.authors__role {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 3.55vw, 18px);
  line-height: 1.25;
}

.video-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(12px, 3.2vw, 18px);
  border: 1px solid rgba(62, 230, 128, 0.22);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14, 25, 41, 0.98), rgba(9, 17, 29, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-card__player {
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 882;
  border: 0;
  border-radius: 20px;
  background: #03070d;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.video-card__tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(5, 9, 15, 0.72);
  border: 1px solid rgba(62, 230, 128, 0.22);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.video-card p {
  margin: 0;
  color: var(--green);
  font-size: clamp(14px, 3.7vw, 19px);
  font-weight: 740;
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.02em;
}

.button {
  display: inline-flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 19px 22px;
  font-size: clamp(18px, 4.4vw, 23px);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, background-color 160ms ease-out;
}

.button--primary {
  color: #041109;
  background: var(--green);
  box-shadow: 0 22px 44px rgba(62, 230, 128, 0.18);
}

.button--primary:hover { transform: translateY(-1px); background: #54ee91; box-shadow: 0 28px 58px rgba(62, 230, 128, 0.24); }
.button:focus-visible { outline: 3px solid rgba(62,230,128,.34); outline-offset: 4px; }
.button--ghost {
  margin-top: 14px;
  border: 1px solid var(--line-green);
  color: var(--green);
  background: rgba(62, 230, 128, 0.02);
  box-shadow: none;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2.6vw, 18px);
  margin: 32px 0 28px;
}

.mini-card {
  min-height: 150px;
  padding: clamp(16px, 3.8vw, 22px);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
}

.mini-card strong {
  display: block;
  margin-bottom: 13px;
  font-size: clamp(24px, 5.8vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 3.25vw, 17px);
  font-weight: 680;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.danger { color: var(--red); }

.section-gap { height: clamp(58px, 12vw, 102px); }
.section-gap--small { height: clamp(50px, 10vw, 86px); }

.fund-list, .mentor-list, .faq-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.fund-card, .mentor-card, .faq-card, .price-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 23, 38, 0.99), rgba(9, 15, 26, 0.99));
  box-shadow: var(--shadow);
}

.fund-card { padding: clamp(22px, 5vw, 30px); }

.fund-card__top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.fund-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(21px, 5.1vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.036em;
}

.fund-card strong {
  flex: 0 0 auto;
  color: var(--green);
  font-size: clamp(21px, 5vw, 31px);
  line-height: 1.08;
  white-space: nowrap;
}

.fund-card p, .mentor-card p, .faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 3.85vw, 20px);
  line-height: 1.37;
  letter-spacing: -0.022em;
}

.callout {
  margin-top: 28px;
  padding: 27px 25px 27px 29px;
  border: 1px solid var(--line-soft);
  border-left: 5px solid var(--green);
  border-radius: 24px;
  background: #101b2c;
}

.callout p {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 5.2vw, 32px);
  font-weight: 830;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

mark {
  color: var(--green);
  background: transparent;
}

.mentor-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 19px;
  padding: clamp(21px, 5vw, 30px);
}

.mentor-avatar {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  font-size: 35px;
  font-weight: 900;
}

.mentor-avatar--s { color: #baffcf; background: #123b2b; }
.mentor-avatar--m { color: #cfe4ff; background: #122641; }

.mentor-card h3, .faq-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(25px, 5.9vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mentor-role {
  margin: 0 0 14px !important;
  color: var(--green) !important;
  font-size: clamp(12px, 2.95vw, 15px) !important;
  font-weight: 900;
  line-height: 1.2 !important;
  text-transform: uppercase;
  letter-spacing: 0.055em !important;
}

.program-list {
  display: grid;
  gap: clamp(26px, 6.2vw, 42px);
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.program-list li {
  display: grid;
  grid-template-columns: 59px 1fr;
  gap: 18px;
  align-items: start;
}

.program-list span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  color: var(--green);
  background: var(--surface-2);
  font-size: 23px;
  font-weight: 900;
}

.program-list h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: clamp(23px, 5.35vw, 34px);
  line-height: 1.09;
  letter-spacing: -0.037em;
}

.program-list p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 3.9vw, 21px);
  line-height: 1.36;
  letter-spacing: -0.023em;
}

.program-list u {
  text-decoration-color: rgba(242, 246, 251, 0.78);
  text-underline-offset: 3px;
}

.faq-card {
  padding: clamp(21px, 5vw, 29px);
}

.faq-card h3 { font-size: clamp(22px, 5.2vw, 32px); margin-bottom: 13px; }

.screen--format .wrap { width: min(100% - 36px, 790px); }

.price-card {
  position: relative;
  margin-top: 32px;
  padding: clamp(24px, 5.8vw, 38px);
  border-color: var(--line-green);
  background:
    radial-gradient(circle at 86% 5%, rgba(62, 230, 128, 0.13), transparent 16rem),
    linear-gradient(180deg, rgba(12, 22, 37, 0.99), rgba(7, 12, 21, 0.99));
}

.price-card__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.price-card__head h3 {
  margin: 0;
  font-size: clamp(32px, 7.8vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.price-card__head span {
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #031008;
  background: var(--green);
  font-size: clamp(10px, 2.5vw, 13px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card__meta {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 4vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.022em;
}

.price {
  margin: 31px 0 29px;
  padding: clamp(22px, 5vw, 30px);
  border: 1px solid rgba(62, 230, 128, .17);
  border-radius: 22px;
  color: var(--green);
  background: rgba(20, 76, 46, .52);
  font-size: clamp(47px, 12vw, 78px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.055em;
  text-align: left;
}

.features {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.features li {
  position: relative;
  min-height: 34px;
  padding-left: 48px;
  color: #edf3f8;
  font-size: clamp(18px, 4.28vw, 24px);
  font-weight: 760;
  line-height: 1.28;
  letter-spacing: -0.026em;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #06150b;
  background: var(--green);
  font-size: 18px;
  font-weight: 950;
}

.disclaimer {
  max-width: 700px;
  margin: 31px auto 0;
  color: #727e91;
  font-size: clamp(13px, 3.1vw, 16px);
  line-height: 1.45;
  text-align: left;
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 34px, 430px); }
  .screen { padding: 54px 0; }
  .screen--hero { padding-top: 28px; }
  .mini-grid { gap: 8px; }
  .mini-card { min-height: 138px; padding: 14px 12px; border-radius: 18px; }
  .fund-card__top { display: grid; gap: 8px; }
  .fund-card strong { white-space: normal; }
  .mentor-card { grid-template-columns: 64px 1fr; gap: 15px; }
  .mentor-avatar { width: 60px; height: 60px; border-radius: 16px; font-size: 31px; }
  .price-card__head { display: grid; gap: 13px; }
  .price-card__head span { justify-self: start; }
}

@media (max-width: 370px) {
  .wrap { width: min(100% - 28px, 430px); }
  .mini-card p { font-size: 12px; }
  .program-list { gap: 24px; }
  .program-list li { grid-template-columns: 52px 1fr; gap: 14px; }
  .program-list span { width: 48px; height: 48px; }
  .features li { padding-left: 42px; }
}
