:root {
  --bg: #02070c;
  --panel: rgba(3, 13, 20, 0.78);
  --panel-strong: rgba(5, 18, 28, 0.92);
  --line: rgba(0, 206, 255, 0.35);
  --gold: #ffb21a;
  --gold-2: #ff7a00;
  --cyan: #00cfff;
  --text: #f8fbff;
  --muted: #b7c3cc;
  --green: #29e874;
  --red: #ff3f32;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(90deg, rgba(0, 8, 16, 0.88), rgba(0, 8, 16, 0.2), rgba(0, 0, 0, 0.42)), url("assets/hero-summer-trading.png") center top / cover no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 20%, rgba(0, 195, 255, 0.28), transparent 32%),
    radial-gradient(circle at 78% 22%, rgba(255, 148, 0, 0.28), transparent 31%),
    linear-gradient(180deg, rgba(2, 7, 12, 0.1), #02070c 92%);
}

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

.page-shell {
  width: min(1600px, calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 10px 18px 10px 20px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 207, 255, 0.5);
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(1, 8, 14, 0.48));
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 22px rgba(0, 207, 255, 0.12), 0 12px 26px rgba(255, 178, 26, 0.08);
}

.brand {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 178, 26, 0.28),
    0 0 18px rgba(0, 207, 255, 0.42),
    0 0 34px rgba(255, 178, 26, 0.22);
  filter: drop-shadow(0 0 12px rgba(0, 207, 255, 0.38));
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
}

.nav-manager {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 44px);
  min-width: 0;
  font-size: clamp(16px, 1.08vw, 19px);
  font-weight: 560;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 178, 26, 0.42);
}

.header-cta,
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 36px;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta {
  min-height: 62px;
  padding-inline: 36px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.header-cta::after {
  content: "";
  position: absolute;
  inset: -45% -70%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.18) 45%, rgba(255, 255, 255, 0.64) 50%, rgba(255, 255, 255, 0.16) 56%, transparent 68%);
  transform: translateX(-70%) rotate(8deg);
  animation: button-shine 3.2s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes button-shine {
  0%,
  42% {
    transform: translateX(-72%) rotate(8deg);
  }
  72%,
  100% {
    transform: translateX(72%) rotate(8deg);
  }
}

.header-cta,
.btn.primary {
  color: #090600;
  background: linear-gradient(180deg, #ffe072, var(--gold), var(--gold-2));
  box-shadow: 0 0 30px rgba(255, 178, 26, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.btn.ghost {
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: rgba(0, 11, 18, 0.65);
}

.hero .btn {
  min-width: 330px;
  min-height: 76px;
  border-radius: 10px;
  font-size: 22px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.52);
}

.hero .btn.primary::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 28px;
  margin-right: 18px;
  background: #090600;
  clip-path: polygon(58% 0, 18% 45%, 48% 45%, 34% 100%, 82% 34%, 52% 34%);
}

.hero .btn.ghost {
  border-color: rgba(0, 207, 255, 0.7);
  color: var(--cyan);
  background: rgba(1, 11, 18, 0.72);
  box-shadow: inset 0 0 24px rgba(0, 207, 255, 0.08), 0 0 28px rgba(0, 207, 255, 0.16);
}

.hero .btn.ghost::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 22px;
  margin-right: 18px;
  border: 2px solid var(--cyan);
  border-radius: 13px;
  background:
    radial-gradient(circle at 9px 10px, var(--cyan) 0 2px, transparent 2.6px),
    radial-gradient(circle at 15px 10px, var(--cyan) 0 2px, transparent 2.6px),
    radial-gradient(circle at 21px 10px, var(--cyan) 0 2px, transparent 2.6px);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 66% 76%, 53% 100%, 48% 76%, 0 76%);
  box-shadow: 0 0 10px rgba(0, 207, 255, 0.38);
}

.section {
  position: relative;
  scroll-margin-top: 118px;
  margin: 0 0 26px;
  padding: clamp(42px, 5vw, 82px);
  border: 1px solid rgba(0, 207, 255, 0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(1, 8, 15, 0.9), rgba(3, 12, 19, 0.64));
  box-shadow: inset 0 0 90px rgba(0, 207, 255, 0.06), 0 18px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 86% 14%, rgba(255, 157, 0, 0.2), transparent 28%), radial-gradient(circle at 8% 22%, rgba(0, 207, 255, 0.18), transparent 26%);
}

.hero {
  min-height: min(900px, calc(100vh - 110px));
  padding: 30px clamp(34px, 5vw, 72px) 30px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 18% 36%, rgba(0, 207, 255, 0.14), transparent 34%),
    radial-gradient(circle at 76% 32%, rgba(255, 151, 0, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(1, 6, 12, 0.76) 0%, rgba(1, 8, 12, 0.46) 42%, rgba(22, 10, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.36)),
    url("assets/hero-summer-trading.png") center top / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 105px;
  width: 44%;
  height: 56%;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(0, 207, 255, 0.18) 43px 45px, transparent 46px 88px),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(0, 207, 255, 0.12) 35px 36px, transparent 37px 70px);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.7) 55%, transparent 100%);
  opacity: .22;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 42px auto 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.hero-title-art {
  display: block;
  width: min(860px, 74vw);
  height: auto;
  margin: -8px auto 18px;
  filter: drop-shadow(0 10px 0 rgba(0, 0, 0, 0.42));
}

.hero-title-mobile {
  display: none;
}

.hero-lead {
  margin-bottom: 14px;
  font-size: clamp(28px, 2.75vw, 38px);
  font-weight: 800;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px 18px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(26px, 3vw, 44px);
  margin-bottom: 34px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-pills span {
  white-space: nowrap;
}

.hero-pills span:not(:last-child)::after {
  content: "•";
  margin-left: 18px;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.hero .hero-content .hero-actions {
  display: flex;
}

.hero-badge,
.club-board {
  position: absolute;
  z-index: 3;
}

.hero-badge {
  left: clamp(22px, 4vw, 72px);
  top: 155px;
  max-width: 210px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #f4f6f8;
  background: transparent;
  font-size: 25px;
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0,0,0,.8), 0 0 14px rgba(255,178,26,.22);
  box-shadow: none;
}

.hero-badge span,
.hero-badge strong,
.hero-badge small {
  display: block;
}

.hero-badge strong {
  margin: 3px 0 8px;
  color: var(--gold);
  font-size: 1.24em;
  line-height: 0.96;
}

.hero-badge small {
  color: #f4f6f8;
  font-size: 0.62em;
  line-height: 1.16;
}

.club-board {
  right: clamp(26px, 5vw, 90px);
  top: 108px;
  display: grid;
  gap: 0;
  width: 356px;
  padding: 22px 24px 20px;
  color: #fff0bd;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-2deg);
  background:
    linear-gradient(90deg, rgba(0,0,0,.22), transparent 18%, rgba(255,220,125,.14) 50%, transparent 78%, rgba(0,0,0,.28)),
    repeating-linear-gradient(0deg, rgba(36, 16, 5, 0.42) 0 2px, transparent 2px 42px),
    linear-gradient(90deg, #3a1b08 0%, #8b4b16 36%, #a8611c 62%, #4a230a 100%);
  border: 2px solid rgba(255, 184, 61, 0.55);
  border-radius: 12px;
  box-shadow:
    0 22px 34px rgba(0,0,0,.42),
    0 0 26px rgba(255,178,26,.24),
    inset 0 0 0 1px rgba(255,255,255,.1),
    inset 0 -22px 40px rgba(0,0,0,.22);
}

.club-board::before,
.club-board::after {
  content: "";
  position: absolute;
  top: -86px;
  width: 11px;
  height: 98px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(0deg, #2b1605 0 8px, #9c5a1c 8px 13px, #2b1605 13px 19px);
  box-shadow: inset 0 0 3px rgba(0,0,0,.8), 0 0 8px rgba(0,0,0,.45);
}

.club-board::before {
  left: 24px;
}

.club-board::after {
  right: 24px;
}

.club-board b,
.club-board span {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 64px;
  padding: 8px 0;
  color: inherit;
  line-height: 1.08;
  text-shadow: 0 2px 3px rgba(0,0,0,.62);
  border-bottom: 1px solid rgba(255, 190, 63, 0.34);
}

.hero-strip {
  margin-top: clamp(36px, 5vw, 70px);
  max-width: min(1080px, 86vw);
  padding: clamp(22px, 2.5vw, 34px) clamp(24px, 4vw, 54px);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.club-board span:last-child {
  border-bottom: 0;
}

.club-board b::before,
.club-board span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 196, 66, 0.95);
  border-radius: 50%;
  background: rgba(255, 196, 66, 0.95);
  box-shadow: 0 0 12px rgba(255,178,26,.48);
}

.tariff-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 68px 0 26px;
}

.legacy-tariffs {
  display: none;
}

.pricing-showcase {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 54px 0 18px;
}

.price-card {
  --accent: var(--gold);
  --accent-rgb: 255, 178, 26;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 690px;
  padding: 46px 20px 18px;
  border: 1px solid rgba(var(--accent-rgb), 0.72);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.18), rgba(0, 0, 0, 0.12) 30%, rgba(0, 0, 0, 0.74)),
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.42), transparent 32%),
    rgba(1, 8, 12, 0.82);
  box-shadow:
    0 0 30px rgba(var(--accent-rgb), 0.28),
    inset 0 0 46px rgba(var(--accent-rgb), 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.price-card.start {
  --accent: #39e75f;
  --accent-rgb: 57, 231, 95;
}

.price-card.base {
  --accent: #1e9bff;
  --accent-rgb: 30, 155, 255;
}

.price-card.pro {
  --accent: #c456ff;
  --accent-rgb: 196, 86, 255;
}

.price-card.vip {
  --accent: #ffae00;
  --accent-rgb: 255, 174, 0;
}

.tariff-emblem {
  position: absolute;
  top: -38px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 3px solid rgba(var(--accent-rgb), 0.86);
  border-radius: 50%;
  color: var(--accent);
  background:
    radial-gradient(circle, rgba(var(--accent-rgb), 0.38), rgba(1, 8, 14, 0.92) 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), transparent);
  box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.55);
  font-size: 42px;
  font-weight: 900;
  transform: translateX(-50%);
}

