/* ============================================
   WOWeetje Landing Page — App Store Ready
   ============================================ */

:root {
  --wow-primary: #1341d8;
  --wow-primary-light: #6e8bff;
  --wow-secondary: #ff6b6b;
  --wow-surface: #fefcf8;
  --wow-text: #11162b;
  --wow-text-muted: #4e556f;
  --wow-success: #06d6a0;
  --wow-warning: #b47814;
  --wow-info: #2c63d8;
  --wow-surface-card: #fff9f0;
  --wow-surface-alt: #eee8db;
  --wow-border: #d9d3c7;
  --wow-shadow: 0 18px 48px rgba(19, 65, 216, 0.14);
  --wow-shadow-lg: 0 32px 64px rgba(19, 65, 216, 0.18);
  --wow-radius: 22px;
  --wow-radius-sm: 14px;
  --container: min(1120px, calc(100vw - 2rem));
  --font-body: "Poppins", sans-serif;
  --font-display: "Baloo 2", sans-serif;

  /* Topic colors */
  --topic-science: #3366ff;
  --topic-nature: #22c55e;
  --topic-history: #a0845e;
  --topic-society: #e88a2e;
  --topic-tech: #8b5cf6;
  --topic-art: #e040a0;
}

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

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--wow-text);
  background:
    radial-gradient(circle at 8% 10%, rgba(44, 99, 216, 0.2), transparent 34%),
    radial-gradient(circle at 92% 90%, rgba(6, 214, 160, 0.18), transparent 30%),
    radial-gradient(circle at 96% 20%, rgba(255, 107, 107, 0.16), transparent 28%),
    var(--wow-surface);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: var(--container);
  margin: 0 auto;
}

/* ---- Grain overlay ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ---- Accessibility ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0.5rem;
  z-index: 9999;
  padding: 0.625rem 0.875rem;
  border-radius: 10px;
  background: #ffffff;
  border: 2px solid var(--wow-primary);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus-visible { top: 0.5rem; }

/* ---- Atmosphere shapes ---- */
.atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}

.shape-one {
  width: 500px;
  height: 500px;
  top: -160px;
  right: -100px;
  background: rgba(19, 65, 216, 0.28);
}

.shape-two {
  width: 400px;
  height: 400px;
  left: -200px;
  top: 38%;
  background: rgba(255, 107, 107, 0.22);
}

.shape-three {
  width: 360px;
  height: 360px;
  right: 6%;
  bottom: -100px;
  background: rgba(6, 214, 160, 0.24);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: linear-gradient(100deg, rgba(254, 252, 248, 0.94), rgba(228, 238, 255, 0.82), rgba(225, 253, 246, 0.78));
  border-bottom: 1px solid rgba(17, 22, 43, 0.06);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.12rem;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(17, 22, 43, 0.18);
}

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

.top-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--wow-text-muted);
  transition: color 180ms ease;
}

.top-nav a:hover { color: var(--wow-primary); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 180ms ease, color 180ms ease;
}

.btn-compact { padding: 0.58rem 1rem; font-size: 0.88rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--wow-primary), #2a5eff);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(19, 65, 216, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(19, 65, 216, 0.38); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.56);
  border-color: var(--wow-border);
  color: var(--wow-text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #ffffff; }

.appstore-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  line-height: 0;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.appstore-badge-link:hover {
  transform: translateY(-1px);
}

.appstore-badge-link-compact {
  border-radius: 8px;
}

.appstore-badge-link-large {
  box-shadow: 0 12px 30px rgba(17, 22, 43, 0.2);
}

.appstore-badge {
  display: block;
  width: auto;
  height: 60px;
}

.appstore-badge-compact {
  height: 40px;
}

.appstore-badge-large {
  height: 56px;
}

.btn:focus-visible,
.appstore-badge-link:focus-visible,
.top-nav a:focus-visible,
.text-link:focus-visible,
.footer-nav a:focus-visible {
  outline: 3px solid var(--wow-secondary);
  outline-offset: 3px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wow-primary);
  background: rgba(19, 65, 216, 0.1);
}

