/* ===== Deeplica Landing Page — style.css ===== */

:root {
  --purple: #7B3FA0;
  --purple-light: #9B6CB8;
  --purple-dark: #5A2D78;
  --pink: #D4A0C0;
  --pink-soft: #E8C8DA;
  --lavender: #C8B8E8;
  --teal: #5BBFC0;
  --teal-soft: rgba(91, 191, 192, 0.14);
  --amber: #D4976A;
  --amber-soft: rgba(212, 151, 106, 0.12);
  --text-primary: #5A2D78;
  --text-secondary: #8A7A9A;
  --text-muted: #A89AB8;
  --white: #FFFFFF;
  --off-white: #FAF8FC;
  --glass-bg: rgba(255, 255, 255, 0.35);
  --glass-border: rgba(255, 255, 255, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Rashi Hebrew', serif;
  background: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==================== NAV ==================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.5px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  color: #444;
  font-weight: 400;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  transition: color 0.3s;
  padding: 4px 8px;
}

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

.nav-links span {
  color: #bbb;
  user-select: none;
}

/* Nav active state */
.nav-links a.nav-active {
  color: var(--purple);
  font-weight: 500;
}

.nav-links a.nav-active::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple);
  margin: 3px auto 0;
}

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login {
  font-size: 15px;
  font-weight: 500;
  color: var(--purple);
  text-decoration: none;
  border: 1.5px solid rgba(123, 63, 160, 0.28);
  padding: 8px 28px;
  border-radius: 50px;
  transition: all 0.3s;
  font-family: 'Noto Rashi Hebrew', serif;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.nav-login:hover {
  border-color: var(--purple);
  background: rgba(123, 63, 160, 0.07);
  box-shadow: 0 4px 20px rgba(123, 63, 160, 0.12);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--purple);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(252, 248, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.nav-mobile-link {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.nav-mobile-link:hover,
.nav-mobile-link.nav-active { color: var(--purple); }

.nav-mobile-cta {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--purple);
  text-decoration: none;
  border: 1.5px solid rgba(123, 63, 160, 0.3);
  padding: 12px 36px;
  border-radius: 50px;
  transition: all 0.3s;
}

.nav-mobile-cta:hover {
  background: rgba(123, 63, 160, 0.07);
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(200, 184, 232, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(91, 191, 192, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 160, 192, 0.12) 0%, transparent 50%),
    var(--white);
  padding: 120px 24px 60px;
}

.early-access-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(155, 108, 184, 0.22);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
}

.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  color: var(--purple);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero .subtitle {
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 48px;
  letter-spacing: 0.2px;
  max-width: 620px;
  line-height: 1.7;
}

/* Glass Orb */
.orb-container {
  position: relative;
  width: clamp(250px, 30vw, 380px);
  height: clamp(250px, 30vw, 380px);
  margin-bottom: 48px;
}

.orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(ellipse at 30% 30%,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(230, 220, 245, 0.4) 25%,
    rgba(212, 160, 192, 0.3) 50%,
    rgba(200, 184, 232, 0.2) 70%,
    rgba(255, 255, 255, 0.1) 100%);
  box-shadow:
    0 8px 60px rgba(160, 120, 200, 0.15),
    0 2px 20px rgba(212, 160, 192, 0.1),
    inset 0 -20px 40px rgba(212, 160, 192, 0.15),
    inset 0 20px 40px rgba(255, 255, 255, 0.6);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 18%;
  width: 55%;
  height: 35%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.8) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.orb::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 40%;
  height: 30%;
  background: radial-gradient(ellipse, rgba(200, 160, 210, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.orb-shadow {
  position: absolute;
  bottom: -10%;
  left: 10%;
  width: 80%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(200, 170, 220, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ==================== CTA BUTTON ==================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Rashi Hebrew', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(123, 63, 160, 0.28);
  padding: 14px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
  text-decoration: none;
  letter-spacing: 0.1px;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--purple);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(123, 63, 160, 0.16);
  color: var(--purple-dark);
}

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

/* ==================== SECTIONS SHARED ==================== */
section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 40px;
  text-align: center;
}

.section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.section-text {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.revealed .section-label,
.revealed .section-heading,
.revealed .section-text,
.revealed .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==================== SECTION: SHE ALREADY KNOWS ==================== */
.section-knows {
  background: var(--off-white);
  position: relative;
}

.section-knows::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 180, 220, 0.3), transparent);
}

