:root {
  /* NEW Palette — deep plum night + mint neon + electric blue + hot magenta */
  --ink: #090611;        /* deep plum-black background */
  --panel: #151027;      /* rich eggplant panel */

  --cyan: #38F2C4;       /* mint neon */
  --teal: #2A7CFF;       /* electric blue */
  --violet: #ff43d6;     /* hot magenta */
  --green: #B6FF5A;      /* lime pop */
  --orange: #FFB020;     /* amber glow */
  --red: #FF4A3D;        /* coral red */
  --white: #F7F2FF;      /* soft lavender-white */

  --radius: 22px;

  /* tuned glows for new palette */
  --shadow-neon: 0 0 1.2rem rgba(56, 242, 196, .30),
                 0 0 3rem rgba(255, 79, 216, .20);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, .62),
                   inset 0 0 0 1px rgba(255, 255, 255, .08);
}

* { box-sizing: border-box }

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(1200px 800px at 60% -10%, #2A0F3A 0%, #090611 62%) fixed;
  color: var(--white);
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Container: 90% on mobile, centered on desktop */
.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

/* ===== Global glow that spans entire page (not cut by sections) ===== */
.global-glow {
  position: fixed;
  inset: -20vmax;
  z-index: -1;
  pointer-events: none;
  filter: saturate(1.08) contrast(1.06);
}

.global-glow .orb {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .42;
  mix-blend-mode: screen;
}

.orb-a {
  background: radial-gradient(circle at 40% 40%, var(--cyan), transparent 60%);
  left: -10vmax;
  top: -6vmax;
  animation: float 9s ease-in-out infinite;
}

.orb-b {
  background: radial-gradient(circle at 60% 60%, var(--violet), transparent 65%);
  right: -6vmax;
  top: 10vmax;
  animation: float 12s ease-in-out infinite reverse;
}

.orb-c {
  background: radial-gradient(circle at 50% 50%, var(--teal), transparent 60%);
  left: 30vmax;
  bottom: -10vmax;
  animation: float 14s ease-in-out infinite;
}

@keyframes float {
  50% { transform: translateY(-2vmax) translateX(1vmax) }
}

.scanlines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 1100px at 80% 10%, rgba(255, 79, 216, .16), transparent 42%),
    radial-gradient(900px 900px at 12% 82%, rgba(42, 124, 255, .14), transparent 40%),
    repeating-linear-gradient(
      180deg,
      rgba(247, 242, 255, .03) 0px,
      rgba(247, 242, 255, .03) 1px,
      transparent 2px,
      transparent 6px
    );
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: .75;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font: 900 22px/1 Montserrat, sans-serif;
  letter-spacing: .5px;
  text-decoration: none;
  color: var(--white);
}

.logo span {
  background: linear-gradient(110deg, var(--cyan), var(--teal) 38%, var(--violet));
  -webkit-background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: rgba(247, 242, 255, .86);
  text-decoration: none;
  opacity: .86;
}

.nav a:hover {
  opacity: 1;
  text-shadow: 0 0 14px rgba(255, 79, 216, .35);
}

.burger { display: none }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: var(--shadow-strong);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform, filter;
}

.btn-primary {
  background: linear-gradient(110deg, var(--cyan), var(--teal) 42%, var(--violet) 92%);
  color: #070611;
  border-color: transparent;
  box-shadow: 0 12px 46px rgba(56, 242, 196, .16), 0 0 70px rgba(255, 79, 216, .12);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 70px rgba(255, 79, 216, .20), 0 0 90px rgba(42, 124, 255, .16);
}

.btn-ghost {
  background: rgba(247, 242, 255, .05);
  color: var(--white);
  border: 1px solid rgba(247, 242, 255, .10);
}

.btn-ghost:hover {
  background: rgba(247, 242, 255, .08);
  border-color: rgba(247, 242, 255, .20);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 72px 0 40px;
}

.hero__wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__copy .eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
}

.hero__copy h1 {
  font: 900 60px/1.02 Montserrat, sans-serif;
  margin: 0;
}

.hero__copy .stroke {
  position: relative;
  display: inline-block;
  text-shadow: 0 0 18px rgba(56, 242, 196, .22);
}

h1 .stroke {
  position: relative;
  display: inline-block;
  text-shadow: 0 0 18px rgba(56, 242, 196, .22);
}

