/* ══════════════════════════════════════════
   SELF-HOSTED FONTS
══════════════════════════════════════════ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url('assets/fonts/plusjakartasans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ══════════════════════════════════════════
   TOKENS (CSS Custom Properties)
══════════════════════════════════════════ */

:root {
  /* ── Background scale (never pure black) ── */
  --bg-base:     #0A0A0F;   /* page background */
  --bg-surface:  #13131A;   /* card / nav backgrounds */
  --bg-elevated: #1C1C26;   /* hover states, overlays */

  /* ── Accent — orange (#FF6B35) ── */
  --accent:       #FF6B35;
  --accent-hover: #FF8C5A;
  --accent-dim:   rgba(255, 107, 53, 0.15);
  --accent-glow:  rgba(255, 107, 53, 0.08);

  /* ── Text hierarchy ── */
  --text-primary:   #F0F0F5;
  --text-secondary: #9090A8;
  --text-muted:     #7878A0;

  /* ── Borders ── */
  --border:       rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);

  /* ── Typography ── */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* ── Font sizes (4 tokens) ── */
  --text-sm:      14px;
  --text-md:      16px;
  --text-xl:      28px;
  --text-display: 52px;

  /* ── Spacing scale (8-point grid) ── */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* ── Layout ── */
  --nav-height:      64px;
  --section-padding: 100px 5%;
  --max-width:       1200px;

  /* ── Semantic (reserved, used in later phases) ── */
  --destructive: #E53E3E;
}

/* ══════════════════════════════════════════
   LIGHT MODE TOKEN OVERRIDES
══════════════════════════════════════════ */

[data-theme="light"] {
  --bg-base:     #F7F5F0;
  --bg-surface:  #FFFFFF;
  --bg-elevated: #EDEBE5;

  --text-primary:   #111111;
  --text-secondary: #444444;
  --text-muted:     #7878A0;

  --border:       rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.16);
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: var(--text-display);
  font-weight: 800;
}

h2 {
  font-size: var(--text-xl);
  font-weight: 700;
}

p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

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

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  overflow-wrap: break-word;
}

.hero-title .accent-line {
  display: block;
  color: var(--accent);
  position: relative;
}

.hero-title .accent-line::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0.3;
}

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--accent);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: fadeUp 0.8s ease 0.2s both;
}

/* ── IPHONE MOCKUP (Phase 5) ── */

.iphone-mockup {
  width: 240px;
  height: 480px;
  border: 12px solid var(--bg-elevated);
  border-radius: 32px;
  position: relative;
  box-shadow:
    0 0 0 1px var(--border),
    0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin: 0 auto var(--space-md);
}

.iphone-mockup:hover {
  transform: scale(1.02);
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-base);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-fallback {
  background: var(--bg-surface);
}

.mockup-fallback img {
  width: 80px;
  height: 80px;
  border-radius: 22%;
  object-fit: cover;
}

.mockup-fallback picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-showcase-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.app-showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(255, 107, 53, 0.15);
}

.app-showcase-card.featured {
  border-color: var(--accent);
  border-width: 1.5px;
}

.app-icon-large {
  width: 72px;
  height: 72px;
  border-radius: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  overflow: hidden;
}

.app-icon-large img,
.app-icon-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.app-icon-large picture,
.app-icon-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.app-icon-stammtisch {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

.app-info {
  flex: 1;
}

.app-info-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.app-info-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.app-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.tag-accent {
  background: var(--accent-dim);
  color: var(--accent-hover);
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.app-store-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.coming-soon-btn {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border-color: var(--border);
  cursor: not-allowed;
  pointer-events: none;
}

.coming-soon-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--border);
}

/* ══════════════════════════════════════════
   HERO — Mobile First
══════════════════════════════════════════ */

#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--bg-base);
  overflow: hidden;
  cursor: default;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
  pointer-events: none;
}


