/* ── Motuvia — Futuristic black + electric green ─────────────── */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --black: #000000;
  --bg: #030303;
  --surface: #0a0a0a;
  --surface-2: #111111;
  --surface-glass: rgba(255, 255, 255, 0.03);
  --text: #f5f5f5;
  --text-soft: #a3a3a3;
  --text-muted: #666666;
  --green: #00ff88;
  --green-bright: #39ff14;
  --green-dim: rgba(0, 255, 136, 0.12);
  --green-glow: rgba(0, 255, 136, 0.35);
  --green-border: rgba(0, 255, 136, 0.22);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --max: 76rem;
  --content: 44rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --font-display: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --header-h: 4.5rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--green-bright);
}

::selection {
  background: var(--green-dim);
  color: var(--green-bright);
}

/* ── Ambient background ─────────────────────────────────────── */

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-fx__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
}

.bg-fx__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-drift 18s ease-in-out infinite;
}

.bg-fx__orb--1 {
  width: 520px;
  height: 520px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 255, 136, 0.35) 0%, transparent 70%);
}

.bg-fx__orb--2 {
  width: 360px;
  height: 360px;
  bottom: 10%;
  right: -80px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.18) 0%, transparent 70%);
  animation-delay: -6s;
}

.bg-fx__orb--3 {
  width: 280px;
  height: 280px;
  bottom: 40%;
  left: -60px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, transparent 70%);
  animation-delay: -12s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 30px) scale(1.05); }
}

/* ── Layout utilities ─────────────────────────────────────────── */

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-soft);
  max-width: 36rem;
  margin: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--green) 55%, var(--green-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Header ─────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.header.is-scrolled {
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.logo__mark {
  position: relative;
  width: 2.125rem;
  height: 2.125rem;
  display: grid;
  place-items: center;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.18), rgba(0, 255, 136, 0.04));
  border: 1px solid var(--green-border);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.15);
}

.logo__mark svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--green);
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav { display: flex; }
}

.nav__link {
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

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

.nav__link.is-active {
  color: var(--green);
  background: var(--green-dim);
}

.header__cta {
  display: none;
}

@media (min-width: 768px) {
  .header__cta { display: inline-flex; }
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  background: var(--surface-glass);
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-btn { display: none; }
}

.menu-btn span {
  display: block;
  width: 1rem;
  height: 1.5px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-btn.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  padding: 1.5rem;
  background: rgba(3, 3, 3, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  padding: 1rem 1.125rem;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--surface);
}

.mobile-nav a.is-active {
  border-color: var(--green-border);
  color: var(--green);
  background: var(--green-dim);
}

/* ── Buttons ──────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.375rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

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

.btn--primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--green) 0%, #00d974 100%);
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.3), 0 8px 32px rgba(0, 255, 136, 0.25);
}

.btn--primary:hover {
  color: var(--black);
  box-shadow: 0 0 0 1px var(--green), 0 12px 40px rgba(0, 255, 136, 0.35);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  color: var(--green);
  border-color: var(--green-border);
  background: var(--green-dim);
}

.btn--sm {
  padding: 0.5625rem 1rem;
  font-size: 0.8125rem;
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 2rem;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero__content {
  max-width: 34rem;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--green-border);
  background: rgba(0, 255, 136, 0.06);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-soft);
}

.hero__pill-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  text-align: left;
}

.hero__title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.trust-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--green);
  flex-shrink: 0;
}

/* ── Phone mockup ─────────────────────────────────────────────── */

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 9 / 19;
  border-radius: 2.25rem;
  padding: 0.625rem;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 50%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 255, 136, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(0, 255, 136, 0.08);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-12px); }
}

.phone__notch {
  position: absolute;
  top: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 1.375rem;
  border-radius: 999px;
  background: var(--black);
  z-index: 2;
}

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.75rem;
  overflow: hidden;
  background: #050505;
}

.phone__map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 255, 136, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, #0c0c0c 0%, #050505 100%);
}

.phone__map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.phone__pin {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green-glow);
}

.phone__pin::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 136, 0.4);
  animation: pin-ring 2.5s ease-out infinite;
}

.phone__pin--1 { top: 28%; left: 35%; animation-delay: 0s; }
.phone__pin--2 { top: 45%; left: 62%; animation-delay: 0.8s; }
.phone__pin--3 { top: 58%; left: 28%; animation-delay: 1.6s; }
.phone__pin--4 { top: 38%; left: 72%; width: 0.5rem; height: 0.5rem; opacity: 0.7; }