.hot-label,
.limit-label {
  position: absolute;
  top: 8px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #ff872b, #c71912);
  box-shadow: 0 0 16px rgba(255, 78, 0, 0.48);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.limit-label {
  top: 12px;
  right: 12px;
  font-size: 12px;
}

.price-card h3 {
  margin: 0 0 8px;
  color: #f7f9fb;
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.58), 0 0 16px rgba(255, 255, 255, 0.2);
}

.price-subtitle {
  min-height: 46px;
  margin: 0 0 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.24);
  text-align: center;
  font-size: 15px;
  line-height: 1.25;
}

.old-price {
  position: relative;
  width: max-content;
  margin: 6px auto -4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 24px;
  font-weight: 900;
}

.old-price::after {
  content: "";
  position: absolute;
  left: -7px;
  right: -7px;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: #ff1f1f;
  transform: rotate(-7deg);
}

.price {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: clamp(48px, 4.4vw, 70px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.62);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
  font-size: 15px;
  line-height: 1.25;
}

.price-card li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.92);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-rgb), 0.42));
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.52);
  font-size: 14px;
  font-weight: 900;
}

.tariff-result {
  margin-top: auto;
  padding: 16px 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.48);
  border-radius: 10px;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.09);
  box-shadow: inset 0 0 24px rgba(var(--accent-rgb), 0.08);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.28;
  text-align: center;
  text-transform: uppercase;
}

.tariff-benefits {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 18px 0 16px;
  border: 1px solid rgba(255, 178, 26, 0.36);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(5, 24, 33, 0.88), rgba(2, 9, 14, 0.92));
  box-shadow: 0 0 28px rgba(255, 178, 26, 0.13), inset 0 0 26px rgba(0, 207, 255, 0.08);
  overflow: hidden;
}

.tariff-benefits div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 6px 12px;
  min-height: 82px;
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 178, 26, 0.28);
}

.tariff-benefits div:last-child {
  border-right: 0;
}

.tariff-benefits span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--gold);
  font-size: 31px;
  filter: drop-shadow(0 0 10px rgba(255, 178, 26, 0.55));
}

.tariff-benefits b {
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
}

.tariff-benefits small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.pricing-cta {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto 22px;
  padding: 14px 18px 14px 34px;
  border: 1px solid rgba(255, 178, 26, 0.44);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.64);
}

.pricing-cta strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 2.2vw, 31px);
  text-transform: uppercase;
}

.tariff-card,
.feature-grid article,
.case-card,
.reviews article,
.signal-card,
.terminal-card,
.product-row article,
.faq details,
.stats div {
  border: 1px solid rgba(0, 207, 255, 0.28);
  background: linear-gradient(180deg, rgba(3, 20, 31, 0.82), rgba(1, 8, 13, 0.9));
  box-shadow: inset 0 0 30px rgba(0, 207, 255, 0.05), 0 0 28px rgba(0, 207, 255, 0.08);
}

.tariff-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 18px;
}

.tariff-card.featured {
  border-color: rgba(255, 178, 26, 0.78);
  box-shadow: 0 0 34px rgba(255, 178, 26, 0.18);
}

.tariff-card small {
  color: var(--cyan);
  font-weight: 900;
}

.tariff-card h3 {
  margin: 12px 0;
  color: var(--gold);
  font-size: 24px;
}

.tariff-card p {
  color: var(--muted);
}

.tariff-card b {
  color: var(--text);
}

.hero-strip,
.formula,
.section-strip {
  position: relative;
  z-index: 2;
  max-width: 890px;
  margin: 0 auto;
  padding: 22px 30px;
  border: 1px solid rgba(255, 178, 26, 0.6);
  border-radius: 14px;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.54);
  font-size: clamp(25px, 3.2vw, 48px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  max-width: min(880px, 78vw);
  margin-top: clamp(28px, 4vw, 52px);
  padding: clamp(18px, 2vw, 28px) clamp(22px, 3.2vw, 42px);
  border-color: rgba(255, 178, 26, 0.72);
  text-shadow: 0 0 18px rgba(255, 178, 26, 0.42);
  box-shadow: inset 0 0 28px rgba(255, 178, 26, 0.08), 0 0 28px rgba(255, 178, 26, 0.12);
  font-size: clamp(24px, 2.45vw, 38px);
  line-height: 1.16;
  white-space: normal;
  text-transform: none;
}

.section-strip {
  max-width: 1120px;
  margin-top: 34px;
  color: var(--gold);
  font-size: clamp(20px, 2.4vw, 34px);
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

h2 {
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1;
  text-transform: uppercase;
}

h2 span {
  color: var(--gold);
}

.about {
  padding: clamp(48px, 5.8vw, 86px) clamp(36px, 6vw, 86px);
  border-color: rgba(255, 178, 26, 0.18);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(1, 7, 12, 0.96) 0%, rgba(1, 8, 14, 0.9) 42%, rgba(11, 7, 2, 0.58) 100%),
    radial-gradient(circle at 9% 85%, rgba(255, 178, 26, 0.16), transparent 22%),
    radial-gradient(circle at 78% 25%, rgba(0, 207, 255, 0.13), transparent 28%),
    url("assets/hero-summer-trading.png") center / cover no-repeat;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.52), 0 18px 80px rgba(0, 0, 0, 0.34);
}

.about::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.55)),
    radial-gradient(circle at 14% 92%, rgba(255, 178, 26, 0.2), transparent 22%),
    radial-gradient(circle at 84% 15%, rgba(255, 178, 26, 0.18), transparent 26%);
}

.about .section-heading {
  max-width: 760px;
  margin: 0 0 34px;
  text-align: left;
}

.about .eyebrow {
  display: none;
}

.about h2 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(40px, 5.1vw, 70px);
  text-shadow: 0 4px 0 rgba(0,0,0,.58), 0 0 18px rgba(255,255,255,.18);
}

.about .section-heading p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
}

.section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  line-height: 1.6;
}

.formula {
  max-width: none;
  margin-bottom: 32px;
  font-size: clamp(18px, 2.1vw, 31px);
  text-transform: none;
}

.about .formula {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 1280px;
  margin: 0 auto 34px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 178, 26, 0.72);
  border-radius: 12px;
  color: rgba(255,255,255,.9);
  background:
    linear-gradient(90deg, rgba(255, 178, 26, 0.12), rgba(0, 207, 255, 0.09)),
    rgba(0,0,0,.54);
  box-shadow: 0 0 28px rgba(255,178,26,.15), inset 0 0 26px rgba(0,207,255,.06);
  font-size: clamp(18px, 1.7vw, 24px);
}

.about .formula::first-letter {
  color: var(--gold);
}

.formula b {
  margin: 0 22px;
  color: var(--gold);
}

.about .formula b {
  margin: 0 4px;
  color: var(--gold);
  font-size: 1.22em;
  text-shadow: 0 0 16px rgba(255,178,26,.55);
}

.feature-grid,
.case-grid,
.product-row,
.review-row,
.stats,
.skill-grid,
.module-grid,
.roadmap,
.community-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(6, 1fr);
}

.about .feature-grid {
  max-width: 1280px;
  margin: 0 auto;
  gap: 18px;
}

.feature-grid article {
  min-height: 260px;
  padding: 28px 18px;
  border-radius: 18px;
  text-align: center;
}

.about .feature-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 292px;
  padding: 30px 18px 24px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(4, 23, 31, 0.82), rgba(0, 5, 9, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(0,207,255,.12), transparent 58%);
  border-color: rgba(0, 207, 255, 0.56);
  box-shadow: inset 0 0 28px rgba(0, 207, 255, 0.08), 0 0 22px rgba(0, 207, 255, 0.16);
}

.about .feature-grid article:nth-child(odd) {
  border-color: rgba(255, 178, 26, 0.64);
  box-shadow: inset 0 0 28px rgba(255, 178, 26, 0.07), 0 0 22px rgba(255, 178, 26, 0.16);
}

.feature-grid span {
  display: block;
  margin-bottom: 18px;
  font-size: 42px;
}

.about .feature-grid span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  border: 2px solid currentColor;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(0, 207, 255, 0.06);
  box-shadow: 0 0 18px rgba(0, 207, 255, 0.2);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.about .feature-grid article:nth-child(odd) span {
  color: var(--gold);
  background: rgba(255, 178, 26, 0.06);
  box-shadow: 0 0 18px rgba(255, 178, 26, 0.22);
}

.feature-grid h3 {
  color: var(--gold);
}

.about .feature-grid h3 {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.12;
}

.about .feature-grid article:nth-child(odd) h3 {
  color: var(--gold);
}

.feature-grid p,
.case-card p,
.product-row p {
  color: var(--muted);
  line-height: 1.5;
}

.about .feature-grid p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
}

.about-result {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 1060px;
  margin: 40px auto 0;
  padding: 18px 28px;
  border: 1px solid rgba(255, 178, 26, 0.72);
  border-radius: 12px;
  color: #ffc35a;
  background: rgba(0,0,0,.58);
  box-shadow: 0 0 24px rgba(255,178,26,.18), inset 0 0 24px rgba(255,178,26,.08);
  text-align: center;
}

.about-result strong {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.22;
}

.split-block {
  min-height: 820px;
  padding: clamp(170px, 13vw, 210px) clamp(36px, 5vw, 70px) clamp(46px, 5vw, 74px);
  background:
    linear-gradient(90deg, rgba(0, 15, 28, 0.9) 0%, rgba(0, 0, 0, 0.76) 44%, rgba(42, 18, 0, 0.58) 100%),
    radial-gradient(circle at 28% 48%, rgba(255, 50, 38, 0.2), transparent 24%),
    radial-gradient(circle at 75% 48%, rgba(41, 232, 116, 0.18), transparent 25%),
    url("assets/hero-summer-trading.png") center / cover no-repeat;
}

.split-block::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.1) 42%, rgba(0,0,0,.58)),
    radial-gradient(circle at 10% 82%, rgba(255, 178, 26, 0.18), transparent 20%),
    radial-gradient(circle at 92% 10%, rgba(255, 178, 26, 0.16), transparent 24%);
}

.split-block .section-heading {
  max-width: 1120px;
  margin-bottom: 36px;
}

.split-block .eyebrow {
  margin-bottom: 12px;
  font-size: clamp(16px, 1.2vw, 22px);
  letter-spacing: 1.8px;
}

.split-block .section-heading p:not(.eyebrow) {
  max-width: 980px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.45;
  font-weight: 700;
}