/* ── Corner brackets (mobile default) ── */
.hero-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 3;
  pointer-events: none;
}
.hero-corner-tl { top: 8px;    left: 8px;   border-top:    1px solid rgba(255,107,53,0.2); border-left:  1px solid rgba(255,107,53,0.2); }
.hero-corner-tr { top: 8px;    right: 8px;  border-top:    1px solid rgba(255,107,53,0.2); border-right: 1px solid rgba(255,107,53,0.2); }
.hero-corner-bl { bottom: 8px; left: 8px;   border-bottom: 1px solid rgba(255,107,53,0.2); border-left:  1px solid rgba(255,107,53,0.2); }
.hero-corner-br { bottom: 8px; right: 8px;  border-bottom: 1px solid rgba(255,107,53,0.2); border-right: 1px solid rgba(255,107,53,0.2); }

/* ── Internal logo + quick nav (hidden on mobile) ── */
.hero-internal-logo {
  display: none;
  position: absolute;
  top: 24px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.3s both;
  pointer-events: none;
}
.hero-internal-logo span { color: #FF6B35; }

.hero-nav-links-internal {
  display: none;
  position: absolute;
  top: 28px;
  right: 40px;
  gap: 24px;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.6s ease 2.5s both;
}
.hero-nav-links-internal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-nav-links-internal a:hover { color: rgba(255, 255, 255, 0.6); }

/* ── Content block ── */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  text-align: center;
  padding: 80px 24px 120px;
}

/* ── Eyebrow (mobile first) ── */
.hero-eyebrow-new {
  font-family: ui-monospace, 'Courier New', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FF6B35;
  margin-bottom: 32px;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

/* ── Logo text (mobile first) ── */
.hero-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1;
  display: flex;
}

.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroLetterReveal 0.3s ease both;
}
.hero-letter:nth-child(1) { animation-delay: 0.50s; }
.hero-letter:nth-child(2) { animation-delay: 0.58s; }
.hero-letter:nth-child(3) { animation-delay: 0.66s; }
.hero-letter:nth-child(4) { animation-delay: 0.74s; }
.hero-letter:nth-child(5) { animation-delay: 0.82s; }
.hero-letter:nth-child(6) { animation-delay: 0.90s; }
.hero-letter:nth-child(7) { animation-delay: 0.98s; }
.hero-letter:nth-child(8) { animation-delay: 1.06s; }

@keyframes heroLetterReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Cursor (mobile first) ── */
.hero-cursor {
  display: inline-block;
  width: 2px;
  height: 30px;
  background: #FF6B35;
  animation: heroBlink 1s step-end infinite;
  margin-left: 3px;
  align-self: center;
  flex-shrink: 0;
}

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

/* ── Tagline (mobile first) ── */
.hero-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.6s ease 2.0s both;
}
.hero-tagline .accent { color: #FF6B35; }

.hero-sub-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s ease 2.3s both;
}

/* ── App badges (mobile: vertical stack) ── */
.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s ease 2.6s both;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 0.5px solid rgba(255, 107, 53, 0.25);
  border-radius: 20px;
  background: rgba(255, 107, 53, 0.06);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF6B35;
  flex-shrink: 0;
}

/* ── Status bar (mobile first) ── */
.hero-status-bar {
  position: absolute;
  bottom: 20px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  font-family: ui-monospace, 'Courier New', monospace;
  z-index: 10;
  pointer-events: none;
}

.hero-status-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF6B35;
  animation: heroPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ── Tablet (≥ 640px) ── */
@media (min-width: 640px) {
  .hero-grid       { background-size: 36px 36px; }
  .hero-corner     { width: 18px; height: 18px; }
  .hero-corner-tl  { top: 10px;    left: 10px;  }
  .hero-corner-tr  { top: 10px;    right: 10px; }
  .hero-corner-bl  { bottom: 10px; left: 10px;  }
  .hero-corner-br  { bottom: 10px; right: 10px; }
  .hero-logo-text  { font-size: 48px; }
  .hero-cursor     { height: 42px; }
  .hero-badges     { flex-direction: row; gap: 12px; }
}

