/* SeReacher marketing — premium dark recon aesthetic */
:root {
  --bg-deep: #05060a;
  --bg-card: rgba(12, 14, 22, 0.72);
  --bg-elevated: rgba(18, 22, 36, 0.85);
  --border-subtle: rgba(120, 140, 200, 0.12);
  --text: #e8eaf4;
  --text-muted: #8b92a8;
  --accent: #5eead4;
  --accent-dim: #2dd4bf;
  --accent-glow: rgba(94, 234, 212, 0.35);
  --violet: #a78bfa;
  --violet-glow: rgba(167, 139, 250, 0.25);
  --danger-soft: #fb7185;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 14px;
  --radius-lg: 22px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 9999;
  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");
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--accent-dim);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: float-orb 22s var(--ease-out) infinite;
}

.ambient__orb--1 {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -15%;
  right: -10%;
  animation-delay: 0s;
}

.ambient__orb--2 {
  width: min(60vw, 440px);
  height: min(60vw, 440px);
  background: radial-gradient(circle, var(--violet-glow), transparent 70%);
  bottom: 10%;
  left: -15%;
  animation-delay: -7s;
  animation-duration: 26s;
}

.ambient__grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(94, 234, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 234, 212, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(500px) rotateX(60deg);
  animation: grid-drift 80s linear infinite;
  opacity: 0.4;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(3%, 5%) scale(1.05);
  }
  66% {
    transform: translate(-4%, 2%) scale(0.95);
  }
}

@keyframes grid-drift {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(64px);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(5, 6, 10, 0.65);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 10, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.lang-switch {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  padding: 3px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.22);
}

.lang-switch__btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 10px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch__btn:hover {
  color: var(--text);
}

.lang-switch__btn--active {
  background: rgba(94, 234, 212, 0.18);
  color: var(--accent);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 28px rgba(94, 234, 212, 0.18);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--accent-dim), #14b8a6);
  color: var(--bg-deep);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
  box-shadow: 0 6px 36px var(--accent-glow);
  color: var(--bg-deep);
}

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

.btn--ghost:hover {
  border-color: rgba(94, 234, 212, 0.35);
  background: rgba(94, 234, 212, 0.06);
  color: var(--accent);
}

/* Main layout */
main {
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(72px, 12vw, 120px) clamp(20px, 5vw, 48px);
}

.section--tight-top {
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 80px));
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

/* Reveal on scroll (html.no-js keeps content visible without JS) */
html.no-js .reveal,
html.no-js .reveal-stagger > * {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}