.hero__copy .sub {
  opacity: .88;
  max-width: 540px;
}

.cta {
  display: flex;
  gap: 12px;
  margin: 22px 0 26px;
}

.hero__icons {
  display: flex;
  gap: 14px;
}

.hero__icons img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  background: rgba(21, 16, 39, .9);
  padding: 10px;
  box-shadow: var(--shadow-neon);
  border: 1px solid rgba(247, 242, 255, .10);
}

.hero__art {
  position: relative;
  min-height: 420px;
  isolation: isolate;
}

.hero__art img {
  position: absolute;
  inset: auto;
  object-fit: contain;
  object-position: center;
  width: auto;
  height: auto;
  max-width: 100%;
}

.hero-plate {
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  filter: drop-shadow(0 22px 55px rgba(0, 0, 0, .68));
}

.hero-chef { bottom: 120px; left: 20% }
.hero-waiter { bottom: 90px; right: 14% }

.hero-pizza {
  bottom: 210px;
  left: 8%;
  animation: float 5s ease-in-out infinite;
}

.ring {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  mix-blend-mode: screen;
  opacity: .78;
  pointer-events: none;
}

.ring-a {
  width: 280px;
  height: 280px;
  left: 8%;
  bottom: 40px;
  background: radial-gradient(circle, rgba(56, 242, 196, .50), transparent 60%);
}

.ring-b {
  width: 220px;
  height: 220px;
  right: 8%;
  bottom: 120px;
  background: radial-gradient(circle, rgba(255, 79, 216, .44), transparent 60%);
}

.clouds {
  text-align: center;
  margin-top: 10px;
}

.clouds img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  opacity: .78;
}

/* ===== FEATURES ===== */
.features { padding: 64px 0 }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: linear-gradient(165deg, rgba(247, 242, 255, .07), rgba(247, 242, 255, .02));
  border: 1px solid rgba(247, 242, 255, .11);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-strong);
}

.feature .icon img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  background: rgba(21, 16, 39, .92);
  padding: 10px;
  box-shadow: var(--shadow-neon);
  border: 1px solid rgba(247, 242, 255, .10);
}

/* ===== SECTION HEAD ===== */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  font: 900 36px/1.05 Montserrat, sans-serif;
  margin: 0;
}

.highlight {
  background: linear-gradient(110deg, var(--cyan), var(--teal) 42%, var(--violet) 92%);
  -webkit-background-clip: text;
  color: transparent;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 360px;
  background: rgba(17, 12, 29, .92);
  border: 1px solid rgba(247, 242, 255, .10);
  box-shadow: var(--shadow-strong);
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 90px rgba(255, 79, 216, .18), 0 0 110px rgba(56, 242, 196, .14);
}

.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.card::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(
    from 0deg,
    transparent 0 66%,
    rgba(56, 242, 196, .20),
    rgba(42, 124, 255, .16),
    rgba(255, 79, 216, .18),
    rgba(255, 176, 32, .16)
  );
  filter: blur(34px);
  opacity: .33;
  transform: rotate(10deg);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Label overlays */
.label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  font-weight: 800;
  letter-spacing: .3px;
  border-radius: 999px;
  color: #070611;
  background: linear-gradient(110deg, var(--orange), var(--green));
  box-shadow: var(--shadow-neon);
}

.label-ribbon {
  top: 16px;
  left: -10px;
  border-radius: 8px 999px 999px 8px;
  padding: 8px 18px 8px 22px;
  background: linear-gradient(110deg, var(--red), var(--violet));
}

.label-gradient {
  background: linear-gradient(110deg, var(--cyan), var(--teal));
}

/* Interesting inserts inside the card */
.inserts {
  position: absolute;
  right: 10px;
  bottom: 56px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.inserts img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  background: rgba(21, 16, 39, .92);
  padding: 8px;
  box-shadow: var(--shadow-neon);
  border: 1px solid rgba(247, 242, 255, .10);
}

/* Card body */
.card-body {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(7, 6, 17, 0) 0%,
    rgba(7, 6, 17, .62) 40%,
    rgba(7, 6, 17, .90) 100%
  );
  padding: 16px;
  border-radius: 16px;
}

