:root {
  --black: #05070a;
  --black-soft: #090d12;
  --surface: #0c1118;
  --surface-2: #101721;
  --line: rgba(159, 190, 226, .16);
  --line-strong: rgba(87, 173, 255, .38);
  --white: #f5f8fc;
  --text: #d9e1eb;
  --muted: #8e9bab;
  --blue: #118dff;
  --blue-bright: #4bb0ff;
  --blue-deep: #063b70;
  --shell: 1240px;
  --radius: 22px;
  --font: Inter, "Segoe UI", Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; width: 100%; max-width: 100%; }
::selection { color: #fff; background: var(--blue-deep); }
:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 4px; }

.shell { width: min(var(--shell), calc(100% - 64px)); margin-inline: auto; }
.section { padding: 132px 0; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 16px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.kicker {
  margin: 0 0 24px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.section-intro { max-width: 1000px; margin-bottom: 62px; }
.section-intro h2,
.story-title h2,
.mentor h2,
.business h2,
.process h2,
.faq h2,
.contact h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5.1vw, 72px);
  font-weight: 720;
  letter-spacing: -.055em;
  line-height: .99;
  text-wrap: balance;
}
.section-intro h2 span,
.story-title h2 span,
.business h2 span,
.process h2 span,
.contact h2 span { color: var(--blue-bright); }

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 55px rgba(17, 141, 255, .23);
}
.button-blue:hover { background: #2799ff; box-shadow: 0 22px 65px rgba(17, 141, 255, .32); }
.button-dark { border-color: var(--line); background: rgba(255,255,255,.035); }
.button-dark:hover { border-color: var(--line-strong); background: rgba(17,141,255,.08); }
.button-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dfe7f1;
  font-size: 14px;
  font-weight: 650;
}
.button-link span { color: var(--blue-bright); transition: transform .2s ease; }
.button-link:hover span { transform: translate(3px, -3px); }

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 7, 10, .83);
  backdrop-filter: blur(18px);
}
.header-row { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--white); }
.brand-sign { display: flex; width: 38px; height: 38px; align-items: flex-end; justify-content: center; gap: 4px; padding: 9px 8px; border: 1px solid var(--line-strong); border-radius: 9px; background: rgba(17,141,255,.06); }
.brand-sign i { display: block; width: 3px; border-radius: 5px; background: var(--blue-bright); box-shadow: 0 0 10px rgba(75,176,255,.55); }
.brand-sign i:nth-child(1) { height: 9px; }
.brand-sign i:nth-child(2) { height: 18px; }
.brand-sign i:nth-child(3) { height: 13px; }
.brand-name { font-size: 12px; font-weight: 800; letter-spacing: .045em; white-space: nowrap; }
.brand-name span { color: var(--blue-bright); }
.desktop-nav { display: flex; align-items: center; gap: 28px; color: #aab6c5; font-size: 13px; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: white; }
.header-cta { padding: 10px 0; border-bottom: 1px solid var(--blue); color: white; font-size: 13px; font-weight: 700; }
.menu-toggle, .mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 126px 0 42px;
  background: var(--black);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 79% 33%, rgba(17,141,255,.23), transparent 33%),
    radial-gradient(circle at 16% 10%, rgba(17,141,255,.09), transparent 24%);
}
.hero-layout {
  position: relative;
  display: grid;
  min-height: calc(100svh - 215px);
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: clamp(45px, 6vw, 100px);
}
.hero-copy { position: relative; z-index: 2; padding: 35px 0; }
.hero-kicker { opacity: 0; animation: heroUp .75s .08s forwards ease-out; }
.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 6.1vw, 94px);
  font-weight: 760;
  letter-spacing: -.075em;
  line-height: .9;
  text-wrap: balance;
  opacity: 0;
  animation: heroUp .85s .17s forwards ease-out;
}
.hero h1 span { color: var(--blue-bright); }
.hero-lead {
  max-width: 680px;
  margin: 33px 0 0;
  color: #bcc7d5;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.58;
  opacity: 0;
  animation: heroUp .8s .3s forwards ease-out;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; opacity: 0; animation: heroUp .8s .4s forwards ease-out; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 54px 0 0; padding: 0; list-style: none; opacity: 0; animation: heroUp .8s .52s forwards ease-out; }