.eyebrow-green {
  color: var(--wow-success);
  background: rgba(31, 157, 90, 0.1);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 7vw, 3.8rem); max-width: 16ch; }
h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.35rem); }

.text-gradient {
  background: linear-gradient(135deg, var(--wow-primary), var(--wow-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  margin-top: 1rem;
  max-width: 56ch;
  font-size: 1.05rem;
  color: var(--wow-text-muted);
}

.lead-small {
  margin-top: 0.6rem;
  color: var(--wow-text-muted);
}

.cta-row { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-points {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.3rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--wow-text-muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--wow-success);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--wow-primary);
  text-decoration: none;
  transition: color 180ms ease;
}
.text-link:hover { color: var(--wow-secondary); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { padding-top: clamp(2rem, 5vw, 4.5rem); }
.hero {
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(420px, 45vw);
  aspect-ratio: 1;
  right: 6%;
  top: 0;
  border-radius: 999px;
  filter: blur(46px);
  background: radial-gradient(circle, rgba(44, 99, 216, 0.28), rgba(255, 107, 107, 0.18) 58%, transparent 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.hero-mockup-row {
  width: min(620px, 95vw);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hero-mockup-row .iphone-frame {
  animation: none;
  transform: none;
}

.iphone-hero {
  width: clamp(190px, 21vw, 272px);
  height: auto;
  aspect-ratio: 280 / 572;
  background: linear-gradient(160deg, #1d2040, #0f1330);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 26px 60px rgba(17, 22, 43, 0.34),
    0 8px 24px rgba(19, 65, 216, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.iphone-hero-left {
  transform: rotate(-2deg);
}

.iphone-hero-right {
  transform: rotate(2deg);
}

.iphone-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   iPHONE DEVICE FRAME (Pure CSS)
   ============================================ */
.iphone-frame {
  position: relative;
  width: 280px;
  height: 572px;
  background: #1a1a2e;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 24px 64px rgba(17, 22, 43, 0.35),
    0 8px 24px rgba(19, 65, 216, 0.15),
    inset 0 0 0 2px rgba(255,255,255,0.06);
  animation: phoneFloat 6s ease-in-out infinite;
  transform: rotateY(-4deg) rotateX(2deg);
}

.iphone-small {
  width: 240px;
  height: 490px;
  border-radius: 38px;
  padding: 10px;
}

.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.iphone-small .iphone-notch {
  width: 86px;
  height: 24px;
  top: 10px;
  border-radius: 0 0 15px 15px;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--wow-surface);
  position: relative;
}

.iphone-small .iphone-screen { border-radius: 30px; }

.iphone-home-indicator {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-10px); }
}

/* ---- Home screen content ---- */
.screen-home {
  padding: 44px 16px 72px;
  height: 100%;
  background:
    radial-gradient(circle at 80% 10%, rgba(19, 65, 216, 0.08), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.07), transparent 40%),
    var(--wow-surface);
}

.screen-header {
  margin-bottom: 14px;
}

.screen-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--wow-primary);
  line-height: 1;
}

.screen-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--wow-text-muted);
  margin-top: 2px;
}

.screen-hero-card {
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(17,22,43,0.06);
  box-shadow: 0 8px 24px rgba(17,22,43,0.08);
  margin-bottom: 12px;
}

.screen-card-image {
  height: 140px;
  background: linear-gradient(135deg, #1341d8 0%, #2c63d8 55%, #ff6b6b 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iphone-small .screen-card-image { height: 110px; }

.screen-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
}

.screen-badge {
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
}

.screen-card-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.iphone-small .screen-card-icon { font-size: 38px; }

.screen-card-body { padding: 12px 14px 14px; }

.screen-topics { display: flex; gap: 5px; margin-bottom: 7px; }

.screen-topic {
  font-size: 7.5px;
  font-weight: 700;
  padding: 2.5px 6px;
  border-radius: 999px;
}

.screen-topic-tech {
  color: var(--topic-science);
  background: rgba(51, 102, 255, 0.1);
}

.screen-topic-nature {
  color: var(--topic-nature);
  background: rgba(34, 197, 94, 0.1);
}

.screen-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--wow-primary);
  line-height: 1.2;
}