@keyframes pin-ring {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

.phone__card {
  position: absolute;
  bottom: 1rem;
  left: 0.75rem;
  right: 0.75rem;
  padding: 0.875rem;
  border-radius: 1rem;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid var(--green-border);
  backdrop-filter: blur(12px);
}

.phone__card-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.phone__card-title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.phone__card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.625rem;
  color: var(--text-muted);
}

.phone__card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.phone__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 55%);
  z-index: -1;
}

.hero__float-card {
  position: absolute;
  display: none;
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 960px) {
  .hero__float-card { display: block; }
}

.hero__float-card--1 {
  top: 8%;
  right: -8%;
  animation: float-card 5s ease-in-out infinite;
}

.hero__float-card--2 {
  bottom: 18%;
  left: -12%;
  animation: float-card 5s ease-in-out infinite reverse;
  animation-delay: -2s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card__value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.float-card__label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

/* ── Stats strip ──────────────────────────────────────────────── */

.stats-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

@media (min-width: 768px) {
  .stats-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 1.75rem 1.25rem;
  background: var(--bg);
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── Bento features ───────────────────────────────────────────── */

.bento {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .bento__item--wide { grid-column: span 2; }
  .bento__item--tall { grid-row: span 2; }
}

.bento__item {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.bento__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(0, 255, 136, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento__item:hover {
  border-color: var(--green-border);
  transform: translateY(-2px);
}

.bento__item:hover::before {
  opacity: 1;
}

.bento__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
}

.bento__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.bento__item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.bento__item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.bento__visual {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.875rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.filter-tag.is-active {
  border-color: var(--green-border);
  background: var(--green-dim);
  color: var(--green);
}

/* ── Steps ────────────────────────────────────────────────────── */

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-glass);
}

.step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, var(--green) 0%, rgba(0, 255, 136, 0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

/* ── CTA section ──────────────────────────────────────────────── */

.cta-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.cta-panel {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--green-border);
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 255, 136, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--black) 100%);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ff88' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-panel > * {
  position: relative;
}

.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.cta-panel p {
  color: var(--text-soft);
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  font-size: 1.0625rem;
}

/* ── Footer ───────────────────────────────────────────────────── */

.footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer__tagline {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 18rem;
  line-height: 1.65;
}

.footer__heading {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a {
  font-size: 0.9375rem;
  color: var(--text-soft);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--green);
}

.footer__bottom {
  padding-block: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── Inner / legal pages ──────────────────────────────────────── */

.page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 80% at 50% -20%, rgba(0, 255, 136, 0.1) 0%, transparent 60%),
    var(--black);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.page-hero__meta {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.page-hero__meta strong {
  color: var(--text-soft);
}

.page-body {
  flex: 1;
  padding-block: 3rem 5rem;
}

.page-content {
  max-width: var(--content);
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2.25rem 0 0.75rem;
  padding-top: 0.25rem;
  color: var(--text);
}

.page-content h2:first-of-type {
  margin-top: 0;
}

.page-content p,
.page-content li {
  color: var(--text-soft);
  font-size: 0.9375rem;
}

.page-content ul {
  padding-left: 1.25rem;
}

.page-content li + li {
  margin-top: 0.5rem;
}

.page-content strong {
  color: var(--text);
}

.legal-callout {
  margin-top: 2.5rem;
  padding: 1.25rem 1.375rem;
  border-radius: var(--radius);
  border: 1px solid var(--green-border);
  background: var(--green-dim);
  font-size: 0.875rem;
  color: var(--text-soft);
}

/* ── Support page ─────────────────────────────────────────────── */

.support-email-card {
  margin: 2rem 0 2.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-border);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 255, 136, 0.02));
  text-align: center;
}

.support-email-card p {
  margin: 0 0 1.25rem;
  color: var(--text-soft);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-item {
  padding: 1.25rem 1.375rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.25s;
}

.faq-item:hover {
  border-color: var(--green-border);
}

.faq-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.faq-item span {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── Reveal animations ──────────────────────────────────────────── */

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

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

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

  .bg-fx__orb,
  .hero__pill-dot,
  .phone,
  .phone__pin::after,
  .hero__float-card {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