.split-block h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: .96;
  letter-spacing: 0;
  text-shadow: 0 6px 0 rgba(0,0,0,.58), 0 0 22px rgba(255,255,255,.16);
}

.split-block h2 span {
  display: block;
  color: var(--gold);
}

.split-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 4vw, 58px);
  margin-top: 40px;
}

.path-line,
.benefit-mini-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.path-line span,
.benefit-mini-row span {
  padding: 16px 14px;
  border: 1px solid rgba(255, 178, 26, 0.48);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.52);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.danger-card,
.success-card {
  min-height: 360px;
  padding: clamp(28px, 3vw, 46px);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.66), rgba(0,0,0,.82)),
    rgba(0,0,0,.62);
  backdrop-filter: blur(3px);
}

.danger-card {
  border: 1px solid rgba(255, 63, 50, 0.7);
  box-shadow: 0 0 28px rgba(255, 63, 50, 0.12), inset 0 0 32px rgba(255, 63, 50, 0.05);
}

.success-card {
  border: 1px solid rgba(41, 232, 116, 0.7);
  box-shadow: 0 0 28px rgba(41, 232, 116, 0.13), inset 0 0 32px rgba(41, 232, 116, 0.05);
}

.danger-card h3,
.danger-card p {
  color: #ff4c3f;
}

.success-card h3,
.success-card p {
  color: #63ff9b;
}

.danger-card h3,
.success-card h3 {
  margin-bottom: 34px;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.danger-card p,
.success-card p {
  position: relative;
  margin: 0 0 22px;
  padding-left: 40px;
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 700;
}

.danger-card p::before,
.success-card p::before {
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.danger-card p::before {
  content: "×";
}

.success-card p::before {
  content: "✓";
}

.versus {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  margin-bottom: 106px;
  border-radius: 50%;
  border: 1px solid rgba(255, 178, 26, 0.92);
  color: var(--gold);
  background:
    radial-gradient(circle, rgba(255, 178, 26, 0.2), rgba(0,0,0,.9) 66%),
    rgba(0,0,0,.8);
  box-shadow: 0 0 28px rgba(255,178,26,.28), inset 0 0 22px rgba(255,178,26,.12);
  font-size: 48px;
  font-weight: 900;
}

.split-block .section-strip {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 34px auto 0;
  padding: 18px 28px;
  border: 1px solid rgba(255, 178, 26, 0.62);
  border-radius: 12px;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.62);
  box-shadow: 0 0 24px rgba(255,178,26,.16), inset 0 0 24px rgba(255,178,26,.08);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}


.ai-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(560px, 1.1fr);
  gap: 36px;
  align-items: start;
}

.signal-card,
.terminal-card {
  border: 1px solid rgba(0, 207, 255, 0.48);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(2, 18, 28, 0.88), rgba(0, 6, 11, 0.94)),
    rgba(0,0,0,.62);
  box-shadow: 0 0 28px rgba(0,207,255,.14), inset 0 0 34px rgba(0,207,255,.06);
}

.signal-card h3 {
  font-size: 28px;
}

.ai {
  padding-top: clamp(130px, 10vw, 160px);
  background:
    linear-gradient(90deg, rgba(1, 8, 14, 0.94), rgba(1, 8, 14, 0.78) 48%, rgba(42, 18, 0, 0.58)),
    url("assets/hero-summer-trading.png") center / cover no-repeat;
}

.ai .section-heading {
  max-width: 820px;
}

.ai .section-heading .eyebrow {
  color: #f8fbff;
  font-size: clamp(30px, 3.2vw, 48px);
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0,207,255,.42);
}

.ai .section-heading h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: clamp(58px, 6vw, 96px);
  text-shadow: 0 5px 0 rgba(0,0,0,.55), 0 0 22px rgba(255,178,26,.18);
}

.ai .section-heading h2 em {
  color: #f8fbff;
  font-style: normal;
}

.ai .section-heading p:not(.eyebrow) {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 900px;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ai .section-heading.left p:not(.eyebrow) {
  justify-content: flex-start;
  text-align: left;
}

.ai .section-heading p:not(.eyebrow)::before,
.ai .section-heading p:not(.eyebrow)::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ai .section-heading p:not(.eyebrow)::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ai .section-heading.left p:not(.eyebrow)::before {
  display: none;
}

.ai .section-heading.left p:not(.eyebrow)::after {
  flex: 0 0 min(190px, 20vw);
}

.signal-card {
  padding: 18px;
}

.telegram-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 4px 8px 16px;
  color: #f8fbff;
  font-size: 21px;
}

.telegram-top span {
  grid-row: span 2;
  color: var(--cyan);
  font-size: 34px;
}

.telegram-top b {
  line-height: 1.15;
}

.telegram-top small {
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.telegram-signal {
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #e8ffe1;
  overflow: hidden;
}

.telegram-signal img {
  display: block;
  width: min(431px, 100%);
  height: auto;
  object-fit: contain;
  object-position: top center;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 20px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 800;
}

.green {
  color: var(--green);
}

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

.terminal-card {
  display: grid;
  justify-items: start;
  gap: 22px;
  align-items: start;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.terminal-card .stats-copy {
  align-self: start;
}

.stats-panel {
  width: 100%;
  padding: clamp(32px, 3.4vw, 48px);
  text-align: left;
  border: 1px solid rgba(0, 207, 255, 0.48);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(2, 18, 28, 0.88), rgba(0, 6, 11, 0.94)),
    rgba(0,0,0,.62);
  box-shadow: 0 0 28px rgba(0,207,255,.14), inset 0 0 34px rgba(0,207,255,.06);
}

.stats-shot {
  display: block;
  width: 452px;
  height: 309px;
  max-width: 100%;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}

.stats-copy {
  padding: 0;
}

.stats-copy.stats-panel {
  padding: clamp(32px, 3.4vw, 48px);
}

.stats-copy h3 {
  margin-bottom: 26px;
  color: #f8fbff;
  font-size: clamp(34px, 3.2vw, 52px);
  text-transform: uppercase;
}

.stats-copy p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.9);
  font-size: clamp(28px, 2.8vw, 46px);
  line-height: 1.08;
  font-weight: 800;
}

.stats-copy b {
  display: block;
  color: var(--green);
  font-size: clamp(58px, 6.6vw, 104px);
  line-height: 1;
  text-shadow: 0 0 22px rgba(41,232,116,.38);
}

.stats-copy strong {
  display: block;
  margin-top: 2px;
  color: var(--green);
  font-size: clamp(48px, 5.6vw, 88px);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(41,232,116,.38);
}

.stats-copy span {
  display: block;
  color: #f8fbff;
  font-size: clamp(34px, 3.8vw, 60px);
  line-height: 1.05;
  text-transform: uppercase;
}

.ai-results-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(0,207,255,.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 8%, rgba(0,207,255,.13), transparent 28%),
    linear-gradient(180deg, rgba(0,207,255,.07), rgba(0,0,0,.38));
  box-shadow: inset 0 0 26px rgba(0,207,255,.06), 0 0 24px rgba(0,207,255,.08);
}

.ai-results-panel h3 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0,207,255,.45);
}

.ai-results-panel img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: #061017;
  box-shadow: 0 16px 32px rgba(0,0,0,.34);
}

.ai-telegram-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  justify-self: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(88,215,255,.72);
  border-radius: 14px;
  color: #f8fbff;
  background: linear-gradient(180deg, rgba(52, 190, 255, .96), rgba(0, 127, 205, .96));
  box-shadow: 0 14px 28px rgba(0, 164, 232, .22), inset 0 0 24px rgba(255,255,255,.08);
  text-decoration: none;
}

.ai-telegram-cta b {
  color: #fff;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,.26);
}

.visual-placeholder,
.stream-frame {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 320px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 207, 255, 0.34);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(135deg, rgba(0, 207, 255, 0.12), rgba(255, 178, 26, 0.08)),
    repeating-linear-gradient(90deg, rgba(0, 207, 255, 0.06) 0 1px, transparent 1px 70px),
    rgba(0, 0, 0, 0.42);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.visual-placeholder.compact {
  min-height: 180px;
  margin-top: 24px;
}

.skill-grid {
  grid-template-columns: repeat(3, 1fr);
}

.skill-grid article,
.module-grid article,
.roadmap article,
.community-grid article,
.check-list p {
  border: 1px solid rgba(0, 207, 255, 0.28);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(3, 20, 31, 0.82), rgba(1, 8, 13, 0.9));
  box-shadow: inset 0 0 30px rgba(0, 207, 255, 0.05), 0 0 28px rgba(0, 207, 255, 0.08);
}

.skill-grid article {
  min-height: 120px;
  padding: 30px 22px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.roadmap {
  grid-template-columns: repeat(6, 1fr);
}

.roadmap article {
  min-height: 190px;
  padding: 26px 18px;
}

.roadmap b {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 42px;
}

.roadmap span {
  font-size: 18px;
  font-weight: 800;
}

.roadmap-block {
  overflow: hidden;
  min-height: auto;
  padding: clamp(58px, 5.4vw, 82px) clamp(34px, 5vw, 74px) clamp(54px, 4.8vw, 76px);
  border-color: rgba(255, 178, 26, 0.32);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(0, 16, 25, 0.7), rgba(0, 8, 13, 0.82)),
    radial-gradient(ellipse at 14% 12%, rgba(0, 207, 255, 0.22), transparent 36%),
    radial-gradient(ellipse at 86% 18%, rgba(255, 178, 26, 0.3), transparent 34%),
    radial-gradient(ellipse at 50% 104%, rgba(255, 178, 26, 0.34), transparent 38%),
    linear-gradient(90deg, rgba(0, 38, 50, 0.86), rgba(3, 14, 17, 0.76) 50%, rgba(74, 39, 4, 0.64));
  box-shadow: inset 0 0 120px rgba(0,0,0,.38), 0 18px 70px rgba(0,0,0,.28);
}

.roadmap-block::before {
  background:
    radial-gradient(circle at 14% 82%, rgba(255,178,26,.2), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(255,178,26,.18), transparent 22%),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.28)),
    repeating-linear-gradient(92deg, rgba(0, 207, 255, 0.035) 0 1px, transparent 1px 108px);
}

.roadmap-block::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -84px;
  height: 170px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 178, 26, 0.36), transparent 52%),
    repeating-linear-gradient(165deg, rgba(255, 178, 26, 0.18) 0 2px, transparent 2px 18px);
  filter: blur(.2px);
  opacity: .64;
}