.card-body h3 {
  margin: 0 0 4px;
  font-weight: 900;
}

.card-body p {
  margin: 0;
  opacity: .88;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  border: 1px solid rgba(247, 242, 255, .18);
  background: rgba(21, 16, 39, .55);
  backdrop-filter: blur(7px);
}

/* ===== Footer ===== */
.site-footer { padding: 40px 0 60px }

.footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.socials a {
  display: inline-flex;
  padding: 8px;
  border-radius: 12px;
  background: rgba(247, 242, 255, .06);
  border: 1px solid rgba(247, 242, 255, .10);
}

.socials img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  object-position: center;
}

/* ===== Tilt elements ===== */
.tilt {
  will-change: transform;
  transform-style: preserve-3d;
}

/* ===== Sparkles ===== */
.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.spark svg {
  width: 14px;
  height: 14px;
  fill: rgba(247, 242, 255, .46);
}

.use-a, .use-b, .use-c, .use-d, .use-e {
  position: absolute;
  animation: spark 8s linear infinite;
}

.use-a { top: 15%; left: 8% }
.use-b { top: 42%; left: 12% }
.use-c { top: 72%; right: 10% }
.use-d { top: 24%; right: 22% }
.use-e { bottom: 10%; left: 48% }

@keyframes spark {
  0% { transform: translateY(0) rotate(0) }
  50% { transform: translateY(-20px) rotate(120deg) }
  100% { transform: translateY(0) rotate(360deg) }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__wrap { grid-template-columns: 1fr }
  .hero__art { min-height: 360px }
  .features__grid { grid-template-columns: 1fr 1fr }
  .cards-grid { grid-template-columns: 1fr 1fr }
}

@media (max-width: 640px) {
  .hero__art { display: none; }
  .nav { display: none }
  .burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
  }
  .burger span {
    width: 26px;
    height: 2px;
    background: var(--white);
  }
  .hero__copy h1 { font-size: 44px }
  .features__grid { grid-template-columns: 1fr }
  .cards-grid { grid-template-columns: 1fr }
  .offset-1, .offset-2 { transform: none }
}

/* ===== Leaderboard ===== */
.leaderboard { padding: 70px 0 }

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.leader-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 320px;
  background: rgba(17, 12, 29, .92);
  border: 1px solid rgba(247, 242, 255, .10);
  box-shadow: var(--shadow-strong);
  transition: transform .25s ease, box-shadow .25s ease;
}

.leader-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 90px rgba(255, 79, 216, .18), 0 0 110px rgba(56, 242, 196, .14);
}

.leader-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.leader-card::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(
    from 0deg,
    transparent 0 66%,
    rgba(56, 242, 196, .20),
    rgba(42, 124, 255, .16),
    rgba(255, 79, 216, .18),
    rgba(255, 176, 32, .16)
  );
  filter: blur(34px);
  opacity: .30;
  transform: rotate(10deg);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* reuse labels/inserts/badge styles from cards */
.leader-card .label { top: 14px; left: 14px; }
.leader-card .label-ribbon { top: 16px; left: -10px; }
.leader-card .badge { top: 14px; right: 14px; }

.leader-body {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(7, 6, 17, 0) 0%,
    rgba(7, 6, 17, .62) 40%,
    rgba(7, 6, 17, .90) 100%
  );
  padding: 16px;
  border-radius: 16px;
}

.leader-body h3 {
  margin: 0 0 4px;
  font-weight: 900;
}

.leader-body p {
  margin: 0;
  opacity: .88;
}

.leader-card .inserts {
  position: absolute;
  right: 10px;
  bottom: 56px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.leader-card .inserts img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  background: rgba(21, 16, 39, .92);
  padding: 8px;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .62),
    0 0 28px rgba(255, 79, 216, .12),
    0 0 44px rgba(56, 242, 196, .10);
  border: 1px solid rgba(247, 242, 255, .10);
}

/* ===== Roadmap ===== */
.roadmap { padding: 80px 0 }

.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 24px;
  isolation: isolate;
}

.roadmap-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  height: 4px;
  z-index: 0;
  background: linear-gradient(110deg, var(--cyan), var(--teal) 42%, var(--violet) 92%);
  box-shadow: 0 0 24px rgba(56, 242, 196, .18), 0 0 44px rgba(255, 79, 216, .14);
  border-radius: 999px;
}