.knows-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.knows-feature {
  background: var(--white);
  border: 1.5px solid rgba(200, 184, 232, 0.15);
  border-radius: 24px;
  padding: 40px 28px 36px;
  text-align: center;
  opacity: 0;
  --card-ty: 25px;
  transform: translateY(var(--card-ty));
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s ease,
              border-color 0.45s ease;
  cursor: default;
  position: relative;
}

.knows-feature:nth-child(1) { transition-delay: 0.3s; }
.knows-feature:nth-child(2) { transition-delay: 0.45s; }
.knows-feature:nth-child(3) { transition-delay: 0.6s; }

.revealed .knows-feature { opacity: 1; --card-ty: 0px; }

.knows-feature:hover {
  --card-ty: -10px !important;
  transition-delay: 0s !important;
  box-shadow: 0 22px 60px rgba(123, 63, 160, 0.11) !important;
  border-color: rgba(155, 108, 184, 0.3) !important;
}
.knows-feature:nth-child(2):hover {
  --card-ty: -18px !important;
  box-shadow: 0 30px 72px rgba(91, 191, 192, 0.22) !important;
}
.knows-feature:nth-child(3):hover {
  box-shadow: 0 22px 60px rgba(212, 151, 106, 0.14) !important;
  border-color: rgba(212, 151, 106, 0.25) !important;
}

.knows-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 184, 232, 0.2), rgba(212, 160, 192, 0.15));
  border: 1px solid rgba(200, 184, 232, 0.2);
}

.knows-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple-light);
}

.knows-feature h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.knows-feature p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== SECTION: CHANNELS (Story Theater) ==================== */
.section-channels {
  background: var(--white);
  position: relative;
}

.section-channels::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 180, 220, 0.3), transparent);
}

/* Story Theater container */
.story-theater {
  margin-top: 64px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 420px;
  background: radial-gradient(ellipse at 50% 110%, rgba(200, 150, 230, 0.6) 0%, rgba(240, 228, 252, 0.75) 45%, #F8F4FC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.revealed .story-theater {
  opacity: 1;
  transform: translateY(0);
}

/* Device stage */
.story-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 380px;
}

/* Device illustration panels — stacked, one active at a time */
.story-device {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.story-device.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.story-device__icon {
  width: 100px;
  height: 100px;
  color: rgba(123, 63, 160, 0.35);
}

.story-device__icon svg {
  width: 100%;
  height: 100%;
}

.story-device__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.5px;
}

.story-device__bubbles {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.story-device__bubble {
  border-radius: 12px;
  animation: story-float 3.5s ease-in-out infinite;
}

.story-device__bubble--purple {
  width: 80px;
  height: 24px;
  background: rgba(200, 150, 230, 0.35);
}

.story-device__bubble--teal {
  width: 60px;
  height: 24px;
  background: rgba(45, 212, 191, 0.25);
  animation-delay: 0.5s;
}

.story-device__bubble--light {
  width: 70px;
  height: 24px;
  background: rgba(123, 63, 160, 0.15);
  animation-delay: 1s;
}

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

/* Story step indicators */
.story-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}

.revealed .story-indicators {
  opacity: 1;
}

.story-dots {
  display: flex;
  gap: 10px;
}

.story-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(123, 63, 160, 0.2);
  transition: all 0.45s ease;
  cursor: pointer;
}

.story-dot.active {
  background: var(--purple);
  transform: scale(1.35);
}

.story-channel-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
  min-width: 100px;
}

/* ==================== SECTION: SCENARIOS (Rotating Cards) ==================== */
.section-scenarios {
  background: var(--off-white);
  position: relative;
}

.section-scenarios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 180, 220, 0.3), transparent);
}

