/* ============================================================
   GravityGate — style.css
   Dark, trail-moody design system. System fonts only (no external
   font requests — keeps this GDPR-clean and fast).
   ============================================================ */

:root {
  --bg: #0a0b0a;
  --bg-elevated: #131511;
  --surface: #181b16;
  --surface-2: #1f231c;
  --border: rgba(245, 244, 240, 0.1);
  --border-strong: rgba(245, 244, 240, 0.18);

  --text: #f5f4f0;
  --text-muted: #aab0a4;
  --text-dim: #767c72;

  --accent: #ff5a2b;
  --accent-strong: #ff7a4d;
  --accent-ink: #2a0c02;
  --accent-soft: rgba(255, 90, 43, 0.14);

  --moss: #8fce3c;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
.no-scroll { overflow: hidden; }

::selection { background: var(--accent); color: var(--accent-ink); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.12;
}
.section-sub {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

.section-pad { padding: clamp(64px, 10vw, 120px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #150500;
}
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-strong); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 11, 10, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom-color: var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand svg { width: 30px; height: 30px; flex: none; }
.brand span { color: var(--text); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a:not(.btn) {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}
.nav-menu a:not(.btn):hover { color: var(--text); }

.nav-actions { position: relative; z-index: 110; display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}
.lang-switch button {
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-switch button.is-active { background: var(--text); color: var(--bg); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); transform-origin: center; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: clamp(48px, 8vw, 96px);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.35) 0%, rgba(8, 9, 8, 0.35) 30%, rgba(8, 9, 8, 0.92) 92%),
    linear-gradient(90deg, rgba(8, 9, 8, 0.75) 0%, rgba(8, 9, 8, 0.15) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.badge {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 90, 43, 0.14);
  border: 1px solid rgba(255, 90, 43, 0.4);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 43, 0.25);
}

.hero-content .eyebrow { color: var(--accent-strong); }

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin-bottom: 22px;
}

.hero-content .subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 54ch;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.hero-stats .stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.hero-stats .stat-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ============================================================
   Split sections (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.split.reverse .split-media,
.split.reverse .watch-stage { order: 2; }
.split.reverse .split-text { order: 1; }

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  border-radius: inherit;
}

.point-list { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.point-item { display: flex; gap: 16px; }
.point-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: flex; align-items: center; justify-content: center;
}
.point-icon svg { width: 20px; height: 20px; }
.point-item h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
.point-item p { color: var(--text-muted); font-size: 0.96rem; }