.road-step {
  position: relative;
  background: linear-gradient(165deg, rgba(247, 242, 255, .07), rgba(247, 242, 255, .02));
  border: 1px solid rgba(247, 242, 255, .11);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-strong);
  text-align: left;
}

.road-step .node {
  position: absolute;
  left: calc(50% - 16px);
  top: -8px;
  width: 45px;
  height: 45px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--cyan), var(--violet));
  box-shadow: 0 0 30px rgba(56, 242, 196, .28), 0 0 62px rgba(255, 79, 216, .22);
  display: grid;
  place-items: center;
}

.step-icon {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 10px rgba(56, 242, 196, .22));
}

.road-step h3 {
  margin: 18px 0 6px;
  font-weight: 900;
}

.road-step p {
  margin: 0;
  opacity: .88;
}

.step-label {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #070611;
  background: linear-gradient(110deg, var(--orange), var(--green));
  box-shadow: var(--shadow-neon);
}

.step-label.now {
  background: linear-gradient(110deg, var(--cyan), var(--teal));
  color: #070611;
}

.step-label.soon {
  background: linear-gradient(110deg, var(--orange), var(--green));
}

.step-label.q {
  background: linear-gradient(110deg, var(--teal), var(--violet));
}

/* Responsive */
@media (max-width:1024px) {
  .leader-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-track { grid-template-columns: repeat(2, 1fr); }
  .roadmap-track::before { top: 42px; }
}

@media (max-width:640px) {
  .leader-grid { grid-template-columns: 1fr; }
  .roadmap-track { grid-template-columns: 1fr; }
  .roadmap-track::before {
    right: auto;
    width: 4px;
    height: 100%;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--cyan), var(--teal) 42%, var(--violet) 92%);
  }
  .road-step .node { left: -8px; }
  .roadmap-track { padding-top: 0px; isolation: isolate; }
}

/* ===== Palette hooks (использую твои токены, если есть) ===== */
:root {
  --ink: var(--bg, var(--ink));
  --cyan: var(--cyan);
  --violet: var(--violet);
  --orange: var(--orange);
  --textMain: var(--white, var(--white));
  --textBtn: #070611;
  --accent: var(--cyan);
}

/* ===== Mobile trigger ===== */
.mobile__menu {
  display: none;
  z-index: 61;
}

@media (max-width:1024px) {
  .mobile__menu {
    display: block;
    z-index: 900;
  }
}

/* ===== Burger (new glass neon) ===== */
.burger {
  --line-h: 4px;
  --w: 28px;
  --gap: 7px;
  width: 60px;
  height: 60px;
  position: relative;
  display: grid;
  place-items: center;
  transition: transform .4s ease;
  scale: .9;
}

.burger:active { transform: scale(.96); }

.burger .icon-left,
.burger .icon-right {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--w);
  height: var(--line-h);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(110deg, var(--cyan), var(--teal) 42%, var(--violet) 92%);
  box-shadow:
    0 0 10px rgba(56, 242, 196, .40),
    0 0 22px rgba(255, 79, 216, .25);
  transition: background .35s ease, transform .45s cubic-bezier(.2, .7, .2, 1), box-shadow .35s ease, opacity .35s ease;
}

.burger .icon-right { opacity: .95; }

.burger .icon-left::before,
.burger .icon-left::after,
.burger .icon-right::before,
.burger .icon-right::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--line-h);
  border-radius: 999px;
  background: inherit;
  box-shadow: inherit;
  transition: transform .45s cubic-bezier(.2, .7, .2, 1), opacity .35s ease;
}

/* Левый столбец: верх/низ */
.burger .icon-left::before { transform: translateY(calc(-1 * (var(--gap) + var(--line-h)))); }
.burger .icon-left::after  { transform: translateY(calc( 1 * (var(--gap) + var(--line-h)))); }

/* Правый столбец: сместим на 10px вправо */
.burger .icon-right { transform: translate(calc(-50% + 10px), -50%); }
.burger .icon-right::before { transform: translateY(calc(-1 * (var(--gap) + var(--line-h)))); }
.burger .icon-right::after  { transform: translateY(calc( 1 * (var(--gap) + var(--line-h)))); }

