/* ── Aukio Landing — Notion Design System ── */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  /* ── Notion Color Palette ── */
  --black: rgba(0, 0, 0, 0.95);
  --pure-black: #000000;
  --white: #ffffff;
  --warm-white: #f6f5f4;
  --warm-dark: #31302e;
  --warm-gray-500: #615d59;
  --warm-gray-300: #a39e98;

  /* Aukio Brand (grün) — einzige Akzentfarbe */
  --brand: hsl(148, 54%, 23%);
  --brand-hover: hsl(148, 50%, 35%);
  --brand-light: hsl(148, 54%, 95%);
  --brand-bg: hsl(148, 40%, 96%);

  /* Semantic */
  --text-primary: var(--black);
  --text-secondary: var(--warm-gray-500);
  --text-muted: var(--warm-gray-300);
  --bg-primary: var(--white);
  --bg-alt: var(--warm-white);
  --bg-dark: var(--warm-dark);
  --border: rgba(0, 0, 0, 0.1);
  --border-light: rgba(0, 0, 0, 0.05);
  --focus-ring: hsl(148, 54%, 23%);

  /* Shadows — Notion Multi-Layer */
  --shadow-card:
    rgba(0,0,0,0.04) 0px 4px 18px,
    rgba(0,0,0,0.027) 0px 2.025px 7.84688px,
    rgba(0,0,0,0.02) 0px 0.8px 2.925px,
    rgba(0,0,0,0.01) 0px 0.175px 1.04062px;
  --shadow-deep:
    rgba(0,0,0,0.01) 0px 1px 3px,
    rgba(0,0,0,0.02) 0px 3px 7px,
    rgba(0,0,0,0.02) 0px 7px 15px,
    rgba(0,0,0,0.04) 0px 14px 28px,
    rgba(0,0,0,0.05) 0px 23px 52px;
  --shadow-whisper: rgba(0,0,0,0.03) 0px 2px 4px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;

  /* Font */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 120px;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.section-alt {
  background: var(--bg-alt);
}

/* ── TYPOGRAPHY ── */
.heading-hero {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.00;
  letter-spacing: -2.125px;
  color: var(--text-primary);
}

.heading-section {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.00;
  letter-spacing: -1.5px;
  color: var(--text-primary);
}

.heading-sub {
  font-size: clamp(22px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.23;
  letter-spacing: -0.625px;
  color: var(--text-primary);
}

.heading-card {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: -0.25px;
  color: var(--text-primary);
}

.body-large {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.40;
  letter-spacing: -0.125px;
  color: var(--text-secondary);
}

.body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.50;
  color: var(--text-secondary);
}

.body-medium {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.50;
  color: var(--text-primary);
}

.caption {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: var(--text-muted);
}

.label-upper {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 0.125px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px var(--space-lg);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.5px;
}

.logo-dot {
  color: hsl(11, 100%, 66%);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33;
  color: var(--text-primary);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-link:hover { opacity: 1; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-md);
  z-index: 49;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  opacity: 0.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.33;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-hover);
  opacity: 0.95;
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.08);
}

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

.btn-outline:hover {
  background: var(--bg-alt);
}

.btn-pill {
  border-radius: var(--radius-pill);
  padding: 8px 24px;
}

.btn-sm {
  padding: 4px 12px;
  font-size: 14px;
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.125px;
}

.badge-brand {
  background: var(--brand-bg);
  color: var(--brand);
}

.badge-accent {
  background: hsl(72, 70%, 58%);
  color: var(--text-primary);
}

.badge-purple {
  background: hsl(260, 100%, 83%, 0.3);
  color: var(--text-primary);
}

/* ── CARDS ── */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