.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.19s;
}
.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.26s;
}
.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.33s;
}
.reveal-stagger.is-visible > *:nth-child(6) {
  transition-delay: 0.4s;
}
.reveal-stagger.is-visible > *:nth-child(7) {
  transition-delay: 0.47s;
}
.reveal-stagger.is-visible > *:nth-child(8) {
  transition-delay: 0.54s;
}
.reveal-stagger.is-visible > *:nth-child(9) {
  transition-delay: 0.61s;
}
.reveal-stagger.is-visible > *:nth-child(10) {
  transition-delay: 0.68s;
}
.reveal-stagger.is-visible > *:nth-child(11) {
  transition-delay: 0.75s;
}
.reveal-stagger.is-visible > *:nth-child(12) {
  transition-delay: 0.82s;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.hero {
  text-align: center;
  padding-bottom: clamp(56px, 10vw, 96px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-bottom: 28px;
  animation: badge-pulse 4s ease-in-out infinite;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: dot-blink 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    border-color: var(--border-subtle);
  }
  50% {
    border-color: rgba(94, 234, 212, 0.25);
  }
}

@keyframes dot-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title > span:first-child {
  display: block;
}

.hero__title .gradient-text {
  display: block;
}

.gradient-text {
  background: linear-gradient(120deg, var(--text) 0%, var(--accent) 45%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
  background-size: 200% auto;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

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

.stat-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.stat-card:hover {
  border-color: rgba(94, 234, 212, 0.2);
  transform: translateY(-2px);
}

.stat-card__value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-card__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-card--inr:hover {
  border-color: rgba(167, 139, 250, 0.22);
}

.stat-card--inr .stat-card__value {
  color: var(--violet);
}

/* Product modules — twin pillars */
.modules-intro {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto 56px;
}

@media (min-width: 800px) {
  .modules-intro {
    grid-template-columns: 1fr 1fr;
  }
}

.module-pillar {
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  text-align: left;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.module-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.module-pillar--os {
  border-top: 3px solid var(--accent);
}

.module-pillar--inr {
  border-top: 3px solid var(--violet);
}

.module-pillar__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.module-pillar__title {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.module-pillar__desc {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.module-pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.module-pillar--inr .module-pillar__link {
  color: var(--violet);
}

.module-pillar--inr .module-pillar__link:hover {
  color: #c4b5fd;
}

/* Feature subsection per module */
.module-block {
  margin-bottom: 48px;
}

.module-block:last-child {
  margin-bottom: 0;
}

.module-block__head {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.module-block__head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.module-block__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 720px;
}

.module-block__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.module-block__badge--os {
  color: var(--accent);
  background: rgba(94, 234, 212, 0.1);
  border: 1px solid rgba(94, 234, 212, 0.2);
}

.module-block__badge--inr {
  color: var(--violet);
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.22);
}

.feature-card--inr::before {
  background: linear-gradient(90deg, var(--violet), var(--accent));
}

.feature-card--inr .feature-card__icon {
  background: rgba(167, 139, 250, 0.12);
}

.shot-block-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 8px 0 16px;
}

.shot-block-label:first-child {
  margin-top: 0;
}

.shot-placeholder--inr {
  background:
    linear-gradient(145deg, rgba(22, 18, 36, 0.92) 0%, rgba(8, 10, 18, 0.95) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(167, 139, 250, 0.03) 8px,
      rgba(167, 139, 250, 0.03) 16px
    );
}

.shot-placeholder--inr .shot-placeholder__file {
  color: var(--violet);
}

.shot-section__split {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

/* Feature cards */
.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.section__desc {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.25);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(94, 234, 212, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

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

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

/* Screenshot placeholders */
.shot-section {
  background: linear-gradient(180deg, transparent, rgba(94, 234, 212, 0.03), transparent);
}

.shot-section .container {
  max-width: 1520px;
}

.shot-grid {
  display: grid;
  gap: 36px;
}

@media (min-width: 900px) {
  .shot-grid--split {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: start;
  }
}

.shot-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease-out);
}

.shot-frame:hover {
  box-shadow: 0 32px 80px rgba(94, 234, 212, 0.08);
  transform: translateY(-3px);
}

.shot-frame__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border-subtle);
}

.shot-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
}

.shot-frame__dot:nth-child(1) {
  background: #fb7185;
}
.shot-frame__dot:nth-child(2) {
  background: #fbbf24;
}
.shot-frame__dot:nth-child(3) {
  background: #4ade80;
}

.shot-frame__url {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: clamp(0.82rem, 1.35vw, 0.95rem);
  color: var(--text-muted);
}

.shot-frame__img {
  width: 100%;
  height: auto;
  display: block;
}

.shot-placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(18, 22, 36, 0.9) 0%, rgba(8, 10, 18, 0.95) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(94, 234, 212, 0.02) 8px,
      rgba(94, 234, 212, 0.02) 16px
    );
  position: relative;
}

.shot-placeholder__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.shot-placeholder__title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

.shot-placeholder__hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.5;
}

.shot-placeholder__file {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  opacity: 0.85;
}

/* CTA band */
.cta-band {
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 56px);
  text-align: center;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.12), rgba(167, 139, 250, 0.1));
  border: 1px solid rgba(94, 234, 212, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 50%, var(--accent-glow), transparent 45%);
  opacity: 0.4;
  pointer-events: none;
}

.cta-band h2,
.cta-band p,
.cta-band .btn-wrap {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0 0 24px;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.contact-card p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  background: rgba(94, 234, 212, 0.1);
  border: 1px solid rgba(94, 234, 212, 0.25);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.mail-btn:hover {
  background: rgba(94, 234, 212, 0.18);
  color: var(--accent-dim);
}

.mail-btn code {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  word-break: break-all;
}

.contact-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-social__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(94, 234, 212, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.22);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.contact-social__link:hover {
  background: rgba(94, 234, 212, 0.14);
  border-color: rgba(94, 234, 212, 0.35);
  color: var(--accent);
}

.contact-social__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

/* Footer */
.site-footer {
  padding: 40px clamp(20px, 4vw, 48px) 48px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--text-muted);
}

.site-footer a:hover {
  color: var(--accent);
}

/* Mobile nav toggle (minimal) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-desktop {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    background: rgba(5, 6, 10, 0.95);
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s ease;
  }

  .nav-desktop.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-actions {
    gap: 8px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-stagger > *,
  .ambient__orb,
  .ambient__grid,
  .gradient-text,
  .hero__badge,
  .hero__badge-dot {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
