/*
 * WRAAS v1.3 — Landing Page Styles
 * Dark theme. Cyan accents. Grid overlay. Maximum gravitas.
 */

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

:root {
  --bg: #050d1a;
  --bg2: #081220;
  --accent: #00c8ff;
  --accent2: #0066ff;
  --text: #e8f4ff;
  --muted: #8aa8c4;
  --border: rgba(0, 200, 255, 0.15);
  --glow: rgba(0, 200, 255, 0.25);
}

html {
  scroll-behavior: smooth;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 999;
  background: var(--accent);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

/* ── Focus indicators ── */
*:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Grid overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  backdrop-filter: blur(12px);
  background: rgba(5, 13, 26, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.nav-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.6rem;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 6rem 6rem;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-acronym {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin: -0.75rem 0 1.5rem;
  text-transform: uppercase;
}

.hero-acronym strong {
  color: var(--accent);
  font-weight: 700;
}

.hero-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.3);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(0, 200, 255, 0.06);
  transform: translateY(-2px);
}

.btn-skeptical {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.8rem;
  font-style: italic;
  letter-spacing: 0.02em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px dashed var(--border);
  transition: transform 0.2s;
}

.btn-skeptical:hover {
  transform: translateY(-1px);
}

.btn-skeptical s {
  color: var(--muted);
}



/* ── Hero image ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0, 200, 255, 0.15), 0 0 120px rgba(0, 102, 255, 0.1);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 13, 26, 0.8) 100%);
}

/* ── Scanline ticker ── */
.ticker {
  position: relative;
  z-index: 1;
  background: rgba(0, 200, 255, 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 4rem;
  animation: scroll 28s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

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

.ticker span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

.ticker span.sep {
  color: var(--muted);
  opacity: 0.4;
}

/* ── Sections ── */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 6rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 em {
  font-style: normal;
  color: var(--accent);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.section-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2rem;
}

/* ── Stats bar ── */
.stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-value {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#pumped-stat {
  background: none;
  -webkit-text-fill-color: var(--muted);
  color: var(--muted);
}

#pumped-stat .zero {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(0, 200, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.08);
  transform: translateY(-4px);
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  color: var(--text);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8em;
  color: var(--accent);
  background: rgba(0, 200, 255, 0.08);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

.feature-card a {
  color: var(--accent);
}

.feature-card--non-negotiable {
  border-color: rgba(184, 134, 11, 0.3);
}

.feature-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 0.3rem;
}

.feature-badge--included {
  background: #e8eef4;
  color: #006080;
  border: 1px solid rgba(0, 96, 128, 0.3);
}

.feature-badge--expected {
  background: #eef4fb;
  color: #2b5a8a;
  border: 1px solid rgba(43, 90, 138, 0.3);
}

.feature-badge--encouraged {
  background: #e8f5ee;
  color: #1a6b3c;
  border: 1px solid rgba(26, 107, 60, 0.3);
}

.feature-badge--non-negotiable {
  background: #fffbee;
  color: #8a6508;
  border: 1px solid rgba(138, 101, 8, 0.3);
}

/* ── How it works ── */
.how-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--bg);
}

.step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.how-visual {
  position: relative;
}

.how-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(0, 200, 255, 0.1);
}

.terminal {
  margin-top: 1rem;
  background: #020810;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.78rem;
  line-height: 1.8;
}

.terminal .prompt {
  color: var(--accent);
}

.terminal .output {
  color: var(--muted);
}

.terminal .success {
  color: #00e676;
}

.terminal .warn {
  color: #ffb300;
}

/* ── Testimonial ── */
.testimonial-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.8rem;
}

.testimonial blockquote {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial blockquote code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8em;
  font-style: normal;
  color: var(--accent);
  background: rgba(0, 200, 255, 0.08);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

.testimonial cite {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-style: normal;
}

.cite-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--bg);
  flex-shrink: 0;
}

.cite-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.cite-role {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 8rem 6rem;
}

.cta-section h2 {
  max-width: 700px;
  margin: 0 auto 1rem;
}

.cta-section p {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}

.btn-skeptical .gradient-text {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-weight: 700;
}

/* ── Modal ── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.is-open {
  display: flex;
}

.modal {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 0 60px rgba(0, 200, 255, 0.15);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

.modal-close:hover {
  color: var(--text);
}

.modal-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.modal h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.modal-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.modal-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  margin-bottom: 1rem;
}

.modal-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.15);
}

.modal-input::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.modal-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.modal-submit:hover {
  opacity: 0.9;
}

.modal-fine-print {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.5;
  line-height: 1.5;
}

.modal-confirmation {
  text-align: center;
}

.modal-confirmation .modal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.modal-confirmation h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.modal-confirmation p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.modal-confirmation .funding-status {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}

.modal-contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.modal-contact {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.modal-contact:hover {
  opacity: 0.8;
}

.modal-install {
  text-align: left;
  margin-top: 1.25rem;
}

.modal-install-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.modal-terminal {
  position: relative;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.modal-terminal code {
  user-select: all;
}

.copy-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.copy-btn:hover,
.copy-btn:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  color: var(--fg);
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.modal-alt {
  font-size: 0.82rem;
  color: var(--muted);
}

.modal-alt a {
  color: var(--accent);
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.footer-version {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.75rem;
}

footer p {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}

.footer-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(0, 200, 255, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  margin-left: 0.5rem;
  opacity: 1;
}

.footer-copy {
  opacity: 0.4;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 3rem 4rem;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-desc {
    max-width: 100%;
  }

  section {
    padding: 4rem 3rem;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat:last-child,
  .stat:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

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

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

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

  footer {
    padding: 2rem 3rem;
  }

  .cta-section {
    padding: 5rem 3rem;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 13, 26, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .stats {
    padding: 2rem 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

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

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .cta-section {
    padding: 4rem 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }
}

/* ── Mobile menu toggle ── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--accent);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-close {
  display: inline;
}

.nav-toggle[aria-expanded="false"] .nav-toggle-close {
  display: none;
}

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

  .ticker-inner {
    animation: none;
  }

  .hero-label::before {
    animation: none;
  }

  .feature-card,
  .btn-primary,
  .btn-secondary,
  .btn-skeptical {
    transition: none;
  }
}