/* Hover glow */
.burger:hover .icon-left,
.burger:hover .icon-right {
  box-shadow:
    0 0 12px rgba(56, 242, 196, .55),
    0 0 26px rgba(255, 79, 216, .35),
    0 0 36px rgba(42, 124, 255, .20);
}

/* ===== Open state → «крестик» ===== */
.open > .icon-left,
.open > .icon-right {
  background: transparent;
  box-shadow: none;
}

.open > .icon-left::before { transform: rotate(45deg) scaleX(1.25); }
.open > .icon-left::after  { transform: rotate(-45deg) scaleX(1.25); }
.open > .icon-right::before { transform: rotate(-45deg) scaleX(1.25); }
.open > .icon-right::after  { transform: rotate(45deg) scaleX(1.25); }

/* ===== Header ===== */
header,
.fadeInDown { animation-delay: .5s !important; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
}

@media (max-width:1024px) {
  header { padding: 16px 0; }
}

/* Десктоп-навигация */
header > nav > a { display: none !important; }

header > nav > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

header > nav > ul a {
  width: max-content;
  color: var(--textMain);
  transition: color .25s ease, text-shadow .25s ease;
}

header > nav > ul a::after { content: none; }

header > nav > ul a:hover {
  color: var(--accent) !important;
  text-shadow: 0 0 14px rgba(255, 79, 216, .28);
}

/* Лого */
header > a { max-width: 186px; z-index: 80; }

/* ===== Mobile off-canvas ===== */
@media (max-width:1024px) {
  header > a:last-child { display: none; }

  header > nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background:
      radial-gradient(820px 820px at 18% 12%, rgba(56, 242, 196, .10), transparent 60%),
      radial-gradient(920px 920px at 82% 88%, rgba(255, 79, 216, .09), transparent 60%),
      rgba(9, 6, 17, .88);
    backdrop-filter: blur(12px);
    z-index: 50;
    transform: translateX(-120%);
    transition: transform .45s cubic-bezier(.2, .7, .2, 1);
    display: flex;
    flex-direction: column;
  }

  header > nav > ul {
    margin-top: 124px;
    margin-left: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  header > nav > ul a {
    color: var(--textMain) !important;
    font-size: 18px !important;
  }

  header > nav > a {
    display: inline-block !important;
    margin: auto 24px 52px;
    z-index: 90;
    max-width: 90%;
    color: var(--textBtn) !important;
    background: linear-gradient(110deg, var(--cyan), var(--teal) 42%, var(--violet) 92%);
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 800;
    text-align: center;
    box-shadow:
      0 12px 46px rgba(56, 242, 196, .16),
      0 0 70px rgba(255, 79, 216, .12);
  }

  /* Открытое состояние меню */
  .navOpen { transform: translateX(0%); }
}

/* ===== Misc ===== */
header > nav > ul a:focus-visible,
.burger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .burger, .burger * { transition: none !important; }
  header > nav { transition: none !important; }
}

/* ========== Header tweaks ========== */

/* 1) Список без маркеров + без подчёркивания ссылок */
header > nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  margin-inline: auto;
}

header > nav > ul a { text-decoration: none; }

header > nav > ul a:hover,
header > nav > ul a:focus { text-decoration: none; }

/* 3) На мобилке — компактнее кнопка */
@media (max-width: 1024px) {
  header > nav > a {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 999px;
  }
}

/* ===== PROS — Neon leaderboard-style cards ===== */
.pros {
  padding: 56px 0;
  background: transparent;
}

.pros .section-head { margin-bottom: 18px; }

/* Grid */
.pros-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

@media (max-width: 1024px) {
  .pros-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pros-grid { grid-template-columns: 1fr; }
}

/* Card */
.pro-card {
  --glow-a: rgba(56, 242, 196, .18);
  --glow-b: rgba(255, 79, 216, .14);
  --glow-c: rgba(42, 124, 255, .12);

  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(247, 242, 255, .07), rgba(247, 242, 255, .03));
  border: 1px solid rgba(247, 242, 255, .12);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease, filter .35s ease;
}

/* мягкое неоновое свечение */
.pro-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--cyan), var(--teal) 45%, var(--violet));
  filter: blur(20px);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}