/* 2x2 grid of scenario cards */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.scenario-card {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  text-align: left;
  border: 1.5px solid rgba(200, 184, 232, 0.12);
  border-left-width: 4px;
  position: relative;
  height: 360px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
  overflow: hidden;
}

.scenario-card:nth-child(1) { border-left-color: var(--purple);  transition-delay: 0.2s;  }
.scenario-card:nth-child(2) { border-left-color: var(--teal);    transition-delay: 0.35s; }
.scenario-card:nth-child(3) { border-left-color: var(--amber);   transition-delay: 0.5s;  }
.scenario-card:nth-child(4) { border-left-color: var(--pink);    transition-delay: 0.65s; }

.revealed .scenario-card {
  opacity: 1;
  transform: translateY(0);
}

.scenario-card:hover {
  box-shadow: 0 12px 40px rgba(123, 63, 160, 0.07);
}

/* Rotating items - all absolutely positioned, only opacity changes */
.scenario-item {
  position: absolute;
  inset: 0;
  padding: 36px 32px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.scenario-item.active {
  opacity: 1;
  pointer-events: auto;
}

.scenario-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.scenario-card:nth-child(1) .scenario-tag { color: var(--purple-light); }
.scenario-card:nth-child(2) .scenario-tag { color: var(--teal); }
.scenario-card:nth-child(3) .scenario-tag { color: var(--amber); }
.scenario-card:nth-child(4) .scenario-tag { color: var(--pink); }

.scenario-request {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.5;
}

.scenario-request::before { content: '\201C'; }
.scenario-request::after  { content: '\201D'; }

.scenario-divider {
  width: 32px;
  height: 1px;
  background: rgba(123, 63, 160, 0.18);
  margin-bottom: 14px;
}

.scenario-action {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
}

.scenario-outcome {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
}

/* Scenario step indicators */
.scenario-indicators {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}

.revealed .scenario-indicators { opacity: 1; }

.scenario-dots { display: flex; gap: 10px; }

.scenario-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(123, 63, 160, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
}

.scenario-dot.active {
  background: var(--purple);
  transform: scale(1.35);
}

/* ==================== SECTION: LESS NOISE ==================== */
.section-noise {
  background: var(--off-white);
  position: relative;
}

.section-noise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 180, 220, 0.3), transparent);
}

.noise-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 72px;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.revealed .noise-divider {
  opacity: 1;
  transform: translateY(0);
}

.noise-side {
  flex: 1;
  max-width: 400px;
  text-align: center;
  padding: 12px 36px 44px;
  border-radius: 24px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.noise-side::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
}

.noise-chaos {
  background: linear-gradient(145deg, rgba(91, 191, 192, 0.06), rgba(255,255,255,0.9));
  border: 1px solid rgba(91, 191, 192, 0.18);
  box-shadow: 0 6px 32px rgba(91, 191, 192, 0.08);
}
.noise-chaos::before {
  background: linear-gradient(90deg, var(--teal), rgba(91, 191, 192, 0.35));
}

.noise-calm {
  background: linear-gradient(145deg, rgba(212, 151, 106, 0.07), rgba(255,255,255,0.95));
  border: 1px solid rgba(212, 151, 106, 0.18);
  box-shadow: 0 6px 32px rgba(212, 151, 106, 0.08);
}
.noise-calm::before {
  background: linear-gradient(90deg, var(--amber), rgba(212, 151, 106, 0.35));
}

.noise-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.noise-chaos .noise-tag {
  color: var(--teal);
  background: rgba(91, 191, 192, 0.1);
  border: 1px solid rgba(91, 191, 192, 0.22);
}

.noise-calm .noise-tag {
  color: var(--amber);
  background: rgba(212, 151, 106, 0.1);
  border: 1px solid rgba(212, 151, 106, 0.22);
}

.noise-side h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.noise-side p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

.noise-arrow {
  font-size: 28px;
  color: var(--teal);
  opacity: 0.65;
  flex-shrink: 0;
}