.roadmap-block .section-heading {
  max-width: 880px;
  margin-bottom: 50px;
}

.roadmap-block h2 {
  text-shadow: 0 5px 0 rgba(0,0,0,.54), 0 0 24px rgba(255,255,255,.12);
}

.roadmap-block .eyebrow {
  margin-bottom: 12px;
}

.roadmap {
  isolation: isolate;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.roadmap-route {
  position: absolute;
  z-index: -1;
  left: 5%;
  right: 5%;
  top: calc(50% - 20px);
  height: 88px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 50%, rgba(255,225,140,.9) 0 5px, transparent 6px),
    radial-gradient(circle at 26% 62%, rgba(0,226,255,.78) 0 5px, transparent 6px),
    radial-gradient(circle at 45% 38%, rgba(255,225,140,.9) 0 5px, transparent 6px),
    radial-gradient(circle at 64% 60%, rgba(0,226,255,.78) 0 5px, transparent 6px),
    radial-gradient(circle at 82% 36%, rgba(255,225,140,.9) 0 5px, transparent 6px);
  pointer-events: none;
}

.roadmap-route::before {
  content: "";
  position: absolute;
  inset: 26px 10px 28px;
  border-top: 4px dotted rgba(255, 214, 119, 0.82);
  border-radius: 50% 50% 0 0 / 72% 72% 0 0;
  transform: skewY(-3deg);
  box-shadow: 0 -8px 26px rgba(255,178,26,.16);
}

.roadmap-route::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,207,255,.45), rgba(255,178,26,.58), transparent);
  box-shadow: 0 0 18px rgba(0,207,255,.28);
}

.roadmap-route span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(255,178,26,.8);
}

.roadmap-route span:nth-child(1) { left: 7%; top: 32px; }
.roadmap-route span:nth-child(2) { left: 24%; top: 50px; background: var(--cyan); box-shadow: 0 0 20px rgba(0,207,255,.78); }
.roadmap-route span:nth-child(3) { left: 41%; top: 28px; }
.roadmap-route span:nth-child(4) { left: 58%; top: 50px; background: var(--cyan); box-shadow: 0 0 20px rgba(0,207,255,.78); }
.roadmap-route span:nth-child(5) { left: 76%; top: 28px; }
.roadmap-route span:nth-child(6) { left: 92%; top: 44px; background: var(--cyan); box-shadow: 0 0 20px rgba(0,207,255,.78); }

.roadmap article {
  position: relative;
  min-height: 218px;
  padding: 28px 24px 22px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 48, 56, 0.82), rgba(0, 16, 21, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(255,255,255,.14), transparent 46%);
  border: 1px solid rgba(0, 225, 255, 0.5);
  box-shadow: inset 0 0 28px rgba(0,207,255,.07), 0 16px 32px rgba(0,0,0,.22);
}

.roadmap article:nth-of-type(odd) {
  margin-top: 0;
  border-color: rgba(255, 203, 92, 0.72);
  background:
    linear-gradient(180deg, rgba(64, 42, 7, 0.74), rgba(9, 18, 17, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(255,229,149,.18), transparent 48%);
  box-shadow: inset 0 0 28px rgba(255,178,26,.08), 0 16px 32px rgba(0,0,0,.2);
}

.roadmap article::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 82px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,225,140,.7), transparent);
}

.roadmap article::after {
  content: "☀";
  position: absolute;
  right: 18px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,225,140,.45);
  border-radius: 50%;
  color: rgba(255,225,140,.95);
  background: rgba(255,178,26,.08);
  font-size: 20px;
  box-shadow: 0 0 18px rgba(255,178,26,.16);
}

.roadmap article:nth-of-type(2)::after { content: "◇"; color: var(--cyan); border-color: rgba(0,226,255,.45); background: rgba(0,207,255,.08); }
.roadmap article:nth-of-type(3)::after { content: "AI"; font-size: 14px; font-weight: 900; }
.roadmap article:nth-of-type(4)::after { content: "▶"; color: var(--cyan); border-color: rgba(0,226,255,.45); background: rgba(0,207,255,.08); }
.roadmap article:nth-of-type(5)::after { content: "◆"; }
.roadmap article:nth-of-type(6)::after { content: "✓"; color: var(--cyan); border-color: rgba(0,226,255,.45); background: rgba(0,207,255,.08); }

.roadmap b {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: clamp(32px, 2.8vw, 44px);
  line-height: .9;
  text-shadow: 0 0 18px rgba(255,178,26,.42);
}

.roadmap i {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0,207,255,.06);
  box-shadow: 0 0 18px rgba(0,207,255,.18);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap article:nth-of-type(odd) i {
  color: var(--gold);
  background: rgba(255,178,26,.07);
  box-shadow: 0 0 18px rgba(255,178,26,.18);
}

.roadmap span {
  display: block;
  min-height: 42px;
  color: #fff;
  font-size: clamp(17px, 1.28vw, 22px);
  line-height: 1.12;
  font-weight: 900;
}

.roadmap p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.roadmap .roadmap-route span {
  display: block;
  min-width: 0;
  min-height: 0;
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.roadmap-heading {
  max-width: 940px;
  margin-bottom: 54px;
}

.roadmap-heading h2 {
  font-size: clamp(42px, 4.8vw, 72px);
}

.roadmap-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
  font-weight: 700;
}

.summer-roadmap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 34px;
  max-width: 1180px;
  margin: 0 auto;
}

.roadmap-path-line {
  position: absolute;
  z-index: 0;
  top: calc(50% - 3px);
  left: 5%;
  right: 5%;
  height: 5px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255, 207, 95, .85) 0 16px, transparent 16px 31px);
  box-shadow: 0 0 20px rgba(255, 176, 0, .28);
  opacity: .58;
}

.summer-road-card {
  position: relative;
  z-index: 2;
  min-height: 230px;
  padding: 42px 24px 30px;
  border: 1px solid rgba(0, 207, 255, .34);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 32, 45, .86), rgba(2, 12, 18, .88)),
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.12), transparent 44%);
  box-shadow: 0 15px 35px rgba(0,0,0,.34), inset 0 0 26px rgba(0,207,255,.05);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.summer-road-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 207, 255, .72);
  box-shadow: 0 20px 45px rgba(0, 207, 255, .16), inset 0 0 28px rgba(0,207,255,.08);
}

.summer-road-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #00a7ff, var(--cyan));
}

.step-icon {
  position: absolute;
  top: -25px;
  left: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: #02070c;
  box-shadow: 0 0 16px rgba(19,244,255,.44);
  font-size: 24px;
}

.step-num {
  display: inline-block;
  margin: 8px 0 16px;
  padding: 7px 12px;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(0, 183, 255, .1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.summer-road-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.summer-road-card p {
  margin: 0;
  color: rgba(221,232,240,.8);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.summer-road-card.finish-step {
  border-color: rgba(255, 176, 0, .66);
  background:
    linear-gradient(180deg, rgba(55, 34, 3, .88), rgba(9, 10, 12, .9)),
    radial-gradient(circle at 20% 0%, rgba(255,220,110,.18), transparent 44%);
}

.summer-road-card.finish-step::before {
  background: linear-gradient(90deg, #ffd05f, #ff8b00);
}

.summer-road-card.finish-step:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(255,176,0,.22), inset 0 0 28px rgba(255,176,0,.08);
}

.finish-step .step-icon {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255,176,0,.62);
}

.finish-step .step-num {
  color: #ffd15e;
  background: rgba(255,176,0,.15);
}

.finish-step h3 {
  color: #ffd15e;
  text-shadow: 0 0 12px rgba(255,176,0,.3);
}

.scalping-academy {
  padding: clamp(58px, 5.8vw, 90px) clamp(34px, 5vw, 74px);
  border-color: rgba(255, 178, 26, 0.28);
  background:
    linear-gradient(115deg, rgba(0, 8, 13, 0.96), rgba(0, 12, 20, 0.86) 52%, rgba(45, 23, 1, 0.74)),
    radial-gradient(ellipse at 12% 18%, rgba(0,207,255,.2), transparent 32%),
    radial-gradient(ellipse at 84% 20%, rgba(255,178,26,.24), transparent 34%),
    radial-gradient(ellipse at 50% 110%, rgba(0,207,255,.12), transparent 42%);
}

.scalping-academy::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.56)),
    repeating-linear-gradient(90deg, rgba(0,207,255,.055) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(255,178,26,.035) 0 1px, transparent 1px 68px);
}

.academy-hero,
.academy-modules,
.academy-program {
  position: relative;
  z-index: 2;
}

.academy-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
  max-width: 1260px;
  margin: 0 auto 28px;
}

.academy-copy h2 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(46px, 5vw, 82px);
  line-height: .94;
  text-shadow: 0 5px 0 rgba(0,0,0,.54), 0 0 24px rgba(255,255,255,.12);
}

.academy-copy h2 span {
  display: block;
}

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

.academy-stats div {
  min-height: 112px;
  padding: 18px 16px;
  border: 1px solid rgba(255,178,26,.5);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,178,26,.14), rgba(0,0,0,.5)),
    rgba(1, 9, 14, .8);
  box-shadow: inset 0 0 28px rgba(255,178,26,.08), 0 0 24px rgba(255,178,26,.12);
}

.academy-stats b {
  display: block;
  color: var(--gold);
  font-size: clamp(38px, 4vw, 58px);
  line-height: .95;
  text-shadow: 0 0 20px rgba(255,178,26,.48);
}

.academy-stats span {
  color: rgba(255,255,255,.86);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.academy-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(0,207,255,.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at 75% 18%, rgba(255,178,26,.18), transparent 28%),
    linear-gradient(145deg, rgba(0,207,255,.09), rgba(255,178,26,.07)),
    rgba(0, 8, 14, .82);
  box-shadow: inset 0 0 46px rgba(0,207,255,.08), 0 0 34px rgba(0,207,255,.14);
  overflow: hidden;
}

.academy-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(0,0,0,.1), transparent 28%, rgba(255,178,26,.1)),
    inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
}

.academy-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academy-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1260px;
  margin: 0 auto 24px;
}