/* ── Desktop (≥ 1024px) ── */
@media (min-width: 1024px) {
  #hero                    { cursor: crosshair; }
  .hero-grid               { background-size: 40px 40px; }
  .hero-corner             { width: 20px; height: 20px; }
  .hero-corner-tl          { top: 12px;    left: 12px;  }
  .hero-corner-tr          { top: 12px;    right: 12px; }
  .hero-corner-bl          { bottom: 12px; left: 12px;  }
  .hero-corner-br          { bottom: 12px; right: 12px; }
  .hero-internal-logo      { display: block; font-size: 15px; }
  .hero-nav-links-internal { display: flex; }
  .hero-content            { padding: 80px 20px 120px; }
  .hero-eyebrow-new        { font-size: 13px; letter-spacing: 4px; }
  .hero-logo-text          { font-size: 64px; letter-spacing: -2px; }
  .hero-cursor             { width: 3px; height: 56px; margin-left: 4px; }
  .hero-tagline            { font-size: 14px; }
  .hero-sub-tagline        { font-size: 12px; }
  .hero-badges             { gap: 16px; }
  .hero-badge              { font-size: 11px; }
  .hero-status-bar         { left: 40px; right: 40px; font-size: 11px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero-letter,
  .hero-tagline,
  .hero-sub-tagline,
  .hero-badges,
  .hero-internal-logo,
  .hero-nav-links-internal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
.hero-cursor    { animation: none !important; }
  .hero-pulse-dot { animation: none !important; }
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */

.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 5%;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 700;
  color: var(--accent);
  display: block;
  letter-spacing: -1px;
  white-space: nowrap;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── STATS GRID (Phase 5 upgrade) ── */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding: var(--space-2xl) 5%;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-content: unset;
  background: transparent;
  border-top: none;
  border-bottom: none;
}

/* .stats-card styles now live on .flip-front / .flip-back directly */

/* ── FLIP CARDS ── */
.flip-card {
  perspective: 900px;
  cursor: pointer;
  min-height: 120px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 120px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* Both faces share card appearance */
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px var(--accent-glow);
  background: var(--bg-surface);
}

.flip-back {
  transform: rotateX(180deg);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.10), rgba(19, 19, 26, 0.9));
  border-color: rgba(255, 107, 53, 0.3);
}

