:root {
  --void: #05070c;
  --void-2: #0a0f18;
  --panel: rgba(14, 20, 34, 0.72);
  --panel-2: rgba(22, 32, 52, 0.55);
  --stroke: rgba(165, 243, 252, 0.12);
  --ice: #a5f3fc;
  --ice-dim: #67e8f9;
  --gold: #c9a227;
  --gold-bright: #f5e6a9;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --glow-ice: 0 0 60px rgba(56, 189, 248, 0.35);
  --glow-gold: 0 0 40px rgba(201, 162, 39, 0.25);
  --radius: 22px;
  --radius-sm: 14px;
  --font-display: "Bebas Neue", "Impact", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--void);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ——— Ambient background ——— */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(56, 189, 248, 0.18), transparent 50%),
    radial-gradient(ellipse 90% 70% at 95% 10%, rgba(201, 162, 39, 0.12), transparent 45%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(30, 58, 138, 0.35), transparent 55%),
    var(--void);
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grid-floor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(165, 243, 252, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 243, 252, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

/* ——— Layout shell ——— */
.wrap {
  width: min(1280px, 100% - 40px);
  margin-inline: auto;
}

/* ——— Плашка реф-редиректа (над шапкой) ——— */
.ref-countdown-bar {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(165, 243, 252, 0.15);
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.14) 0%, transparent 45%),
    linear-gradient(225deg, rgba(56, 189, 248, 0.1) 0%, transparent 40%),
    rgba(8, 12, 22, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), var(--glow-gold);
}

.ref-countdown-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  max-width: 100%;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, var(--ice-dim), var(--gold), var(--ice));
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.5);
  animation: ref-countdown-fill 5s linear forwards;
}

@keyframes ref-countdown-fill {
  to {
    width: 100%;
  }
}

.ref-countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  flex-wrap: wrap;
  padding: 14px 0 17px;
}

.ref-countdown-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  text-shadow: 0 0 24px rgba(201, 162, 39, 0.35);
}

.ref-countdown-msg {
  margin: 0;
  flex: 1 1 200px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  text-align: center;
}

.ref-countdown-num {
  display: inline-block;
  min-width: 1.15em;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ice);
  vertical-align: -0.12em;
  text-shadow: var(--glow-ice);
}

.ref-countdown-sec {
  color: var(--muted);
  font-size: 0.95em;
}

.ref-countdown-skip {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .ref-countdown-inner {
    justify-content: center;
    text-align: center;
    padding: 12px 0 16px;
  }

  .ref-countdown-msg {
    flex-basis: 100%;
    order: 2;
  }

  .ref-countdown-brand {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .ref-countdown-skip {
    order: 3;
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ref-countdown-progress {
    animation: none;
    width: 100%;
    opacity: 0.35;
  }
}

/* ——— Top strip ——— */
.top-strip {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(5, 7, 12, 0.6);
}

.top-strip strong {
  color: var(--ice);
  font-weight: 600;
}

.top-strip .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
}

/* ——— Header ——— */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-head.is-scrolled {
  background: rgba(5, 7, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid var(--stroke);
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.25), rgba(201, 162, 39, 0.15));
  border: 1px solid var(--stroke);
  display: grid;
  place-items: center;
  box-shadow: var(--glow-ice);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-type span:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--ice), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-type span:last-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.head-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-ghost {
  background: transparent;
  color: var(--ice);
  border: 1px solid var(--stroke);
}

.btn-ghost:hover {
  background: rgba(165, 243, 252, 0.06);
}

.btn-gold {
  position: relative;
  color: #0a0f18;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: var(--glow-gold), 0 4px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%
  );
  animation: sheen 4s ease-in-out infinite;
}

@keyframes sheen {
  0%,
  100% {
    transform: translateX(-100%) rotate(25deg);
  }
  50% {
    transform: translateX(100%) rotate(25deg);
  }
}

.reduce-motion .btn-gold::after {
  animation: none;
}

/* ——— Breadcrumbs ——— */
.bread-section {
  padding: 20px 0 0;
}

.bread-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  list-style: none;
  margin: 0;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(22, 32, 52, 0.9), rgba(14, 20, 34, 0.95));
  border: 1px solid rgba(165, 243, 252, 0.2);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "→";
  margin-left: 4px;
  color: var(--gold);
  font-size: 0.85em;
  pointer-events: none;
}

.breadcrumbs a {
  color: var(--ice);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: var(--ice-dim);
}

.breadcrumbs a[aria-current="page"] {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 600;
  cursor: default;
}

/* ——— Видимый блок Offer (microdata) ——— */
.offer-visible-card {
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.12), rgba(14, 20, 34, 0.92));
  box-shadow: var(--glow-gold);
}

.offer-visible-heading {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}

.offer-visible-name {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.offer-visible-desc {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 52ch;
}

/* ——— Hero ——— */
.hero {
  padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 8vw, 100px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  font-size: 13px;
  color: var(--ice-dim);
  margin-bottom: 20px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}

.reduce-motion .pulse {
  animation: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.hero h1 .line-gold {
  display: block;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 34ch;
  margin: 0 0 28px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-bottom: 32px;
}

.stat {
  min-width: 100px;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--ice);
}

.stat-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  perspective: 1200px;
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(165, 243, 252, 0.5),
    rgba(201, 162, 39, 0.35),
    rgba(56, 189, 248, 0.4)
  );
  box-shadow: var(--glow-ice), 0 24px 80px rgba(0, 0, 0, 0.55);
  transform: rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transition: transform 0.15s ease-out;
}

.hero-frame-inner {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--void-2);
  position: relative;
  min-height: clamp(440px, 52vw, 580px);
}

