:root {
  --bg: #07080a;
  --bg-soft: #0c0e12;
  --surface: #0e1116;
  --surface-2: #11151b;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #f3f5f9;
  --text-soft: #c8cdd6;
  --muted: #7a8290;
  --orange: #ff8a3d;
  --orange-bright: #ffa766;
  --orange-deep: #ff6a1a;
  --content: 1080px;
  --gutter: clamp(20px, 5vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Матовое зерно поверх всего фона */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* Глобальное оранжевое свечение — большая «лампа» сверху страницы */
body::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1100px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 50% 0%, rgba(255, 138, 61, 0.55), transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 106, 26, 0.28), transparent 65%),
    radial-gradient(ellipse 120% 60% at 50% 8%, rgba(255, 138, 61, 0.12), transparent 70%);
  filter: blur(4px);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 2;
}

::selection {
  background: rgba(255, 138, 61, 0.32);
  color: #fff;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.accent {
  color: var(--orange);
  text-shadow: 0 0 32px rgba(255, 138, 61, 0.45);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 16px var(--gutter);
  background: rgba(7, 8, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange-deep), var(--orange-bright));
  position: relative;
  box-shadow: 0 0 24px rgba(255, 138, 61, 0.55);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: #1a0d05;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.4), 0 12px 30px rgba(255, 138, 61, 0.25);
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.primary {
  color: #1a0d05;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.35), 0 14px 40px rgba(255, 138, 61, 0.3);
}

.button.primary:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--gutter) clamp(60px, 8vw, 120px);
  text-align: center;
}

.hero-glow {
  display: none;
}

.hero-inner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  margin-bottom: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 61, 0.32);
  background: rgba(255, 138, 61, 0.08);
  color: var(--orange-bright);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero-lead {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 8px 14px;
  color: var(--text-soft);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.hero-meta strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-meta-final {
  color: var(--orange-bright);
  text-shadow: 0 0 22px rgba(255, 138, 61, 0.55);
}

.hero-meta del {
  color: #6e7787;
  text-decoration-color: rgba(255, 36, 81, 0.85);
  text-decoration-thickness: 2px;
  margin-right: 4px;
  font-weight: 500;
}

.hero-meta-sep {
  color: rgba(255, 138, 61, 0.6);
  font-size: 0.9rem;
}

.hero-media-wrap {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: clamp(60px, 8vw, 100px) auto 0;
  padding: 0 var(--gutter);
}

.hero-media-glow {
  position: absolute;
  inset: -12% -6% -12% -6%;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 138, 61, 0.28), transparent 65%);
  filter: blur(24px);
  pointer-events: none;
}

.video-frame {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #05070a;
  box-shadow:
    0 0 0 1px rgba(255, 138, 61, 0.1),
    0 60px 140px rgba(0, 0, 0, 0.65),
    0 0 100px rgba(255, 138, 61, 0.16);
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05070a;
  object-fit: cover;
  display: block;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 0;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.15), rgba(7, 8, 10, 0.55));
  color: #fff;
  cursor: pointer;
  font: inherit;
  transition: background 220ms ease, opacity 220ms ease;
  padding: 0;
}

.play-overlay:hover {
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.05), rgba(7, 8, 10, 0.45));
}

.play-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  position: relative;
  width: clamp(82px, 9vw, 120px);
  height: clamp(82px, 9vw, 120px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  box-shadow:
    0 0 0 8px rgba(255, 138, 61, 0.18),
    0 0 0 18px rgba(255, 138, 61, 0.08),
    0 30px 80px rgba(255, 138, 61, 0.45);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 56%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #1a0d05;
}

.play-overlay:hover .play-icon {
  transform: scale(1.05);
  box-shadow:
    0 0 0 10px rgba(255, 138, 61, 0.22),
    0 0 0 22px rgba(255, 138, 61, 0.1),
    0 36px 90px rgba(255, 138, 61, 0.55);
}

.play-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

/* ---------- Pain ---------- */

/* ---------- Connectors (handwritten arrows between sections) ---------- */

.hero-connector,
.section-connector {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 0 var(--gutter);
  text-align: center;
}

.hero-connector {
  margin: 12px auto 0;
}

.section-connector {
  margin: 0 auto;
}

