/* ============================================================
   VARIANT B — "Hextech Arcane"
   Deep navy-violet, animated gradient orbs, glassmorphism,
   violet primary + gold reserved for rank badge / primary CTA.
   ============================================================ */

:root {
  color-scheme: dark;

  --bg: #0a0718;
  --ink: #edeaf8;
  --muted: #a79fc6;

  --violet: #7c5cff;
  --violet-deep: #9d4edd;
  --violet-soft: #b9a4ff;
  --violet-text: #cfc2ff;

  --gold: #f2c05e;
  --gold-deep: #e2a53c;
  --gold-text: #f5cd7d;

  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);

  --radius: 18px;
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Sora", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset & base ---------- */

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

html {
  scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* faint dot grid overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1.4px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.55));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.55));
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--violet-text);
  text-decoration: none;
}

::selection {
  background: rgba(124, 92, 255, 0.45);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--violet-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--violet);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 1rem;
}

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

/* ---------- Layout ---------- */

.container {
  width: min(1120px, 100% - clamp(2rem, 6vw, 4rem));
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, 100% - clamp(2rem, 6vw, 4rem));
}

.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
  /* Anchor offset is handled once by scroll-padding-top on <html>. */
}

.section__head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section__head h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 700;
}

.section__head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 0.55em;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--violet), var(--violet-deep));
  box-shadow: 0 0 14px rgba(124, 92, 255, 0.7);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-soft);
  margin-bottom: 0.9rem;
}

.lede {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 56ch;
}

/* ---------- Animated gradient orbs ---------- */

.orbs {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  will-change: transform;
}