.hero-card-art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(36px, 6vw, 56px) 28px 108px;
  min-height: clamp(440px, 52vw, 580px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(56, 189, 248, 0.16), transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201, 162, 39, 0.1), transparent 55%),
    linear-gradient(180deg, #0d1525 0%, #06090f 100%);
}

.hero-card-glow {
  position: absolute;
  width: 140%;
  height: 80%;
  top: -20%;
  left: -20%;
  background: radial-gradient(circle at 50% 40%, rgba(56, 189, 248, 0.22), transparent 55%);
  pointer-events: none;
  filter: blur(24px);
}

.hero-card-ring {
  position: absolute;
  width: min(320px, 85vw);
  height: min(320px, 85vw);
  border-radius: 50%;
  border: 1px solid rgba(165, 243, 252, 0.12);
  box-shadow:
    inset 0 0 60px rgba(56, 189, 248, 0.06),
    0 0 0 1px rgba(201, 162, 39, 0.08);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
}

.hero-card-logo {
  position: relative;
  z-index: 1;
  width: clamp(108px, 26vw, 168px);
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(56, 189, 248, 0.35));
  shape-rendering: geometricPrecision;
}

.hero-card-wordmark {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.92;
}

.hero-wm-top {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: 0.14em;
  color: #f8fafc;
  text-shadow: 0 0 40px rgba(165, 243, 252, 0.35);
  -webkit-font-smoothing: antialiased;
}

.hero-wm-bottom {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-font-smoothing: antialiased;
}

.hero-card-line {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(5, 7, 12, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-badge strong {
  font-size: 15px;
  display: block;
}

.hero-badge small {
  color: var(--muted);
  font-size: 12px;
}

/* ——— Marquee ——— */
.marquee-wrap {
  margin: 0 0 56px;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.reduce-motion .marquee {
  animation: none;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.marquee img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  opacity: 0.92;
}

/* ——— Bento ——— */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 16px;
  margin-bottom: 72px;
}

.bento a {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.bento a:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--glow-ice);
  z-index: 1;
}

.bento a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
}

.bento-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(5, 7, 12, 0.95));
  font-size: 14px;
  font-weight: 600;
}

.bento .span-5 {
  grid-column: span 5;
  grid-row: span 2;
}

.bento .span-4 {
  grid-column: span 4;
}

.bento .span-3 {
  grid-column: span 3;
}

.bento .span-6 {
  grid-column: span 6;
  grid-row: span 2;
}

.bento .span-8 {
  grid-column: span 8;
}

@media (max-width: 900px) {
  .bento .span-5,
  .bento .span-4,
  .bento .span-3,
  .bento .span-6,
  .bento .span-8 {
    grid-column: span 12;
    grid-row: span 1;
  }
}

/* ——— Features ——— */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

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

.feature-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--ice);
}

/* ——— Game wall ——— */
.game-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 80px;
}

.game-wall a {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--stroke);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.game-wall a:hover {
  transform: scale(1.04);
  box-shadow: var(--glow-ice);
}

.game-wall img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

/* ——— Showcase strip ——— */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 80px;
}

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

.showcase-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  min-height: 280px;
}

.showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.showcase-copy {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), var(--panel-2));
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.05em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.showcase-copy p {
  color: var(--muted);
  margin: 0 0 24px;
}

/* ——— SEO article ——— */
.article {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 40px 32px;
  border-radius: var(--radius);
  background: rgba(10, 15, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.article h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
}

.article h2:first-child {
  margin-top: 0;
}

.article p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 15px;
}

/* ——— FAQ (вопросы как заголовки h3 — всегда видны читателю + microdata) ——— */
.faq-block {
  max-width: 720px;
  margin: 0 auto 100px;
  scroll-margin-top: 100px;
}

.faq-block > h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

details.faq {
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: var(--panel);
  margin-bottom: 10px;
  overflow: hidden;
}

details.faq summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

details.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--ice);
  transition: transform 0.2s;
}

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

details.faq p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
}

.faq-block .faq-intro {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 60ch;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: var(--panel);
  margin-bottom: 14px;
  overflow: visible;
}

.faq-heading {
  margin: 0;
  padding: 18px 20px 10px;
  font-size: 1.08rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.35;
  color: var(--text);
  border-left: 3px solid var(--gold);
  margin-left: 16px;
  padding-left: 14px;
}

.faq-block .faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 18px 20px;
  font-size: 1.08rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.35;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  border: none;
  background: transparent;
  border-left: 3px solid var(--gold);
  margin-left: 16px;
  padding-left: 14px;
  box-sizing: border-box;
}

.faq-block .faq-q::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--ice);
  transition: transform 0.2s;
}

.faq-item.is-open .faq-q::after {
  transform: rotate(45deg);
}

.faq-block .faq-a {
  display: none;
  padding: 0 20px 20px 36px;
}

.faq-item.is-open .faq-a {
  display: block;
}

.faq-block .faq-a p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* ——— Footer ——— */
.site-foot {
  border-top: 1px solid var(--stroke);
  padding: 48px 0 32px;
  background: rgba(5, 7, 12, 0.9);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

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

.foot-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--ice), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.foot-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 40ch;
}

.foot-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.foot-col li {
  margin-bottom: 8px;
}

.foot-col a {
  color: var(--text);
  font-size: 14px;
  opacity: 0.85;
}

.foot-col a:hover {
  opacity: 1;
  color: var(--ice);
}

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--muted);
}

/* ——— Reveal ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.reduce-motion [data-reveal] {
  opacity: 1;
  transform: none;
}