.screen-card-hook {
  font-size: 9px;
  color: var(--wow-text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.screen-card-cta {
  margin-top: 10px;
  background: var(--wow-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
}

.screen-tabbar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 22, 43, 0.08);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 6px;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(17, 22, 43, 0.08);
}

.screen-tab-item {
  border-radius: 10px;
  padding: 5px 4px;
  text-align: center;
  color: var(--wow-text-muted);
  display: grid;
  justify-items: center;
  gap: 2px;
}

.screen-tab-item svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.screen-tab-item span {
  font-size: 7.2px;
  line-height: 1;
  font-weight: 700;
}

.screen-tab-item.is-active {
  color: #fff;
  background: var(--wow-primary);
}

/* ---- Detail screen content ---- */
.screen-detail {
  height: 100%;
  background: var(--wow-surface);
}

.screen-detail-hero {
  height: 100px;
  background: linear-gradient(135deg, #b47814 0%, #ff6b6b 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 10px 8px;
}

.screen-detail-badges { display: flex; gap: 4px; }

.screen-badge-light {
  background: rgba(255,255,255,0.24);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  padding: 2.5px 6px;
  border-radius: 999px;
}

.screen-detail-body { padding: 10px 12px; }

.screen-detail-question {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--wow-primary);
  line-height: 1.2;
}

.screen-detail-hook {
  font-size: 8px;
  color: var(--wow-text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.screen-detail-section {
  margin-top: 8px;
  background: rgba(255,255,255,0.75);
  border-radius: 10px;
  padding: 8px;
  border: 1px solid rgba(17,22,43,0.05);
}

.screen-detail-section-title {
  font-size: 8px;
  font-weight: 700;
  color: var(--wow-text);
  margin-bottom: 3px;
}

.screen-detail-text {
  font-size: 7px;
  color: var(--wow-text-muted);
  line-height: 1.5;
}

.screen-detail-quiz {
  margin-top: 8px;
  background: rgba(255,255,255,0.75);
  border-radius: 10px;
  padding: 8px;
  border: 1px solid rgba(17,22,43,0.05);
}

.screen-detail-quiz-title {
  font-size: 8px;
  font-weight: 700;
  color: var(--wow-primary);
  margin-bottom: 3px;
}

.screen-detail-quiz-q {
  font-size: 8px;
  font-weight: 600;
  color: var(--wow-text);
  margin-bottom: 5px;
}

.screen-quiz-option {
  font-size: 7.5px;
  font-weight: 600;
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(17,22,43,0.04);
  margin-top: 3px;
  color: var(--wow-text);
}

.screen-quiz-correct {
  background: rgba(31, 157, 90, 0.12);
  color: var(--wow-success);
  border: 1px solid rgba(31, 157, 90, 0.2);
}

/* ============================================
   USP SECTION
   ============================================ */
.section-head { max-width: 70ch; }
.section-head h2 { margin-top: 0.35rem; }

.section-usp,
.section-facts,
.section-screenshots {
  position: relative;
}

.section-usp::after,
.section-facts::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(180px, 18vw);
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.62;
}

.section-usp::after {
  right: 6%;
  top: 18%;
  background: rgba(44, 99, 216, 0.48);
}

.section-facts::after {
  left: 6%;
  bottom: 12%;
  background: rgba(255, 107, 107, 0.44);
}

.usp-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--wow-radius);
  border: 1px solid rgba(44, 99, 216, 0.16);
  padding: 1.2rem;
  box-shadow: 0 8px 26px rgba(44, 99, 216, 0.11);
  backdrop-filter: blur(8px);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(44, 99, 216, 0.2);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.card p { margin: 0.5rem 0 0; color: var(--wow-text-muted); }

/* ============================================
   PARENTS SECTION
   ============================================ */
.section-parents { position: relative; }

.section-parents::before {
  content: "";
  position: absolute;
  inset: -2rem 0;
  background:
    linear-gradient(110deg, rgba(19, 65, 216, 0.12), rgba(44, 99, 216, 0.08) 38%, rgba(6, 214, 160, 0.1) 68%, rgba(255, 107, 107, 0.11)),
    transparent;
  transform: skewY(-1.5deg);
  transform-origin: center;
  z-index: -1;
}

.parents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.parents-copy p { margin: 0.8rem 0 0; color: var(--wow-text-muted); }

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.trust-item {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--wow-radius-sm);
  border: 1px solid rgba(44, 99, 216, 0.14);
  padding: 1rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44, 99, 216, 0.16);
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.trust-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.trust-head h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  line-height: 1.2;
  max-width: 20ch;
}