/* ==================== SECTION: LET GO ==================== */
.section-letgo {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.section-letgo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 180, 220, 0.3), transparent);
}

.letgo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.letgo-card {
  background: var(--white);
  border: 1px solid rgba(200, 184, 232, 0.12);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: left;
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(30px);
}

.letgo-card:nth-child(1) { transition-delay: 0.2s; }
.letgo-card:nth-child(2) { transition-delay: 0.35s; }
.letgo-card:nth-child(3) { transition-delay: 0.5s; }
.letgo-card:nth-child(4) { transition-delay: 0.3s; }
.letgo-card:nth-child(5) { transition-delay: 0.45s; }
.letgo-card:nth-child(6) { transition-delay: 0.6s; }

.revealed .letgo-card {
  opacity: 1;
  transform: translateY(0);
}

.letgo-card:hover {
  border-color: rgba(200, 184, 232, 0.3);
  box-shadow: 0 12px 40px rgba(123, 63, 160, 0.06);
  transform: translateY(-4px);
}

.letgo-card .card-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.letgo-card .card-voice {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-style: italic;
}

.letgo-card .card-response {
  font-size: 15px;
  font-weight: 400;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.letgo-card .card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==================== SECTION: QUANTUM ==================== */
.section-quantum {
  background: linear-gradient(180deg, var(--off-white) 0%, #F5F0FA 50%, var(--white) 100%);
  position: relative;
}

.section-quantum::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 180, 220, 0.3), transparent);
}

.quantum-visual {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 64px auto 48px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.revealed .quantum-visual {
  opacity: 1;
  transform: scale(1);
}

.quantum-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(123, 63, 160, 0.12);
  animation: quantumSpin 12s linear infinite;
}

.quantum-ring:nth-child(1) {
  inset: 0;
  border-color: rgba(123, 63, 160, 0.15);
  animation-duration: 12s;
}

.quantum-ring:nth-child(2) {
  inset: 20px;
  border-color: rgba(212, 160, 192, 0.2);
  animation-duration: 8s;
  animation-direction: reverse;
}

.quantum-ring:nth-child(3) {
  inset: 45px;
  border-color: rgba(200, 184, 232, 0.25);
  animation-duration: 6s;
}

.quantum-core {
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 63, 160, 0.15) 0%, rgba(212, 160, 192, 0.08) 60%, transparent 100%);
  animation: quantumPulse 4s ease-in-out infinite;
}

/* ==================== ORBITAL DOTS ==================== */
.orbit-track {
  position: absolute;
  border-radius: 50%;
  animation: quantumSpin linear infinite;
}

.orbit-dot {
  position: absolute;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.72;
}

.orbit-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  filter: blur(4px);
}

.orbit-1 { inset: 0; animation-duration: 22s; }
.orbit-1 .orbit-dot { width: 7px; height: 7px; background: var(--purple-light); }

.orbit-2 { inset: 19px; animation-duration: 16s; animation-direction: reverse; }
.orbit-2 .orbit-dot { width: 6px; height: 6px; background: var(--teal); }

.orbit-3 { inset: 45px; animation-duration: 11s; }
.orbit-3 .orbit-dot { width: 5px; height: 5px; background: var(--amber); }

.orbit-4 { inset: 0; animation-duration: 32s; animation-direction: reverse; animation-delay: -16s; }
.orbit-4 .orbit-dot { width: 5px; height: 5px; background: var(--pink); }

@keyframes quantumSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes quantumPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

.quantum-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 16px;
}

.quantum-stat {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quantum-stat:nth-child(1) { transition-delay: 0.4s; }
.quantum-stat:nth-child(2) { transition-delay: 0.55s; }
.quantum-stat:nth-child(3) { transition-delay: 0.7s; }

.revealed .quantum-stat { opacity: 1; transform: translateY(0); }

.quantum-stat .num {
  font-size: 36px;
  font-weight: 300;
  color: var(--purple);
  display: block;
  margin-bottom: 4px;
}

.quantum-stat .label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==================== SECTION: RESEARCH LAB ==================== */
.section-research {
  background: linear-gradient(180deg, var(--off-white) 0%, #F0EDF6 50%, var(--off-white) 100%);
  position: relative;
}

.section-research::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 180, 220, 0.3), transparent);
}

