:root {
  color-scheme: dark;
  --bg: #06070a;
  --bg-soft: #0c1018;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f7f8fb;
  --muted: rgba(247, 248, 251, 0.72);
  --faint: rgba(247, 248, 251, 0.48);
  --yellow: #ffd21f;
  --yellow-strong: #ffb800;
  --violet: #8f4dff;
  --cyan: #22b8f0;
  --green: #33d69f;
  --danger: #ff5454;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.52);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 210, 31, 0.16), transparent 24rem),
    radial-gradient(circle at 15% 4%, rgba(34, 184, 240, 0.14), transparent 27rem),
    linear-gradient(180deg, #06070a 0%, #0a0c12 46%, #07080b 100%);
  color: var(--text);
  font-family: "Outfit", "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 7, 10, 0.78);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name strong {
  font-size: 1.08rem;
  line-height: 1;
}

.brand-name span {
  color: var(--faint);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #090a0d;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(255, 184, 0, 0.2);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(255, 184, 0, 0.28);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-label--mobile {
  display: none;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 58px;
  border-bottom: 1px solid var(--line-soft);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  background:
    linear-gradient(90deg, transparent 0 2%, #f3f1ec 2% 4%, transparent 4% 7%, #f3f1ec 7% 11%, transparent 11% 13%, #f3f1ec 13% 85%, transparent 85% 88%, #f3f1ec 88% 93%, transparent 93% 100%);
  opacity: 0.92;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 210, 31, 0.34);
  border-radius: var(--radius);
  color: #0b0b0c;
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 6.9rem);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}

h1 span {
  color: var(--yellow);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 670px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--line-soft);
}

.proof-item {
  min-height: 82px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.proof-item span {
  display: block;
  color: var(--faint);
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.halo {
  position: absolute;
  width: 182px;
  height: 182px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 184, 240, 0.55), rgba(34, 184, 240, 0.12) 56%, transparent 70%);
  filter: blur(1px);
  right: 18%;
  top: 0;
}

.telegram-orb {
  position: absolute;
  top: 28px;
  right: 21%;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 10px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: linear-gradient(135deg, #35c9ff, #168ad4);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.telegram-orb svg {
  width: 58px;
  height: 58px;
  color: #fff;
}

.course-phone {
  position: absolute;
  right: 0;
  top: 164px;
  width: min(360px, 76vw);
  min-height: 536px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 18%),
    rgba(11, 15, 22, 0.92);
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 496px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.screen-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.lock-badge,
.file-lock {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--yellow);
  background: rgba(255, 210, 31, 0.1);
  border: 1px solid rgba(255, 210, 31, 0.22);
}

.screen-title strong,
.screen-title span {
  display: block;
}

.screen-title strong {
  font-size: 1rem;
}

.screen-title span {
  margin-top: 4px;
  color: var(--faint);
  font-size: 0.82rem;
}

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

.file-row {
  display: grid;
  grid-template-columns: 44px 1fr 34px;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}