.pro-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 90px rgba(255, 79, 216, .18), 0 0 110px rgba(56, 242, 196, .14);
}

.pro-card:hover::before { opacity: .9; }

/* Image */
.pro-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02);
  opacity: .70;
  transform: scale(1.02);
  pointer-events: none;
  z-index: 0;
}

/* читаемость внизу */
.pro-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(7, 6, 17, 0) 0%, rgba(7, 6, 17, .52) 45%, rgba(7, 6, 17, .80) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Rank badge (top-left) */
.pro-card .rank {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: #070611;
  background: linear-gradient(110deg, var(--cyan), var(--teal) 42%, var(--violet) 92%);
  border: 1px solid rgba(247, 242, 255, .14);
  box-shadow: inset 0 0 0 1px rgba(247, 242, 255, .10);
  z-index: 2;
}

/* Small chip (top-right) */
.pro-card .chip {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;
  color: var(--textMain);
  background: rgba(247, 242, 255, .07);
  border: 1px solid rgba(247, 242, 255, .14);
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* Text area */
.pro-body {
  position: relative;
  z-index: 1;
  padding: 18px 18px 16px;
  color: var(--textMain);
}

.pro-body h3 {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 24px);
}

.pro-body p {
  margin: 0;
  opacity: .9;
  font-size: 15px;
}

/* убрать «лесенки» */
.pro-card.offset-1,
.pro-card.offset-2 {
  margin-top: 0 !important;
}

.partners {
  display: flex;
  flex-direction: column;
}

.partners h2 {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}



.partners a {
  display: flex;
  justify-content: center;
}

/* ===== CTA — новая стилистика (mint/blue/magenta) ===== */
.brand-grad {
  background: linear-gradient(110deg, var(--cyan) 0%, var(--teal) 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta { padding: 24px 0; }

.cta-card {
  position: relative;
  padding: 28px 28px 80px;
  border-radius: 18px;
  background:
    radial-gradient(1200px 600px at 10% 90%, rgba(56, 242, 196, .06), transparent 60%),
    radial-gradient(1200px 600px at 90% 10%, rgba(255, 79, 216, .05), transparent 60%),
    rgba(9, 6, 17, .42);
  border: 1px solid rgba(247, 242, 255, .10);
  box-shadow: 0 1px 0 rgba(247, 242, 255, .06) inset;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cta-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 242, 196, .18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28),
    0 1px 0 rgba(247, 242, 255, .08) inset;
}

.cta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.chip.chip-soft {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
  color: rgba(247, 242, 255, .92);
  background: rgba(247, 242, 255, .06);
  border: 1px solid rgba(247, 242, 255, .12);
  backdrop-filter: blur(8px);
}

/* ===== счётчики в правом верхнем углу ===== */
.cta-stats {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 56px;
  padding: 6px 10px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(21, 16, 39, .78), rgba(9, 6, 17, .55));
  border: 1px solid rgba(247, 242, 255, .12);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .20) inset;
  color: rgba(247, 242, 255, .92);
}

.stat-pill .value {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.stat-pill .label {
  font-size: 12px;
  font-weight: 600;
  opacity: .82;
  line-height: 1.2;
  margin-top: 2px;
}

.cta-title {
  margin: 8px 0 8px;
  line-height: 1.1;
}

.cta-sub {
  margin: 0 0 14px;
  color: rgba(247, 242, 255, .80);
}

.cta-bullets {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: rgba(247, 242, 255, .86);
}

.cta-bullets li {
  margin: 8px 0;
  position: relative;
  padding-left: 18px;
}

.cta-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--cyan), var(--violet));
}

/* ===== КНОПКИ ВНИЗУ ===== */
.cta-actions {
  position: absolute;
  bottom: 16px;
  left: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  color: var(--white);
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}

.btn-primary {
  background: linear-gradient(110deg, var(--cyan) 0%, var(--teal) 50%, var(--violet) 100%);
  color: #070611;
  border-color: transparent;
}