.orb--violet {
  width: 46vw;
  height: 46vw;
  min-width: 420px;
  min-height: 420px;
  top: -14%;
  left: -10%;
  background: radial-gradient(circle at 32% 32%, #7c5cff 0%, transparent 66%);
  animation: drift-a 26s ease-in-out infinite alternate;
}

.orb--magenta {
  width: 42vw;
  height: 42vw;
  min-width: 380px;
  min-height: 380px;
  bottom: -20%;
  right: -12%;
  background: radial-gradient(circle at 60% 40%, #9d4edd 0%, transparent 66%);
  animation: drift-b 32s ease-in-out infinite alternate;
}

.orb--blue {
  width: 34vw;
  height: 34vw;
  min-width: 300px;
  min-height: 300px;
  top: 38%;
  left: 52%;
  opacity: 0.38;
  background: radial-gradient(circle at 45% 55%, #3b2fa6 0%, transparent 66%);
  animation: drift-c 38s ease-in-out infinite alternate;
}

@keyframes drift-a {
  to {
    transform: translate(9vw, 12vh) scale(1.15);
  }
}

@keyframes drift-b {
  to {
    transform: translate(-10vw, -9vh) scale(1.1);
  }
}

@keyframes drift-c {
  to {
    transform: translate(-7vw, 8vh) scale(0.92);
  }
}

/* ---------- Glass surfaces ---------- */

.glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(4, 2, 14, 0.5);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.btn--gold {
  background: linear-gradient(135deg, #f7d68a 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #241338;
  box-shadow:
    0 0 22px rgba(242, 192, 94, 0.35),
    0 8px 24px rgba(4, 2, 14, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn--gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 0 34px rgba(242, 192, 94, 0.5),
    0 12px 28px rgba(4, 2, 14, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn--ghost {
  background: rgba(124, 92, 255, 0.08);
  border: 1px solid rgba(155, 124, 255, 0.45);
  color: var(--violet-text);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 164, 255, 0.8);
  box-shadow: 0 0 22px rgba(124, 92, 255, 0.3);
}

.btn--small {
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
  border-radius: 10px;
}

.btn--block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* ---------- "Not configured" hint ---------- */

.cfg-missing {
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: rgba(185, 164, 255, 0.65);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
  cursor: help;
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: rgba(10, 7, 24, 0.62);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.nav__brand em {
  font-style: normal;
  color: var(--violet-soft);
}

.nav__hex {
  color: var(--violet);
  filter: drop-shadow(0 0 6px rgba(124, 92, 255, 0.7));
}

.nav__logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 0 6px rgba(124, 92, 255, 0.55));
}

.nav__links {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.nav__links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: var(--ink);
}

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

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(7rem, 16vh, 10rem) clamp(4rem, 9vh, 6rem);
  position: relative;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__title {
  font-size: clamp(2.5rem, 7.2vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-block: 0.35em 0.4em;
  text-wrap: balance;
}

.grad {
  background: linear-gradient(100deg, var(--violet-soft) 0%, var(--violet) 45%, var(--violet-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(124, 92, 255, 0.45));
}

.hero__sub {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 58ch;
  margin-bottom: 2.2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero__trust li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px rgba(124, 92, 255, 0.9);
}

/* ---------- Rank badge (gold reserved) ---------- */

.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 192, 94, 0.4);
  background: linear-gradient(160deg, rgba(242, 192, 94, 0.12), rgba(242, 192, 94, 0.03));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--gold-text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow:
    0 0 24px rgba(242, 192, 94, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.rank-badge__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(245, 205, 125, 0.75);
  border-right: 1px solid rgba(242, 192, 94, 0.35);
  padding-right: 0.6rem;
}

/* ---------- Credentials ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin-bottom: 1.6rem;
}

.stat {
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 124, 255, 0.4);
  box-shadow: 0 22px 48px rgba(4, 2, 14, 0.6), 0 0 28px rgba(124, 92, 255, 0.14);
}

.stat__label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.stat__value--gold {
  color: var(--gold-text);
  text-shadow: 0 0 22px rgba(242, 192, 94, 0.35);
}

.proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.5rem;
  padding: 1.1rem 1.4rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}

.proof__id {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof__id span {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Offerings ---------- */

.offer-group {
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.offer-group:last-child {
  margin-bottom: 0;
}

.offer-group__title {
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 1.9rem);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.offer:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 124, 255, 0.45);
  box-shadow: 0 22px 48px rgba(4, 2, 14, 0.6), 0 0 30px rgba(124, 92, 255, 0.16);
}

/* "Most popular" — gold stays reserved for rank / highlight accents */
.offer--popular {
  border-color: rgba(242, 192, 94, 0.4);
  box-shadow: 0 18px 44px rgba(4, 2, 14, 0.5), 0 0 26px rgba(242, 192, 94, 0.14);
}

.offer--popular:hover {
  border-color: rgba(242, 192, 94, 0.6);
  box-shadow: 0 22px 48px rgba(4, 2, 14, 0.6), 0 0 34px rgba(242, 192, 94, 0.22);
}

.offer__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.28rem 0.75rem;
  margin: 0 0 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer__tag--gold {
  color: var(--gold-text);
  border: 1px solid rgba(242, 192, 94, 0.4);
  background: linear-gradient(160deg, rgba(242, 192, 94, 0.14), rgba(242, 192, 94, 0.04));
  box-shadow: 0 0 18px rgba(242, 192, 94, 0.16);
}

.offer__tag--violet {
  color: var(--violet-text);
  border: 1px solid rgba(155, 124, 255, 0.35);
  background: rgba(124, 92, 255, 0.1);
}

.offer__meta {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.offer h4 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.45em;
}

.offer__desc {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0 0 1.1rem;
}

.offer__perk {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--violet-text);
  font-size: 0.85rem;
  margin: 0 0 1.1rem;
}

.offer__perk::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px rgba(124, 92, 255, 0.9);
}

.offer__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin: auto 0 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* ---------- Custom offer strip ---------- */

.custom-offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-top: clamp(0.9rem, 2vw, 1.4rem);
}

.custom-offer__copy h4 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.4em;
}

.custom-offer__copy p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
}

.custom-offer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

/* ---------- Direct e-mail link (config-gated) ---------- */