/* ============================================================
   Comparison table
   ============================================================ */
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.compare-table thead th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  font-weight: 700;
}
.compare-table .compare-row-label { background: transparent; }
.compare-table th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table th.is-gg,
.compare-table td.is-gg {
  background: var(--accent-soft);
}
.compare-table thead th.is-gg {
  color: var(--accent-strong);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.compare-table td svg { width: 20px; height: 20px; }
.compare-table .cmp-yes { color: var(--moss); }
.compare-table .cmp-no { color: var(--text-dim); }
.compare-table .cmp-partial { color: var(--text-dim); }
.compare-table td.is-gg.cmp-yes { color: var(--accent-strong); }

/* ============================================================
   How it works
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.step-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  display: block;
}
.step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.98rem; }
.step-connector {
  display: none;
}

/* ============================================================
   Features grid
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-elevated);
  padding: 34px 30px;
  transition: background 0.25s var(--ease);
}
.feature-card:hover { background: var(--surface-2); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   Triad statement section
   ============================================================ */
.triad {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
.triad-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.triad-media img { width: 100%; height: 100%; object-fit: cover; }
.triad-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.triad-lines span {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.triad-lines span:nth-child(1) { color: var(--text); }
.triad-lines span:nth-child(2) { color: var(--accent); }
.triad-lines span:nth-child(3) { color: var(--text-muted); }
.triad-text p.lede { color: var(--text-muted); font-size: 1.05rem; max-width: 46ch; }

/* ============================================================
   Smartwatch animation
   ============================================================ */
.watch-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: radial-gradient(circle at 50% 38%, rgba(255, 90, 43, 0.12), transparent 62%), var(--bg-elevated);
}

.watch-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: watch-buzz 7s ease-in-out infinite;
  animation-play-state: paused;
}
[data-reveal].is-visible .watch-mock { animation-play-state: running; }

.watch-lug {
  width: 76px;
  height: 26px;
  background: linear-gradient(180deg, #262b21, #16180f);
  border: 1px solid var(--border-strong);
}
.watch-lug-top { border-radius: 16px 16px 5px 5px; margin-bottom: -3px; }
.watch-lug-bottom { border-radius: 5px 5px 16px 16px; margin-top: -3px; }

.watch-case {
  position: relative;
  z-index: 1;
  width: 196px;
  height: 234px;
  padding: 12px;
  background: linear-gradient(160deg, #272c20, #131510);
  border: 1px solid var(--border-strong);
  border-radius: 46px;
  box-shadow: var(--shadow-lg);
}
.watch-crown {
  position: absolute;
  right: -5px;
  top: 96px;
  width: 8px;
  height: 26px;
  background: #2b3022;
  border: 1px solid var(--border-strong);
  border-radius: 3px;
}
.watch-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #050604;
  border-radius: 34px;
  overflow: hidden;
}
.watch-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  padding: 14px;
}
.watch-face-idle {
  color: var(--text-dim);
  animation: watch-idle-fade 7s ease-in-out infinite;
  animation-play-state: paused;
}
[data-reveal].is-visible .watch-face-idle { animation-play-state: running; }
.watch-face-idle .watch-time {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.watch-face-notif {
  opacity: 0;
  animation: watch-notif-fade 7s ease-in-out infinite;
  animation-play-state: paused;
}
[data-reveal].is-visible .watch-face-notif { animation-play-state: running; }

.watch-notif-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
  margin-bottom: 2px;
}
.watch-notif-icon svg { position: relative; z-index: 1; width: 18px; height: 18px; }
.watch-buzz-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  animation: watch-ring-pulse 1.75s ease-out infinite;
}
[data-reveal].is-visible .watch-buzz-ring { animation-play-state: running; }
.watch-buzz-ring { animation-play-state: paused; }

.watch-notif-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.watch-notif-time {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent-strong);
  font-variant-numeric: tabular-nums;
}

@keyframes watch-buzz {
  0%, 9%, 100% { transform: rotate(0deg); }
  9.5% { transform: rotate(-2deg); }
  10% { transform: rotate(2deg); }
  10.5% { transform: rotate(-2deg); }
  11% { transform: rotate(1.5deg); }
  11.5% { transform: rotate(-1deg); }
  12% { transform: rotate(0deg); }
}
@keyframes watch-idle-fade {
  0%, 8% { opacity: 1; }
  14%, 78% { opacity: 0; }
  86%, 100% { opacity: 1; }
}
@keyframes watch-notif-fade {
  0%, 10% { opacity: 0; transform: scale(0.92); }
  16%, 76% { opacity: 1; transform: scale(1); }
  84%, 100% { opacity: 0; transform: scale(0.94); }
}
@keyframes watch-ring-pulse {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.1); opacity: 0; }
}

@media (max-width: 980px) {
  .watch-stage { min-height: 360px; }
}

/* ============================================================
   App / mock leaderboard
   ============================================================ */