.trust-item p { margin: 0.05rem 0 0; color: var(--wow-text-muted); font-size: 0.92rem; max-width: 30ch; }

/* ============================================
   WEETJES SECTION
   ============================================ */
.facts-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.fact-card {
  background: rgba(255,255,255,0.92);
  border-radius: var(--wow-radius);
  border: 1px solid rgba(44, 99, 216, 0.14);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(44, 99, 216, 0.13);
}

.fact-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fact-content {
  padding: 1rem 1rem 1.1rem;
}

.fact-topic {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--wow-primary);
  background: rgba(19, 65, 216, 0.1);
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fact-card h3 {
  font-size: clamp(1.1rem, 3vw, 1.24rem);
  margin-bottom: 0.3rem;
}

.fact-card p {
  margin: 0;
  color: var(--wow-text-muted);
  font-size: 0.95rem;
}

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */
.section-screenshots {
  position: relative;
}

.section-screenshots::before {
  content: "";
  position: absolute;
  inset: -2rem 0;
  z-index: -1;
  background: linear-gradient(130deg, rgba(19, 65, 216, 0.16), rgba(255, 107, 107, 0.14) 48%, rgba(6, 214, 160, 0.14));
  transform: none;
  transform-origin: center;
}

.screenshot-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.6rem;
}

.screenshot-controls {
  display: inline-flex;
  gap: 0.5rem;
}

.screenshot-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(17, 22, 43, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--wow-text);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.screenshot-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(17, 22, 43, 0.16);
}

.screenshot-nav:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.screenshot-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 24vw, 320px);
  gap: 1rem;
  overflow-x: hidden;
  padding: 0.35rem 0;
  padding-bottom: 0.55rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -ms-overflow-style: none;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}

.screenshot-grid::-webkit-scrollbar {
  display: none;
}

.screenshot-card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 43, 0.1);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 30px rgba(44, 99, 216, 0.2);
  scroll-snap-align: start;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
}

/* ============================================
   PRIVACY TEASER
   ============================================ */
.section-privacy-teaser .teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  padding: 1.6rem;
  border-radius: var(--wow-radius);
  border: 1px solid rgba(31, 157, 90, 0.2);
  background:
    radial-gradient(circle at 100% 0, rgba(31, 157, 90, 0.08), transparent 50%),
    #ffffff;
}

.teaser-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.teaser-list li {
  position: relative;
  margin-top: 0.45rem;
  padding-left: 1.1rem;
  color: var(--wow-text-muted);
}

.teaser-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--wow-success);
}

.teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem;
  align-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(17, 22, 43, 0.08);
  background: color-mix(in srgb, var(--wow-surface), #ffffff 40%);
}

.footer-grid {
  padding: 1.5rem 0 1rem;
  display: grid;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-copy { margin: 0.3rem 0 0; color: var(--wow-text-muted); font-size: 0.9rem; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem; }

.footer-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--wow-text-muted);
  transition: color 180ms ease;
}
.footer-nav a:hover { color: var(--wow-primary); }

.footer-meta {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--wow-text-muted);
  padding: 0.5rem 0 1rem;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.usp-grid .card:nth-child(2),
