:root {
  --bg-deep: #070b14;
  --bg-mid: #0e1622;
  --ink: #e8eef8;
  --muted: #9bb0c4;
  --accent-a: #a0c4ff;
  --accent-b: #bdb2ff;
  --navy: #2b2d42;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glow: rgba(160, 196, 255, 0.55);
  --font: "Outfit", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 20% -10%, #1a2740 0%, transparent 55%),
    radial-gradient(900px 700px at 90% 10%, #241833 0%, transparent 50%),
    var(--bg-deep);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(160, 196, 255, 0.35);
}

/* ============ Preloader ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  gap: 22px;
  justify-items: center;
  background: var(--bg-deep);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader img {
  border-radius: 22px;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}

.preloader-bar {
  width: 160px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  animation: preloaderSlide 1.1s ease-in-out infinite;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 18px rgba(160, 196, 255, 0.35)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 0 34px rgba(189, 178, 255, 0.55)); }
}

@keyframes preloaderSlide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(420%); }
}

/* ============ Ambient layers ============ */
.grid-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(160, 196, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 196, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
  pointer-events: none;
  animation: gridDrift 28s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.aurora {
  position: fixed;
  z-index: 0;
  width: 60vw;
  height: 50vh;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
  border-radius: 50%;
}

.aurora-a {
  top: -12vh;
  left: 10vw;
  background: conic-gradient(from 90deg, #a0c4ff, #bdb2ff, #6ec6ff, #a0c4ff);
  animation: auroraSpin 26s linear infinite;
}

.aurora-b {
  bottom: -18vh;
  right: -8vw;
  background: conic-gradient(from 270deg, #bdb2ff, #6ec6ff, #a0c4ff, #bdb2ff);
  animation: auroraSpin 34s linear infinite reverse;
}

@keyframes auroraSpin {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.15); }
  to { transform: rotate(360deg) scale(1); }
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
}

.orb-a { width: 420px; height: 420px; background: var(--accent-a); top: -80px; left: -60px; animation: floatY 11s ease-in-out infinite; }
.orb-b { width: 360px; height: 360px; background: var(--accent-b); top: 30%; right: -100px; animation: floatY 14s ease-in-out infinite reverse; }
.orb-c { width: 280px; height: 280px; background: #6ec6ff; bottom: 5%; left: 35%; animation: floatY 17s ease-in-out infinite; }

.bubble {
  position: fixed;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 50px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  animation: bubbleFloat 18s ease-in-out infinite;
}

.b1 { width: 120px; height: 120px; top: 18%; left: 8%; animation-duration: 16s; }
.b2 { width: 72px; height: 72px; top: 55%; left: 18%; animation-duration: 21s; animation-delay: -4s; }
.b3 { width: 160px; height: 160px; top: 22%; right: 10%; animation-duration: 19s; animation-delay: -2s; }
.b4 { width: 90px; height: 90px; bottom: 18%; right: 22%; animation-duration: 23s; animation-delay: -7s; }
.b5 { width: 54px; height: 54px; bottom: 28%; left: 48%; animation-duration: 15s; animation-delay: -1s; }
.b6 { width: 40px; height: 40px; top: 40%; right: 40%; animation-duration: 25s; animation-delay: -9s; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-28px) translateX(12px); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(30px); }
}

/* ============ Glass ============ */
.glass-panel,
.glass-chip {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 18px;
  z-index: 40;
  margin: 18px auto 0;
  width: min(1100px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.brand-tag {
  font-style: normal;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
}

.site-header nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-header nav a:hover {
  color: var(--accent-a);
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy) !important;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 6px 20px rgba(160, 196, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(160, 196, 255, 0.5);
}

main {
  position: relative;
  z-index: 2;
}

/* ============ Hero ============ */
.hero {
  width: min(1100px, calc(100% - 32px));
  margin: 48px auto 0;
}

.hero-glass {
  position: relative;
  border-radius: 32px;
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  overflow: hidden;
  animation: riseIn 0.9s ease both;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-ring {
  position: absolute;
  top: -240px;
  left: 50%;
  width: 640px;
  height: 640px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(160, 196, 255, 0.18);
  box-shadow: 0 0 120px rgba(160, 196, 255, 0.12) inset;
  animation: ringSpin 40s linear infinite;
  pointer-events: none;
}

.hero-ring::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-a);
  box-shadow: 0 0 22px 4px var(--glow);
}

@keyframes ringSpin {
  to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 22px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(160, 196, 255, 0.25);
  animation: logoPulse 4.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-a);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0 auto 18px;
  font-size: clamp(2.3rem, 5.6vw, 4.3rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.grad-text {
  background: linear-gradient(90deg, #ffffff 0%, var(--accent-a) 45%, var(--accent-b) 80%, #ffffff 120%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradSlide 6s ease-in-out infinite;
}

@keyframes gradSlide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lede {
  margin: 0 auto 22px;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.lede strong {
  color: #cfe0ff;
}

.credit {
  margin: 0 auto 28px;
  color: #c9dcea;
  font-size: 1rem;
  line-height: 1.55;
}

.credit span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.btn-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  padding: 18px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 12px 40px var(--glow);
}

.btn-download:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 18px 55px rgba(160, 196, 255, 0.75);
}

.btn-glow {
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55), transparent 70%);
  transform: translateX(-120%) rotate(12deg);
  animation: sheen 3.2s ease-in-out infinite;
  z-index: -1;
}

@keyframes sheen {
  0%, 55% { transform: translateX(-120%) rotate(12deg); }
  80%, 100% { transform: translateX(120%) rotate(12deg); }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--accent-a);
  color: var(--accent-a);
}