.section-research .section-label {
  color: var(--teal);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 72px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.research-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(200, 184, 232, 0.15);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: left;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.research-card:nth-child(1) { transition-delay: 0.2s; }
.research-card:nth-child(2) { transition-delay: 0.35s; }
.research-card:nth-child(3) { transition-delay: 0.5s; }
.research-card:nth-child(4) { transition-delay: 0.65s; }

.revealed .research-card { opacity: 1; transform: translateY(0); }

.research-card:hover {
  box-shadow: 0 16px 48px rgba(123, 63, 160, 0.08);
  border-color: rgba(155, 108, 184, 0.28);
  transform: translateY(-4px);
}

.research-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91, 191, 192, 0.1), rgba(123, 63, 160, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.research-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple);
}

.research-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.research-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 767px) {
  .research-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .research-card {
    padding: 28px 24px;
  }

  .research-footer {
    margin-top: 40px;
  }
}


/* ==================== SECTION: TRUST ==================== */
.section-trust {
  background: linear-gradient(180deg, var(--white) 0%, #F5F0FA 60%, var(--white) 100%);
  position: relative;
}

.section-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 180, 220, 0.3), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 72px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.trust-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(200, 184, 232, 0.2);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: left;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.trust-card:nth-child(1) { transition-delay: 0.2s; }
.trust-card:nth-child(2) { transition-delay: 0.35s; }
.trust-card:nth-child(3) { transition-delay: 0.5s; }
.trust-card:nth-child(4) { transition-delay: 0.65s; }

.revealed .trust-card { opacity: 1; transform: translateY(0); }

.trust-card:hover {
  box-shadow: 0 12px 40px rgba(123, 63, 160, 0.08);
  border-color: rgba(155, 108, 184, 0.28);
  transform: translateY(-4px);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123, 63, 160, 0.1), rgba(212, 160, 192, 0.07));
  border: 1px solid rgba(123, 63, 160, 0.12);
  margin-bottom: 20px;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple);
}

.trust-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

.trust-log {
  margin: 48px auto 0;
  padding: 36px 40px;
  background: rgba(123, 63, 160, 0.04);
  border: 1px solid rgba(123, 63, 160, 0.1);
  border-radius: 20px;
  max-width: 880px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.75s;
}

.revealed .trust-log { opacity: 1; transform: translateY(0); }

.trust-log h4 {
  font-size: 17px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 10px;
}

.trust-log p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ==================== SECTION: RESTRAINT ==================== */
.section-restraint {
  background: linear-gradient(180deg, var(--white) 0%, #F8F4FC 100%);
  position: relative;
}

.section-restraint::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 180, 220, 0.4), transparent);
}

.restraint-quote {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--purple);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.revealed .restraint-quote { opacity: 1; transform: translateY(0); }

.restraint-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.revealed .restraint-sub { opacity: 1; transform: translateY(0); }

.restraint-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple-light), var(--teal));
  margin: 40px auto;
  opacity: 0.45;
}