.link-mail {
  color: var(--violet-text);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-color: rgba(185, 164, 255, 0.45);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.link-mail:hover {
  color: var(--ink);
  text-decoration-color: rgba(185, 164, 255, 0.9);
}

.link-mail.cfg-missing {
  text-decoration-style: dashed;
  text-decoration-color: rgba(185, 164, 255, 0.65);
  text-decoration-thickness: 1px;
  cursor: help;
}

/* ---------- What you'll learn ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.card {
  padding: clamp(1.5rem, 2.5vw, 1.9rem);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 124, 255, 0.45);
  box-shadow: 0 22px 48px rgba(4, 2, 14, 0.6), 0 0 30px rgba(124, 92, 255, 0.16);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  border-radius: 13px;
  color: var(--violet-soft);
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(155, 124, 255, 0.3);
  box-shadow: 0 0 18px rgba(124, 92, 255, 0.18);
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45em;
}

.card p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
}

/* ---------- Testimonials ---------- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.testimonial {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: clamp(1.5rem, 2.5vw, 1.9rem);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 124, 255, 0.45);
  box-shadow: 0 22px 48px rgba(4, 2, 14, 0.6), 0 0 30px rgba(124, 92, 255, 0.16);
}

.testimonial__quote {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.testimonial__quote p {
  margin: 0;
}

.testimonial__byline {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.testimonial__name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.2rem;
}

.testimonial__rank {
  color: var(--violet-text);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  margin: 0;
}

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  overflow: hidden;
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.8rem;
  background: linear-gradient(120deg, var(--violet-soft), var(--violet-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}

.step::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), transparent 70%);
  opacity: 0.7;
}

.step h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45em;
}

.step p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
}

.pricing-note {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

/* ---------- Contact form ---------- */

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin: calc(-1 * clamp(1rem, 2.5vw, 1.75rem)) 0 clamp(1.6rem, 3vw, 2.25rem);
}

.contact-panel {
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.form-field label {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(167, 159, 198, 0.6);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #16112e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' fill='none' stroke='%23b9a4ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  cursor: pointer;
}

.form-field select:invalid {
  color: rgba(167, 159, 198, 0.6);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.25);
}

.form-hint {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* honeypot — visually hidden, still in the DOM for bots */
.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status.is-warn {
  color: var(--gold-text);
}

.form-status.is-error {
  color: #ff9ba8;
}

.form-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.form-success {
  text-align: center;
  padding: clamp(1rem, 3vw, 2rem) 0.5rem;
  color: var(--ink);
}

.form-success svg {
  color: var(--violet-soft);
  filter: drop-shadow(0 0 12px rgba(124, 92, 255, 0.6));
  margin-bottom: 0.9rem;
}

.form-success h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4em;
}

.form-success p {
  color: var(--muted);
  margin: 0;
}

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

.footer {
  border-top: 1px solid var(--line);
  padding-block: 2.5rem 2.75rem;
  background: rgba(8, 5, 18, 0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  margin-bottom: 1.4rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
}

.footer__meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer__discord {
  color: var(--violet-text);
  font-weight: 600;
}

.footer__sep {
  margin-inline: 0.55rem;
}

.footer__disclaimer {
  color: rgba(167, 159, 198, 0.75);
  font-size: 0.78rem;
  line-height: 1.6;
  max-width: 72ch;
  margin: 0;
}

/* ---------- Scroll reveal ---------- */
/* Hiding is gated on html.js so content stays visible if JS never runs. */

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* stagger siblings a touch */
.cards .reveal:nth-child(2),
.offers .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.testimonials .reveal:nth-child(2),
.stats + .proof {
  transition-delay: 0.08s;
}

.cards .reveal:nth-child(3),
.offers .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.testimonials .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.cards .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

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

/* Large screens: raise the type/spacing scale and content width so the layout
   fills QHD+ monitors at 100% zoom instead of floating in empty background. */
@media (min-width: 1800px) {
  html {
    font-size: 18px;
  }

  .container {
    width: min(1260px, 100% - clamp(2rem, 6vw, 4rem));
  }

  .container--narrow {
    width: min(860px, 100% - clamp(2rem, 6vw, 4rem));
  }
}

@media (min-width: 2400px) {
  html {
    font-size: 20px;
  }

  .container {
    width: min(1400px, 100% - clamp(2rem, 6vw, 4rem));
  }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

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

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

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

@media (max-width: 760px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .proof {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .custom-offer {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .orb {
    animation: none !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