.trust-list .trust-item:nth-child(2) { transition-delay: 80ms; }
.usp-grid .card:nth-child(3),
.trust-list .trust-item:nth-child(3) { transition-delay: 160ms; }
.usp-grid .card:nth-child(4),
.trust-list .trust-item:nth-child(4) { transition-delay: 240ms; }
.usp-grid .card:nth-child(5),
.trust-list .trust-item:nth-child(5) { transition-delay: 320ms; }
.usp-grid .card:nth-child(6) { transition-delay: 400ms; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 720px) {
  .top-nav { display: inline-flex; }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
    gap: 2rem;
  }

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

  .parents-grid {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 1.5rem;
  }

  .trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* 5th trust item spans full width */
  .trust-list .trust-item:nth-child(5) { grid-column: 1 / -1; }

  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screenshot-grid { grid-auto-columns: clamp(240px, 20vw, 330px); }

  .section-privacy-teaser .teaser-grid {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .header-inner { gap: 1.4rem; }
}

@media (max-width: 640px) {
  .section {
    padding: clamp(2.2rem, 7vw, 3.4rem) 0;
  }

  .header-inner {
    min-height: 64px;
    gap: 0.6rem;
    flex-wrap: nowrap;
    padding: 0.45rem 0;
  }

  .brand {
    gap: 0.48rem;
    font-size: 0.84rem;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand span {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .site-header .appstore-badge-compact {
    height: 34px;
  }

  .hero {
    padding-top: 1.35rem;
  }

  .hero-grid {
    gap: 1.35rem;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .lead {
    margin-top: 0.82rem;
    font-size: 0.98rem;
  }

  .cta-row {
    margin-top: 1rem;
    align-items: center;
    gap: 0.68rem;
  }

  .hero-points {
    margin-top: 0.95rem;
    gap: 0.36rem;
  }

  .hero-points li {
    font-size: 0.88rem;
  }

  .hero-visual {
    margin-top: 0.2rem;
  }

  .hero-mockup-row {
    width: auto;
    gap: 0;
    align-items: flex-end;
    padding-top: 0.12rem;
    padding-bottom: 0;
  }

  .iphone-hero {
    width: auto;
    height: min(62vh, 510px);
    border-radius: 30px;
    padding: 8px;
  }

  .iphone-hero-left {
    transform: none;
  }

  .iphone-hero-right {
    display: none;
  }

  .appstore-badge-large {
    height: 50px;
  }

  .screenshot-toolbar {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .header-inner {
    padding: 0.4rem 0;
  }

  .hero-mockup-row {
    width: auto;
    gap: 0;
    padding-bottom: 0;
  }

  .iphone-hero {
    width: auto;
    height: min(58vh, 470px);
    border-radius: 32px;
    padding: 8px;
  }

  .iphone-hero-left {
    transform: none;
  }

  .iphone-hero-right {
    display: none;
  }

  .screenshot-grid { grid-auto-columns: minmax(220px, 72vw); }

  .site-header .appstore-badge-compact { height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .iphone-frame {
    animation: none;
  }
}

/* ============================================
   POLICY PAGE (shared styles)
   ============================================ */
.policy-main .container { max-width: 860px; }

.policy-intro {
  margin-top: 1rem;
  margin-bottom: 1.4rem;
  padding: 1.2rem;
  border-radius: var(--wow-radius);
  border: 1px solid rgba(17, 22, 43, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.policy-intro p { margin: 0.5rem 0 0; }

.policy-section {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: var(--wow-radius-sm);
  border: 1px solid rgba(17, 22, 43, 0.06);
  background: rgba(255, 255, 255, 0.72);
}

.policy-section h2 { font-size: clamp(1.2rem, 3.7vw, 1.55rem); }
.policy-section ul { margin: 0.72rem 0 0; padding-left: 1.15rem; }
.policy-section li + li { margin-top: 0.3rem; }
.policy-section p { margin: 0.62rem 0 0; }
