/* =====================================================================
   LigadosJogos — styles.css
   Visual DNA: "Discord" — deep cosmic indigo environment, blurple (#5865F2)
   reserved for primary CTAs, heavy all-caps Poppins headlines, conversational
   16px/1.5 body in lavender-tinted Fog, rounded 12/16/24px surfaces, each
   section its own lit stage. Dark, gaming-native, energetic.
   ===================================================================== */

:root {
  /* Colors — Discord */
  --color-blurple: #5865f2;
  --color-dark-blurple: #3442d9;
  --color-hover-blurple: #8891f2;
  --color-spring-green: #57f287;
  --color-fuchsia: #eb459c;
  --color-vivid-cerulean: #00b0f4;
  --color-ember-orange: #fda220;
  --color-void: #000000;
  --color-snow: #ffffff;
  --color-not-quite-black: #23272a;
  --color-dark-charcoal: #2c2f33;
  --color-fog: #babcd9;
  --color-greyple: #99aab5;
  --color-dim-grey: #50555f;

  /* Surfaces */
  --surface-page: #0a0b20;
  --surface-card: #181b3d;
  --surface-card-2: #1f2347;
  --surface-panel: #14163a;
  --border-soft: rgba(255,255,255,0.09);
  --border-mid: rgba(255,255,255,0.16);

  /* Accent used on headline highlight words (legible blurple tint, not CTA) */
  --accent-text: #8891f2;

  /* Typography */
  --font-display: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;

  /* Spacing */
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-80: 80px;

  /* Layout */
  --page-max: 1200px;
  --pad-inline: clamp(20px, 5vw, 40px);
  --section-pad: clamp(64px, 9vw, 112px);

  /* Radius */
  --radius-btn: 12px;
  --radius-card: 16px;
  --radius-panel: 24px;
  --radius-pill: 104px;

  --header-h: 70px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-fog);
  background-color: var(--surface-page);
  background-image:
    radial-gradient(1200px 640px at 78% -8%, rgba(88,101,242,0.28), transparent 60%),
    radial-gradient(900px 520px at 8% 2%, rgba(0,176,244,0.12), transparent 55%),
    linear-gradient(180deg, #10123a 0%, #0b0c24 46%, #090a1c 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Subtle starfield */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 22%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 66% 14%, rgba(255,255,255,0.28), transparent),
    radial-gradient(1px 1px at 40% 58%, rgba(255,255,255,0.30), transparent),
    radial-gradient(1px 1px at 88% 40%, rgba(255,255,255,0.22), transparent),
    radial-gradient(1.5px 1.5px at 26% 82%, rgba(255,255,255,0.26), transparent),
    radial-gradient(1px 1px at 74% 76%, rgba(255,255,255,0.20), transparent),
    radial-gradient(1px 1px at 52% 32%, rgba(255,255,255,0.16), transparent);
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-snow);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--color-blurple);
  outline-offset: 2px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.section { padding-block: var(--section-pad); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--cream {
  background: rgba(255,255,255,0.022);
  border-block: 1px solid var(--border-soft);
}

/* ---------- Section headings / eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-hover-blurple);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 3px;
  border-radius: 3px;
  background: var(--color-blurple);
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

.section-head__title {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 0.95;
  margin-top: 16px;
}
.section-head__lead {
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-fog);
  max-width: 60ch;
}
.section-head--center .section-head__lead { margin-inline: auto; }

.accent { color: var(--accent-text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.014em;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  transition: transform .14s ease, background-color .14s ease, color .14s ease, border-color .14s ease, box-shadow .14s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; }

/* Primary — the single blurple pop */
.btn--primary {
  background: var(--color-blurple);
  color: #fff;
  box-shadow: 0 8px 26px rgba(88,101,242,0.35);
}
.btn--primary:hover { background: var(--color-dark-blurple); box-shadow: 0 10px 30px rgba(88,101,242,0.45); }

/* Secondary — clean white pill */
.btn--light {
  background: #fff;
  color: var(--color-not-quite-black);
  border-color: #fff;
}
.btn--light:hover { background: #e7e9ff; border-color: #e7e9ff; }

/* Ghost — white outline on dark */
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-mid);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.btn--block { width: 100%; }
.btn--lg { padding: 19px 28px; font-size: 16px; }

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-hover-blurple);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.arrow-link:hover { color: #fff; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10,11,32,0.82);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}
.logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: var(--fw-black);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.logo__accent { color: var(--accent-text); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: inline-block;
  padding: 9px 14px;
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--color-fog);
  border-radius: var(--radius-btn);
  transition: background-color .15s ease, color .15s ease;
}
.nav__link:hover { background: rgba(255,255,255,0.07); color: #fff; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.nav__cta { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-btn);
}
.nav-toggle svg { width: 22px; height: 22px; color: #fff; }
.nav-toggle__close { display: none; }
.nav-toggle.is-open .nav-toggle__open { display: none; }
.nav-toggle.is-open .nav-toggle__close { display: block; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 88px) var(--section-pad); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 24px; }
.hero__title {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.015em;
}
.hero__lead {
  margin-top: 26px;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--color-fog);
  max-width: 46ch;
}
.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--color-fog);
}
.hero__trust-item svg { width: 18px; height: 18px; color: var(--color-spring-green); flex: none; }
.hero__trust-item b { color: #fff; font-weight: var(--fw-bold); }

/* Hero showcase — dark bento with colored glows */
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}
.showcase__phone {
  grid-column: span 2;
  grid-row: span 2;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(88,101,242,0.35), transparent 60%),
    var(--surface-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-card);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1.02;
}
.showcase__phone img {
  width: auto;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.showcase__tile {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}
.showcase__tile img { width: 100%; height: 100%; border-radius: 12px; }
.showcase__tile--blush { background: radial-gradient(120% 120% at 30% 20%, rgba(235,69,156,0.32), transparent 65%), var(--surface-card); }
.showcase__tile--ice { background: radial-gradient(120% 120% at 30% 20%, rgba(0,176,244,0.30), transparent 65%), var(--surface-card); }
.showcase__tile--lime { background: radial-gradient(120% 120% at 30% 20%, rgba(87,242,135,0.28), transparent 65%), var(--surface-card); }

/* ---------- Catalog / game cards ---------- */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.game-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 26px;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(136,145,242,0.5);
  box-shadow: 0 18px 44px rgba(0,0,0,0.4);
}
.game-card__head { display: flex; gap: 16px; align-items: flex-start; }
.game-card__icon {
  width: 66px; height: 66px;
  border-radius: 16px;
  border: 1px solid var(--border-mid);
  flex: none;
}
.game-card__id { min-width: 0; }
.game-card__name {
  font-size: 19px;
  line-height: 1.05;
  color: #fff;
}
.game-card__dev {
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-greyple);
  font-weight: var(--fw-medium);
}
.game-card__genre {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-hover-blurple);
  background: rgba(88,101,242,0.16);
  border-radius: var(--radius-pill);
}
.game-card__genre--pink { color: #f7a8d0; background: rgba(235,69,156,0.16); }
.game-card__genre--lime { color: #8bf5b0; background: rgba(87,242,135,0.16); }
.game-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.game-card__score { font-size: 15px; font-weight: var(--fw-bold); color: #fff; }
.game-card__reviews { font-size: 13px; color: var(--color-greyple); }
.game-card__desc {
  margin-top: 15px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-fog);
  flex: 1;
}
.game-card__foot { margin-top: 22px; }
.game-card__cta {
  width: 100%;
  font-size: 15px;
  padding: 13px 20px;
  background: var(--color-blurple);
  color: #fff;
  border-color: var(--color-blurple);
  box-shadow: 0 8px 22px rgba(88,101,242,0.28);
}
.game-card__cta:hover { background: var(--color-dark-blurple); border-color: var(--color-dark-blurple); }
.game-card__free {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  color: var(--color-fog);
}
.game-card__free svg { width: 14px; height: 14px; color: var(--color-spring-green); }

/* Stars */
.stars {
  position: relative;
  display: inline-block;
  line-height: 0;
  white-space: nowrap;
}
.stars__row { display: inline-flex; gap: 2px; }
.stars__row svg { width: 16px; height: 16px; }
.stars__base svg { color: rgba(255,255,255,0.18); }
.stars__fill {
  position: absolute;
  top: 0; left: 0;
  overflow: hidden;
}
.stars__fill svg { color: var(--color-ember-orange); }

/* ---------- News / novidades (themed scene cards) ---------- */
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-panel);
  overflow: hidden;
}
.news-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #5865f2 0%, #eb459c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-card__media--ice { background: linear-gradient(135deg, #1372f4 0%, #00b0f4 100%); }
.news-card__media--lime { background: linear-gradient(135deg, #1f9d55 0%, #57f287 100%); }
.news-card__media img {
  height: 118%;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
  transform: translateY(9%);
}
.news-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 13px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(10,11,32,0.75);
  color: #fff;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.news-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.news-card__title { font-size: 19px; line-height: 1.05; color: #fff; }
.news-card__text { margin-top: 10px; font-size: 14.5px; line-height: 1.55; color: var(--color-fog); flex: 1; }
.news-card__foot { margin-top: 20px; }

/* ---------- Transparency (feature panel) ---------- */
.transparency__panel {
  background:
    radial-gradient(120% 140% at 90% 0%, rgba(88,101,242,0.22), transparent 55%),
    var(--surface-panel);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-panel);
  padding: clamp(32px, 5vw, 64px);
  color: #fff;
}
.transparency__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.transparency__title {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
}
.transparency__eyebrow { color: var(--color-hover-blurple); }
.transparency__lead { margin-top: 20px; color: var(--color-fog); font-size: 16px; }
.transparency__note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-greyple);
}
.transparency__note a { color: var(--color-hover-blurple); text-decoration: underline; text-underline-offset: 3px; }

