:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-panel: #111111;
  --yellow: #f5c518;
  --yellow-bright: #ffe566;
  --yellow-dim: #c9a012;
  --yellow-glow: rgba(245, 197, 24, 0.35);
  --yellow-soft: rgba(245, 197, 24, 0.12);
  --text: #f4f4f0;
  --muted: #9a9a90;
  --border: rgba(245, 197, 24, 0.18);
  --font-display: "Syne", sans-serif;
  --font-brand: "Unbounded", sans-serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

/* —— Animated background —— */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245, 197, 24, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(245, 197, 24, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(245, 197, 24, 0.05), transparent 45%),
    var(--bg);
}

.bg-grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(600px) rotateX(58deg);
  transform-origin: center top;
  animation: grid-drift 28s linear infinite;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 55%, transparent);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orb-float 16s ease-in-out infinite;
}

.bg-orb--1 {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  top: -8%;
  left: -10%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.45), transparent 70%);
  animation-duration: 18s;
}

.bg-orb--2 {
  width: 36vw;
  height: 36vw;
  max-width: 420px;
  max-height: 420px;
  bottom: 5%;
  right: -8%;
  background: radial-gradient(circle, rgba(255, 229, 102, 0.28), transparent 70%);
  animation-duration: 22s;
  animation-delay: -6s;
}

.bg-orb--3 {
  width: 28vw;
  height: 28vw;
  max-width: 320px;
  max-height: 320px;
  top: 42%;
  left: 38%;
  background: radial-gradient(circle, rgba(201, 160, 18, 0.22), transparent 70%);
  animation-duration: 20s;
  animation-delay: -10s;
}

.bg-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.12) 3px,
    rgba(0, 0, 0, 0.12) 4px
  );
  opacity: 0.35;
  animation: scan-pulse 8s ease-in-out infinite;
}

.bg-beam {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 2px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
  opacity: 0.15;
  transform: translateX(-50%) rotate(18deg);
  animation: beam-sweep 12s ease-in-out infinite;
}

.bg-noise {
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

@keyframes grid-drift {
  0% { transform: perspective(600px) rotateX(58deg) translateY(0); }
  100% { transform: perspective(600px) rotateX(58deg) translateY(64px); }
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, 6%) scale(1.08); }
  66% { transform: translate(-5%, -3%) scale(0.94); }
}

@keyframes scan-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.45; }
}

@keyframes beam-sweep {
  0%, 100% { transform: translateX(-50%) rotate(18deg) translateX(-30vw); opacity: 0.08; }
  50% { transform: translateX(-50%) rotate(18deg) translateX(30vw); opacity: 0.22; }
}

@keyframes float-panel {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(-2deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.35); }
  50% { box-shadow: 0 0 28px 4px rgba(245, 197, 24, 0.25); }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  width: 1.65rem;
  height: 1.65rem;
  color: var(--yellow);
  filter: drop-shadow(0 0 8px var(--yellow-glow));
}

.brand__name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--yellow-bright), var(--yellow), var(--yellow-dim));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.75rem;
  border-radius: 0.35rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.nav-btn:hover {
  color: var(--yellow);
  background: var(--yellow-soft);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.5rem 1.25rem 4rem;
  text-align: center;
}

.hero__inner {
  max-width: 900px;
  margin: 0 auto;
  animation: fade-up 0.9s ease-out both;
}

.hero__brand {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  background: linear-gradient(135deg, #fff 10%, var(--yellow-bright) 45%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px var(--yellow-glow);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text);
}

.hero__headline span {
  color: var(--yellow);
}

.hero__sub {
  margin: 0 auto 2rem;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
}

.cta-wrap {
  display: inline-block;
  padding: 2px;
  border-radius: 0.65rem;
  background: linear-gradient(120deg, var(--yellow-bright), var(--yellow), var(--yellow-dim), var(--yellow-bright));
  background-size: 300% 100%;
  animation: shimmer 4s linear infinite, pulse-glow 3s ease-in-out infinite;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.6rem;
  border-radius: 0.55rem;
  background: #0a0a0a;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.cta-btn:hover {
  background: var(--yellow);
  color: #0a0a0a;
  transform: translateY(-1px);
}

.cta-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.cta-hint {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: #6e6e66;
}

.scroll-cue {
  appearance: none;
  border: none;
  background: transparent;
  margin: 2.25rem auto 0;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.scroll-cue:hover {
  opacity: 1;
}

.scroll-cue__mouse {
  position: relative;
  width: 1.35rem;
  height: 2.2rem;
  border: 1.5px solid rgba(245, 197, 24, 0.55);
  border-radius: 999px;
  display: block;
}

.scroll-cue__dot {
  position: absolute;
  top: 0.35rem;
  left: 50%;
  width: 0.28rem;
  height: 0.28rem;
  margin-left: -0.14rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px rgba(245, 197, 24, 0.7);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(0.85rem); opacity: 0.15; }
  100% { transform: translateY(0); opacity: 0; }
}

/* —— Sections —— */
.section {
  position: relative;
  padding: 5.5rem 1.25rem;
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
}

.section__head p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
  padding: 2rem 1.5rem 1.75rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(22, 20, 12, 0.92), rgba(12, 12, 12, 0.88));
  border: 1px solid rgba(245, 197, 24, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.guide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(245, 197, 24, 0.08);
}