.academy-modules article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 230px;
  padding: 28px 24px;
  border: 1px solid rgba(0,207,255,.44);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(0,207,255,.1), rgba(0,0,0,.5)),
    rgba(0, 9, 15, .86);
  box-shadow: inset 0 0 30px rgba(0,207,255,.06), 0 0 26px rgba(0,207,255,.1);
}

.academy-modules article:nth-child(2) {
  border-color: rgba(255,178,26,.58);
  background:
    linear-gradient(180deg, rgba(255,178,26,.14), rgba(0,0,0,.52)),
    rgba(0, 9, 15, .88);
}

.academy-modules small {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.academy-modules article:nth-child(2) small {
  color: var(--gold);
}

.academy-modules h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(28px, 2.45vw, 38px);
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.academy-modules article:nth-child(3) h3 {
  font-size: clamp(25px, 2.08vw, 33px);
  letter-spacing: -0.2px;
}

.academy-modules p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
}

.academy-program {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.academy-program details {
  border: 1px solid rgba(255,178,26,.34);
  border-radius: 16px;
  background: rgba(0, 7, 12, .72);
  box-shadow: inset 0 0 30px rgba(255,178,26,.05);
  overflow: hidden;
}

.academy-program summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  color: #fff;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
}

.academy-program summary::-webkit-details-marker {
  display: none;
}

.academy-program summary::after {
  content: "+";
  margin-left: auto;
  color: var(--gold);
  font-size: 36px;
  line-height: 1;
}

.academy-program details[open] summary::after {
  content: "−";
}

.academy-program summary span {
  color: var(--gold);
  font-size: .72em;
  letter-spacing: 1.5px;
}

.lesson-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 24px 24px;
}

.lesson-list article {
  padding: 20px;
  border: 1px solid rgba(0,207,255,.22);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0,207,255,.055), rgba(0,0,0,.25));
}

.lesson-list h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.lesson-list ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.45;
}

.lesson-list li + li {
  margin-top: 6px;
}

.lesson-list b {
  color: var(--gold);
}

.defi-block {
  padding: clamp(58px, 5.8vw, 90px) clamp(34px, 5vw, 74px);
  border-color: rgba(41, 232, 116, 0.28);
  background:
    linear-gradient(115deg, rgba(0, 8, 12, 0.97), rgba(1, 15, 18, 0.9) 50%, rgba(6, 38, 19, 0.7)),
    radial-gradient(ellipse at 16% 18%, rgba(0,207,255,.17), transparent 32%),
    radial-gradient(ellipse at 82% 14%, rgba(41,232,116,.22), transparent 32%),
    radial-gradient(ellipse at 50% 110%, rgba(255,178,26,.12), transparent 42%);
}

.defi-block::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.58)),
    repeating-linear-gradient(90deg, rgba(41,232,116,.05) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(0,207,255,.045) 0 1px, transparent 1px 68px);
}

.defi-hero,
.defi-showcase,
.defi-program {
  position: relative;
  z-index: 2;
}

.defi-hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
  max-width: 1260px;
  margin: 0 auto 28px;
}

.defi-copy h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5vw, 82px);
  line-height: .94;
  text-shadow: 0 5px 0 rgba(0,0,0,.54), 0 0 24px rgba(41,232,116,.13);
}

.defi-copy h2 span {
  display: block;
  color: var(--green);
}

.defi-lead {
  max-width: 650px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.82);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.38;
  font-weight: 800;
}

.defi-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.defi-pills span {
  padding: 12px 16px;
  border: 1px solid rgba(41,232,116,.5);
  border-radius: 999px;
  color: var(--green);
  background: rgba(0,0,0,.34);
  box-shadow: 0 0 18px rgba(41,232,116,.12);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.defi-radar {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(41,232,116,.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 52%, rgba(41,232,116,.18), transparent 12%),
    radial-gradient(circle at 50% 52%, transparent 0 20%, rgba(41,232,116,.18) 20.5% 21%, transparent 21.5% 36%, rgba(0,207,255,.16) 36.5% 37%, transparent 37.5% 52%),
    linear-gradient(145deg, rgba(0,207,255,.08), rgba(41,232,116,.09)),
    rgba(0, 8, 14, .86);
  box-shadow: inset 0 0 46px rgba(41,232,116,.08), 0 0 34px rgba(41,232,116,.13);
  overflow: hidden;
}

.defi-image-card {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.defi-image-card img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}

.defi-radar::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(41,232,116,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,207,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .55;
}

.defi-image-card::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.22), transparent 30%, rgba(0,0,0,.08)),
    inset 0 0 0 1px rgba(255,255,255,.06);
  pointer-events: none;
}

.radar-orbit {
  position: absolute;
  left: 48px;
  top: 48px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(41,232,116,.42);
  border-radius: 50%;
  box-shadow: inset 0 0 26px rgba(41,232,116,.08), 0 0 26px rgba(41,232,116,.12);
}

.radar-orbit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform-origin: left center;
  transform: rotate(-28deg);
  box-shadow: 0 0 16px rgba(41,232,116,.7);
}

.radar-orbit span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(41,232,116,.8);
}

.radar-orbit span:nth-child(1) { left: 38px; top: 58px; }
.radar-orbit span:nth-child(2) { right: 42px; top: 92px; background: var(--cyan); box-shadow: 0 0 18px rgba(0,207,255,.8); }
.radar-orbit span:nth-child(3) { left: 118px; bottom: 32px; background: var(--gold); box-shadow: 0 0 18px rgba(255,178,26,.72); }

.scanner-panel {
  position: absolute;
  right: 34px;
  top: 34px;
  width: min(330px, 48%);
  padding: 26px;
  border: 1px solid rgba(0,207,255,.4);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 19, 28, .9), rgba(0, 8, 13, .94));
  box-shadow: 0 18px 34px rgba(0,0,0,.34), inset 0 0 26px rgba(0,207,255,.06);
}

.scanner-panel b,
.scanner-panel p,
.scanner-panel strong,
.scanner-panel small {
  display: block;
}

.scanner-panel b {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
}

.scanner-panel p {
  margin: 18px 0 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.scanner-panel strong {
  margin: 4px 0 10px;
  color: var(--green);
  font-size: 86px;
  line-height: .9;
  text-shadow: 0 0 24px rgba(41,232,116,.5);
}

.scanner-panel small {
  color: rgba(255,255,255,.7);
  line-height: 1.45;
  font-weight: 800;
}

.token-tape {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.token-tape span {
  padding: 16px 10px;
  border: 1px solid rgba(255,178,26,.38);
  border-radius: 12px;
  color: var(--gold);
  background: rgba(0,0,0,.46);
  font-weight: 900;
  text-align: center;
}

.defi-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 24px;
  max-width: 1260px;
  margin: 0 auto 24px;
}

.defi-signal {
  overflow: hidden;
  border: 1px solid rgba(41,232,116,.38);
  border-radius: 18px;
  background: rgba(0, 8, 13, .82);
  box-shadow: inset 0 0 38px rgba(41,232,116,.06), 0 0 26px rgba(41,232,116,.1);
}

.signal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(41,232,116,.2);
}

.defi-result-label {
  padding: 20px 22px 0;
  color: var(--green);
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 900;
  line-height: 1.05;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(0,0,0,.54), 0 0 20px rgba(41,232,116,.22);
}

.defi-radar .defi-result-label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0;
}

.signal-heading span {
  color: rgba(255,255,255,.84);
  font-weight: 900;
  text-transform: uppercase;
}

.signal-heading b {
  color: var(--green);
  font-size: 22px;
  text-transform: uppercase;
}

.defi-signal img {
  display: block;
  width: 100%;
  height: auto;
}

.defi-benefits {
  display: grid;
  gap: 16px;
}

.defi-benefits article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(0,207,255,.34);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(0,207,255,.08), rgba(0,0,0,.42)),
    rgba(0, 9, 15, .88);
}

.defi-benefits article:nth-child(2) {
  border-color: rgba(41,232,116,.45);
}

.defi-benefits small {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
}

.defi-benefits h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 28px;
  text-transform: uppercase;
}

.defi-benefits p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  line-height: 1.45;
}

.defi-program details {
  border-color: rgba(41,232,116,.35);
}

.defi-program summary span {
  color: var(--green);
}

.module-grid {
  grid-template-columns: repeat(3, 1fr);
}

.module-grid article {
  min-height: 220px;
  padding: 30px;
}

.module-grid h3 {
  color: var(--gold);
  font-size: 30px;
}

.two-column,
.community-layout,
.case-detail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  margin: 0;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 800;
}

.community-layout {
  grid-template-columns: 0.75fr 1.25fr;
}

.big-number {
  color: var(--gold);
  font-size: clamp(90px, 12vw, 170px);
  font-weight: 900;
  text-align: center;
  text-shadow: 0 0 34px rgba(255, 178, 26, 0.42);
}

.community-grid {
  grid-template-columns: repeat(3, 1fr);
}

.community-grid article {
  min-height: 130px;
  padding: 24px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.private-club {
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.96), rgba(2, 7, 12, 0.64) 48%, rgba(2, 7, 12, 0.96)),
    radial-gradient(circle at 78% 18%, rgba(255, 178, 26, 0.18), transparent 32%),
    radial-gradient(circle at 18% 58%, rgba(0, 207, 255, 0.14), transparent 34%),
    url("assets/hero-summer-trading.png") center / cover no-repeat;
}

.private-club .section-heading {
  position: relative;
  z-index: 2;
  text-align: center;
}

.community-lead {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.45;
}

.community-block .section-heading h2 span em {
  color: #f8fbff;
  font-style: normal;
}

.club-desc-text {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(226, 237, 247, 0.76);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.65;
}

.club-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  margin-top: 46px;
}

.club-neon-header {
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 178, 26, 0.34);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(4, 14, 25, 0.82), rgba(14, 9, 2, 0.62));
  box-shadow: inset 0 0 28px rgba(255, 178, 26, 0.07), 0 18px 46px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.neon-subtitle {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(0, 207, 255, 0.45);
}

.neon-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: var(--gold);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(255, 178, 26, 0.42);
}

.neon-count {
  margin-top: 12px;
}

.neon-text {
  color: #fff;
  font-size: clamp(22px, 2.8vw, 34px);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.18);
}

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

.club-glass-card {
  min-height: 172px;
  padding: 24px 22px;
  border: 1px solid rgba(0, 207, 255, 0.24);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 24, 34, 0.76), rgba(4, 10, 18, 0.72));
  box-shadow: inset 0 0 28px rgba(0, 207, 255, 0.05), 0 14px 34px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.club-glass-card:nth-child(odd) {
  border-color: rgba(255, 178, 26, 0.32);
}

