/* ============================
   Design System & Resets
   ============================ */

:root {
  /* Colors */
  --bg: #04041a;
  --bg-alt: #121214;
  --card: #151518;
  --elev: #1a1a1e;
  --text: #f2f2f3;
  --muted: #a2a6b0;

  /* Premium golds */
  --gold-1: #2af0fe;
  --gold-2: #b69c5a;
  --gold-3: #9c8552;

  /* Accents / states */
  --success: #55d18f;
  --danger: #ff6b6b;

  /* Radii & shadows */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);

  /* Layout */
  --container: 1200px;
  --pad: clamp(16px, 3vw, 28px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Containers & utilities */
.container {
  width: min(100% - 2 * var(--pad), var(--container));
  margin-inline: auto;
}

.align-center {
  text-align: center;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.9rem;
}

.headerWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav {
}
.ham {
  display: none;
}

.nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-left: 0;
  margin: 0;
}

.nav li {
  list-style: none;
}

.nav a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: 0.2s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: 0.2s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: 0.2s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: 0.2s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav a:hover {
  color: #2af0fe;
}

.stopScroll {
  overflow: hidden;
}
.logo {
  position: relative;
  z-index: 1000;
  font-size: 24px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.logo-text span {
  color: #2af0fe;
}
@media screen and (max-width: 800px) {
  .nav {
    position: fixed;
    inset: 0;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
  }
  .nav.active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    z-index: 1000;
  }
  .hamRotate.active {
    transform: rotate(45deg);
  }
  .hamRotate180.active {
    transform: rotate(180deg);
  }
  .line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #fff;
    stroke-width: 5.5;
    stroke-linecap: round;
  }
  .ham7 .top {
    stroke-dasharray: 40 82;
  }
  .ham7 .middle {
    stroke-dasharray: 40 111;
  }
  .ham7 .bottom {
    stroke-dasharray: 40 161;
  }
  .ham7.active .top {
    stroke-dasharray: 17 82;
    stroke-dashoffset: -62px;
  }
  .ham7.active .middle {
    stroke-dashoffset: 23px;
  }
  .ham7.active .bottom {
    stroke-dashoffset: -83px;
  }
  .ham8 .top {
    stroke-dasharray: 40 160;
  }
}
/* ============================
   Buttons
   ============================ */
.btn {
  --ring: rgba(233, 210, 125, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 12px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  position: relative;
  transition: transform 0.15s ease, background 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.03) inset,
    0 12px 30px rgba(0, 0, 0, 0.35);
}
.btn--lg {
  padding: 14px 22px;
  border-radius: 20px;
}
.btn--gold {
  background-color: #2af0fe;
  color: #121214;
  border-color: rgba(233, 210, 125, 0.35);
}
.btn--gold:hover {
  transform: translateY(-1px);
}
.btn--ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}
.btn--ghost:hover {
  border-color: rgba(2, 255, 234, 0.5);
  color: var(--gold-1);
}

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  padding: clamp(80px, 13vw, 180px) 0 clamp(48px, 8vw, 90px);
  z-index: 3;
}

.heroBG {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  object-fit: cover;
  object-position: center;
  opacity: 0.1;
}