.app-section .split-media { aspect-ratio: auto; background: linear-gradient(160deg, #171a13, #0d0f0b); padding: 0; display: flex; align-items: center; justify-content: center; }

.phone-mock {
  width: 100%;
  max-width: 340px;
  margin: 40px auto;
  background: #0e100c;
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}
.phone-mock-notch {
  width: 60px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  margin: 0 auto 18px;
}
.phone-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.phone-mock-header h4 { font-size: 0.92rem; font-weight: 700; }
.phone-mock-header .live-dot {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; color: var(--moss); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.phone-mock-header .live-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--moss); }

.leaderboard { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.leaderboard-row.is-you {
  background: var(--accent-soft);
  border-color: rgba(255, 90, 43, 0.35);
}
.leaderboard-rank { font-weight: 800; color: var(--text-dim); font-size: 0.85rem; width: 16px; }
.leaderboard-row.is-you .leaderboard-rank { color: var(--accent-strong); }
.leaderboard-name { flex: 1; font-size: 0.9rem; font-weight: 600; }
.leaderboard-time { font-size: 0.88rem; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--text-muted); }
.leaderboard-row.is-you .leaderboard-time { color: var(--text); }

.phone-mock-flag {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-strong);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.app-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.app-note svg { flex: none; width: 16px; height: 16px; margin-top: 2px; color: var(--text-dim); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-item summary .faq-plus::before,
.faq-item summary .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: transform 0.25s var(--ease);
}
.faq-item summary .faq-plus::before { width: 10px; height: 1.5px; }
.faq-item summary .faq-plus::after { width: 1.5px; height: 10px; }
.faq-item[open] summary .faq-plus::after { transform: rotate(90deg) scaleX(0); }
.faq-item[open] summary { color: var(--accent-strong); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.96rem;
  max-width: 68ch;
}

/* ============================================================
   Newsletter / CTA
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 var(--gutter);
}
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,8,0.55) 0%, rgba(8,9,8,0.72) 45%, rgba(8,9,8,0.88) 100%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 9vw, 96px) clamp(24px, 6vw, 72px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner .eyebrow { justify-content: center; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner .section-sub { margin-left: auto; margin-right: auto; margin-bottom: 36px; }

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 auto;
  min-width: 240px;
  height: 52px;
  padding: 0 20px;
  line-height: normal;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 1rem;
}
.newsletter-form input[type="email"]::placeholder { color: var(--text-dim); }
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.newsletter-form button {
  flex: none;
  height: 52px;
  padding-top: 0;
  padding-bottom: 0;
}

.form-status {
  min-height: 22px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
}
.form-status.is-success { color: var(--moss); }
.form-status.is-error { color: var(--accent-strong); }

.privacy-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   Legal pages (Imprint / Privacy)
   ============================================================ */
.legal-main {
  padding-top: clamp(120px, 16vw, 160px);
  padding-bottom: clamp(64px, 10vw, 100px);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  transition: color 0.2s var(--ease);
}
.legal-back:hover { color: var(--text); }
.legal-back svg { width: 16px; height: 16px; }

.legal-header { max-width: 720px; margin: 0 auto 28px; }
.legal-header h1 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.legal-notice {
  max-width: 720px;
  margin: 0 auto 40px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 90, 43, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--accent-strong);
  font-size: 0.92rem;
  line-height: 1.5;
}
.legal-notice svg { flex: none; width: 18px; height: 18px; margin-top: 2px; }

.legal-body { max-width: 720px; margin: 0 auto; }
.legal-section { padding: 28px 0; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.legal-section p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.75; }
.legal-section a { color: var(--accent-strong); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; max-width: 34ch; }
.footer-status {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.95rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-col p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 14px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}
.footer-legal-links a:hover { color: var(--text); }

/* ============================================================
   Reveal animation
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .site-header { transition: none; }

  .watch-mock, .watch-face-idle, .watch-face-notif, .watch-buzz-ring { animation: none !important; }
  .watch-face-idle { opacity: 0; }
  .watch-face-notif { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu a:not(.btn) { font-size: 1.1rem; }
  .nav-menu .btn { margin-top: 10px; }
  .nav-toggle { display: flex; }

  .split, .triad { grid-template-columns: 1fr; }
  .split.reverse .split-media,
  .split.reverse .watch-stage,
  .split.reverse .split-text { order: initial; }
  .split-media, .triad-media { aspect-ratio: 16/10; max-width: 520px; }

  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero { align-items: center; padding-top: 120px; }
  .hero-content h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-section { margin: 0 12px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }

  .compare-table { min-width: 0; table-layout: fixed; }
  .compare-table th,
  .compare-table td { padding: 12px 6px; font-size: 0.82rem; }
  .compare-table th[scope="row"] { white-space: normal; line-height: 1.25; }
  .compare-table .compare-row-label { width: 34%; }
  .compare-table thead th:not(.compare-row-label) { font-size: 0.62rem; line-height: 1.2; }
  .compare-table td svg { width: 16px; height: 16px; }
}