/* убираем двойной воздух вокруг стрелок */
.section-connector + .section,
.hero-connector + .pain {
  padding-top: clamp(20px, 2.5vw, 40px);
}

.pain + .section-connector,
.section + .section-connector {
  margin-top: clamp(-40px, -3vw, -20px);
}

.pain {
  padding-bottom: clamp(20px, 2.5vw, 40px);
}

.section-connector.connector-large .connector-note {
  font-size: clamp(2.8rem, 4.6vw, 4rem);
}

.section-connector.connector-large .connector-arrow {
  width: clamp(130px, 14vw, 180px);
}

.connector-note {
  font-family: "Caveat", cursive;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 0 28px rgba(255, 138, 61, 0.55), 0 4px 18px rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
}

.connector-arrow {
  width: clamp(110px, 12vw, 160px);
  height: auto;
  margin-top: -4px;
  filter: drop-shadow(0 6px 22px rgba(255, 138, 61, 0.45));
}

/* ---------- Pain ---------- */

.pain {
  padding: clamp(8px, 1.5vw, 20px) 0 clamp(80px, 10vw, 140px);
}

.pain .container {
  max-width: 1200px;
}

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

.pain-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(255, 138, 61, 0.14), transparent 60%),
    var(--surface);
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease;
}

.pain-card:hover {
  border-color: rgba(255, 138, 61, 0.34);
  transform: translateY(-3px);
}

/* первая карточка — широкая, горизонтальная */
.pain-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, 320px) 1fr;
  background:
    radial-gradient(ellipse 60% 90% at 0% 50%, rgba(255, 138, 61, 0.16), transparent 65%),
    var(--surface);
}

/* 2 и 3 — компактные, вертикальные, в ряд */
.pain-card:nth-child(2),
.pain-card:nth-child(3) {
  grid-template-rows: auto 1fr;
  align-items: start;
}

.pain-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.pain-card:nth-child(2) .pain-art,
.pain-card:nth-child(3) .pain-art {
  max-width: 220px;
  margin: 0 auto;
}

.pain-art svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(255, 106, 26, 0.32));
}

.pain-text {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.pain-num {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pain-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pain-card:first-child h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  line-height: 1.15;
}

.pain-card p {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.2vw, 1.06rem);
  line-height: 1.65;
  max-width: 560px;
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(100px, 12vw, 180px) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(60px, 8vw, 100px);
  text-align: center;
}

.section-head.center {
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.section-lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Modules ---------- */

.program-section .container {
  max-width: 1200px;
}

.modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.module {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  align-items: stretch;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(36px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(255, 138, 61, 0.14), transparent 60%),
    var(--surface);
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease;
}

.module:hover {
  border-color: rgba(255, 138, 61, 0.32);
  transform: translateY(-3px);
}

.module-art {
  order: 0;
}

.module-body {
  order: 1;
}

.module-art {
  position: relative;
  width: 100%;
  align-self: center;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.module-art svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 22px 50px rgba(255, 106, 26, 0.32));
}

/* ---------- Module SVG animations ---------- */

.module-art svg [class^="m1-"],
.module-art svg [class^="m2-"],
.module-art svg [class^="m3-"],
.module-art svg [class^="m4-"],
.module-art svg [class^="m5-"] {
  transform-box: fill-box;
  transform-origin: center;
}

/* Module 1 — workflow: IDEA → AI → VIDEO (потоки данных) */
.m1-glow {
  animation: m1-glow-pulse 4s ease-in-out infinite;
  transform-origin: center;
}
.m1-core {
  animation: m1-core-pulse 2.4s ease-in-out infinite;
}
.m1-side-left {
  animation: m1-side-pulse 2.4s ease-in-out infinite;
  animation-delay: 0s;
}
.m1-side-right {
  animation: m1-side-pulse 2.4s ease-in-out infinite;
  animation-delay: 1.2s;
}
.m1-flow {
  animation: m1-flow-shift 1.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes m1-glow-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes m1-core-pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.1); filter: brightness(1.15); }
}
@keyframes m1-side-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.12); opacity: 1; }
}
@keyframes m1-flow-shift {
  0% { transform: translateX(-3px); opacity: 0.5; }
  50% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(3px); opacity: 0.5; }
}