.hero-points li { position: relative; padding-left: 16px; color: #8795a7; font-size: 12px; font-weight: 650; }
.hero-points li::before { position: absolute; top: .62em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px var(--blue); content: ""; }
.hero-photo-wrap { position: relative; opacity: 0; animation: heroPhoto 1s .22s forwards ease-out; }
.hero-photo { position: relative; height: min(64svh, 680px); min-height: 470px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px 28px 5px 28px; background: var(--surface); box-shadow: 0 35px 100px rgba(0,0,0,.5); }
.hero-photo::before { position: absolute; z-index: 1; inset: 0; background: linear-gradient(100deg, rgba(5,7,10,.42), transparent 38%), linear-gradient(0deg, rgba(5,7,10,.52), transparent 35%); content: ""; }
.hero-photo::after { position: absolute; z-index: 2; top: 25px; right: 25px; width: 65px; height: 1px; background: var(--blue-bright); box-shadow: 0 0 14px var(--blue); content: ""; }
.hero-photo img { height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(.82) contrast(1.08); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.hero-photo-wrap:hover img { transform: scale(1.035); }
.hero-note { position: absolute; z-index: 3; right: -24px; bottom: 34px; display: flex; width: min(310px, 76%); align-items: center; gap: 18px; padding: 19px 22px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(5,7,10,.88); backdrop-filter: blur(16px); }
.hero-note span { color: var(--blue-bright); font-size: 12px; font-weight: 800; }
.hero-note p { margin: 0; color: #c5d0dd; font-size: 12px; line-height: 1.55; }
.hero-footer { position: relative; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 30px; margin-top: 28px; color: #647386; font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; opacity: 0; animation: heroUp .7s .65s forwards ease-out; }
.hero-line { height: 1px; background: linear-gradient(90deg, var(--blue), var(--line)); }
.hero-footer p { margin: 0; }
.hero-footer b, .hero-footer a span { color: var(--blue-bright); }
.hero-footer a { white-space: nowrap; }

/* Ticker */
.ticker { overflow: hidden; border-block: 1px solid var(--line); background: #070a0e; }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 28px; padding: 17px 0; color: #5e6c7c; animation: ticker 28s linear infinite; }
.ticker-track span { font-size: 11px; font-weight: 800; letter-spacing: .2em; }
.ticker-track i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px rgba(17,141,255,.65); }

/* Audience */
.audience { position: relative; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience-card { position: relative; min-height: 320px; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.012)); transition: transform .35s ease, border-color .35s ease, background .35s ease; }
.audience-card::after { position: absolute; right: -80px; bottom: -110px; width: 210px; height: 210px; border: 1px solid rgba(75,176,255,.12); border-radius: 50%; content: ""; transition: transform .5s ease; }
.audience-card:hover { transform: translateY(-8px); border-color: var(--line-strong); background: linear-gradient(145deg, rgba(17,141,255,.075), rgba(255,255,255,.012)); }
.audience-card:hover::after { transform: scale(1.2); }
.audience-card-accent { background: linear-gradient(145deg, rgba(17,141,255,.18), rgba(8,21,35,.35)); border-color: rgba(75,176,255,.35); }
.card-number { display: block; margin-bottom: 92px; color: var(--blue-bright); font-size: 12px; font-weight: 800; }
.audience-card h3 { max-width: 300px; margin: 0 0 14px; color: var(--white); font-size: 25px; letter-spacing: -.035em; line-height: 1.08; }
.audience-card p { max-width: 340px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Results story */
.story { padding-top: 70px; background: linear-gradient(180deg, transparent, rgba(17,141,255,.045) 45%, transparent); }
.story-layout { display: grid; grid-template-columns: .76fr 1.24fr; align-items: start; gap: clamp(60px, 8vw, 130px); }
.story-title { position: sticky; top: 130px; }
.story-title > p:last-child { max-width: 470px; margin: 30px 0 0; color: var(--muted); font-size: 15px; }
.story-list { display: grid; gap: 75px; }
.story-step { display: grid; gap: 24px; }
.story-media { position: relative; height: 390px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.story-media::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,7,10,.55), transparent 45%); content: ""; }
.story-media img { height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.05); transition: transform .9s ease, filter .6s ease; }
.story-step:hover img { transform: scale(1.035); filter: saturate(.92) contrast(1.05); }
.story-text { display: grid; grid-template-columns: 44px 1fr; column-gap: 18px; }
.story-text > span { grid-row: 1 / span 2; padding-top: 6px; color: var(--blue-bright); font-size: 12px; font-weight: 800; }
.story-text h3 { max-width: 650px; margin: 0 0 11px; color: var(--white); font-size: clamp(24px, 2.55vw, 36px); letter-spacing: -.045em; line-height: 1.08; }
.story-text p { max-width: 700px; margin: 0; color: var(--muted); font-size: 14px; }
.story-summary { padding: 36px; border: 1px solid var(--line-strong); border-radius: 22px; background: linear-gradient(140deg, rgba(17,141,255,.13), rgba(10,15,22,.7)); }
.story-summary > p { margin: 0 0 22px; color: var(--white); font-size: 23px; font-weight: 700; letter-spacing: -.03em; }
.story-summary ol { display: grid; margin: 0; padding: 0; list-style: none; }
.story-summary li { display: grid; grid-template-columns: 45px 1fr; gap: 12px; padding: 15px 0; border-top: 1px solid var(--line); color: #bec9d6; font-size: 14px; }
.story-summary li span { color: var(--blue-bright); font-size: 11px; font-weight: 800; }

/* Mentor */
.mentor { padding-top: 40px; }
.mentor-panel { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 42px 80px; overflow: hidden; padding: 64px; border: 1px solid var(--line-strong); border-radius: 30px; background: linear-gradient(130deg, rgba(17,141,255,.2), rgba(8,13,20,.78) 45%, rgba(5,7,10,.9)); }
.mentor-panel::after { position: absolute; top: -200px; right: -140px; width: 480px; height: 480px; border-radius: 50%; background: rgba(17,141,255,.13); filter: blur(85px); content: ""; }
.mentor-heading, .mentor-copy, .mentor-tags { position: relative; z-index: 1; }
.mentor-heading h2 { font-size: clamp(45px, 5.2vw, 72px); }
.mentor-heading > span { display: block; margin-top: 14px; color: #9eb0c4; font-size: 14px; }
.mentor-copy { align-self: end; }
.mentor-quote { margin: 0 0 22px; color: var(--white); font-size: clamp(20px, 2.15vw, 29px); font-weight: 600; letter-spacing: -.03em; line-height: 1.35; }
.mentor-copy > p:last-child { max-width: 680px; margin: 0; color: #94a3b6; font-size: 14px; }
.mentor-tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; padding-top: 28px; border-top: 1px solid var(--line); }
.mentor-tags span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(0,0,0,.15); color: #bdc8d5; font-size: 12px; }

/* Courses */
.courses { padding-top: 105px; }
.courses-intro { margin-bottom: 70px; }
.course-stack { display: grid; gap: 18px; }
.course-card { display: grid; grid-template-columns: .75fr 1.25fr .66fr; align-items: stretch; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); transition: border-color .3s ease, transform .3s ease; }
.course-card:hover { transform: translateY(-4px); border-color: rgba(75,176,255,.3); }
.course-card-premium { border-color: rgba(75,176,255,.52); background: linear-gradient(135deg, rgba(17,141,255,.14), var(--surface) 38%); }
.course-name, .course-body, .course-action { padding: 38px; }
.course-name { border-right: 1px solid var(--line); }
.course-number { display: inline-grid; width: 36px; height: 36px; place-items: center; margin-bottom: 42px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--blue-bright); font-size: 11px; font-weight: 800; }
.course-name > p { margin: 0 0 5px; color: var(--muted); font-size: 12px; }
.course-name h3 { margin: 0; color: var(--white); font-size: clamp(42px, 4.5vw, 62px); font-weight: 730; letter-spacing: -.06em; line-height: 1; }
.course-name > strong { display: block; max-width: 260px; margin-top: 15px; color: #b5c2d1; font-size: 14px; line-height: 1.45; }
.course-body { border-right: 1px solid var(--line); }
.course-for { margin: 0 0 22px; color: #9caabb; font-size: 14px; }
.course-for b { color: var(--white); }
.course-body ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.course-body li { position: relative; padding: 12px 0 12px 22px; border-top: 1px solid var(--line); color: #c1cbd7; font-size: 13px; }
.course-body li::before { position: absolute; top: 20px; left: 2px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px rgba(17,141,255,.6); content: ""; }
.course-honest, .course-bonus { margin: 20px 0 0; padding: 15px 17px; border-radius: 12px; background: rgba(255,255,255,.035); color: #8e9cac; font-size: 12px; line-height: 1.6; }
.course-bonus { border: 1px solid rgba(75,176,255,.18); background: rgba(17,141,255,.055); }
.course-bonus b { color: #cce5ff; }
.course-action { display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.price { display: grid; gap: 7px; }
.price span { color: var(--muted); font-size: 11px; }
.price strong { color: var(--white); font-size: clamp(30px, 3vw, 42px); letter-spacing: -.05em; white-space: nowrap; }
.course-action > .button { width: 100%; }
.premium-action { padding: 0; gap: 0; }
.premium-price { display: flex; min-height: 50%; flex-direction: column; justify-content: center; padding: 28px; }
.premium-price + .premium-price { border-top: 1px solid var(--line); }
.premium-price-main { background: rgba(17,141,255,.1); }
.premium-price span { color: var(--muted); font-size: 11px; }
.premium-price strong { margin: 7px 0 15px; color: var(--white); font-size: 28px; letter-spacing: -.045em; white-space: nowrap; }
.select-text { width: max-content; padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--blue); background: transparent; color: #c8e5ff; cursor: pointer; font-size: 12px; font-weight: 700; }
.courses-note { margin: 35px 0 0; color: var(--muted); text-align: center; font-size: 14px; }
.courses-note a { color: var(--white); border-bottom: 1px solid var(--blue); }

/* Business */
.business { padding-top: 35px; padding-bottom: 95px; }
.business-panel { position: relative; display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 42px; overflow: hidden; padding: 54px; border: 1px solid var(--line-strong); border-radius: 26px; background: radial-gradient(circle at 15% 100%, rgba(17,141,255,.28), transparent 35%), var(--surface); }
.business-panel::before { position: absolute; top: -80px; left: 85px; color: rgba(75,176,255,.045); content: "B2B"; font-size: 230px; font-weight: 900; line-height: 1; }
.business-label, .business-copy, .business-panel .button { position: relative; z-index: 1; }
.business-label { color: var(--blue-bright); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.business-copy h2 { font-size: clamp(35px, 3.8vw, 54px); }
.business-copy p { max-width: 700px; margin: 20px 0 0; color: var(--muted); font-size: 14px; }
.business-panel .button { max-width: 245px; text-align: center; }

/* Process */
.process { border-block: 1px solid var(--line); background: #070a0f; }
.process-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; }
.process-heading { position: sticky; top: 130px; align-self: start; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 34px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list > li > span { padding-top: 5px; color: var(--blue-bright); font-size: 12px; font-weight: 800; }
.process-list h3 { margin: 0 0 8px; color: var(--white); font-size: 24px; letter-spacing: -.035em; }
.process-list p { max-width: 670px; margin: 0; color: var(--muted); font-size: 14px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: 90px; }
.faq-heading { position: sticky; top: 130px; }
.faq-heading > p:last-child { margin: 22px 0 0; color: var(--muted); font-size: 14px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; color: var(--white); font-size: 19px; font-weight: 650; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; transition: border-color .25s ease, transform .25s ease; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; background: var(--blue-bright); content: ""; transform: translate(-50%, -50%); }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span { border-color: var(--blue); transform: rotate(45deg); }
.faq-list details p { max-width: 780px; margin: -2px 60px 26px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* Contact */
.contact { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: #070b11; }
.contact-glow { position: absolute; top: 0; left: 0; width: 55vw; height: 100%; background: radial-gradient(circle at 20% 50%, rgba(17,141,255,.22), transparent 57%); pointer-events: none; }
.contact-layout { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: start; gap: clamp(55px, 8vw, 125px); }
.contact-copy > p:not(.kicker) { max-width: 520px; margin: 27px 0 0; color: #9cabbc; font-size: 15px; }
.direct-contacts { display: grid; max-width: 520px; margin-top: 40px; border-top: 1px solid var(--line); }
.direct-contacts a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); transition: color .2s ease, padding .2s ease; }
.direct-contacts a:hover { padding-left: 8px; color: var(--blue-bright); }
.direct-contacts small { color: var(--muted); font-size: 11px; }
.direct-contacts strong { font-size: 14px; }
.lead-form { display: grid; gap: 20px; padding: 34px; border: 1px solid var(--line-strong); border-radius: 22px; background: rgba(9,14,21,.88); box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.field-row { display: grid; gap: 8px; }
.field-row label { color: #d2dbe6; font-size: 12px; font-weight: 650; }
.field-row input, .field-row select, .field-row textarea, .form-result textarea { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; outline: none; background: #070a0f; color: var(--white); font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.field-row textarea, .form-result textarea { min-height: 116px; resize: vertical; }
.field-row input:focus, .field-row select:focus, .field-row textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(17,141,255,.12); }
.field-row select:invalid { color: var(--muted); }
.form-submit { width: 100%; }
.form-note { margin: -5px 0 0; color: #68778a; font-size: 10px; line-height: 1.55; }
.form-result { display: grid; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.form-result[hidden] { display: none; }
.form-result p { margin: 0; color: #b7c4d3; font-size: 12px; }
.result-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Footer */
.site-footer { padding: 38px 0 28px; border-top: 1px solid var(--line); background: #030507; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.footer-up { color: #a8b6c7; font-size: 12px; font-weight: 700; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr 1.6fr auto; align-items: start; gap: 30px; padding-top: 27px; }
.footer-bottom p { margin: 0; color: #718094; font-size: 10px; line-height: 1.75; }
.footer-bottom b, .footer-bottom a { color: #aebaca; }
.footer-note { max-width: 430px; }
.copyright { white-space: nowrap; text-align: right; }
.mobile-action { display: none; }

/* Scroll animation */
.motion [data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.motion [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.motion .reveal-delay-1 { transition-delay: .05s; }
.motion .reveal-delay-2 { transition-delay: .13s; }
.motion .reveal-delay-3 { transition-delay: .21s; }

@keyframes heroUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroPhoto { from { opacity: 0; transform: translateX(50px) scale(.97); } to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 1080px) {
  .shell { width: min(var(--shell), calc(100% - 42px)); }
  .desktop-nav { display: none; }
  .hero-layout { grid-template-columns: 1.08fr .92fr; gap: 35px; }
  .hero h1 { font-size: clamp(56px, 8vw, 82px); }
  .hero-photo { min-height: 420px; }
  .audience-card { padding: 28px; }
  .course-card { grid-template-columns: .75fr 1.25fr; }
  .course-action { grid-column: 1 / -1; flex-direction: row; align-items: center; border-top: 1px solid var(--line); }
  .course-action > .button { width: auto; min-width: 240px; }
  .premium-action { display: grid; grid-template-columns: 1fr 1fr; }
  .premium-price { min-height: 0; }
  .premium-price + .premium-price { border-top: 0; border-left: 1px solid var(--line); }
  .business-panel { grid-template-columns: 110px 1fr; }
  .business-panel .button { grid-column: 2; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .copyright { text-align: left; }
}

@media (max-width: 820px) {
  .section { padding: 96px 0; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; width: 43px; height: 43px; place-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); cursor: pointer; }
  .menu-toggle span { display: block; width: 19px; height: 1px; background: white; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav:not([hidden]) { display: grid; padding: 6px 21px 18px; border-top: 1px solid var(--line); background: rgba(5,7,10,.97); }
  .mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); color: #c5d0dd; font-size: 13px; }
  .hero { min-height: auto; padding-top: 112px; }
  .hero-layout { min-height: 0; grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { padding-bottom: 0; }
  .hero h1 { max-width: 720px; font-size: clamp(54px, 11vw, 78px); }
  .hero-lead { max-width: 650px; }
  .hero-photo { height: 500px; min-height: 0; }
  .hero-note { right: 18px; }
  .hero-footer { margin-top: 50px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 265px; }
  .card-number { margin-bottom: 55px; }
  .story-layout, .process-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .story-title, .process-heading, .faq-heading { position: static; }
  .story-title > p:last-child { max-width: 650px; }
  .story-list { gap: 55px; }
  .mentor-panel { grid-template-columns: 1fr; padding: 45px; }
  .mentor-tags { grid-column: auto; }
  .business-panel { grid-template-columns: 1fr; padding: 42px; }
  .business-panel .button { grid-column: auto; }
  .business-label { margin-bottom: 15px; }
  .contact-copy > p:not(.kicker), .direct-contacts { max-width: none; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 34px, var(--shell)); }
  .section { padding: 78px 0; }
  body { font-size: 15px; padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  body::before { background-size: 48px 48px; }
  .header-row { min-height: 68px; }
  .brand { gap: 9px; }
  .brand-sign { width: 34px; height: 34px; padding: 8px 7px; }
  .brand-name { max-width: 218px; overflow: hidden; font-size: 10px; text-overflow: ellipsis; }
  .kicker { margin-bottom: 17px; font-size: 10px; letter-spacing: .075em; }
  .section-intro { margin-bottom: 38px; }
  .section-intro h2, .story-title h2, .business h2, .process h2, .faq h2, .contact h2 { font-size: clamp(38px, 11.5vw, 52px); line-height: 1.01; }
  .button { min-height: 55px; }

  .hero { padding: 104px 0 30px; }
  .hero-backdrop { background: radial-gradient(circle at 80% 40%, rgba(17,141,255,.18), transparent 36%); }
  .hero-layout { gap: 40px; }
  .hero-copy { padding-top: 12px; }
  .hero h1 { font-size: clamp(43px, 12.2vw, 58px); line-height: .93; }
  .hero-lead { margin-top: 25px; font-size: 16px; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 19px; margin-top: 29px; }
  .hero-actions .button { width: 100%; }
  .button-link { justify-content: center; }
  .hero-points { display: grid; gap: 10px; margin-top: 34px; }
  .hero-photo { height: 360px; border-radius: 20px 20px 4px 20px; }
  .hero-photo img { object-position: 57% center; }
  .hero-note { right: 12px; bottom: 14px; width: calc(100% - 24px); padding: 15px 17px; }
  .hero-footer { display: none; }
  .ticker-track { gap: 20px; padding: 14px 0; }
  .ticker-track span { font-size: 9px; }

  .audience-card { min-height: 250px; padding: 25px; border-radius: 17px; }
  .audience-card h3 { font-size: 23px; }
  .card-number { margin-bottom: 45px; }
  .story { padding-top: 35px; }
  .story-title > p:last-child { margin-top: 22px; }
  .story-list { gap: 46px; }
  .story-media { height: 245px; border-radius: 16px; }
  .story-text { grid-template-columns: 34px 1fr; column-gap: 10px; }
  .story-text h3 { font-size: 25px; }
  .story-summary { padding: 25px 21px; border-radius: 17px; }
  .story-summary > p { font-size: 20px; }
  .story-summary li { grid-template-columns: 34px 1fr; font-size: 13px; }

  .mentor { padding-top: 20px; }
  .mentor-panel { gap: 30px; padding: 29px 23px; border-radius: 19px; }
  .mentor-heading h2 { font-size: 45px; }
  .mentor-quote { font-size: 20px; }
  .mentor-tags { display: grid; padding-top: 23px; }
  .mentor-tags span { width: max-content; max-width: 100%; }

  .courses { padding-top: 75px; }
  .courses-intro { margin-bottom: 42px; }
  .course-card { display: block; border-radius: 18px; }
  .course-name, .course-body, .course-action { padding: 27px 23px; }
  .course-name { border-right: 0; border-bottom: 1px solid var(--line); }
  .course-number { margin-bottom: 30px; }
  .course-name h3 { font-size: 50px; }
  .course-body { border-right: 0; border-bottom: 1px solid var(--line); }
  .course-action { display: grid; }
  .course-action > .button { width: 100%; min-width: 0; }
  .premium-action { display: grid; padding: 0; }
  .premium-price { padding: 27px 23px; }
  .premium-price + .premium-price { border-top: 1px solid var(--line); border-left: 0; }
  .premium-price strong { font-size: 30px; }
  .courses-note { margin-top: 27px; text-align: left; }

  .business { padding-top: 12px; padding-bottom: 72px; }
  .business-panel { gap: 14px; padding: 29px 23px; border-radius: 18px; }
  .business-panel::before { top: -20px; left: -15px; font-size: 140px; }
  .business-copy p { margin-top: 17px; }
  .business-panel .button { width: 100%; max-width: none; margin-top: 14px; }

  .process-list li { grid-template-columns: 38px 1fr; gap: 10px; padding: 27px 0; }
  .process-list h3 { font-size: 21px; }
  .faq-layout { gap: 36px; }
  .faq-list summary { min-height: 76px; font-size: 16px; line-height: 1.3; }
  .faq-list summary span { width: 30px; height: 30px; }
  .faq-list details p { margin-right: 0; }

  .contact-layout { gap: 42px; }
  .direct-contacts { margin-top: 30px; }
  .direct-contacts a { align-items: flex-start; flex-direction: column; gap: 3px; }
  .lead-form { gap: 18px; padding: 23px 18px; border-radius: 17px; }
  .result-actions { grid-template-columns: 1fr; }

  .site-footer { padding: 31px 0 24px; }
  .footer-main { align-items: flex-start; flex-direction: column; }
  .footer-bottom { grid-template-columns: 1fr; gap: 17px; }
  .copyright { text-align: left; }
  .mobile-action { position: fixed; z-index: 45; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 12px; display: flex; min-height: 52px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.15); border-radius: 11px; background: rgba(17,141,255,.94); box-shadow: 0 18px 50px rgba(0,0,0,.55); color: white; font-size: 13px; font-weight: 800; backdrop-filter: blur(16px); transition: opacity .25s ease, transform .25s ease; }
  .mobile-action.is-hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion [data-reveal] { opacity: 1; transform: none; }
}