.restraint-cta {
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.revealed .restraint-cta { opacity: 1; transform: translateY(0); }

/* ==================== FOOTER ==================== */
footer {
  padding: 48px 40px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid rgba(200, 180, 220, 0.15);
}

.footer-links {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-links span {
  margin: 0 8px;
  opacity: 0.5;
}

/* ==================== AMBIENT PARTICLES ==================== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(200, 184, 232, 0.25);
  animation: particleDrift linear infinite;
}

@keyframes particleDrift {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

/* ==================== COLOR ACCENTS ==================== */
.section-knows .section-label      { color: var(--teal); }
.section-channels .section-label   { color: var(--purple-light); }
.section-scenarios .section-label  { color: var(--purple-light); }
.section-noise .section-label      { color: var(--teal); }
.section-letgo .section-label      { color: var(--amber); }
.section-quantum .section-label    { color: var(--amber); }
.section-trust .section-label      { color: var(--teal); }
.section-restraint .section-label  { color: var(--teal); }

.knows-feature:nth-child(2) .knows-icon {
  background: linear-gradient(135deg, var(--teal-soft), rgba(91, 191, 192, 0.05));
  border-color: rgba(91, 191, 192, 0.22);
}
.knows-feature:nth-child(2) .knows-icon svg { stroke: var(--teal); }
.knows-feature:nth-child(3) .knows-icon {
  background: linear-gradient(135deg, var(--amber-soft), rgba(212, 151, 106, 0.04));
  border-color: rgba(212, 151, 106, 0.2);
}
.knows-feature:nth-child(3) .knows-icon svg { stroke: var(--amber); }

.quantum-stat:nth-child(2) .num { color: var(--teal); }
.quantum-stat:nth-child(3) .num { color: var(--amber); }

.letgo-card:nth-child(2) .card-tag { color: var(--teal); }
.letgo-card:nth-child(3) .card-tag { color: var(--amber); }
.letgo-card:nth-child(4) .card-tag { color: var(--teal); }
.letgo-card:nth-child(5) .card-tag { color: var(--amber); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section-inner { padding: 100px 24px; }
  .knows-features { grid-template-columns: 1fr; gap: 20px; }
  .revealed .knows-feature:nth-child(2) { --card-ty: 0px; box-shadow: none; }

  /* Story theater responsive */
  .story-theater { min-height: 320px; border-radius: 24px; }
  .story-stage { height: 260px; }
  .story-device__icon { width: 72px; height: 72px; }
  .story-device__label { font-size: 12px; }
  .story-device__bubble--purple { width: 60px; height: 20px; }
  .story-device__bubble--teal { width: 45px; height: 20px; }
  .story-device__bubble--light { width: 52px; height: 20px; }

  /* Scenarios grid */
  .scenarios-grid { grid-template-columns: 1fr; }
  .scenario-card { height: 420px; }

  .noise-divider { flex-direction: column; gap: 24px; }
  .noise-arrow { transform: rotate(90deg); }
  .letgo-grid { grid-template-columns: 1fr; }
  .quantum-stats { flex-direction: column; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-log { padding: 28px 24px; }
}

@media (max-width: 600px) {
  nav { padding: 14px 20px; }

  /* Footer: flex-wrap causes orphan pipes — hide them, use gap instead */
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 14px;
  }
  .footer-links span { display: none; }
}

/* ==================== UNIFIED POPUP SYSTEM ==================== */

/* Overlay backdrop — barely-there lavender tint + blur so page recedes gently */
.dp-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(200, 184, 232, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.dp-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Glass window */
.dp-window {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow:
    0 24px 80px rgba(123, 63, 160, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  width: min(540px, calc(100vw - 32px));
  max-height: min(88vh, 700px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: default;
  user-select: none;
}

.dp-window.dp-wide {
  width: min(700px, calc(100vw - 32px));
  max-height: min(90vh, 820px);
}

/* Window header — soft lavender-pink gradient (Deeplica icon palette) */
.dp-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 18px;
  background: linear-gradient(135deg,
    rgba(200, 184, 232, 0.45) 0%,
    rgba(212, 160, 192, 0.35) 100%
  );
  border-bottom: 1px solid rgba(200, 184, 232, 0.3);
  border-radius: 28px 28px 0 0;
  cursor: default;
  flex-shrink: 0;
}

.dp-window-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.2px;
}

/* Close button — soft purple on lavender */
.dp-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(123, 63, 160, 0.08);
  border: 1px solid rgba(123, 63, 160, 0.14);
  color: var(--purple);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  flex-shrink: 0;
}

.dp-close:hover {
  background: rgba(123, 63, 160, 0.14);
  transform: scale(1.08);
}

/* Scrollable body — subtle multi-color hero-style glow */
.dp-window-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(ellipse at 10% 15%, rgba(200, 184, 232, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 85%, rgba(91, 191, 192, 0.11) 0%, transparent 55%),
    radial-gradient(ellipse at 55% 60%, rgba(212, 160, 192, 0.09) 0%, transparent 50%),
    var(--white);
  scrollbar-width: auto;
  scrollbar-color: rgba(200, 184, 232, 0.45) transparent;
}

.dp-window-body::-webkit-scrollbar { width: 8px; }
.dp-window-body::-webkit-scrollbar-thumb {
  background: rgba(200, 184, 232, 0.35);
  border-radius: 8px;
}

/* Optional footer */
.dp-window-footer {
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(200, 180, 220, 0.14);
  flex-shrink: 0;
}

/* Mobile: full-height bottom sheet */
@media (max-width: 600px) {
  .dp-overlay { align-items: flex-end; }
  .dp-window, .dp-window.dp-wide {
    width: 100%;
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    margin: 0;
  }
  .dp-window-header { border-radius: 24px 24px 0 0; }
}

/* ==================== WAITLIST POPUP ==================== */
.dp-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.dp-field { margin-bottom: 8px; }

.dp-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(123, 63, 160, 0.2);
  border-radius: 14px;
  font-family: 'Noto Rashi Hebrew', serif;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.dp-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123, 63, 160, 0.08);
}