.file-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.file-icon.video {
  background: linear-gradient(135deg, #4776ff, #8f4dff);
}

.file-icon.pdf {
  background: linear-gradient(135deg, #ff5454, #ff9e54);
}

.file-icon.zip {
  background: linear-gradient(135deg, #ffc247, #b87718);
}

.file-icon.audio {
  background: linear-gradient(135deg, #22d3ee, #16a085);
}

.file-text strong,
.file-text span {
  display: block;
}

.file-text {
  min-width: 0;
}

.file-text strong {
  margin-bottom: 4px;
  font-size: 0.9rem;
  line-height: 1.25;
}

.file-text span {
  color: var(--faint);
  font-size: 0.78rem;
}

.pain-card {
  position: absolute;
  left: 0;
  top: 245px;
  width: min(330px, 70vw);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(10, 12, 16, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.pain-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.44;
}

.solution-strip {
  position: absolute;
  left: 28px;
  right: 44px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  color: #111318;
  background: #f5f3ee;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
}

.solution-strip strong,
.solution-strip span {
  display: block;
}

.solution-strip strong {
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.solution-strip span {
  color: rgba(17, 19, 24, 0.66);
  font-size: 0.86rem;
  line-height: 1.3;
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding-top: 62px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.42fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.kicker {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.5fr);
  gap: 28px;
  align-items: start;
}

.story-card,
.side-card,
.step-card,
.faq-item,
.cta-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.story-card {
  padding: clamp(24px, 4vw, 44px);
}

.story-card + .story-card {
  margin-top: 18px;
}

.story-card h3 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.story-card p,
.story-card li {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.story-card ul,
.story-card ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.story-card mark {
  padding: 0 0.16em;
  color: #0b0b0c;
  background: var(--yellow);
}

.side-stack {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}

.side-card {
  padding: 22px;
}

.side-card h3 {
  margin-bottom: 16px;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 0 4px rgba(51, 214, 159, 0.1);
}

.mini-cta {
  display: grid;
  gap: 14px;
}

.mini-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
}

.step-card::after {
  content: attr(data-step);
  position: absolute;
  right: 16px;
  bottom: -20px;
  color: rgba(255, 255, 255, 0.05);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--yellow);
  background: rgba(255, 210, 31, 0.1);
  border: 1px solid rgba(255, 210, 31, 0.2);
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.faq-item {
  padding: 24px;
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
}

.cta-panel h2 {
  max-width: 720px;
  margin-bottom: 16px;
}

.cta-panel p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.cta-actions {
  display: grid;
  gap: 12px;
  min-width: 250px;
}

.footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line-soft);
  color: var(--faint);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 28px, 760px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .story,
  .section-head,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 590px;
  }

  .course-phone {
    right: 0;
  }

  .pain-card {
    top: 218px;
  }

  .side-stack {
    position: static;
  }

  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(100vw - 28px, 540px);
  }

  .nav {
    min-height: 64px;
    gap: 12px;
  }

  .page-header .container {
    width: min(100vw - 20px, 540px);
  }

  .page-header .btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 12px;
    gap: 7px;
    border-radius: 8px;
    font-size: 0.82rem;
    box-shadow: 0 8px 22px rgba(255, 184, 0, 0.18);
  }

  .page-header .btn svg {
    width: 16px;
    height: 16px;
  }

  .btn-label--desktop {
    display: none;
  }

  .btn-label--mobile {
    display: inline;
  }

  .brand-name span {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-name strong {
    font-size: 1rem;
  }

  .hero {
    padding: 28px 0 42px;
  }

  .hero-grid {
    gap: 26px;
  }

  .eyebrow {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 10px 12px;
    font-size: 0.66rem;
    line-height: 1.28;
    letter-spacing: 0.05em;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 11.8vw, 3.24rem);
    line-height: 0.94;
  }

  h1 span {
    display: block;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 1.04rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: none;
  }

  .proof-row {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }

  .proof-item {
    min-height: 0;
    padding: 15px 16px;
  }

  .proof-item strong {
    margin-bottom: 4px;
    font-size: 1.04rem;
  }

  .proof-item span {
    font-size: 0.92rem;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 4px;
    overflow: hidden;
  }

  .telegram-orb {
    top: 0;
    right: 6px;
    width: 76px;
    height: 76px;
    border-width: 7px;
  }

  .telegram-orb svg {
    width: 36px;
    height: 36px;
  }

  .halo {
    top: -32px;
    right: -8px;
    width: 150px;
    height: 150px;
  }

  .course-phone {
    top: 56px;
    right: 0;
    width: min(318px, calc(100vw - 52px));
    min-height: 388px;
    padding: 12px;
    border-radius: 30px;
  }

  .phone-screen {
    min-height: 362px;
    padding: 14px;
    border-radius: 22px;
  }

  .screen-title {
    gap: 10px;
    margin-bottom: 12px;
  }

  .lock-badge,
  .file-lock {
    width: 32px;
    height: 32px;
  }

  .screen-title strong {
    font-size: 0.88rem;
  }

  .screen-title span {
    font-size: 0.74rem;
  }

  .file-list {
    gap: 4px;
    overflow: hidden;
  }

  .file-row {
    grid-template-columns: 32px minmax(0, 1fr) 26px;
    gap: 8px;
    padding: 9px 0;
    overflow: hidden;
  }

  .file-icon {
    width: 32px;
    height: 32px;
    font-size: 0.62rem;
  }

  .file-lock svg {
    width: 15px;
    height: 15px;
  }

  .file-text strong {
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .file-text span {
    font-size: 0.7rem;
  }

  .pain-card {
    left: 0;
    top: 92px;
    width: min(220px, 62vw);
    padding: 13px;
  }

  .pain-card strong {
    margin-bottom: 6px;
    font-size: 0.72rem;
  }

  .pain-card p {
    font-size: 0.86rem;
    line-height: 1.36;
  }

  .solution-strip {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .solution-strip strong {
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .solution-strip span {
    font-size: 0.72rem;
    line-height: 1.24;
  }

  .section {
    padding: 54px 0;
  }

  .section.compact {
    padding-top: 48px;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 22px;
  }

  .kicker {
    margin-bottom: 10px;
    font-size: 0.68rem;
    line-height: 1.28;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.58rem);
    line-height: 1.02;
  }

  .section-note,
  .story-card p,
  .story-card li,
  .faq-item p,
  .cta-panel p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .story-card,
  .side-card,
  .step-card,
  .faq-item {
    padding: 18px;
  }

  .story-card h3 {
    font-size: 1.32rem;
    line-height: 1.18;
  }

  .story-card + .story-card {
    margin-top: 14px;
  }

  .side-stack,
  .steps,
  .faq-grid {
    gap: 12px;
  }

  .step-card {
    min-height: 0;
  }

  .step-card::after {
    right: 10px;
    bottom: -14px;
    font-size: 5.4rem;
  }

  .cta-panel {
    gap: 20px;
    padding: 22px 18px;
  }

  .cta-panel .btn,
  .cta-panel .btn-secondary {
    width: 100%;
    min-height: 52px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-sticky {
    display: block;
  }

  .mobile-sticky .btn {
    width: 100%;
    min-height: 56px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100vw - 22px, 540px);
  }

  h1 {
    font-size: clamp(2.34rem, 11.4vw, 2.72rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .course-phone {
    width: min(300px, calc(100vw - 42px));
  }

  .pain-card {
    width: min(204px, 60vw);
  }

  .solution-strip {
    grid-template-columns: 1fr;
  }
}