.club-card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  font-size: 26px;
}

.club-glass-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.club-glass-card p {
  margin: 0;
  color: rgba(226, 237, 247, 0.74);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.48;
}

.club-tg-mockup {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 660px;
  border: 1px solid rgba(0, 207, 255, 0.38);
  border-radius: 24px;
  background: rgba(8, 22, 32, 0.88);
  box-shadow: inset 0 0 28px rgba(0, 207, 255, 0.08), 0 22px 60px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
}

.tg-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.34);
}

.tg-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #45ffb6);
  box-shadow: 0 0 18px rgba(0, 207, 255, 0.46);
  font-size: 22px;
}

.tg-info h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.tg-info span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.tg-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 18px;
  background:
    linear-gradient(120deg, rgba(166, 218, 137, 0.84), rgba(210, 234, 171, 0.88)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.35), transparent 22%);
}

.tg-message {
  position: relative;
  max-width: 92%;
  padding: 13px 16px 24px;
  border-radius: 19px 19px 19px 4px;
  background: #fff;
  color: #101010;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tg-message.mentor {
  align-self: flex-end;
  border-radius: 19px 19px 4px 19px;
  background: #fff8f8;
}

.tg-name {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 900;
}

.tg-name.blue {
  color: #2c8fdc;
}

.tg-name.orange {
  color: #d87a13;
}

.tg-name.red,
.reply-quote b {
  color: #d44949;
}

.tg-message p {
  margin: 0;
  color: #050505;
  font-size: clamp(17px, 1.65vw, 25px);
  font-weight: 500;
  line-height: 1.35;
}

.tg-message span {
  position: absolute;
  right: 14px;
  bottom: 7px;
  color: #909090;
  font-size: 13px;
  font-weight: 500;
}

.reply-quote {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-left: 5px solid #d44949;
  border-radius: 8px;
  background: #f5dddd;
  color: #1e1e1e;
  font-size: 15px;
  line-height: 1.25;
}

.club-footer-banner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  padding: 24px 30px;
  border: 1px solid rgba(255, 178, 26, 0.4);
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(255, 178, 26, 0.14), rgba(0, 207, 255, 0.1));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.banner-icon {
  font-size: 36px;
  filter: drop-shadow(0 0 12px rgba(255, 178, 26, 0.55));
}

.club-footer-banner p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.club-footer-banner strong {
  color: var(--gold);
  font-weight: 900;
}

.private-club .club-layout,
.private-club .club-footer-banner {
  display: none;
}

.product-row {
  grid-template-columns: repeat(2, 1fr);
}

.product-row article {
  padding: 34px;
  border-radius: 20px;
}

.mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-cards span {
  padding: 12px 16px;
  border: 1px solid rgba(255,178,26,.42);
  border-radius: 12px;
  color: var(--gold);
  background: rgba(0,0,0,.35);
  font-weight: 800;
}

.case-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.proof-wall {
  grid-template-columns: repeat(4, 1fr);
}

.case-card {
  min-height: 260px;
  padding: 28px;
  border-radius: 20px;
}

.main-case {
  border-color: rgba(255,178,26,.7);
}

.avatar {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe072, var(--gold-2));
  color: #150900;
  font-size: 44px;
  font-weight: 900;
}

blockquote {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.45;
}

.case-detail {
  grid-template-columns: auto 1fr;
}

.large-text {
  color: var(--gold);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
}

.review-row {
  grid-template-columns: repeat(4, 1fr);
}

.reviews article {
  min-height: 180px;
  padding: 24px;
  border-radius: 18px;
  color: rgba(255,255,255,.88);
  font-size: 19px;
  line-height: 1.5;
}

.cases {
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.95), rgba(3, 11, 18, 0.76) 48%, rgba(2, 7, 12, 0.96)),
    radial-gradient(circle at 75% 12%, rgba(255, 178, 26, 0.2), transparent 32%),
    radial-gradient(circle at 15% 45%, rgba(0, 207, 255, 0.14), transparent 30%),
    url("assets/hero-summer-trading.png") center / cover no-repeat;
}

.cases .section-heading {
  position: relative;
  z-index: 2;
}

.case-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  max-width: 1320px;
  margin: 0 auto;
}

.case-story {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(0, 207, 255, 0.25);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(3, 16, 26, 0.88), rgba(2, 8, 13, 0.82));
  box-shadow: inset 0 0 42px rgba(0, 207, 255, 0.06), 0 22px 58px rgba(0, 0, 0, 0.38);
}

.case-story-main {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  border-color: rgba(255, 178, 26, 0.54);
  background: linear-gradient(135deg, rgba(18, 11, 2, 0.9), rgba(3, 14, 23, 0.86));
  box-shadow: inset 0 0 44px rgba(255, 178, 26, 0.08), 0 24px 64px rgba(0, 0, 0, 0.44);
}

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

.case-story-grid .case-story {
  grid-template-columns: 1fr;
  min-height: 560px;
}

.mobile-case {
  grid-column: 1 / -1;
  grid-template-columns: minmax(330px, 0.74fr) minmax(0, 1.26fr);
  min-height: 0;
}

.tamara-wide {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
}

.case-story-grid .tamara-wide {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  min-height: 0;
}

.tamara-wide .case-copy h3 {
  font-size: clamp(24px, 2.1vw, 34px);
}

.tamara-wide .case-action {
  margin-top: 18px;
}

.case-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 178, 26, 0.38);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 178, 26, 0.08);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.case-copy h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(28px, 2.65vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
}

.case-story-grid .case-copy h3 {
  font-size: clamp(24px, 2vw, 32px);
}

.case-copy p {
  margin: 0;
  color: rgba(233, 241, 250, 0.78);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 650;
  line-height: 1.58;
}

.case-copy em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 18px rgba(41, 232, 116, 0.32);
}

.case-action {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 24px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 178, 26, 0.52);
  border-radius: 12px;
  color: #130900;
  background: linear-gradient(180deg, #ffd26a, var(--gold-2));
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.22);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.twitch-action {
  background: linear-gradient(180deg, #b981ff, #7a38ff);
  color: #fff;
  border-color: rgba(185, 129, 255, 0.68);
  box-shadow: 0 12px 28px rgba(122, 56, 255, 0.28);
}

.case-visuals {
  min-height: 340px;
  border: 1px solid rgba(0, 207, 255, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.62)),
    repeating-linear-gradient(90deg, rgba(0, 207, 255, 0.08) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(0, 207, 255, 0.06) 0 1px, transparent 1px 48px);
}

.ravshan-visuals {
  display: block;
  min-height: 440px;
  padding: 14px;
}

.visual-slot {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(255, 178, 26, 0.28);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(2, 12, 20, 0.92), rgba(10, 8, 4, 0.86));
  box-shadow: inset 0 0 26px rgba(255, 178, 26, 0.05);
}

.visual-slot strong,
.visual-slot span,
.leaderboard-slot span,
.leaderboard-slot b,
.phone-frame span,
.phone-frame small {
  display: block;
}

.visual-slot strong {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.visual-slot span {
  margin-top: 6px;
  color: rgba(233, 241, 250, 0.68);
  font-weight: 700;
}

.twitch-image-slot {
  position: relative;
  overflow: hidden;
  justify-content: flex-end;
  color: #fff;
  background: #05070b;
}

.twitch-image-slot img {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.25s ease;
  background: #02070c;
}

.twitch-image-slot::after {
  display: none;
}

.twitch-image-slot strong,
.twitch-image-slot span {
  position: relative;
  z-index: 1;
}

.twitch-image-slot:hover img {
  transform: scale(1.035);
}

.twitch-slot {
  width: 100%;
  height: 100%;
  min-height: 412px;
}

.diary-slot {
  border-color: rgba(0, 207, 255, 0.28);
}

.pnl-slot strong {
  color: var(--green);
}

.tamara-stack {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  padding: 14px;
}

.tamara-video-preview {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 0;
  max-height: 430px;
  padding: 0;
  border-color: rgba(255, 178, 26, 0.42);
  background: #05070b;
}

.tamara-video-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 430px;
  min-height: 0;
  object-fit: contain;
  background: #05070b;
  transition: transform 0.25s ease;
}

.tamara-video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
}

.tamara-video-preview:hover img {
  transform: scale(1.035);
}

.play-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 178, 26, 0.64);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.66);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.portrait-slot,
.pnl-stack span,
.leaderboard-slot,
.phone-frame,
.review-screenshot {
  border: 1px solid rgba(255, 178, 26, 0.28);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.34);
}

.portrait-slot {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.pnl-stack {
  display: grid;
  gap: 12px;
  align-content: center;
}

.pnl-stack span {
  display: block;
  padding: 18px;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
  transform: rotate(-2deg);
}

.pnl-stack span:nth-child(2) {
  transform: rotate(2deg);
  border-color: rgba(0, 207, 255, 0.28);
}

.pnl-stack span:nth-child(3) {
  transform: rotate(-1deg);
}

.tournament-visual {
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 24px;
}

.stanislav-visual {
  overflow: hidden;
  padding: 14px;
  background: #05070b;
}

.stanislav-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  border-radius: 12px;
}

.place-badge {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border: 2px solid rgba(255, 178, 26, 0.74);
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle, rgba(255, 178, 26, 0.18), rgba(0, 0, 0, 0.34));
  box-shadow: 0 0 42px rgba(255, 178, 26, 0.2);
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
}

.leaderboard-slot {
  width: 100%;
  padding: 20px;
}

.leaderboard-slot span {
  color: rgba(233, 241, 250, 0.68);
  font-weight: 800;
}

.leaderboard-slot b {
  margin-top: 8px;
  color: #fff;
  font-size: 20px;
}

.mobile-pnl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px;
}

.evgeniy-visual {
  display: block;
  overflow: hidden;
  padding: 14px;
  background: #05070b;
  max-height: 620px;
}

.evgeniy-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 592px;
  min-height: 360px;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto;
}

.phone-frame {
  width: min(230px, 44%);
  min-height: 380px;
  padding: 24px 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(2, 8, 14, 0.98), rgba(2, 2, 2, 0.96)),
    radial-gradient(circle at 50% 15%, rgba(41, 232, 116, 0.2), transparent 38%);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.04), 0 20px 36px rgba(0, 0, 0, 0.35);
}