.money-list { display: grid; gap: 14px; }
.money-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
}
.money-item__num {
  flex: none;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-blurple);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 16px;
}
.money-item__title { color: #fff; font-size: 16px; line-height: 1.1; }
.money-item__text { margin-top: 7px; font-size: 14px; color: var(--color-fog); line-height: 1.5; }

/* ---------- Steps ---------- */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 30px 28px 32px;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: var(--radius-pill);
  background: var(--color-blurple);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 20px;
  margin-bottom: 22px;
}
.step:nth-child(2) .step__num { background: var(--color-vivid-cerulean); }
.step:nth-child(3) .step__num { background: var(--color-spring-green); color: var(--color-void); }
.step__title { font-size: 20px; line-height: 1.05; color: #fff; }
.step__text { margin-top: 11px; font-size: 15px; line-height: 1.55; color: var(--color-fog); }

/* ---------- Features ---------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 28px 26px;
}
.feature__icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(88,101,242,0.16);
  margin-bottom: 20px;
}
.feature:nth-child(2) .feature__icon { background: rgba(0,176,244,0.16); }
.feature:nth-child(3) .feature__icon { background: rgba(87,242,135,0.16); }
.feature:nth-child(4) .feature__icon { background: rgba(253,162,32,0.16); }
.feature__icon svg { width: 24px; height: 24px; color: #fff; }
.feature:nth-child(1) .feature__icon svg { color: var(--color-hover-blurple); }
.feature:nth-child(2) .feature__icon svg { color: var(--color-vivid-cerulean); }
.feature:nth-child(3) .feature__icon svg { color: var(--color-spring-green); }
.feature:nth-child(4) .feature__icon svg { color: var(--color-ember-orange); }
.feature__title { font-size: 17px; line-height: 1.1; color: #fff; }
.feature__text { margin-top: 10px; font-size: 14.5px; line-height: 1.55; color: var(--color-fog); }

/* ---------- Reviews ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 28px 26px;
}
.review__stars { margin-bottom: 18px; }
.review__quote {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  font-weight: var(--fw-medium);
  flex: 1;
}
.review__author { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 14px;
  color: #fff;
  background: rgba(88,101,242,0.9);
  flex: none;
}
.review:nth-child(2) .review__avatar { background: rgba(0,176,244,0.9); }
.review:nth-child(3) .review__avatar { background: rgba(87,242,135,0.9); color: var(--color-void); }
.review__name { font-size: 14px; font-weight: var(--fw-bold); color: #fff; }
.review__role { font-size: 13px; color: var(--color-greyple); }

/* ---------- Stats (blurple → fuchsia feature panel) ---------- */
.stats__panel {
  background: linear-gradient(120deg, #5865f2 0%, #7d3bef 55%, #eb459c 100%);
  border-radius: var(--radius-panel);
  padding: clamp(40px, 5vw, 60px) clamp(28px, 5vw, 56px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.stat__label {
  margin-top: 12px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.9);
  max-width: 22ch;
}

/* ---------- Subscribe ---------- */
.section--subscribe {
  background:
    radial-gradient(90% 120% at 15% 20%, rgba(0,176,244,0.16), transparent 55%),
    radial-gradient(90% 120% at 90% 90%, rgba(88,101,242,0.22), transparent 55%);
}
.subscribe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.subscribe__title {
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 0.93;
}
.subscribe__lead { margin-top: 20px; font-size: 17px; color: var(--color-fog); max-width: 46ch; }
.subscribe__perks { margin-top: 26px; display: grid; gap: 13px; }
.subscribe__perk { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #fff; font-weight: var(--fw-medium); }
.subscribe__perk svg { width: 20px; height: 20px; color: var(--color-spring-green); flex: none; }

.form-card {
  background: var(--surface-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-panel);
  padding: clamp(26px, 4vw, 40px);
}
.form__row { margin-bottom: 18px; }
.form__label {
  display: block;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: #fff;
  margin-bottom: 8px;
}
.form__req { color: var(--color-hover-blurple); }
.form__input {
  width: 100%;
  padding: 14px 15px;
  font-size: 15px;
  font-family: inherit;
  color: #fff;
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-btn);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form__input::placeholder { color: var(--color-greyple); }
.form__input:focus {
  outline: none;
  border-color: var(--color-blurple);
  box-shadow: 0 0 0 3px rgba(88,101,242,0.3);
}
.form__consent { display: flex; align-items: flex-start; gap: 11px; margin: 20px 0; }
.form__consent input {
  width: 20px; height: 20px;
  margin: 2px 0 0;
  accent-color: var(--color-blurple);
  flex: none;
}
.form__consent label { font-size: 13px; line-height: 1.5; color: var(--color-fog); }
.form__consent a { color: var(--color-hover-blurple); text-decoration: underline; text-underline-offset: 2px; }
.form__note { margin-top: 14px; font-size: 12px; color: var(--color-greyple); text-align: center; }

.form__success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 22px;
  background: rgba(87,242,135,0.12);
  border: 1px solid rgba(87,242,135,0.5);
  border-radius: var(--radius-card);
  color: #fff;
}
.form__success.is-visible { display: flex; }
.form__success svg { width: 30px; height: 30px; flex: none; color: var(--color-spring-green); }
.form__success-title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 16px; text-transform: uppercase; color: #fff; }
.form__success-text { font-size: 13.5px; color: var(--color-fog); }

/* ---------- FAQ ---------- */
.faq__wrap { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border-soft); }
.faq__item:first-child { border-top: 1px solid var(--border-soft); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 4px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(16px, 2.4vw, 18px);
  font-weight: var(--fw-semibold);
  text-transform: none;
  letter-spacing: normal;
  color: #fff;
}
.faq__icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: var(--radius-pill);
  background: var(--color-blurple);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.faq__icon::before { width: 13px; height: 2.5px; }
.faq__icon::after { width: 2.5px; height: 13px; }
.faq__item.is-open .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq__a-inner { padding: 0 4px 24px; font-size: 16px; line-height: 1.6; color: var(--color-fog); max-width: 68ch; }
.faq__a-inner a { color: var(--color-hover-blurple); text-decoration: underline; text-underline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .faq__a { transition: none; }
}

/* ---------- Footer ---------- */
.footer {
  background: #06070f;
  color: var(--color-fog);
  padding-block: clamp(52px, 6vw, 80px) 32px;
  border-top: 1px solid var(--border-soft);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-soft);
}
.footer__brand-logo {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: var(--fw-black);
  text-transform: uppercase;
  color: #fff;
}
.footer__brand-logo .logo__accent { color: var(--accent-text); }
.footer__tagline { margin-top: 16px; font-size: 14px; line-height: 1.6; max-width: 34ch; }
.footer__col-title {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer__links { display: grid; gap: 11px; }
.footer__link { font-size: 14px; color: var(--color-fog); transition: color .15s ease; }
.footer__link:hover { color: #fff; }
.footer__contact { font-size: 14px; }
.footer__contact a { color: var(--color-hover-blurple); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  font-size: 13px;
  color: var(--color-greyple);
}
.footer__bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__bottom-links a { color: var(--color-greyple); }
.footer__bottom-links a:hover { color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 80;
  max-width: 720px;
  margin-inline: auto;
  background: #16183a;
  color: #fff;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
}
.cookie.is-visible { display: flex; }
.cookie__text { font-size: 13.5px; line-height: 1.5; color: var(--color-fog); flex: 1 1 300px; }
.cookie__text a { color: var(--color-hover-blurple); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex: none; }
.cookie__btn {
  padding: 11px 20px;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
}
.cookie__btn--accept { background: var(--color-blurple); color: #fff; }
.cookie__btn--accept:hover { background: var(--color-dark-blurple); }
.cookie__btn--decline { background: transparent; color: #fff; border-color: var(--border-mid); }
.cookie__btn--decline:hover { background: rgba(255,255,255,0.08); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 70;
  width: 50px; height: 50px;
  border-radius: var(--radius-pill);
  background: var(--color-blurple);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  box-shadow: 0 10px 28px rgba(88,101,242,0.4);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background-color .15s ease;
}
.to-top:hover { background: var(--color-dark-blurple); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Legal pages ---------- */
.legal { padding-block: clamp(44px, 6vw, 76px); }
.legal__head { max-width: 800px; margin-bottom: 40px; }
.legal__title { font-size: clamp(32px, 5vw, 52px); line-height: 0.92; }
.legal__updated { margin-top: 18px; font-size: 14px; color: var(--color-greyple); }
.legal__back { margin-top: 24px; }
.legal__body { max-width: 800px; }
.legal__body h2 {
  font-size: clamp(20px, 3vw, 26px);
  text-transform: none;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 46px;
  margin-bottom: 14px;
}
.legal__body h3 {
  font-size: 17px;
  text-transform: none;
  color: #fff;
  margin-top: 26px;
  margin-bottom: 8px;
}
.legal__body p { margin-bottom: 14px; line-height: 1.75; color: var(--color-fog); }
.legal__body ul { margin-bottom: 16px; padding-left: 22px; list-style: disc; color: var(--color-fog); }
.legal__body li { margin-bottom: 8px; line-height: 1.65; }
.legal__body a { color: var(--color-hover-blurple); text-decoration: underline; text-underline-offset: 2px; }
.legal__body strong { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__col--legal { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0b0c24;
    border-bottom: 1px solid var(--border-soft);
    padding: 14px var(--pad-inline) 26px;
    transform: translateY(-120%);
    transition: transform .25s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 14px 12px; font-size: 16px; border-radius: var(--radius-btn); }
  .nav__cta { display: inline-flex; margin-top: 14px; }
  .header__actions .btn--primary { display: none; }
  .nav-toggle { display: flex; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__showcase { order: -1; }
  .transparency__grid { grid-template-columns: 1fr; }
  .subscribe__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .nav { transition: none; }
}

@media (max-width: 760px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .news__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .catalog__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__col--legal { grid-column: auto; }
  .hero__actions .btn { flex: 1 1 auto; }
  .cookie { flex-direction: column; align-items: stretch; }
  .cookie__actions { justify-content: stretch; }
  .cookie__btn { flex: 1; }
}