/* Module 2 — мишень/контент-план: радар + точка попадания */
.m2-ring-outer { animation: m2-ring 3s ease-out infinite; }
.m2-ring-mid { animation: m2-ring 3s ease-out infinite; animation-delay: 1s; }
.m2-bullseye { animation: m2-bull 1.6s ease-in-out infinite; }
.m2-arrow-line,
.m2-arrow-tail { animation: m2-arrow 3.4s ease-in-out infinite; transform-origin: 52px 50px; }
.m2-dot-1 { animation: m2-dot-blink 2.6s ease-in-out infinite; }
.m2-dot-2 { animation: m2-dot-blink 2.6s ease-in-out infinite; animation-delay: 0.6s; }
.m2-dot-3 { animation: m2-dot-blink 2.6s ease-in-out infinite; animation-delay: 1.3s; }
@keyframes m2-ring {
  0% { transform: scale(0.5); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 0; }
}
@keyframes m2-bull {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
@keyframes m2-arrow {
  0%, 80%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  85% { transform: translate(64px, 64px) scale(0.6); opacity: 0; }
  86% { transform: translate(0, 0) scale(0.6); opacity: 0; }
  95% { transform: translate(0, 0) scale(1); opacity: 1; }
}
@keyframes m2-dot-blink {
  0%, 100% { opacity: 0.25; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Module 3 — тексты: typewriter + cursor + AI badge */
.m3-line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: m3-typewrite 7s ease-in-out infinite;
}
.m3-line-1 { animation-delay: 0s; }
.m3-line-2 { animation-delay: 1.1s; }
.m3-line-3 { animation-delay: 2.2s; }
.m3-line-4 { animation-delay: 3.3s; }
.m3-line-5 { animation-delay: 4.4s; }
.m3-cursor {
  animation: m3-cursor-move 7s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.m3-badge {
  animation: m3-badge-pulse 2.6s ease-in-out infinite;
}
@keyframes m3-typewrite {
  0% { stroke-dashoffset: 100; }
  10% { stroke-dashoffset: 0; }
  85% { stroke-dashoffset: 0; opacity: 1; }
  92% { opacity: 0; }
  100% { stroke-dashoffset: 100; opacity: 0; }
}
@keyframes m3-cursor-move {
  0% { transform: translate(-72px, -42px); }
  10% { transform: translate(0, -42px); }
  20% { transform: translate(-72px, -18px); }
  30% { transform: translate(-10px, -18px); }
  40% { transform: translate(-72px, 6px); }
  50% { transform: translate(-2px, 6px); }
  60% { transform: translate(-72px, 30px); }
  70% { transform: translate(-20px, 30px); }
  80% { transform: translate(-72px, 54px); }
  90%, 100% { transform: translate(0, 54px); }
}
@keyframes m3-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); filter: brightness(1.15); }
}

/* Module 4 — сборка видео: слои поднимаются + таймлайн заполняется */
.m4-layer {
  animation: m4-layer-rise 3.6s ease-in-out infinite;
}
.m4-layer-3 { animation-delay: 0s; }
.m4-layer-2 { animation-delay: 0.3s; }
.m4-layer-1 { animation-delay: 0.6s; }
.m4-play {
  animation: m4-play-pulse 2s ease-in-out infinite;
}
.m4-segment-1 {
  animation: m4-segment-grow 3.6s ease-in-out infinite;
  transform-origin: 60px center;
}
.m4-segment-2 {
  animation: m4-segment-grow 3.6s ease-in-out infinite;
  animation-delay: 0.4s;
  transform-origin: 100px center;
}
.m4-segment-3 {
  animation: m4-segment-grow 3.6s ease-in-out infinite;
  animation-delay: 0.8s;
  transform-origin: 126px center;
}
@keyframes m4-layer-rise {
  0% { transform: translateY(8px); opacity: 0.4; }
  35%, 65% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0.4; }
}
@keyframes m4-play-pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.12); filter: brightness(1.2); }
}
@keyframes m4-segment-grow {
  0% { transform: scaleX(0); opacity: 0.3; }
  40%, 70% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0.3; }
}