.phone-frame.secondary {
  transform: translateY(30px) rotate(3deg);
  border-color: rgba(0, 207, 255, 0.3);
}

.phone-frame span {
  color: rgba(233, 241, 250, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.phone-frame strong {
  display: block;
  margin: 70px 0 8px;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
}

.phone-frame small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.reviews-proof {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 178, 26, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 178, 26, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(10, 9, 6, 0.88), rgba(3, 14, 22, 0.8));
  box-shadow: inset 0 0 42px rgba(255, 178, 26, 0.04), 0 22px 54px rgba(0, 0, 0, 0.32);
}

.reviews-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 28px;
}

.reviews-proof-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.2vw, 54px);
  line-height: 1.1;
  text-transform: uppercase;
}

.reviews-proof-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(233, 241, 250, 0.72);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 700;
  line-height: 1.55;
}

.reviews-carousel {
  position: relative;
}

.reviews-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 58px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-screenshot {
  flex: 0 0 clamp(270px, 22vw, 380px);
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 470px;
  max-height: 540px;
  padding: 8px;
  border: 1px solid rgba(255, 178, 26, 0.28);
  border-radius: 18px;
  background: #061017;
  scroll-snap-align: start;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  cursor: zoom-in;
}

.review-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 524px;
  object-fit: contain;
  border-radius: 12px;
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.review-lightbox.is-open {
  display: grid;
}

.review-lightbox img {
  display: block;
  max-width: min(94vw, 980px);
  max-height: 90vh;
  border: 1px solid rgba(255, 178, 26, 0.42);
  border-radius: 16px;
  background: #061017;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
}

.review-lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 178, 26, 0.54);
  border-radius: 50%;
  color: #130900;
  background: linear-gradient(180deg, #ffe072, var(--gold-2));
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 178, 26, 0.56);
  border-radius: 50%;
  color: #120900;
  background: linear-gradient(180deg, #ffe072, var(--gold-2));
  box-shadow: 0 14px 32px rgba(255, 122, 0, 0.24), 0 0 30px rgba(0, 0, 0, 0.42);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.reviews-arrow-prev {
  left: 0;
}

.reviews-arrow-next {
  right: 0;
}

.reviews-arrow:hover {
  filter: brightness(1.08);
}

.reviews-more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 58px;
  margin: 22px auto 0;
  padding: 0 32px;
  border: 1px solid rgba(255, 178, 26, 0.76);
  border-radius: 999px;
  color: #130900;
  background: linear-gradient(180deg, #ffe072, var(--gold-2));
  box-shadow: 0 16px 34px rgba(255, 122, 0, 0.22), 0 0 30px rgba(255, 178, 26, 0.16);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.camp-system {
  display: grid;
  align-content: center;
  min-height: min(760px, 82vh);
  background:
    linear-gradient(115deg, rgba(0, 8, 13, 0.72), rgba(0, 18, 24, 0.5) 52%, rgba(36, 18, 0, 0.34)),
    radial-gradient(ellipse at 18% 18%, rgba(0,207,255,.22), transparent 30%),
    radial-gradient(ellipse at 76% 20%, rgba(41,232,116,.14), transparent 32%),
    radial-gradient(ellipse at 92% 14%, rgba(255,178,26,.1), transparent 30%),
    repeating-linear-gradient(90deg, rgba(0,207,255,.055) 0 1px, transparent 1px 86px);
  border-color: rgba(0, 207, 255, 0.28);
}

.camp-system-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(26px, 3vw, 42px);
  max-width: 1180px;
  margin: 0 auto;
}

.camp-system-inner::before {
  content: none;
  position: absolute;
  left: 0;
  top: 8px;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green), transparent);
  box-shadow: 0 0 18px rgba(0,207,255,.32);
}

.camp-system .section-heading {
  max-width: 980px;
  margin: 0;
  text-align: left;
}

.camp-system .section-heading h2 {
  color: #f8fbff;
  font-size: clamp(44px, 5.4vw, 82px);
  font-weight: 640;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 5px 0 rgba(0,0,0,.54), 0 0 24px rgba(0,207,255,.12);
}

.camp-system .section-heading h2 span {
  color: var(--gold);
  text-shadow: 0 5px 0 rgba(0,0,0,.54), 0 0 24px rgba(255,178,26,.2);
}

.camp-system .section-heading p {
  color: #f8fbff;
  max-width: 760px;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.42;
}

.camp-system .about-result {
  max-width: 1040px;
  margin: 0;
  padding: 20px 24px;
  border-color: rgba(41, 232, 116, 0.62);
  color: #dfffea;
  background:
    linear-gradient(90deg, rgba(41,232,116,.1), rgba(0,207,255,.07)),
    rgba(0, 0, 0, 0.34);
  box-shadow: 0 0 24px rgba(41,232,116,.12), inset 0 0 24px rgba(0,207,255,.06);
  text-align: left;
  font-size: clamp(22px, 2vw, 30px);
}

.camp-system .about-result strong {
  font-weight: 520;
}

.stats {
  grid-template-columns: repeat(6, 1fr);
}

.stats div {
  padding: 28px 18px;
  border-radius: 18px;
  text-align: center;
}

.stats b {
  display: block;
  color: var(--gold);
  font-size: 48px;
}

.stats span {
  color: var(--muted);
}

.faq details {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0;
  border-color: rgba(0, 167, 255, 0.25);
  border-radius: 12px;
  background: rgba(8, 16, 28, 0.6);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.faq .section-heading {
  margin-bottom: 44px;
}

.faq .section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.faq-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.faq details:hover {
  border-color: rgba(0, 167, 255, 0.6);
  background: rgba(12, 22, 38, 0.82);
}

.faq summary {
  display: flex;
  align-items: center;
  padding: 24px 26px;
  cursor: pointer;
  list-style: none;
  color: var(--gold);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "";
  flex: 0 0 auto;
  margin-right: 15px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--gold);
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}

.faq details[open] summary::before {
  transform: rotate(90deg);
}