.dp-input.error { border-color: #E07070; }

.dp-field-error {
  display: block;
  font-size: 12px;
  color: #C05050;
  margin-top: 6px;
  min-height: 16px;
}

.dp-submit-btn {
  width: 100%;
  margin-top: 16px;
  padding: 15px;
  background: #ffffff;
  border: 1.5px solid rgba(123, 63, 160, 0.28);
  border-radius: 50px;
  color: var(--purple);
  font-family: 'Noto Rashi Hebrew', serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.2px;
}

.dp-submit-btn:hover:not(:disabled) {
  background: rgba(123, 63, 160, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 63, 160, 0.12);
}

.dp-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.dp-success {
  text-align: center;
  padding: 20px 0 8px;
  font-size: 16px;
  color: var(--purple);
  font-weight: 400;
  line-height: 1.6;
}

/* ==================== LEGAL POPUP CONTENT ==================== */
.dp-legal-section {
  margin-bottom: 28px;
}

.dp-legal-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.1px;
}

.dp-legal-section p,
.dp-legal-section ul {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
}

.dp-legal-section ul {
  padding-left: 18px;
}

.dp-legal-section ul li {
  margin-bottom: 4px;
}

.dp-legal-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 400;
}

.dp-legal-contact {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 180, 220, 0.18);
  font-size: 16px;
  color: var(--text-muted);
}

.dp-legal-contact a {
  color: var(--purple);
  text-decoration: none;
}

/* ==================== STORY POPUP CONTENT ==================== */

/* Intro header above cover image */
.dp-story-intro {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(91, 191, 192, 0.2);
}

.dp-story-intro h2 {
  font-size: 26px;
  font-weight: 300;
  color: var(--purple-dark);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.dp-story-tagline {
  display: table;
  margin: 0 auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(155, 108, 184, 0.22);
  padding: 6px 16px;
  border-radius: 50px;
}

.dp-about-cover {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 40px;
  display: block;
}

.dp-about-chapter {
  margin-bottom: 48px;
}

/* Chapter title — big, centered */
.dp-about-chapter h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--purple);
  margin-bottom: 6px;
  text-align: center;
}

/* Chapter label — pill badge matching "Early Access Open" style */
.dp-chapter-label {
  display: table;
  margin: 0 auto 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(155, 108, 184, 0.22);
  padding: 6px 16px;
  border-radius: 50px;
}

.dp-about-chapter img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
}

/* Paragraph text — 18px */
.dp-about-chapter p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  user-select: text;
}

/* "The End" — same pill badge as "Early Access Open", slightly wider padding */
.dp-the-end {
  display: table;
  margin: 24px auto 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(155, 108, 184, 0.22);
  padding: 8px 20px;
  border-radius: 50px;
}

.dp-about-end {
  width: 100%;
  border-radius: 12px;
  margin-top: 8px;
  display: block;
}