.btn-ghost {
  background: rgba(247, 242, 255, .06);
  border: 1px solid rgba(247, 242, 255, .10);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn:focus-visible {
  outline: 2px solid rgba(56, 242, 196, .45);
  outline-offset: 2px;
}

/* нижний правый бейдж */
.corner-label {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(247, 242, 255, .92);
  background: rgba(247, 242, 255, .08);
  border: 1px solid rgba(247, 242, 255, .14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* адаптив */
@media (max-width:900px) {
  .cta-card { padding: 24px 20px; }
  .cta-stats { top: 16px; right: 16px; gap: 10px; }
  .stat-pill { min-width: 68px; height: 54px; }
  .stat-pill .value { font-size: 18px; }
}

@media (max-width:560px) {
  .cta-stats { position: static; justify-content: flex-start; margin: 6px 0 10px; }
  .cta-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-actions { position: static; margin-top: 20px; }
}

/*   НАСТРОЙКА SCROLL-BAR   */
::-webkit-scrollbar { width: 0.4em; }

::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 100vw;
  margin: 10px 0;
}

::-webkit-scrollbar-thumb {
  border-radius: 100vw;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--teal) 50%, var(--violet) 100%);
  box-shadow: 0 0 12px rgba(56, 242, 196, 0.25);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgba(56, 242, 196, 1) 0%, rgba(42, 124, 255, 1) 50%, rgba(255, 79, 216, 1) 100%);
  box-shadow: 0 0 16px rgba(255, 79, 216, 0.22);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, rgba(42, 124, 255, 1) 0%, rgba(255, 79, 216, 1) 50%, rgba(56, 242, 196, 1) 100%);
  box-shadow: 0 0 18px rgba(42, 124, 255, 0.25);
}