.faq p {
  margin: 0;
  padding: 0 26px 24px 54px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.faq p b {
  color: #fff;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.86)),
    url("assets/camp-style-frame.png") center / cover no-repeat;
}

.final-cta h2,
.final-cta p,
.final-cta .hero-actions {
  position: relative;
  z-index: 2;
}

.final-cta p {
  color: var(--muted);
  font-size: 24px;
}

.pricing-section,
.final-cta {
  background:
    linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.82)),
    url("assets/camp-style-frame.png") center / cover no-repeat;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr 1.7fr;
  gap: 24px;
  align-items: center;
  margin: 0 0 28px;
  padding: 28px;
  border: 1px solid rgba(0, 207, 255, 0.22);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.62);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-cta {
    display: none;
  }

  .nav {
    justify-content: flex-end;
    gap: 18px;
    font-size: 14px;
  }

  .hero-badge,
  .hero-badge {
    display: none;
  }

  .club-board {
    display: grid;
    top: 82px;
    right: 20px;
    width: 230px;
    padding: 14px 16px;
    font-size: 12.5px;
  }

  .club-board b,
  .club-board span {
    min-height: 44px;
    gap: 9px;
  }

  .tariff-grid,
  .pricing-showcase,
  .feature-grid,
  .review-row,
  .stats,
  .skill-grid,
  .module-grid,
  .roadmap,
  .community-grid,
  .proof-wall,
  .path-line,
  .benefit-mini-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .tariff-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .tariff-benefits div:nth-child(3n) {
    border-right: 0;
  }

  .pricing-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ai-grid,
  .academy-hero,
  .club-layout,
  .case-story,
  .case-story-main,
  .mobile-case,
  .case-grid,
  .product-row,
  .split-grid,
  .two-column,
  .community-layout,
  .case-detail,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .versus {
    margin: 0 auto;
  }

  .split-grid {
    align-items: center;
  }

  .split-block {
    min-height: auto;
  }

  .split-block h2 {
    font-size: clamp(44px, 7vw, 72px);
  }

  .roadmap-block {
    min-height: auto;
  }

  .roadmap-block .section-heading {
    margin-bottom: 42px;
  }

  .roadmap-route {
    display: none;
  }

  .roadmap article,
  .roadmap article:nth-of-type(odd) {
    margin-top: 0;
  }

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

  .roadmap-path-line {
    display: none;
  }

  .academy-hero {
    grid-template-columns: 1fr;
  }

  .defi-hero,
  .defi-showcase {
    grid-template-columns: 1fr;
  }

  .case-story-grid {
    grid-template-columns: 1fr;
  }

  .case-story-grid .case-story {
    min-height: auto;
  }

  .club-tg-mockup {
    min-height: auto;
  }

  .lesson-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1181px) and (max-width: 1440px) {
  .site-header {
    padding-top: 8px;
    padding-bottom: 8px;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .brand {
    width: 64px;
    height: 64px;
  }

  .nav {
    gap: 20px;
    font-size: 15px;
    font-weight: 560;
  }

  .header-cta {
    min-height: 54px;
    padding: 0 26px;
    font-size: 15px;
  }

  .hero {
    min-height: 820px;
    padding-top: 24px;
  }

  .hero-content {
    max-width: 880px;
    margin-top: 10px;
  }

  .hero-title-art {
    width: 760px;
  }

  .hero-lead {
    font-size: 35px;
  }

  .hero-pills {
    font-size: 24px;
    margin-top: 118px;
  }

  .hero-copy {
    font-size: 25px;
  }

  .hero .btn {
    min-width: 305px;
    min-height: 68px;
    font-size: 20px;
  }

  .club-board {
    top: 98px;
    right: 36px;
    width: 285px;
    font-size: 17px;
  }

  .hero-strip {
    max-width: 780px;
    font-size: 30px;
  }

  .cases {
    padding-inline: 54px;
  }

  .case-story-main,
  .mobile-case {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .case-story-grid {
    grid-template-columns: 1fr;
  }

  .case-story-grid .case-story {
    grid-template-columns: 0.78fr 1.22fr;
    min-height: 0;
  }

  .case-copy h3 {
    font-size: 36px;
  }

  .case-story-grid .case-copy h3 {
    font-size: 30px;
  }

  .tamara-video-preview,
  .tamara-video-preview img,
  .stanislav-visual img,
  .evgeniy-visual img {
    min-height: 330px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1520px);
  }

  .site-header {
    position: relative;
    top: 0;
  }

  .brand {
    width: 60px;
    height: 60px;
    font-size: 13px;
  }

  .nav {
    display: none;
  }

  .section {
    padding: 34px 18px;
    border-radius: 18px;
  }

  .hero {
    min-height: auto;
  }

  .club-board {
    display: none;
  }

  .tariff-grid,
  .pricing-showcase,
  .feature-grid,
  .review-row,
  .stats,
  .skill-grid,
  .module-grid,
  .roadmap,
  .club-cards-grid,
  .reviews-proof-head,
  .community-grid,
  .proof-wall,
  .path-line,
  .benefit-mini-row {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .tariff-benefits {
    grid-template-columns: 1fr;
  }

  .tariff-benefits div,
  .tariff-benefits div:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 178, 26, 0.22);
  }

  .tariff-benefits div:last-child {
    border-bottom: 0;
  }

  .hero-pills span:not(:last-child)::after {
    content: "";
    margin-left: 0;
  }

  .split-block {
    padding-top: 54px;
  }

  .roadmap-block {
    padding-top: 48px;
  }

  .roadmap-block .section-heading {
    margin-bottom: 30px;
  }

  .roadmap {
    gap: 16px;
  }

  .roadmap article {
    min-height: auto;
    padding: 24px 20px;
  }

  .roadmap span {
    min-height: auto;
  }

  .roadmap p {
    font-size: 14px;
  }

  .roadmap-heading h2 {
    font-size: 34px;
  }

  .summer-roadmap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .summer-road-card {
    min-height: auto;
  }

  .ravshan-visuals,
  .tamara-stack {
    grid-template-columns: 1fr;
  }

  .twitch-slot {
    grid-row: auto;
  }

  .mobile-pnl {
    align-items: stretch;
    flex-direction: column;
  }

  .phone-frame {
    width: 100%;
    min-height: 260px;
  }

  .phone-frame.secondary {
    transform: none;
  }

  .review-screenshot {
    flex-basis: 220px;
    min-height: 310px;
  }

  .club-neon-header {
    padding: 22px 18px;
  }

  .neon-title {
    flex-wrap: wrap;
  }

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

  .tg-message {
    max-width: 100%;
  }

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

  .academy-copy h2 {
    font-size: 38px;
  }

  .defi-copy h2 {
    font-size: 38px;
  }

  .defi-radar {
    min-height: 560px;
  }

  .defi-image-card {
    min-height: auto;
  }

  .radar-orbit,
  .scanner-panel,
  .token-tape {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .radar-orbit {
    width: 220px;
    height: 220px;
    margin: 24px auto 18px;
  }

  .scanner-panel {
    margin: 0 18px 18px;
  }

  .token-tape {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 18px 18px;
  }

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

  .academy-program summary {
    align-items: flex-start;
    gap: 8px;
    padding: 20px;
    flex-direction: column;
  }

  .academy-program summary::after {
    position: absolute;
    right: 22px;
    margin-left: 0;
  }

  .lesson-list {
    padding: 0 14px 14px;
  }

  .split-block h2 {
    max-width: 100%;
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .split-block .section-heading p:not(.eyebrow) {
    font-size: 19px;
  }

  .danger-card,
  .success-card {
    min-height: auto;
  }

  .versus {
    width: 96px;
    height: 96px;
    font-size: 34px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .page-shell {
    width: 100%;
  }

  .section {
    margin-bottom: 16px;
    padding: 34px 20px;
    border-radius: 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .cases .section-heading h2,
  .pricing-section .section-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.05;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.5;
  }

  .site-header {
    min-height: 76px;
    padding: 8px 14px;
    border-radius: 0 0 16px 16px;
  }

  .brand {
    width: 58px;
    height: 58px;
  }

  .header-cta {
    min-height: 48px;
    padding: 0 18px;
    font-size: 13px;
  }

  .hero {
    padding: 42px 18px 34px;
    text-align: center;
  }

  .hero-title-art {
    width: min(255px, 82vw);
    margin-bottom: 18px;
  }

  .hero-lead {
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.18;
  }

  .hero-pills {
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 20px;
    line-height: 1.2;
  }

  .hero-copy {
    max-width: 31ch;
    font-size: 21px;
    line-height: 1.35;
  }

  .hero-actions,
  .final-cta .hero-actions {
    width: 100%;
    gap: 14px;
  }

  .hero .btn,
  .btn,
  .case-action {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding-inline: 18px;
    font-size: 17px;
    white-space: normal;
    text-align: center;
  }

  .hero-strip,
  .formula,
  .section-strip {
    max-width: 100%;
    padding: 16px 18px;
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .stats-copy h3 {
    font-size: 32px;
  }

  .stats-copy b {
    font-size: 58px;
  }

  .stats-copy strong {
    font-size: 48px;
  }

  .stats-copy span {
    font-size: 34px;
  }

  .ai-telegram-cta {
    justify-content: center;
    width: fit-content;
  }

  .about .feature-grid {
    gap: 14px;
  }

  .about .feature-grid article {
    min-height: 0;
    padding: 24px 18px;
  }

  .about .feature-grid span {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    font-size: 28px;
  }

  .about .feature-grid h3 {
    font-size: 20px;
  }

  .about-result {
    padding: 18px 16px;
    font-size: 21px;
    line-height: 1.18;
  }

  .camp-system .section-heading {
    text-align: left;
  }

  .camp-system .section-heading h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .camp-system .section-heading p {
    font-size: 19px;
  }

  .summer-roadmap {
    gap: 18px;
    margin-top: 34px;
  }

  .summer-road-card {
    padding: 34px 24px 24px;
    border-radius: 18px;
  }

  .summer-road-card h3 {
    font-size: 22px;
  }

  .summer-road-card p {
    font-size: 16px;
  }

  .ai h2,
  .academy-copy h2,
  .defi-copy h2 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.98;
  }

  .telegram-card,
  .signal-card,
  .academy-visual,
  .defi-radar,
  .case-story,
  .reviews-proof,
  .price-card {
    border-radius: 18px;
  }

  .case-showcase,
  .case-story-grid {
    gap: 16px;
  }

  .case-story,
  .case-story-main,
  .case-story-grid .case-story,
  .mobile-case,
  .tamara-wide,
  .case-story-grid .tamara-wide {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px;
  }

  .case-copy h3,
  .case-story-grid .case-copy h3,
  .tamara-wide .case-copy h3 {
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: 1.08;
  }

  .case-copy p {
    font-size: 17px;
    font-weight: 500;
  }

  .case-visuals,
  .ravshan-visuals {
    min-height: 0;
  }

  .twitch-image-slot,
  .tamara-video-preview,
  .stanislav-visual,
  .evgeniy-visual {
    min-height: 0;
  }

  .twitch-image-slot img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: 320px;
  }

  .tamara-video-preview img,
  .stanislav-visual img,
  .evgeniy-visual img {
    min-height: 0;
    max-height: 360px;
    object-fit: contain;
  }

  .reviews-proof {
    padding: 24px 14px;
  }

  .reviews-proof-head {
    gap: 12px;
    margin-bottom: 20px;
  }

  .reviews-proof-head h3 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .reviews-slider {
    gap: 14px;
    padding: 4px 44px 16px;
  }

  .review-screenshot {
    flex-basis: calc(100vw - 116px);
    min-height: 360px;
    max-height: 430px;
  }

  .reviews-arrow {
    width: 44px;
    height: 44px;
  }

  .pricing-showcase {
    gap: 20px;
    margin-top: 42px;
  }

  .price-card {
    padding: 42px 20px 18px;
  }

  .price-card h3 {
    font-size: 34px;
  }

  .price-card ul {
    font-size: 16px;
  }

  .tariff-benefits {
    overflow: hidden;
    border-radius: 16px;
  }

  .pricing-cta {
    padding: 22px 18px;
    overflow: hidden;
  }

  .pricing-cta strong {
    font-size: 25px;
    line-height: 1.08;
  }

  .pricing-cta .btn {
    font-size: 15px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq summary {
    padding: 20px 18px;
    font-size: 18px;
  }

  .faq p {
    padding: 0 18px 20px 43px;
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 48px 1fr 48px;
    min-height: 82px;
    padding: 10px 16px;
    border-radius: 0 0 18px 18px;
  }

  .menu-toggle {
    position: relative;
    z-index: 35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(0, 207, 255, 0.55);
    border-radius: 12px;
    background: rgba(0, 10, 18, 0.72);
    box-shadow: 0 0 18px rgba(0, 207, 255, 0.18);
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    border-radius: 99px;
    background: #f8fbff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header .brand {
    justify-self: center;
    width: 58px;
    height: 58px;
  }

  .site-header .header-cta {
    display: none;
  }

  .site-header .nav {
    position: absolute;
    left: 12px;
    right: auto;
    top: calc(100% + 8px);
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-items: stretch;
    justify-content: stretch;
    gap: 0;
    width: min(292px, calc(100vw - 24px));
    max-height: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 207, 255, 0);
    border-radius: 16px;
    background: rgba(1, 8, 14, 0.96);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.48), 0 0 24px rgba(0, 207, 255, 0.14);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.24s ease, opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  }

  .site-header.is-open .nav {
    max-height: 520px;
    border-color: rgba(0, 207, 255, 0.42);
    opacity: 1;
    transform: translateY(0);
  }

  .site-header .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
    font-size: 16px;
    font-weight: 560;
    letter-spacing: 0.02em;
  }

  .site-header .nav .nav-manager {
    display: flex;
    color: #080500;
    background: linear-gradient(180deg, #ffe072, var(--gold), var(--gold-2));
    font-weight: 700;
  }

  .site-header .nav a:last-child {
    border-bottom: 0;
  }

  .hero-title-art {
    display: none;
  }

  .hero-title-mobile {
    display: grid;
    gap: 0;
    margin: 12px auto 22px;
    text-align: center;
    text-transform: uppercase;
    line-height: 0.95;
    filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.45));
  }

  .hero-title-mobile span {
    color: #f7f9fb;
    font-size: clamp(44px, 13vw, 58px);
    font-weight: 800;
  }

  .hero-title-mobile strong {
    color: var(--gold);
    font-size: clamp(58px, 17vw, 76px);
    font-weight: 850;
    text-shadow: 0 0 22px rgba(255, 178, 26, 0.38);
  }
}