/* Module 5 — безопасность и монетизация: щит дышит, монета пульсирует */
.m5-shield {
  animation: m5-shield-glow 3s ease-in-out infinite;
}
.m5-coin {
  animation: m5-coin-pulse 2.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.m5-dot-1 { animation: m5-dot-blink 2.4s ease-in-out infinite; }
.m5-dot-2 { animation: m5-dot-blink 2.4s ease-in-out infinite; animation-delay: 0.8s; }
.m5-dot-3 { animation: m5-dot-blink 2.4s ease-in-out infinite; animation-delay: 1.6s; }
@keyframes m5-shield-glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255, 138, 61, 0.3)); }
  50% { filter: drop-shadow(0 0 18px rgba(255, 138, 61, 0.7)); }
}
@keyframes m5-coin-pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.08); filter: brightness(1.18); }
}
@keyframes m5-dot-blink {
  0%, 100% { opacity: 0.35; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@media (prefers-reduced-motion: reduce) {
  .module-art svg * {
    animation: none !important;
  }
}

.module-body {
  display: grid;
  align-content: start;
  min-width: 0;
}

.module-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.module-num {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.module-meta {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.module h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.module-body > p {
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.65;
  max-width: 620px;
}

.lessons-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.module-lessons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: lesson;
}

.module-lessons li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, background 180ms ease;
}

.module-lessons li:hover {
  border-color: rgba(255, 138, 61, 0.32);
  background: rgba(255, 138, 61, 0.05);
}

.lesson-num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.18), rgba(255, 106, 26, 0.1));
  border: 1px solid rgba(255, 138, 61, 0.35);
  color: var(--orange-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lesson-text {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.4;
}

/* ---------- Program bonus call-out ---------- */

.program-bonus {
  margin-top: clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(255, 138, 61, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(255, 138, 61, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(255, 138, 61, 0.18), transparent 60%),
    var(--surface);
  box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.08), 0 30px 70px rgba(255, 106, 26, 0.16);
}

.bonus-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.bonus-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: #1a0d05;
  box-shadow: 0 16px 40px rgba(255, 138, 61, 0.35);
}

.bonus-icon svg {
  width: 28px;
  height: 28px;
}

.bonus-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.bonus-item p {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

.bonus-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, rgba(255, 138, 61, 0.4), transparent);
}

@media (max-width: 760px) {
  .program-bonus {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bonus-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.4), transparent);
    justify-self: center;
  }
}

/* ---------- Tools ---------- */

.tools .container {
  max-width: 1320px;
}

.tools-list {
  display: grid;
  gap: clamp(90px, 11vw, 180px);
}

.tool {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 4vw, 56px);
  align-items: stretch;
}

.tool-text {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.tool-text p {
  max-width: 760px;
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  align-self: start;
  width: fit-content;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(255, 138, 61, 0.35);
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.1);
  color: var(--orange-bright);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tool-chip-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: #1a0d05;
}

.tool-chip-icon svg {
  width: 16px;
  height: 16px;
}

.tool-text h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tool-text p {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
  max-width: 520px;
}

.tool-points {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  padding: 0;
  list-style: none;
}

.tool-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.tool-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 10px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.tool-media {
  position: relative;
  min-width: 0;
}

.tool-media-glow {
  position: absolute;
  inset: -12% -8%;
  z-index: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255, 138, 61, 0.24), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.tool-media .video-frame {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #05070a;
  box-shadow:
    0 0 0 1px rgba(255, 138, 61, 0.1),
    0 50px 110px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(255, 138, 61, 0.14);
}

.tool-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05070a;
  object-fit: contain;
  display: block;
}

/* Compact play overlay variant for tool videos */
.tool-media .play-icon {
  width: clamp(70px, 7vw, 96px);
  height: clamp(70px, 7vw, 96px);
}

.tool-media .play-icon::after {
  border-top-width: 14px;
  border-bottom-width: 14px;
  border-left-width: 22px;
}

.tool-media .play-label {
  font-size: 0.88rem;
}

/* ---------- Pricing ---------- */

.pricing .container {
  max-width: 1280px;
}

.pricing-head {
  margin-bottom: clamp(40px, 5vw, 70px);
}

.pricing-head h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(40px, 4vw, 56px) clamp(32px, 3.5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.price-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.price-card-featured {
  border-color: rgba(255, 138, 61, 0.35);
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255, 138, 61, 0.16), transparent 65%),
    var(--surface);
}

.price-card-vip {
  border-color: rgba(255, 138, 61, 0.55);
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 138, 61, 0.28), transparent 65%),
    var(--surface);
  box-shadow:
    0 0 0 1px rgba(255, 138, 61, 0.18),
    0 30px 80px rgba(255, 106, 26, 0.18);
}