/* Gradient links inside .left */
.left a {
  position: relative;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(110deg, var(--cyan), var(--teal) 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* градиентная линия-подчёркивание */
.left a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(110deg, var(--cyan), var(--teal) 50%, var(--violet) 100%);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform .25s ease, height .25s ease, opacity .25s ease;
  opacity: .95;
}

.left a:hover::after,
.left a:focus-visible::after {
  height: 3px;
  transform: scaleX(1.05);
}

.left a:focus-visible {
  outline: 2px solid transparent;
  text-decoration-thickness: 0;
}

@media (prefers-reduced-motion: reduce) {
  .left a::after { transition: none; }
}

.hero .cta {
  margin: 0;
  padding: 0;
}
/* ===== NEW SECTION (без картинок): bright, ровная, аккуратная ===== */
.bright-section{
  padding: 72px 0;
}

.bright-card{
  position: relative;
  
  border: none !important;
}

.bright-head{
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: 22px;
}

.bright-eyebrow{
  margin: 0 0 10px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: 12px;
  opacity: .95;
}

.bright-title{
  margin: 0 0 10px;
  font: 900 38px/1.08 Montserrat, sans-serif;
}

.bright-sub{
  margin: 0;
  color: rgba(247, 242, 255, .84);
  line-height: 1.6;
}

/* Grid */
.bright-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.bright-item{
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: rgba(9, 6, 17, .28);
  border: 1px solid rgba(247, 242, 255, .12);
  backdrop-filter: blur(8px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.bright-item:hover{
  transform: translateY(-3px);
  border-color: rgba(56, 242, 196, .22);
  background: rgba(9, 6, 17, .18);
}

.bright-num{
  width: 46px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  color: #070611;
  background: linear-gradient(110deg, var(--cyan), var(--teal) 42%, var(--violet) 92%);
  box-shadow: var(--shadow-neon);
  margin-bottom: 10px;
}

.bright-h3{
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 16px;
}

.bright-p{
  margin: 0;
  color: rgba(247, 242, 255, .82);
  line-height: 1.55;
  font-size: 14px;
}

/* Actions */
.bright-actions{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.bright-note{
  margin: 6px 0 0;
  color: rgba(247, 242, 255, .70);
  font-size: 12px;
  line-height: 1.4;
  flex-basis: 100%;
}

/* Responsive */
@media (max-width: 1024px){
  .bright-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){

  .bright-title{
    font-size: 30px;
  }
  .bright-grid{
    grid-template-columns: 1fr;
  }
}



/* ===== IMPACT COLOR CARDS (bright) ===== */
.impactColor{
  padding: 74px 0;
}

.impactColor-head{
  display:flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.impactColor-title{
  margin:0;
  font: 900 36px/1.05 Montserrat, sans-serif;
}

.impactColor-kicker{
  background: linear-gradient(110deg, var(--cyan), var(--violet) 45%, var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.impactColor-sub{
  margin:0;
  max-width: 760px;
  color: rgba(240,248,255,.78);
  line-height: 1.6;
  font-size: 14px;
}

.impactColor-row{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

/* Base */
.impactColor-card{
  position: relative;
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  overflow: hidden;
  transition: transform .18s ease, filter .18s ease;
  color: #071016;
}

.impactColor-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(700px 260px at 20% 15%, rgba(255,255,255,.45), transparent 55%);
  opacity: .6;
  pointer-events:none;
}

.impactColor-card::after{
  content:"";
  position:absolute;
  inset:-30%;
  background: conic-gradient(from 210deg, transparent 0 62%, rgba(255,255,255,.35), rgba(255,255,255,.10));
  filter: blur(26px);
  opacity: .25;
  pointer-events:none;
  transform: rotate(10deg);
  mix-blend-mode: soft-light;
}

.impactColor-card:hover{
  transform: translateY(-4px);
  filter: saturate(1.05) contrast(1.02);
}

/* Color themes (4 different bright cards) */
.impactColor-card.c1{
  background: linear-gradient(110deg, #00FFD5 0%, #2A7CFF 55%, #B58CFF 100%);
}
.impactColor-card.c2{
  background: linear-gradient(110deg, #B6FF5A 0%, #FFB020 55%, #FF4FD8 110%);
}
.impactColor-card.c3{
  background: linear-gradient(110deg, #2A7CFF 0%, #00FFD5 55%, #B6FF5A 110%);
}
.impactColor-card.c4{
  background: linear-gradient(110deg, #FF4FD8 0%, #B58CFF 55%, #2A7CFF 110%);
}

/* Text */
.impactColor-metric{
  position: relative;
  z-index: 1;
  font: 900 34px/1 Montserrat, sans-serif;
  letter-spacing: .01em;
  margin-bottom: 8px;
}

.impactColor-caption{
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  opacity: .9;
}

/* Note */
.impactColor-note{
  margin: 12px 0 0;
  color: rgba(240,248,255,.62);
  font-size: 12px;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 1024px){
  .impactColor-row{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .impactColor-title{ font-size: 30px; }
  .impactColor-row{ grid-template-columns: 1fr; }
}



/* ===== DUO VISUAL SECTION ===== */
.duo-visual{
  padding: 96px 0;
}

/* soft background glow */
.duo-visual::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 500px at 15% 20%, rgba(0,255,213,.12), transparent 55%),
    radial-gradient(800px 500px at 85% 80%, rgba(255,79,216,.12), transparent 60%);
  pointer-events:none;
}

.duo-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  
}

/* ITEM */
.duo-item{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0,0,0,.45),
    0 0 80px rgba(154,167,255,.25);
  transition: transform .35s ease;
  height: 600px;
}

.duo-item:hover{
  transform: translateY(-6px) scale(1.01);
}

.duo-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.28) contrast(1.05);
}

/* gradient overlay */
.duo-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 25, 0) 0%,
    rgba(10, 15, 25, 0.26) 55%,
    rgb(10, 15, 25) 100%
  );
  pointer-events:none;
}

/* label */
.duo-label{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  padding:8px 14px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
  border-radius:999px;
  color:#081018;
  background: linear-gradient(120deg, #00FFD5, #2A7CFF);
  box-shadow:
    0 0 14px rgba(0,255,213,.6),
    0 0 26px rgba(42,124,255,.4);
}

.duo-label.accent{
  background: linear-gradient(120deg, #FF4FD8, #B58CFF);
  box-shadow:
    0 0 14px rgba(255,79,216,.6),
    0 0 26px rgba(181,140,255,.45);
}

/* caption */
.duo-caption{
  position:absolute;
  left:20px;
  right:20px;
  bottom:18px;
  z-index:2;
  margin:0;
  font-size:16px;
  font-weight:700;
  line-height:1.45;
  color:rgba(240,248,255,.95);
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

/* asymmetric feel */

.duo-item.right{
}

.duo-item.left:hover,
.duo-item.right:hover{
  transform: translateY(-4px) scale(1.01);
}

/* Responsive */
@media (max-width: 900px){
  .duo-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .duo-item.left,
  .duo-item.right{
    transform: none;
  }
}