.guide-card__icon {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: #0a0a0a;
  border: 1px solid rgba(245, 197, 24, 0.35);
  color: var(--yellow);
  box-shadow: 0 0 28px rgba(245, 197, 24, 0.28), inset 0 0 18px rgba(245, 197, 24, 0.06);
}

.guide-card__icon svg {
  width: 1.85rem;
  height: 1.85rem;
  filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.55));
}

.guide-card__num {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow-bright), var(--yellow-dim));
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 0 12px rgba(245, 197, 24, 0.55);
}

.guide-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: #fff;
}

.guide-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.25rem;
}

.guide-card__foot {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.guide-card__foot strong {
  color: #fff;
  font-weight: 700;
}

.key-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 14rem;
}

.key-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f0f0ea;
  letter-spacing: 0.01em;
}

.drag-me {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow-dim), var(--yellow), var(--yellow-bright));
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(245, 197, 24, 0.35);
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  cursor: grab;
}

.drag-me:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 36px rgba(245, 197, 24, 0.5);
}

.drag-me:active {
  cursor: grabbing;
}

.track-copy {
  margin: 0;
  max-width: 15rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.track-copy strong {
  color: #fff;
  font-weight: 700;
}

/* —— Benefits —— */
.benefits-section {
  background: linear-gradient(to bottom, transparent, rgba(245, 197, 24, 0.03) 40%, transparent);
}

.benefits {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  background: rgba(12, 12, 12, 0.75);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.benefit:hover {
  border-color: rgba(245, 197, 24, 0.45);
  background: rgba(18, 16, 8, 0.9);
  transform: translateY(-3px);
}

.benefit__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: var(--yellow-soft);
  color: var(--yellow);
  margin-bottom: 1rem;
}

.benefit__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.benefit h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.benefit p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* —— Preview —— */
.preview-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .preview-layout {
    flex-direction: row;
    align-items: center;
  }

  .preview-copy,
  .preview-visual {
    width: 50%;
  }
}

.preview-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.preview-copy > p {
  color: var(--muted);
  margin: 0 0 1.75rem;
}

.feature-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
  color: var(--yellow);
}

.feature-label svg {
  width: 1.15rem;
  height: 1.15rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-list li svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  color: var(--yellow);
  flex-shrink: 0;
}

.preview-visual {
  display: flex;
  justify-content: center;
}

.panel-float {
  animation: float-panel 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(245, 197, 24, 0.28));
  transition: transform 0.5s ease;
}

.panel-float:hover {
  animation-play-state: paused;
  transform: rotate(0deg) translateY(-4px);
}

.tool-panel {
  width: min(24rem, 92vw);
  height: 520px;
  background: linear-gradient(180deg, #12100a, #1a160c);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-left: 2px solid var(--yellow);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.tool-panel__head {
  padding: 1.15rem 1.25rem;
  background: linear-gradient(90deg, #1a160c, #221c0e);
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
}

.tool-panel__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.tool-panel__brand svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--yellow);
}

.tool-panel__title {
  font-weight: 700;
  font-size: 0.95rem;
}

.tool-panel__sub {
  font-size: 0.7rem;
  color: #c9b86a;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.55rem;
  border-radius: 0.25rem;
  background: var(--yellow-soft);
  border: 1px solid rgba(245, 197, 24, 0.35);
}

.status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--yellow);
  animation: scan-pulse 1.5s ease-in-out infinite;
}

.status-pill span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

.tool-panel__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.field-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}

.field-box {
  background: #16130b;
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 0.35rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.85rem;
}

.row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #16130b;
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 0.35rem;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.45rem;
}

.row-item:last-child {
  margin-bottom: 0;
}

.row-item__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.row-item__left svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--yellow);
}

.row-item__name {
  font-size: 0.75rem;
}

.row-item__desc {
  font-size: 0.65rem;
  color: #c9b86a;
  opacity: 0.75;
}

.check-on {
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-on svg {
  width: 0.5rem;
  height: 0.5rem;
  color: #0a0a0a;
}

.check-off {
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
  background: #333;
  border: 1px solid #555;
}

.param-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.param-row span:first-child {
  font-size: 0.75rem;
}

.param-badge {
  font-size: 0.65rem;
  color: var(--yellow);
  background: var(--yellow-soft);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 0.2rem;
  padding: 0.15rem 0.4rem;
}

.bar {
  width: 100%;
  height: 4px;
  background: #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.bar__fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--yellow-dim), var(--yellow-bright));
}

.bar__fill--sm { width: 25%; }
.bar__fill--lg { width: 75%; }

.apply-btn {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.7rem;
  border: none;
  border-radius: 0.4rem;
  background: linear-gradient(90deg, var(--yellow-dim), var(--yellow), var(--yellow-bright));
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}

.apply-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* —— Footer —— */
.site-footer {
  padding: 3.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer p {
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.site-footer p.small {
  font-size: 0.85rem;
  color: #6e6e66;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--yellow-bright);
}

.footer-link svg {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .bg-grid,
  .bg-orb,
  .bg-scan,
  .bg-beam,
  .brand__name,
  .cta-wrap,
  .scroll-cue__dot,
  .panel-float,
  .status-dot {
    animation: none !important;
  }
}