.card-featured {
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.card-dark {
  background: var(--bg-dark);
  color: var(--white);
  border: none;
}

.card-dark .heading-card,
.card-dark .body { color: var(--white); }

.card-dark .body { opacity: 0.7; }

/* ── HERO ── */
.hero {
  padding-top: 140px;
  padding-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

/* Floating pills */
.float-pill {
  position: absolute;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  display: none;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-card);
}

/* Blobs */
.blob {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

/* ── CHAT MOCKUP ── */
.chat-mockup {
  width: 100%;
  max-width: 340px;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--border);
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.chat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--brand-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-title {
  font-weight: 700;
  font-size: 15px;
}

.chat-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.chat-bubble {
  background: var(--bg-alt);
  border-radius: 16px;
  border-top-left-radius: 4px;
  padding: 10px 14px;
  max-width: 230px;
}

.chat-bubble p {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.chat-bubble.blocked {
  background: hsl(11, 100%, 66%, 0.08);
  border: 1px solid hsl(11, 100%, 66%, 0.15);
}

.chat-bubble.blocked p {
  color: var(--text-primary);
  opacity: 0.3;
  text-decoration: line-through;
  user-select: none;
  filter: blur(3px);
}

.chat-shield {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--brand-bg);
  border: 1px solid hsl(148, 54%, 23%, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
}

.chat-shield-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: hsl(148, 54%, 23%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-shield-title {
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
}

.chat-shield-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* ── GRIDS ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* ── PROBLEM CARDS ── */
.problem-stat {
  font-size: clamp(56px, 8vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 8px;
}

.problem-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: -0.25px;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.7;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ── FEATURE STRIP ── */
.feature-strip {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-lg);
  color: var(--white);
}

.feature-strip .heading-section {
  color: var(--white);
}

.feature-item {
  padding: 24px 0;
}

.feature-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.feature-item:hover .feature-icon {
  background: rgba(255, 255, 255, 0.15);
}

.feature-item h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.25px;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* ── HOW IT WORKS ── */
.how-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  align-items: start;
}

.how-step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.how-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -2px;
}

.how-step h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.25px;
  margin-bottom: 6px;
}

.how-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--brand);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: 20px 24px;
  position: relative;
  z-index: 1;
}

.stat-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  line-height: 1.5;
  white-space: pre-line;
}

/* ── USER CARDS ── */
.user-card {
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.user-card:hover {
  transform: translateY(-2px);
}

.user-card .icon-box {
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.user-card h4 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.25px;
  margin-bottom: 8px;
}

.user-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.65;
}

/* ── CTA ── */
.cta-box {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.08;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.00;
  letter-spacing: -1.5px;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  padding: 32px var(--space-lg);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer a {
  transition: opacity 0.2s;
}

.footer a:hover {
  opacity: 0.6;
}

/* ── PARENTS PAGE ── */
.parents-hero {
  padding-top: 120px;
  padding-bottom: var(--space-3xl);
  max-width: 900px;
  margin: 0 auto;
}

.parents-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.00;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 24px;
  transition: opacity 0.2s;
}

.back-link:hover { opacity: 0.7; }

.parents-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parents-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

.parents-card .icon-box {
  background: var(--brand-bg);
  margin-bottom: 16px;
}

.parents-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.25px;
  margin-bottom: 10px;
}

.parents-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.parents-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
}

.parents-step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.parents-step h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.parents-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  padding-right: 16px;
}

.faq-toggle {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
}

/* ── 404 ── */
.notfound {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  text-align: center;
}

.notfound h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.notfound p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.notfound a {
  color: var(--brand);
  text-decoration: underline;
  font-weight: 500;
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-3deg); }
  30% { transform: rotate(2.5deg); }
  45% { transform: rotate(-2deg); }
  60% { transform: rotate(1.5deg); }
  75% { transform: rotate(-1deg); }
  90% { transform: rotate(0.5deg); }
}

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

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -15px) scale(1.03); }
  50% { transform: translate(-5px, 10px) scale(0.97); }
  75% { transform: translate(8px, 5px) scale(1.02); }
}

@keyframes blob-reverse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-8px, 10px) scale(0.97); }
  50% { transform: translate(5px, -8px) scale(1.04); }
  75% { transform: translate(-10px, -5px) scale(0.98); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-fade-up {
  opacity: 0;
  animation: fade-up 0.7s ease forwards;
}
.animate-fade-up-d1 { animation-delay: 0.1s; }
.animate-fade-up-d2 { animation-delay: 0.2s; }
.animate-fade-up-d3 { animation-delay: 0.3s; }

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-d1 { animation: float 4s ease-in-out 0.6s infinite; }
.animate-float-d2 { animation: float 4s ease-in-out 1.2s infinite; }
.animate-float-slow { animation: float 5s ease-in-out infinite; }
.animate-wiggle { animation: wiggle 1.5s ease-in-out 0.8s 1; }
.animate-pulse-soft { animation: pulse-soft 3s ease-in-out infinite; }
.animate-blob { animation: blob 12s ease-in-out infinite; }
.animate-blob-reverse { animation: blob-reverse 10s ease-in-out infinite; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.97) translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
.hidden-mobile { display: none; }

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

  .nav-links { display: flex; }
  .nav-toggle { display: none; }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .hero-visual { justify-content: flex-end; }

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

  .feature-item {
    padding: 24px;
    border-bottom: none !important;
  }
  .feature-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .how-step {
    grid-template-columns: 80px 1fr;
    gap: 24px;
  }

  .float-pill { display: flex; }

  .cta-box, .feature-strip {
    padding: var(--space-4xl);
  }
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding-top: 120px;
  padding-bottom: var(--space-4xl);
  min-height: 100vh;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.25px;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.legal-content strong {
  font-weight: 600;
  color: var(--text-primary);
}

.legal-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  opacity: 0.7;
}