@supports (backdrop-filter: blur(1px)) {
  .flip-front {
    background: rgba(19, 19, 26, 0.6);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  .flip-back {
    background: rgba(255, 107, 53, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

.flip-back-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  text-align: center;
  letter-spacing: -0.5px;
}

.flip-back-sub {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 6px;
}

/* Desktop: hover flips, accent border glow */
@media (hover: hover) {
  .flip-card:hover .flip-inner {
    transform: rotateX(180deg);
  }
  .flip-card:hover .flip-front {
    box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(255, 107, 53, 0.15);
  }
}

/* Touch: toggled class */
.flip-card.flipped .flip-inner {
  transform: rotateX(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .flip-inner {
    transition: none;
  }
}

/* ══════════════════════════════════════════
   APPS SECTION
══════════════════════════════════════════ */

.section {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-lg);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  line-height: 1.1;
}

.section-count {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--bg-elevated);
  line-height: 1;
  letter-spacing: -3px;
}

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

.app-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(255, 107, 53, 0.15);
  border-color: var(--border-hover);
}

.app-card-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.app-icon-card {
  width: 80px;
  height: 80px;
  border-radius: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  overflow: hidden;
}

.app-card-meta {
  flex: 1;
}

.app-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.app-card-tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.app-card-body {
  padding: 24px 32px 32px;
}

.app-card-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.app-card-features li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-card-features li::before {
  content: '\2713';
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.app-card-features li:last-child {
  border-bottom: none;
}

.app-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.platform-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── GLASSMORPHISM: app-card + app-showcase-card ── */

@supports (backdrop-filter: blur(1px)) {
  .app-showcase-card,
  .app-card {
    background: rgba(19, 19, 26, 0.75);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

/* ── GLOW EFFECTS ── */

.app-showcase-card,
.app-card {
  box-shadow: 0 4px 24px var(--accent-glow);
}

/* ── HAMBURGER MENU ── */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--text-primary);
  font-size: 22px;
  line-height: 1;
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */

.about-section {
  background: var(--bg-surface);
  padding: var(--section-padding);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.about-text {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-text strong {
  color: var(--text-primary);
  font-weight: 500;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-lg);
}

.value-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.value-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.value-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */

.contact-section {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.05;
}

.contact-desc {
  font-size: var(--text-md);
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-link-primary {
  background: var(--accent);
  color: var(--text-primary);
}

.contact-link-primary:hover {
  background: var(--accent-hover);
}

.contact-link-secondary {
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.contact-link-secondary:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

/* ── SOCIAL LINKS (Contact + Footer) ── */

.social-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(255, 107, 53, 0.15);
  transform: translateY(-1px);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.footer-social .social-btn {
  width: 32px;
  height: 32px;
}

.footer-social .social-btn svg {
  width: 16px;
  height: 16px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 32px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

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

/* ══════════════════════════════════════════
   ANIMATIONS & TRANSITIONS
══════════════════════════════════════════ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeUp 0.7s ease both;
}

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

/* Accessibility: no animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  /* Disable AOS transitions on all annotated elements */
  [data-aos] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  /* Disable existing hero fadeUp keyframe animations */
  .animate {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding: 100px 5% 60px;
  }

  .hero-visual {
    order: -1;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-values {
    grid-template-columns: 1fr;
  }

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

  .stat-number {
    font-size: 20px;
  }

  .iphone-mockup {
    width: 200px;
    height: 400px;
    border-width: 10px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 15, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: var(--space-md) 5%;
    z-index: 99;
  }

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

  .nav-links li a {
    padding: 12px 0;
    font-size: var(--text-md);
    border-bottom: 1px solid var(--border);
    display: block;
  }

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

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

  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    gap: var(--space-sm);
  }
}

/* ══════════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════════ */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #FF6B35, #ff9a6c);
  z-index: 10000;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ══════════════════════════════════════════
   REVEAL ON SCROLL
══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   APP CARD — 2-COLUMN LAYOUT WITH MOCKUP
══════════════════════════════════════════ */

.app-card-inner {
  display: flex;
  align-items: center;
}

.app-card-content {
  flex: 1;
  min-width: 0;
}

.app-card-mockup {
  padding: 28px 28px 28px 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════
   PHONE FRAME
══════════════════════════════════════════ */

.phone-frame {
  width: 170px;
  height: 350px;
  border: 7px solid #1a1a2a;
  border-radius: 36px;
  background: #08080f;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    inset 0 0 0 1px rgba(0,0,0,0.6),
    0 24px 64px rgba(0,0,0,0.7),
    0 0 40px rgba(255,107,53,0.1);
}

.phone-island {
  width: 62px;
  height: 17px;
  background: #08080f;
  border: 1px solid #1e1e30;
  border-radius: 10px;
  margin: 10px auto 0;
  position: relative;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* ── WETTERZWERG MOCKUP ── */

.mock-wz {
  padding: 0 12px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mock-app-label {
  text-align: center;
  padding: 12px 0 4px;
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mock-wz-weather {
  text-align: center;
  padding: 6px 0 8px;
}

.mock-wz-temp {
  font-size: 34px;
  font-weight: 700;
  color: #FF6B35;
  line-height: 1;
}

.mock-wz-city {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}

.mock-wz-child {
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mock-avatar { font-size: 20px; }

.mock-wz-name {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}

.mock-wz-age {
  font-size: 8px;
  color: rgba(255,255,255,0.35);
}

.mock-rec-label {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,107,53,0.6);
  margin-bottom: 5px;
}

.mock-rec-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 9px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}

/* ── STAMMTISCH MOCKUP ── */

.mock-st {
  padding: 0 12px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mock-st-group {
  text-align: center;
  padding: 6px 0 8px;
}

.mock-st-group-name {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

.mock-st-members {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

.mock-st-event {
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 8px;
}

.mock-event-label {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,107,53,0.6);
  margin-bottom: 4px;
}

.mock-event-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
}

.mock-event-date {
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.mock-event-rsvp {
  font-size: 9px;
  color: #FF6B35;
  margin-top: 5px;
  font-weight: 600;
}

.mock-st-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mock-st-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}

.mock-st-tile-val {
  font-size: 16px;
  font-weight: 700;
  color: #FF6B35;
  line-height: 1;
}

.mock-st-tile-lbl {
  font-size: 7px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* ══════════════════════════════════════════
   WAITLIST FORM
══════════════════════════════════════════ */

.waitlist-wrap {
  margin-top: 16px;
}

.waitlist-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.waitlist-form {
  display: flex;
  gap: 8px;
}

.waitlist-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-primary);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-input:focus { border-color: var(--accent); }

.waitlist-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.waitlist-btn:hover { opacity: 0.85; }
.waitlist-btn:disabled { opacity: 0.6; cursor: default; }

.waitlist-success {
  font-size: 13px;
  color: #4ade80;
  margin-top: 10px;
  display: none;
}

.waitlist-success.show { display: block; }

/* ── Mobile: phone below content ── */
@media (max-width: 700px) {
  .app-card-inner {
    flex-direction: column;
  }
  .app-card-mockup {
    padding: 0 0 24px;
  }
}

/* ══════════════════════════════════════════
   TYPEWRITER CURSOR
══════════════════════════════════════════ */

.type-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--accent);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink-cursor 0.75s step-end infinite;
}

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

/* ══════════════════════════════════════════
   APP ICON SHINE
══════════════════════════════════════════ */

.app-icon-card {
  position: relative;
  overflow: hidden;
}

.app-icon-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-15deg);
  transition: left 0s;
  pointer-events: none;
}

.app-card:hover .app-icon-card::after {
  left: 130%;
  transition: left 0.45s ease;
}

/* ══════════════════════════════════════════
   TECH STACK BADGES
══════════════════════════════════════════ */

.tech-stack-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 5%;
  background: var(--bg-surface);
}

.tech-stack-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tech-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 14px;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}

.tech-badge:hover {
  border-color: rgba(255,107,53,0.5);
  color: var(--accent);
}

/* ══════════════════════════════════════════
   ROADMAP
══════════════════════════════════════════ */

.roadmap-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.roadmap-list {
  position: relative;
  padding-left: 20px;
  margin-top: var(--space-xl);
}

.roadmap-list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--border);
}

.roadmap-item {
  position: relative;
  padding: 0 0 36px 28px;
}

.roadmap-item:last-child { padding-bottom: 0; }

.roadmap-dot {
  position: absolute;
  left: -9px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--border);
  border: 3px solid var(--bg-deep);
  z-index: 1;
}

.roadmap-item.active .roadmap-dot {
  background: var(--accent);
  animation: pulse-roadmap 2s ease-in-out infinite;
}

.roadmap-item.upcoming .roadmap-dot {
  background: rgba(255,255,255,0.3);
}

.roadmap-item.planned .roadmap-dot {
  background: transparent;
  border-color: var(--border);
}

@keyframes pulse-roadmap {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
  50%       { box-shadow: 0 0 0 7px rgba(255,107,53,0); }
}

.roadmap-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.roadmap-item.active   .roadmap-status { color: var(--accent); }
.roadmap-item.upcoming .roadmap-status { color: rgba(255,255,255,0.4); }
.roadmap-item.planned  .roadmap-status { color: rgba(255,255,255,0.2); }

.roadmap-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.roadmap-item.planned .roadmap-title { color: var(--text-muted); }

.roadmap-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   SOCIAL LINKS — TODO STATE
══════════════════════════════════════════ */

.social-btn[data-todo] {
  opacity: 0.2;
  pointer-events: none;
  cursor: default;
}

.social-todo-note {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.5;
  margin-top: 14px;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   PRIVACY PAGE
══════════════════════════════════════════ */

.privacy-hero {
  padding: 120px 5% 60px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.privacy-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.privacy-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.privacy-updated {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Language switcher */
.lang-switch {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.lang-btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-secondary);
}

.lang-btn.active {
  background: var(--text-primary);
  color: var(--bg-base);
  border-color: var(--text-primary);
}

.lang-btn:hover:not(.active) {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}

/* Privacy body */
.privacy-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5% 100px;
}

.privacy-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 48px 0 var(--space-md);
  letter-spacing: -0.5px;
}

.privacy-body h2:first-child {
  margin-top: 0;
}

.privacy-body h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.privacy-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.privacy-body ul {
  margin: 12px 0 var(--space-md) 20px;
  list-style: none;
}

.privacy-body ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 4px 0;
  position: relative;
  padding-left: var(--space-md);
}

.privacy-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.privacy-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.privacy-body a:hover {
  border-bottom-color: var(--accent);
}

.privacy-body strong {
  font-weight: 500;
  color: var(--text-primary);
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}