.badge {
  align-self: flex-start;
  height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: #1a0d05;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(255, 138, 61, 0.35);
}

.badge-green {
  background: linear-gradient(135deg, #5dffb1, #1fbf6c);
  color: #08210f;
  box-shadow: 0 8px 24px rgba(50, 213, 138, 0.4);
}

.price-tag {
  align-self: flex-start;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 30px;
  font-size: 1.55rem;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.vip-price h3,
.price-card-vip h3 {
  font-size: 1.7rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.price-amount strong {
  color: #fff;
  font-size: clamp(2.6rem, 3.6vw, 3.4rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.price-amount del,
.price-sub del {
  color: #5b6371;
  text-decoration-color: rgba(255, 138, 61, 0.5);
  text-decoration-thickness: 2px;
  font-size: 1.08rem;
  font-weight: 500;
}

.price-sub {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-list {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.price-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.55;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.price-button {
  width: 100%;
  margin-top: auto;
}

/* ---------- Signup ---------- */

.signup {
  position: relative;
  padding: clamp(100px, 12vw, 160px) var(--gutter);
  isolation: isolate;
}

.signup-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 138, 61, 0.16), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.signup-card {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 138, 61, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(255, 138, 61, 0.14), transparent 65%),
    var(--surface);
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255, 138, 61, 0.1),
    0 50px 120px rgba(0, 0, 0, 0.55);
}

.signup-card .kicker {
  margin-bottom: 16px;
}

.signup-lead {
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 28px;
}

.signup-message {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 18px 22px;
  border: 1px dashed rgba(255, 138, 61, 0.45);
  border-radius: 16px;
  background: rgba(255, 138, 61, 0.06);
  text-align: left;
}

.signup-message-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.signup-message-label {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signup-message p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 138, 61, 0.45);
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.1);
  color: var(--orange-bright);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.copy-button:hover {
  background: rgba(255, 138, 61, 0.18);
  color: #fff;
}

.copy-button:active {
  transform: scale(0.97);
}

.copy-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: block;
}

.copy-icon-done {
  display: none;
}

.copy-button.is-copied {
  background: rgba(50, 213, 138, 0.16);
  border-color: rgba(50, 213, 138, 0.55);
  color: #5dffb1;
}

.copy-button.is-copied .copy-icon-default {
  display: none;
}

.copy-button.is-copied .copy-icon-done {
  display: block;
}

.signup-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
}

.contact-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-link {
  color: var(--orange-bright);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-link:hover {
  color: #fff;
}

.signup-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  margin: 0 auto 14px;
}

.signup-cta-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #1a0d05;
}

.signup-form {
  display: grid;
  gap: 20px;
  text-align: left;
}

.signup-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.signup-form label {
  display: grid;
  gap: 8px;
}

.signup-form label span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signup-form input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0 18px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.signup-form input:focus {
  border-color: var(--orange);
  background: rgba(0, 0, 0, 0.45);
}

.signup-form input::placeholder {
  color: #4f5663;
}

.form-button {
  margin-top: 4px;
  justify-self: stretch;
}

.form-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px;
  }

  .site-nav {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .pain-card,
  .pain-card:first-child {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .pain-art,
  .pain-card:first-child .pain-art,
  .pain-card:nth-child(2) .pain-art,
  .pain-card:nth-child(3) .pain-art {
    max-width: 200px;
    margin: 0 auto;
  }

  .pain-text {
    justify-items: center;
  }

  .pain-card p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .module,
  .module:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .module:nth-child(even) .module-art,
  .module:nth-child(even) .module-body {
    order: initial;
  }

  .module-art {
    max-width: 220px;
    margin: 0 auto;
  }

  .module-lessons {
    grid-template-columns: 1fr;
  }

  .tool {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tool:nth-child(even) .tool-text,
  .tool:nth-child(even) .tool-media {
    order: initial;
  }

  .tool-chip {
    align-self: center;
  }

  .signup-fields {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .header-cta {
    height: 36px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .brand-name {
    display: none;
  }

  .button {
    width: 100%;
    height: 52px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .price-card {
    padding: 28px 24px;
  }

  .price-amount strong {
    font-size: 2.2rem;
  }

  .signup-card {
    padding: 32px 22px;
  }
}