.hero__bg .wheel {
  position: absolute;
  width: 110vmin;
  height: auto;
  left: 50%;
  top: 35%;
  transform: translate(-40%, -30%) rotate(-6deg);
  opacity: 0.8;
}
.vignette {
  position: absolute;
  inset: -20%;
  background: radial-gradient(closest-side, transparent, #0f0f11 70%);
  pointer-events: none;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;

  img {
    width: 550px;
  }
}
.kicker {
  color: var(--gold-1);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.hero__title {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.1;
  margin: 0.4em 0 0.3em;
  text-transform: uppercase;
  font-weight: 800;
}
.hero__title .accent {
  color: var(--gold-1);
}
.hero__lead {
  color: var(--muted);
  max-width: 62ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* ============================
   Sections / Cards / Grids
   ============================ */

.expertReview a {
  color: #2af0fe;
  text-decoration: underline;
}
.expertReview p {
  border-left: 5px solid #2af0fe;
  padding-left: 20px;

  span {
    font-style: italic;
    opacity: 0.6;
  }
}
.section {
  padding: clamp(48px, 7vw, 90px) 0;
  background: var(--bg);
}
.section--alt {
  background: var(--bg-alt);
}
.section--cta {
  background: radial-gradient(
      800px 400px at 90% 20%,
      rgba(233, 210, 125, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 0.6em;
}
.section__lede {
  color: var(--muted);
  margin: 0 0 1.2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 4vw, 40px);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.4vw, 28px);
}

.card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
  position: relative;
  overflow: hidden;
}
.articleSpan {
  position: absolute;
  content: "";
  top: -30px;
  right: -40px;
  opacity: 1;
  width: 120px;
  height: 120px;
  background-color: transparent;
  border: 20px double #2af0fe;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
}
.card--hover {
  transition: transform 0.2s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.card--hover:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 30px rgba(4, 217, 255, 0.12), var(--shadow);
  .articleSpan {
    transform: scale(110%);
    -webkit-transform: scale(110%);
    -moz-transform: scale(110%);
    -ms-transform: scale(110%);
    -o-transform: scale(110%);
  }
}

.cards {
  display: grid;
  gap: 18px;
}
.card h3 {
  margin: 0;
}
.moreBtn {
  color: #2af0fe;
  text-decoration: none;
}
.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards .wide {
  grid-column: span 3;
}

/* checklist */
.checklist {
  padding: 0;
  margin: 0.8rem 0 1.1rem;
  list-style: none;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.checklist li::before {
  content: "";
  margin-top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 0 0 3px rgba(233, 210, 125, 0.16);
}

/* Illust panel */
.illust {
  align-self: center;
}
.inline-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

/* Metrics */
.metric {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  padding: 22px;
  text-align: center;
}
.metric__num {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  color: var(--gold-1);
}
.metric__label {
  color: var(--muted);
}

/* Testimonials */
.testi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote {
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, var(--card), #111114);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote a {
  text-decoration: underline;
  color: #2af0fe;
}
.quote cite {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}

/* CTA */
.cta__wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}
.form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: center;
}
.form input {
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 14px;
  outline: 0;
  width: 100%;
}
.form input:focus {
  border-color: rgba(233, 210, 125, 0.55);
  box-shadow: 0 0 0 6px rgba(233, 210, 125, 0.08);
}
.form__note {
  grid-column: 1 / -1;
  color: var(--muted);
  margin: 2px 0 0;
}
.form__success {
  grid-column: 1 / -1;
  color: var(--success);
  margin: 6px 0 0;
}

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer__nav {
  display: grid;
  gap: 6px;
}
.footer__nav a {
  color: var(--muted);
  text-decoration: none;
}
.footer__nav a:hover {
  color: var(--gold-1);
}

/* ============================
   Motion / Fade-in
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
  }
  .btn,
  .card--hover {
    transition: none;
  }
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .cta__wrap {
    grid-template-columns: 1fr;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .chips {
    display: none;
  }
}
@media (max-width: 860px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .cards--3 {
    grid-template-columns: 1fr;
  }
  .cards .wide {
    grid-column: auto;
  }
  .testi {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .nav__toggle {
    display: inline-block;
  }
  .nav__list {
    display: none;
    position: absolute;
    right: var(--pad);
    top: 60px;
    background: var(--elev);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 8px;
    z-index: 60;
    box-shadow: var(--shadow);
  }
  .nav__list.show {
    display: block;
  }
}

#how .card {
  border: none;
  box-shadow: none;
}
/* Strategy Matrix */
.tagline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.pill {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.pill--low {
  color: #9fe3b6;
  border-color: rgba(159, 227, 182, 0.3);
}
.pill--mid {
  color: #f5d488;
  border-color: rgba(233, 210, 125, 0.35);
}
.pill--high {
  color: #ff9aa9;
  border-color: rgba(255, 154, 169, 0.35);
}

.rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.rule__label {
  color: var(--muted);
}
.rule__value {
  font-weight: 800;
  color: var(--gold-1);
}

/* Stats Table */
.table-wrap {
  overflow: auto;
}
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.table thead th {
  text-align: left;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
  padding: 12px 14px;
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #141417, #111115);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.table tbody td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.v-high {
  color: #ff9aa9;
  border-color: rgba(255, 154, 169, 0.35);
}
.v-mid {
  color: #f5d488;
  border-color: rgba(233, 210, 125, 0.35);
}

.bar {
  --h: 8px;
  position: relative;
  height: var(--h);
  border-radius: 999px;
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 6px;
}
.bar > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 8px 20px rgba(233, 210, 125, 0.15) inset;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Insights / Articles */
.article {
  display: grid;
  gap: 12px;
}
.article__media img {
  border-radius: var(--r-lg);
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article__media {
  margin: 0;
}
.article__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-direction: column;
}
.article__title {
  font-size: 1.05rem;
  margin: 0.2rem 0;
}

/*   НАСТРОЙКА SCROLL-BAR   */
::-webkit-scrollbar {
  width: 0.5em;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #2af0fe;
}

::-webkit-scrollbar-thumb:active {
  background-color: #2af0fe;
}

.f-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.f-social i {
  font-size: 24px;
  color: #2af0fe;
}
.mob {
  display: none;
}

@media (max-width: 800px) {
  .quote {
    width: 95%;
    margin: 0 auto;
  }
  #strategy .section__title {
    text-align: center;
  }
  #strategy .section__lede {
    text-align: center;
  }

  #stats .section__title {
    text-align: center;
  }
  #stats .section__lede {
    text-align: center;
  }

  .table tr th:last-child {
    display: none;
  }
  .table tr td:last-child {
    display: none;
  }
  #stats .note {
    display: none;
  }

  .article__media img {
    display: none;
  }

  #insights .section__title {
    text-align: center;
  }
  #insights .section__lede {
    text-align: center;
  }
  .article__media {
    margin: 0;
  }

  #why .section__title {
    text-align: center;
  }
  #why .section__lede {
    text-align: center;
  }

  #cta .section__title {
    text-align: center;
  }
  #cta .section__lede {
    text-align: center;
  }
  .cta__copy p {
    text-align: center;
  }

  .brand--footer {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 0;
  }
  .footer__legal {
    display: none;
  }

  .footer__nav a {
    text-align: center;
  }
  .f-social {
    justify-content: center;
  }
  .mob {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mob p {
    text-align: center;
    opacity: 0.5;
  }
  .hero__content {
    flex-direction: column;
    img {
      display: none;
    }
  }
}