.download-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.smartscreen-note {
  margin: 12px auto 0;
  max-width: 62ch;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(160, 196, 255, 0.22);
  background: rgba(160, 196, 255, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.smartscreen-note strong {
  color: #cfe0ff;
}

/* ============ Stats ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  display: grid;
  justify-items: center;
  gap: 2px;
}

.stat-num {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff, var(--accent-a));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.stat-unit {
  font-family: var(--mono);
  color: var(--accent-b);
  font-size: 0.8rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

/* ============ Marquee ============ */
.marquee {
  margin: 56px 0 0;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 26px;
  width: max-content;
  align-items: center;
  animation: marqueeMove 26s linear infinite;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-track i {
  font-style: normal;
  color: var(--accent-a);
  font-size: 0.6rem;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Sections ============ */
.features,
.architecture,
.showcase,
.faq,
.final-cta {
  width: min(1100px, calc(100% - 32px));
  margin: 88px auto 0;
}

.section-head {
  text-align: center;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

/* ============ Features ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  border-radius: 24px;
  padding: 26px 24px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.feature-card:hover,
.feature-card:focus-visible {
  border-color: rgba(160, 196, 255, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(160, 196, 255, 0.15);
  outline: none;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 8px 24px rgba(160, 196, 255, 0.3);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.feature-card em {
  color: #cfe0ff;
  font-style: normal;
}

.feature-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature-card li {
  font-size: 0.88rem;
  color: #c9dcea;
  padding-left: 16px;
  position: relative;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-a);
  box-shadow: 0 0 8px var(--glow);
}

/* ============ Showcase ============ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.showcase-card {
  position: relative;
  min-height: 300px;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.85;
  transition: transform 0.6s ease;
}

.sc-games::before {
  background:
    radial-gradient(340px 220px at 25% 20%, rgba(110, 198, 255, 0.5), transparent 70%),
    radial-gradient(300px 260px at 80% 70%, rgba(189, 178, 255, 0.4), transparent 70%),
    linear-gradient(160deg, #0b1b33, #131028);
}

.sc-anime::before {
  background:
    radial-gradient(340px 220px at 70% 15%, rgba(255, 173, 210, 0.42), transparent 70%),
    radial-gradient(300px 260px at 20% 80%, rgba(160, 196, 255, 0.4), transparent 70%),
    linear-gradient(200deg, #1c1030, #0b1626);
}

.sc-cars::before {
  background:
    radial-gradient(340px 220px at 30% 80%, rgba(255, 200, 120, 0.35), transparent 70%),
    radial-gradient(300px 260px at 80% 20%, rgba(160, 196, 255, 0.45), transparent 70%),
    linear-gradient(180deg, #101725, #1a1224);
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(160, 196, 255, 0.2);
}

.showcase-card:hover::before {
  transform: scale(1.06);
}

.sc-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.85));
}

.sc-index {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent-a);
  letter-spacing: 0.12em;
}

.sc-inner h3 {
  margin: 6px 0 6px;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.sc-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============ Architecture ============ */
.arch-glass {
  border-radius: 28px;
  padding: clamp(28px, 4vw, 42px);
}

.arch-glass h2 {
  margin: 0 0 24px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
}

.tier-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tier {
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.tier-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.tier-high .tier-badge {
  color: var(--navy);
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
}

.tier-low .tier-badge {
  color: var(--accent-a);
  border: 1px solid rgba(160, 196, 255, 0.4);
}

.tier h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.tier p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.tier code {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: #cfe0ff;
  background: rgba(160, 196, 255, 0.08);
  border: 1px solid rgba(160, 196, 255, 0.15);
  padding: 5px 10px;
  border-radius: 8px;
}

.pipeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(160, 196, 255, 0.2);
  font-family: var(--mono);
  font-size: 0.76rem;
  color: #c9dcea;
  letter-spacing: 0.05em;
}

.pipeline b {
  color: var(--accent-a);
  font-weight: 400;
}

.arch-credit {
  margin: 24px 0 0;
  color: #c9dcea;
  text-align: center;
}

/* ============ FAQ ============ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-list details {
  border-radius: 18px;
  padding: 4px 22px;
  transition: border-color 0.25s ease;
}

.faq-list details[open] {
  border-color: rgba(160, 196, 255, 0.35);
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  padding-right: 34px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent-a);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.faq-list details code {
  font-family: var(--mono);
  font-size: 0.82em;
  color: #cfe0ff;
  background: rgba(160, 196, 255, 0.1);
  padding: 2px 6px;
  border-radius: 6px;
}

/* ============ Final CTA ============ */
.final-glass {
  border-radius: 32px;
  padding: clamp(36px, 6vw, 60px);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.final-glass img {
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(160, 196, 255, 0.3);
}

.final-glass h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
}

.final-glass p {
  margin: 0 0 14px;
  color: var(--muted);
}

/* ============ Footer ============ */
.site-footer {
  width: min(1100px, calc(100% - 32px));
  margin: 40px auto 36px;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer div {
  flex: 1;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer nav a {
  color: var(--accent-a);
  font-weight: 600;
}

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .feature-grid,
  .tier-row,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .brand-tag {
    display: none;
  }
}
