/* ═══════════════════════════════════════════════════════════
   DOUBLE — Landing Page Styles
   ═══════════════════════════════════════════════════════════ */

:root {
  color-scheme: light;
}
html.dark {
  color-scheme: dark;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

/* Reduced motion: disable animations for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

::selection {
  background: rgba(255, 107, 91, 0.2);
  color: #253348;
}

/* ─── ANIMATED HERO GRADIENT ────────────────────────────── */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 15% 20%, rgba(184, 224, 255, 0.6), transparent), radial-gradient(ellipse 70% 50% at 85% 30%, rgba(255, 138, 125, 0.15), transparent),   radial-gradient(ellipse 60% 80% at 50% 80%, rgba(232, 245, 238, 0.5), transparent), linear-gradient(180deg, #faf9f6 0%, #f0f7ff 50%, #faf9f6 100%);
  z-index: 0;
}

@keyframes heroShift {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      50% 100%,
      0 0;
  }
  50% {
    background-position:
      10% 10%,
      90% 20%,
      40% 90%,
      0 0;
  }
  100% {
    background-position:
      5% 5%,
      95% 10%,
      55% 85%,
      0 0;
  }
}

.hero-headline-gradient {
  background: linear-gradient(135deg, #2d5f8a 0%, #ff6b5b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── FLOATING BLOBS ────────────────────────────────────── */
.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
}

.blob-1 {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  left: -6rem;
  background: rgba(184, 224, 255, 0.5);
}
.blob-2 {
  width: 20rem;
  height: 20rem;
  top: 20%;
  right: -4rem;
  background: rgba(255, 138, 125, 0.2);
}
.blob-3 {
  width: 16rem;
  height: 16rem;
  bottom: 5%;
  left: 30%;
  background: rgba(232, 245, 238, 0.6);
}
.blob-4 {
  width: 22rem;
  height: 22rem;
  top: -6rem;
  right: -8rem;
  background: rgba(184, 224, 255, 0.35);
}
.blob-5 {
  width: 24rem;
  height: 24rem;
  top: -10rem;
  left: -8rem;
  background: rgba(255, 255, 255, 0.1);
}
.blob-6 {
  width: 18rem;
  height: 18rem;
  bottom: -6rem;
  right: -4rem;
  background: rgba(255, 255, 255, 0.08);
}

@keyframes float1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 20px) scale(1.08);
  }
}
@keyframes float2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-20px, 30px) scale(1.05);
  }
}
@keyframes float3 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(15px, -25px) scale(1.1);
  }
}

/* ─── STICKY NAV ────────────────────────────────────────── */
#navbar {
  background: transparent;
}
#navbar.nav-scrolled {
  background: rgba(250, 249, 246, 0.82);
  backdrop-filter: blur(22px) saturate(1.8);
  -webkit-backdrop-filter: blur(22px) saturate(1.8);
  box-shadow: 0 1px 0 rgba(184, 224, 255, 0.25), 0 4px 20px rgba(37, 51, 72, 0.06);
  box-shadow: 0 1px 12px rgba(37, 51, 72, 0.06);
  border-bottom: none;
}

/* ─── EMAIL INPUT ───────────────────────────────────────── */
.email-input {
  padding: 0.85rem 1.25rem;
  border-radius: 1rem;
  border: 1.5px solid rgba(108, 180, 230, 0.25);
  background: white;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}
.email-input:focus {
  border-color: rgba(74, 140, 194, 0.5);
  box-shadow:
    0 0 0 4px rgba(108, 180, 230, 0.12),
    0 1px 3px rgba(37, 51, 72, 0.06);
}

/* ─── CTA BUTTON ────────────────────────────────────────── */
.cta-button {
  padding: 0.85rem 1.75rem;
  border-radius: 1rem;
  background: #ff6b5b;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255, 107, 91, 0.3);
  transition: all 0.25s ease;
}
.cta-button:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(255, 107, 91, 0.4);
}
.cta-button:active {
  transform: scale(0.98);
}
.cta-button:focus-visible {
  outline: 2px solid #ff6b5b;
  outline-offset: 2px;
}

/* ─── TRUST BADGES ──────────────────────────────────────── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d5f8a;
}

/* ─── PHONE MOCKUP ──────────────────────────────────────── */
.phone-frame {
  position: relative;
  width: 260px;
  height: 520px;
  background: #1b2e44;
  border-radius: 2.5rem;
  padding: 8px;
  box-shadow:
    0 30px 60px rgba(27, 46, 68, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 80px rgba(108, 180, 230, 0.08);
  animation: phoneFadeIn 1s 0.5s ease both;
}

@keyframes phoneFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #1b2e44;
  border-radius: 0 0 1rem 1rem;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #faf9f6;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 1rem 0.2rem;
  font-size: 10px;
  font-weight: 600;
  color: #253348;
}

@keyframes notifSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chat bubbles inside phone */
.chat-bubble-ai,
.chat-bubble-user {
  max-width: 85%;
  padding: 0.4rem 0.6rem;
  border-radius: 0.75rem;
  font-size: 9px;
  line-height: 1.45;
  animation: chatFade 0.5s ease both;
}

.chat-bubble-ai {
  background: white;
  color: #253348;
  border-bottom-left-radius: 0.2rem;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.chat-bubble-user {
  background: #4a8cc2;
  color: white;
  border-bottom-right-radius: 0.2rem;
  align-self: flex-end;
  margin-left: auto;
}

/* Hero chat bubbles: always visible, no unreliable delayed animation */
.phone-screen .chat-bubble-ai,
.phone-screen .chat-bubble-user {
  animation: none;
  opacity: 1;
  transform: none;
}

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

.phone-screen .space-y-1\.5 {
  display: flex;
  flex-direction: column;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 3px;
  padding: 0.45rem 0.65rem;
  background: white;
  border-radius: 0.75rem;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  animation: chatFade 0.5s 3.2s ease both;
}

.typing-indicator span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b8e0ff;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

/* (phone-bottom-bar/pill replaced by hero-tab-bar) */

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ─── DOT GRID BACKGROUND ───────────────────────────────── */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(45, 95, 138, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
}

/* ─── STICKY SCROLL: LAYOUT ─────────────────────────────── */
.steps-container {
  position: relative;
  padding-bottom: 4rem;
}

.steps-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .steps-layout {
    flex-direction: row;
    gap: 3rem;
    padding: 0 2rem;
  }
}

/* ── Left: sticky visual ── */
.steps-visual-col {
  /* Mobile: sticky at top, compact phone */
  position: sticky;
  top: 4rem; /* below the nav */
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 1rem;
  /* Fade out bottom edge so cards feel like they slide "under" */
  background: linear-gradient(180deg, rgba(250, 249, 246, 1) 70%, rgba(250, 249, 246, 0) 100%);
}

@media (min-width: 768px) {
  .steps-visual-col {
    position: static;
    display: block;
    width: 45%;
    flex-shrink: 0;
    padding: 0;
    background: none;
    z-index: auto;
  }
}

.steps-visual-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .steps-visual-sticky {
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    min-height: auto;
    padding: 0;
  }
}

/* ── Step phone mockup (bigger, more detailed) ── */
.steps-phone-wrapper {
  position: relative;
}

.steps-phone-frame {
  position: relative;
  width: 280px;
  height: 560px;
  background: #1b2e44;
  border-radius: 2.75rem;
  padding: 10px;
  box-shadow:
    0 40px 80px rgba(27, 46, 68, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 120px rgba(108, 180, 230, 0.06);
}

.steps-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #1b2e44;
  border-radius: 0 0 1rem 1rem;
  z-index: 20;
}

.steps-phone-screen {
  width: 100%;
  height: 100%;
  background: #faf9f6;
  border-radius: 2.25rem;
  overflow: hidden;
  position: relative;
}

/* ── Phone app screens (stacked, crossfade) ── */
.phone-app-screen {
  position: absolute;
  inset: 0;
  padding: 2rem 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.phone-app-screen.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.pscreen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.25rem 0.5rem;
}

.pscreen-logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.pscreen-logo svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.pscreen-logo span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #253348;
}

/* ═══ HERO PHONE — Dashboard UI ═══════════════════════════ */
.hero-notif-badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff6b5b;
  color: white;
  font-size: 8px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(255, 107, 91, 0.4);
}
.hero-dash-card {
  background: white;
  border-radius: 0.75rem;
  padding: 0.55rem 0.65rem;
  box-shadow: 0 2px 8px rgba(37, 51, 72, 0.06);
  border: 1px solid rgba(184, 224, 255, 0.15);
}
.hero-date-avatars {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.hero-date-avatars img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid white;
}
.hero-date-avatars img:nth-child(3) {
  margin-left: -6px;
}
.hero-date-vs {
  font-size: 10px;
  z-index: 1;
  margin: 0 -2px;
}
.hero-progress-mini {
  height: 3px;
  border-radius: 99px;
  background: rgba(37, 51, 72, 0.06);
  overflow: hidden;
}
.hero-progress-mini-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #4a8cc2, #6cb4e6);
}
/* ─── SCROLL DOWN HINT ──────────────────────────────────── */
.scroll-down-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid rgba(74, 140, 194, 0.35);
  color: rgba(74, 140, 194, 0.7);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  z-index: 20;
}
.scroll-down-hint:hover {
  border-color: rgba(74, 140, 194, 0.7);
  color: rgba(74, 140, 194, 1);
  background: rgba(255, 255, 255, 0.12);
}
.scroll-down-hint svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Red pulsing live-dot */
.hero-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  position: relative;
}
.hero-live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.35);
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    transform: scale(0.7);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.hero-match-card {
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.06), rgba(255, 107, 91, 0.02));
  border: 1px solid rgba(255, 107, 91, 0.12);
  border-radius: 0.75rem;
  padding: 0.5rem 0.65rem;
}
.hero-tab-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.45rem 0.5rem 0.3rem;
  border-top: 1px solid rgba(37, 51, 72, 0.06);
  background: rgba(250, 249, 246, 0.95);
  margin-top: auto;
}
.hero-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.hero-tab svg {
  width: 18px;
  height: 18px;
  color: rgba(37, 51, 72, 0.3);
}
.hero-tab.active svg {
  color: #ff6b5b;
}
.hero-tab.active {
  background: rgba(255, 107, 91, 0.08);
}
.hero-tab-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6b5b;
  color: white;
  font-size: 7px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══ SHARED SCREEN ELEMENTS ══════════════════════════════ */
.pscreen-live-pill {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(217, 54, 54, 0.08);
  font-size: 8px;
  font-weight: 700;
  color: #d93636;
}
.pscreen-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d93636;
  animation: dotBreath 1.5s ease-in-out infinite;
}
@keyframes dotBreath {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* ═══ SCREEN 1 — Profile Builder ══════════════════════════ */
.ps1-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 0.15rem;
  overflow: hidden;
}
.ps1-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(37, 51, 72, 0.06);
  margin-bottom: 0.5rem;
}
.ps1-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(37, 51, 72, 0.12);
  border: 2px solid white;
  flex-shrink: 0;
}
.ps1-info {
  display: flex;
  flex-direction: column;
}
.ps1-name {
  font-size: 11px;
  font-weight: 700;
  color: #253348;
}
.ps1-loc {
  font-size: 8px;
  color: rgba(37, 51, 72, 0.45);
}
.ps1-section-title {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(37, 51, 72, 0.35);
  margin: 0.4rem 0 0.2rem;
}
.ps1-traits {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ps1-trait {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.ps1-trait-label {
  font-size: 8px;
  color: rgba(37, 51, 72, 0.55);
  width: 40px;
  flex-shrink: 0;
}
.ps1-trait-bar {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(37, 51, 72, 0.06);
  overflow: hidden;
}
.ps1-trait-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #4a8cc2, #6cb4e6);
  transition: width 1s ease;
}
.ps1-trait-val {
  font-size: 7px;
  font-weight: 700;
  color: #4a8cc2;
  width: 20px;
  text-align: right;
}
.ps1-tags {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.15rem;
}
.ps1-tags span {
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 600;
  background: #f0f7ff;
  color: #2d5f8a;
}
.ps1-sources {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ps1-src {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 8px;
  color: #253348;
  padding: 0.25rem 0.4rem;
  background: white;
  border-radius: 0.4rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.ps1-src-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: white;
  flex-shrink: 0;
}
.ps1-src-ok {
  margin-left: auto;
  font-size: 8px;
  color: #2e6e4a;
  font-weight: 700;
}
.ps1-status {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(232, 245, 238, 0.6);
  color: #2e6e4a;
  font-size: 8px;
  font-weight: 600;
}

/* ═══ SCREEN 2 — Live Map ═════════════════════════════════ */
.ps2-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ps2-map {
  position: relative;
  flex: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 0 0.15rem 0.35rem;
  min-height: 0;
}
.ps2-map-bg {
  width: 100%;
  height: 100%;
  background: #e8f0f8;
  position: relative;
}
.ps2-map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(184, 224, 255, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 224, 255, 0.25) 1px, transparent 1px);
  background-size: 20px 20px;
}
.ps2-map-water {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 35%;
  background: rgba(108, 180, 230, 0.15);
  border-top-right-radius: 40%;
}
.ps2-map-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
}
.ps2-road-h {
  width: 100%;
  height: 5px;
  top: 45%;
}
.ps2-road-v {
  width: 5px;
  height: 100%;
  left: 55%;
}
.ps2-road-d {
  width: 120%;
  height: 4px;
  top: 65%;
  left: -10%;
  transform: rotate(-15deg);
  background: rgba(255, 255, 255, 0.5);
}
.ps2-pin {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.ps2-pin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ps2-pin-you {
  top: 30%;
  left: 35%;
}
.ps2-pin-date {
  top: 38%;
  left: 58%;
}
.ps2-pin-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(255, 107, 91, 0.25);
  animation: ps2Pulse 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes ps2Pulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.ps2-connection-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}
.ps2-connection-line line {
  stroke: rgba(255, 107, 91, 0.55);
}
.ps2-region-label {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 7px;
  font-weight: 700;
  color: rgba(37, 51, 72, 0.4);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.ps2-feed {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 0.15rem;
}
.ps2-feed-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.45rem;
  background: white;
  border-radius: 0.55rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.ps2-feed-active {
  border-left: 2px solid #2e6e4a;
}
.ps2-feed-faded {
  opacity: 0.45;
}
.ps2-feed-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ps2-feed-text {
  flex: 1;
  min-width: 0;
}
.ps2-feed-name {
  font-size: 8px;
  font-weight: 700;
  color: #253348;
}
.ps2-feed-meta {
  font-size: 7px;
  color: rgba(37, 51, 72, 0.45);
}
.ps2-feed-live {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(46, 110, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps2-feed-live .pscreen-live-dot {
  width: 4px;
  height: 4px;
  background: #2e6e4a;
}
.ps2-feed-score {
  font-size: 8px;
  font-weight: 800;
  color: #ff6b5b;
  background: rgba(255, 107, 91, 0.08);
  padding: 0.1rem 0.3rem;
  border-radius: 999px;
}
.ps2-feed-x {
  font-size: 8px;
  color: rgba(37, 51, 72, 0.25);
  font-weight: 700;
}

/* ═══ SCREEN 3 — Chat Debrief ═════════════════════════════ */
.ps3-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 0.15rem;
  overflow: hidden;
}
.ps3-date-label {
  text-align: center;
  font-size: 7px;
  color: rgba(37, 51, 72, 0.3);
  margin-bottom: 0.35rem;
}
.ps3-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: flex-end;
  overflow: hidden;
}
.ps3-bubble {
  max-width: 85%;
  padding: 0.4rem 0.55rem;
  border-radius: 0.65rem;
  font-size: 9px;
  line-height: 1.45;
}
.ps3-user {
  background: white;
  color: #253348;
  border-bottom-left-radius: 0.15rem;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.ps3-ai {
  background: linear-gradient(135deg, #4a8cc2, #6cb4e6);
  color: white;
  border-bottom-right-radius: 0.15rem;
  align-self: flex-end;
}
/* Date Report Card */
.ps3-report-card {
  align-self: flex-end;
  width: 85%;
  background: white;
  border-radius: 0.65rem;
  border: 1px solid rgba(184, 224, 255, 0.2);
  padding: 0.45rem 0.5rem;
  box-shadow: 0 2px 8px rgba(37, 51, 72, 0.06);
}
.ps3-report-header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 8px;
  font-weight: 800;
  color: #253348;
  margin-bottom: 0.35rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(37, 51, 72, 0.06);
}
.ps3-report-header svg {
  color: #4a8cc2;
}
.ps3-report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.15rem 0;
  font-size: 8px;
  color: rgba(37, 51, 72, 0.55);
}
.ps3-report-dots {
  display: flex;
  gap: 2px;
}
.ps3-report-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(37, 51, 72, 0.08);
}
.ps3-report-dots span.filled {
  background: #ff6b5b;
}
.ps3-report-tags {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.3rem;
  flex-wrap: wrap;
}
.ps3-report-tags span {
  font-size: 7px;
  font-weight: 600;
  padding: 0.1rem 0.3rem;
  border-radius: 999px;
  background: #f0f7ff;
  color: #2d5f8a;
}
.ps3-typing {
  display: flex;
  gap: 3px;
  padding: 0.4rem 0.55rem;
  background: linear-gradient(135deg, #4a8cc2, #6cb4e6);
  border-radius: 0.65rem;
  border-bottom-right-radius: 0.15rem;
  width: fit-content;
  align-self: flex-end;
}
.ps3-typing span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: typingBounce 1.4s ease-in-out infinite;
}
.ps3-typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.ps3-typing span:nth-child(3) {
  animation-delay: 0.4s;
}
.ps3-input-bar {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  padding: 0.35rem;
  background: white;
  border-radius: 999px;
  border: 1px solid rgba(37, 51, 72, 0.08);
}
.ps3-input-field {
  flex: 1;
  font-size: 8px;
  color: rgba(37, 51, 72, 0.3);
  padding-left: 0.3rem;
}
.ps3-send-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff6b5b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps3-send-btn svg {
  color: white;
}

/* ═══ SCREEN 4 — Match Decisions ══════════════════════════ */
.ps4-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 0.15rem;
  overflow: hidden;
}
.ps4-featured {
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}
.ps4-featured-photo {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.ps4-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.55rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.ps4-featured-info {
  display: flex;
  flex-direction: column;
}
.ps4-featured-name {
  font-size: 12px;
  font-weight: 800;
  color: white;
}
.ps4-featured-loc {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.75);
}
.ps4-featured-score {
  flex-shrink: 0;
}
.ps4-score-ring {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps4-score-ring svg {
  width: 100%;
  height: 100%;
}
.ps4-score-ring span {
  position: absolute;
  font-size: 8px;
  font-weight: 800;
  color: white;
}
.ps4-featured-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 107, 91, 0.9);
  color: white;
  font-size: 7px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.ps4-insights {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}
.ps4-insight {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem;
  background: white;
  border-radius: 0.5rem;
  font-size: 7px;
  font-weight: 600;
  color: #253348;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.ps4-insight-emoji {
  font-size: 10px;
}
.ps4-list-title {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(37, 51, 72, 0.35);
  margin-bottom: 0.2rem;
}
.ps4-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ps4-list-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.4rem;
  background: white;
  border-radius: 0.55rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.ps4-item-rejected {
  opacity: 0.4;
}
.ps4-list-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ps4-list-info {
  flex: 1;
}
.ps4-list-name {
  font-size: 9px;
  font-weight: 600;
  color: #253348;
}
.ps4-list-meta {
  font-size: 7px;
  color: rgba(37, 51, 72, 0.45);
}
.ps4-list-status {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.ps4-status-active {
  background: rgba(255, 107, 91, 0.1);
  color: #ff6b5b;
}
.ps4-status-rejected {
  background: rgba(37, 51, 72, 0.06);
  color: rgba(37, 51, 72, 0.3);
}

/* ═══ SCREEN 5 — Handoff ══════════════════════════════════ */
.ps5-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 0.15rem;
  overflow: hidden;
}
.ps5-profile {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.45rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(37, 51, 72, 0.06);
  margin-bottom: 0.35rem;
}
.ps5-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(37, 51, 72, 0.12);
  flex-shrink: 0;
}
.ps5-profile-info {
  flex: 1;
}
.ps5-name {
  font-size: 11px;
  font-weight: 700;
  color: #253348;
  margin-bottom: 0.15rem;
}
.ps5-score-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.ps5-score-bar {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(37, 51, 72, 0.06);
  overflow: hidden;
}
.ps5-score-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff6b5b, #ff8a7d);
}
.ps5-score-text {
  font-size: 8px;
  font-weight: 800;
  color: #ff6b5b;
}
.ps5-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.35rem 0.4rem;
  background: white;
  border-radius: 0.6rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  margin-bottom: 0.35rem;
}
.ps5-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ps5-stat-val {
  font-size: 12px;
  font-weight: 800;
  color: #253348;
  line-height: 1;
}
.ps5-stat-label {
  font-size: 6px;
  color: rgba(37, 51, 72, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ps5-stat-divider {
  width: 1px;
  height: 20px;
  background: rgba(37, 51, 72, 0.08);
}
.ps5-handoff-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.3rem;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.08), rgba(255, 138, 125, 0.04));
  border: 1px dashed rgba(255, 107, 91, 0.25);
  font-size: 8px;
  font-weight: 700;
  color: #ff6b5b;
}
.ps5-handoff-banner svg {
  color: #ff6b5b;
}
.ps5-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: flex-end;
  overflow: hidden;
}
.ps5-bubble {
  max-width: 85%;
  padding: 0.4rem 0.55rem;
  border-radius: 0.65rem;
  font-size: 9px;
  line-height: 1.45;
}
.ps5-you {
  background: linear-gradient(135deg, #ff6b5b, #ff8a7d);
  color: white;
  border-bottom-right-radius: 0.15rem;
  align-self: flex-end;
}
.ps5-her {
  background: white;
  color: #253348;
  border-bottom-left-radius: 0.15rem;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.ps5-bubble-latest {
  animation: ps5BubblePop 0.5s ease both;
}
@keyframes ps5BubblePop {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.ps5-input-bar {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.3rem;
  padding: 0.35rem;
  background: white;
  border-radius: 999px;
  border: 1px solid rgba(37, 51, 72, 0.08);
}
.ps5-input-field {
  flex: 1;
  font-size: 8px;
  color: rgba(37, 51, 72, 0.3);
  padding-left: 0.3rem;
}
.ps5-send-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff6b5b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps5-send-btn svg {
  color: white;
}

/* ═══ SCREEN 6 — Future / Memories ════════════════════════ */
.ps6-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 0.15rem;
  overflow: hidden;
}
.ps6-couple-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0 0.35rem;
}
.ps6-couple-photos {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.ps6-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(37, 51, 72, 0.12);
}
.ps6-av:nth-child(3) {
  margin-left: 0;
}
.ps6-heart-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff6b5b;
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 107, 91, 0.3);
  animation: heartFloat 3s ease-in-out infinite;
}
@keyframes heartFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.1);
  }
}
.ps6-couple-names {
  font-size: 11px;
  font-weight: 800;
  color: #253348;
  margin-top: 0.4rem;
}
.ps6-couple-since {
  font-size: 7px;
  color: rgba(37, 51, 72, 0.4);
}
.ps6-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.4rem 0;
  margin: 0.25rem 0;
}
.ps6-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ps6-stat-num {
  font-size: 16px;
  font-weight: 800;
  color: #253348;
  line-height: 1;
}
.ps6-stat-label {
  font-size: 6px;
  color: rgba(37, 51, 72, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ps6-timeline-title {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(37, 51, 72, 0.35);
  margin-bottom: 0.3rem;
}
.ps6-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 14px;
  flex: 1;
}
.ps6-timeline::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(255, 107, 91, 0.15);
  border-radius: 99px;
}
.ps6-tl-item {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.4rem;
  position: relative;
}
.ps6-tl-dot {
  position: absolute;
  left: -14px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b5b;
  border: 2px solid rgba(255, 107, 91, 0.2);
  z-index: 1;
}
.ps6-tl-card {
  flex: 1;
  background: white;
  border-radius: 0.55rem;
  padding: 0.35rem 0.45rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.ps6-tl-date {
  font-size: 7px;
  font-weight: 700;
  color: rgba(37, 51, 72, 0.35);
  margin-bottom: 0.1rem;
}
.ps6-tl-text {
  font-size: 8px;
  color: rgba(37, 51, 72, 0.6);
  line-height: 1.4;
}

/* ── Oversized watermark number ── */
.step-watermark {
  position: absolute;
  right: -2rem;
  bottom: -1.5rem;
  font-size: 12rem;
  font-weight: 800;
  color: rgba(184, 224, 255, 0.12);
  line-height: 1;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

/* ── Right: scrolling step panels ── */
.steps-section-header {
  padding: 0 0 1.5rem;
}

.steps-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.5rem 0 3rem;
}

@media (min-width: 768px) {
  .steps-section-header {
    padding: 0 0 2rem;
  }
  .steps-text-col {
    gap: 4rem;
    /* Enough top/bottom padding so first/last panel can reach viewport center */
    padding: 2rem 0 50vh;
  }
}

.step-panel {
  transition: transform 0.4s ease;
}

@media (min-width: 768px) {
  .step-panel {
    min-height: 50vh;
    display: flex;
    align-items: center;
  }
}

.step-card {
  position: relative;
  background: white;
  border: 1px solid rgba(37, 51, 72, 0.06);
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 1px 3px rgba(37, 51, 72, 0.03);
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.step-card-accent {
  display: none;
}

.step-panel.active .step-card {
  border-color: rgba(37, 51, 72, 0.1);
  box-shadow:
    0 12px 40px rgba(37, 51, 72, 0.08),
    0 2px 6px rgba(37, 51, 72, 0.04);
  transform: translateY(-3px);
  background: white;
}

.step-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.step-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 51, 72, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-icon svg {
  width: 20px;
  height: 20px;
  color: rgba(37, 51, 72, 0.35);
  transition: color 0.5s ease;
}

.step-panel.active .step-icon {
  background: rgba(255, 107, 91, 0.1);
  transform: scale(1.05);
}

.step-panel.active .step-icon svg {
  color: #ff6b5b;
}

.step-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(37, 51, 72, 0.5);
  margin-bottom: 0.25rem;
  transition: color 0.4s ease;
}

.step-panel.active .step-kicker {
  color: #ff6b5b;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #253348;
}

@media (min-width: 640px) {
  .step-title {
    font-size: 1.35rem;
  }
}

.step-body {
  font-size: 0.925rem;
  line-height: 1.7;
  color: rgba(37, 51, 72, 0.7);
  margin-top: 0.25rem;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 0.5rem;
  background: rgba(232, 245, 238, 0.6);
  color: #2e6e4a;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ─── STEPS PROGRESS INDICATOR ──────────────────────────── */
.steps-progress {
  display: none;
}

@media (min-width: 768px) {
  .steps-progress {
    display: flex;
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    flex-direction: column;
    align-items: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .steps-progress.visible {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 1280px) {
  .steps-progress {
    left: calc((100vw - 72rem) / 2 - 3rem);
  }
}

.steps-progress-track {
  width: 2px;
  background: rgba(184, 224, 255, 0.25);
  border-radius: 999px;
  position: absolute;
  top: 14px; /* center of first dot */
  bottom: 14px; /* center of last dot */
  overflow: hidden;
}

.steps-progress-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #4a8cc2, #ff6b5b);
  border-radius: 999px;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.steps-progress-dots {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.steps-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(184, 224, 255, 0.4);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(37, 51, 72, 0.06);
}

.steps-dot span {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(37, 51, 72, 0.4);
  transition: color 0.4s ease;
}

.steps-dot.active {
  border-color: #ff6b5b;
  box-shadow: 0 2px 12px rgba(255, 107, 91, 0.2);
}

.steps-dot.active span {
  color: #ff6b5b;
}

/* ─── PRICING CARDS ─────────────────────────────────────── */
.pricing-card {
  position: relative;
  border: 1.5px solid rgba(184, 224, 255, 0.3);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 2rem;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(37, 51, 72, 0.1);
}

.pricing-card-pro {
  border-color: rgba(255, 107, 91, 0.35);
  background: linear-gradient(180deg, rgba(255, 107, 91, 0.04), rgba(255, 255, 255, 0.95));
  box-shadow: 0 8px 32px rgba(255, 107, 91, 0.1);
}

@media (min-width: 768px) {
  .pricing-card-pro {
    transform: translateY(-8px);
  }
  .pricing-card-pro:hover {
    transform: translateY(-12px);
  }
}

.pricing-popular-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  background: #ff6b5b;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(255, 107, 91, 0.3);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(37, 51, 72, 0.78);
}

.pricing-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #4a8cc2;
  margin-top: 1px;
}

.pricing-check.pro {
  color: #ff6b5b;
}

/* ─── FOOTER CTA ────────────────────────────────────────── */
.footer-cta {
  position: relative;
  background: linear-gradient(135deg, #2d5f8a 0%, #1b2e44 40%, #3d2038 100%);
  overflow: hidden;
}

/* ─── QUOTE / VISION SECTION ───────────────────────────── */
.quote-section {
  background: linear-gradient(135deg, #1b2e44 0%, #253348 40%, #2d3a4e 100%);
  position: relative;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(108, 180, 230, 0.08), transparent), radial-gradient(ellipse 50% 50% at 80% 50%, rgba(255, 107, 91, 0.06), transparent);
  pointer-events: none;
}
.quote-icon {
  width: 40px;
  height: 40px;
  color: rgba(255, 107, 91, 0.5);
}
.quote-text {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
  max-width: 38rem;
  margin: 0 auto;
}
.quote-text em {
  font-style: normal;
  color: #ff8a7d;
  font-weight: 700;
}
@media (min-width: 640px) {
  .quote-text {
    font-size: 1.75rem;
  }
  .quote-icon {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1024px) {
  .quote-text {
    font-size: 2rem;
  }
}
.quote-divider {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}
.quote-divider span {
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff6b5b, #6cb4e6);
  opacity: 0.6;
}
.quote-attribution {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Dark mode: quote section */
.dark .quote-section {
  background: linear-gradient(135deg, #0a0c12 0%, #13151c 40%, #181a20 100%);
}
.dark .quote-bg {
  background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(108, 180, 230, 0.04), transparent), radial-gradient(ellipse 50% 50% at 80% 50%, rgba(255, 107, 91, 0.03), transparent);
}
.dark .quote-text {
  color: rgba(228, 229, 233, 0.9);
}
.dark .quote-text em {
  color: #ff8a7d;
}
.dark .quote-attribution {
  color: rgba(147, 149, 160, 0.5);
}

/* ─── TESTIMONIALS ─────────────────────────────────────── */
.testi-grid {
  columns: 1;
  column-gap: 1.25rem;
}
@media (min-width: 640px) {
  .testi-grid {
    columns: 2;
  }
}
@media (min-width: 1024px) {
  .testi-grid {
    columns: 3;
  }
}

.testi-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(37, 51, 72, 0.06);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(37, 51, 72, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 51, 72, 0.08);
}

.testi-highlight {
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.04), rgba(255, 138, 125, 0.02));
  border-color: rgba(255, 107, 91, 0.12);
}

.testi-stars {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #ffb020;
  margin-bottom: 0.65rem;
}

.testi-text {
  font-size: 0.938rem;
  line-height: 1.7;
  color: rgba(37, 51, 72, 0.75);
  margin-bottom: 1rem;
}
.testi-text strong {
  color: #253348;
  font-weight: 700;
}
.testi-text em {
  font-style: italic;
  color: #ff6b5b;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #253348;
  line-height: 1.3;
}

.testi-role {
  display: block;
  font-size: 0.75rem;
  color: rgba(37, 51, 72, 0.4);
}

/* Dark mode */
.dark .testi-card {
  background: #181a20;
  border-color: #2a2d37;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.dark .testi-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.dark .testi-highlight {
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.04), rgba(255, 138, 125, 0.02));
  border-color: rgba(255, 107, 91, 0.15);
}
.dark .testi-text {
  color: #9395a0;
}
.dark .testi-text strong {
  color: #e4e5e9;
}
.dark .testi-text em {
  color: #ff8a7d;
}
.dark .testi-name {
  color: #e4e5e9;
}
.dark .testi-role {
  color: #5a5d6a;
}

/* ─── ROADMAP TIMELINE ─────────────────────────────────── */
.roadmap-timeline {
  position: relative;
  padding-left: 2rem;
  max-width: 640px;
  margin: 0 auto;
}

.roadmap-line {
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(37, 51, 72, 0.08);
  border-radius: 999px;
}

.roadmap-line-fill {
  width: 100%;
  height: 25%;
  background: linear-gradient(180deg, #ff6b5b 0%, #ff6b5b 80%, transparent 100%);
  border-radius: 999px;
  transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

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

.roadmap-marker {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 40px;
}

.roadmap-dot {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.roadmap-item:hover .roadmap-dot {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.roadmap-dot-ping {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255, 107, 91, 0.3);
  animation: roadmapPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes roadmapPing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  75%,
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Done state */
.roadmap-done .roadmap-dot {
  background: linear-gradient(135deg, #2e6e4a, #3a9960);
}

/* Current state */
.roadmap-current .roadmap-dot {
  background: linear-gradient(135deg, #ff6b5b, #ff8a7d);
}

/* Upcoming state */
.roadmap-upcoming .roadmap-dot {
  background: linear-gradient(135deg, #b8e0ff, #6cb4e6);
}

.roadmap-content {
  flex: 1;
  padding-top: 0.2rem;
}

.roadmap-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.roadmap-done .roadmap-date {
  color: #2e6e4a;
}
.roadmap-current .roadmap-date {
  color: #ff6b5b;
}
.roadmap-upcoming .roadmap-date {
  color: #6cb4e6;
}

.roadmap-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #253348;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.roadmap-desc {
  font-size: 0.938rem;
  color: rgba(37, 51, 72, 0.65);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.roadmap-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.roadmap-features span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(37, 51, 72, 0.6);
  background: rgba(37, 51, 72, 0.04);
  border: 1px solid rgba(37, 51, 72, 0.08);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
}

.roadmap-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}

.roadmap-tag-active {
  background: rgba(46, 110, 74, 0.1);
  color: #2e6e4a;
}

.roadmap-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2e6e4a;
  animation: roadmapPulse 1.5s ease-in-out infinite;
}

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

.roadmap-tag-launch {
  background: rgba(255, 107, 91, 0.1);
  color: #ff6b5b;
}

/* Upcoming items: subtle appearance */
.roadmap-upcoming .roadmap-content {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.roadmap-upcoming:hover .roadmap-content {
  opacity: 1;
}

/* Connection lines between dots */
.roadmap-item::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: transparent;
}

/* Desktop: larger timeline */
@media (min-width: 768px) {
  .roadmap-timeline {
    padding-left: 3rem;
    max-width: 700px;
  }
  .roadmap-line {
    left: 27px;
  }
  .roadmap-dot {
    width: 38px;
    height: 38px;
  }
  .roadmap-marker {
    width: 48px;
  }
  .roadmap-title {
    font-size: 1.35rem;
  }
  .roadmap-item {
    padding-bottom: 3.5rem;
  }
}

/* ─── RESPONSIVE TWEAKS ─────────────────────────────────── */
@media (max-width: 767px) {
  /* Hero phone */
  .phone-frame {
    width: 220px;
    height: 440px;
    border-radius: 2rem;
  }
  .phone-notch {
    width: 80px;
    height: 18px;
  }

  /* Steps phone: compact for mobile sticky */
  .steps-phone-frame {
    width: 200px;
    height: 380px;
    border-radius: 2rem;
    padding: 7px;
    box-shadow:
      0 16px 40px rgba(27, 46, 68, 0.25),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  }
  .steps-phone-notch {
    width: 70px;
    height: 16px;
  }
  .steps-phone-screen {
    border-radius: 1.65rem;
  }
  .phone-app-screen {
    padding: 1.5rem 0.55rem 0.55rem;
  }

  /* Mobile screen adjustments */
  .ps1-photo {
    width: 32px;
    height: 32px;
  }
  .ps1-name {
    font-size: 10px;
  }
  .ps1-trait-label {
    font-size: 7px;
    width: 35px;
  }
  .ps4-featured-photo {
    height: 110px;
  }
  .ps6-av {
    width: 30px;
    height: 30px;
  }
  .ps6-stat-num {
    font-size: 13px;
  }

  .step-watermark {
    display: none;
  }

  /* Step panels: card-based, with opacity transitions */
  .steps-text-col {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
    gap: 1rem;
  }

  .step-card {
    padding: 1.15rem;
  }

  .step-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .step-icon svg {
    width: 17px;
    height: 17px;
  }

  .step-panel.active .step-card {
    box-shadow: 0 6px 24px rgba(37, 51, 72, 0.08);
  }
}

@media (max-width: 480px) {
  .phone-frame {
    width: 190px;
    height: 380px;
    border-radius: 1.75rem;
  }

  .steps-phone-frame {
    width: 175px;
    height: 330px;
    border-radius: 1.75rem;
    padding: 6px;
  }
  .steps-phone-notch {
    width: 65px;
    height: 15px;
  }
  .phone-app-screen {
    padding: 1.25rem 0.45rem 0.45rem;
  }
  .ps1-card {
    padding: 0.35rem;
    gap: 0.4rem;
  }
  .ps4-featured-photo {
    height: 90px;
  }
  .ps5-photo {
    width: 28px;
    height: 28px;
  }
}

/* ─── WAITLIST SUCCESS STATE ─────────────────────────────── */
.waitlist-success {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(232, 245, 238, 0.8);
  border: 1px solid rgba(46, 110, 74, 0.15);
  border-radius: 1rem;
  color: #2e6e4a;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.waitlist-success svg {
  flex-shrink: 0;
  color: #2e6e4a;
  margin-top: 0.1rem;
}

.waitlist-success-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.waitlist-success-sub {
  font-size: 0.875rem;
  color: rgba(46, 110, 74, 0.75);
  line-height: 1.5;
}

.waitlist-success-sub strong {
  color: #2e6e4a;
  font-weight: 600;
}

/* Footer variant (on dark bg) */
.footer-cta .waitlist-success {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.footer-cta .waitlist-success svg {
  color: #5bb87a;
}

.footer-cta .waitlist-success-title {
  color: white;
}

.footer-cta .waitlist-success-sub {
  color: rgba(255, 255, 255, 0.7);
}

.footer-cta .waitlist-success-sub strong {
  color: white;
}

/* Dark mode */
.dark .waitlist-success {
  background: rgba(91, 184, 122, 0.08);
  border-color: rgba(91, 184, 122, 0.15);
  color: #5bb87a;
}

.dark .waitlist-success svg {
  color: #5bb87a;
}

.dark .waitlist-success-title {
  color: #5bb87a;
}

.dark .waitlist-success-sub {
  color: rgba(147, 149, 160, 0.9);
}

.dark .waitlist-success-sub strong {
  color: #e4e5e9;
}

/* ═══════════════════════════════════════════════════════════
   DARK THEME
   ═══════════════════════════════════════════════════════════ */

/* -- Animated hero gradient -- */
.dark .hero-gradient {
  background: radial-gradient(ellipse 80% 60% at 15% 20%, rgba(255, 107, 91, 0.08), transparent), radial-gradient(ellipse 70% 50% at 85% 30%, rgba(108, 180, 230, 0.06), transparent), radial-gradient(ellipse 60% 80% at 50% 80%, rgba(255, 107, 91, 0.04), transparent), linear-gradient(180deg, #0f1117 0%, #13151c 50%, #0f1117 100%);
}

.dark .hero-headline-gradient {
  background: linear-gradient(135deg, #6cb4e6 0%, #ff8a7d 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* -- Selection -- */
.dark ::selection {
  background: rgba(255, 107, 91, 0.3);
  color: #e4e5e9;
}

/* -- Blobs -- */
.dark .blob {
  opacity: 0.15;
}

/* -- Nav scrolled -- */
.dark .nav-scrolled {
  background: rgba(12, 14, 20, 0.88) !important;
  border-bottom-color: rgba(42, 45, 55, 0.5) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

/* -- Trust badges -- */
.dark .trust-badge {
  color: #9395a0;
}

/* -- Email input -- */
.dark .email-input {
  background: #1e2028;
  border-color: #2a2d37;
  color: #e4e5e9;
}
.dark .email-input:focus {
  border-color: #ff6b5b;
  box-shadow: 0 0 0 3px rgba(255, 107, 91, 0.15);
}
.dark .email-input::placeholder {
  color: #5a5d6a;
}

/* -- CTA Button -- */
.dark .cta-button {
  box-shadow:
    0 8px 30px rgba(255, 107, 91, 0.25),
    0 0 0 1px rgba(255, 107, 91, 0.1);
}

/* -- Phone frames -- */
.dark .phone-frame {
  background: #0a0c12;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.dark .phone-screen {
  background: #181a20;
}
.dark .phone-status-bar {
  color: #9395a0;
}
/* (phone-notification removed — now hero-dash-card/hero-match-card, styled above) */
.dark .chat-bubble-user {
  color: white;
}
/* (dark phone-bottom-bar/pill removed — now hero-tab-bar) */

/* -- Dot grid -- */
.dark .dot-grid {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

/* -- Steps section -- */
.dark .steps-visual-col {
  background: linear-gradient(180deg, rgba(15, 17, 23, 1) 70%, rgba(15, 17, 23, 0) 100%);
}
.dark .steps-phone-frame {
  background: #0a0c12;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.dark .steps-phone-notch {
  background: #0a0c12;
}
.dark .steps-phone-screen {
  background: #181a20;
}

/* -- Hero phone -- */
.dark .hero-dash-card {
  background: #252830;
  border-color: #2a2d37;
  box-shadow: none;
}
.dark .hero-dash-card .text-ink,
.dark .hero-dash-card p {
  color: #e4e5e9;
}
.dark .hero-progress-mini {
  background: #2a2d37;
}
.dark .hero-match-card {
  background: rgba(255, 107, 91, 0.06);
  border-color: rgba(255, 107, 91, 0.15);
}
.dark .hero-tab-bar {
  background: rgba(24, 26, 32, 0.95);
  border-top-color: #2a2d37;
}
.dark .hero-tab svg {
  color: #5a5d6a;
}
.dark .hero-tab.active svg {
  color: #ff6b5b;
}
.dark .hero-tab.active {
  background: rgba(255, 107, 91, 0.12);
}
.dark .chat-bubble-ai {
  background: #252830;
  color: #e4e5e9;
}
.dark .typing-indicator {
  background: #252830;
  box-shadow: none;
}
.dark .typing-indicator span {
  background: #5a5d6a;
}

/* -- Phone app screens (shared) -- */
.dark .pscreen-header {
  color: #e4e5e9;
}
.dark .pscreen-logo span {
  color: #e4e5e9;
}
.dark .pscreen-live-pill {
  background: rgba(255, 107, 91, 0.15);
}

/* -- Screen 1 -- */
.dark .ps1-card {
  background: #252830;
  box-shadow: none;
}
.dark .ps1-name {
  color: #e4e5e9;
}
.dark .ps1-loc {
  color: #5a5d6a;
}
.dark .ps1-section-title {
  color: #5a5d6a;
}
.dark .ps1-trait-label {
  color: #9395a0;
}
.dark .ps1-trait-bar {
  background: #2a2d37;
}
.dark .ps1-tags span {
  background: #252830;
  color: #9395a0;
}
.dark .ps1-src {
  background: #252830;
  color: #e4e5e9;
  box-shadow: none;
}
.dark .ps1-status {
  background: rgba(46, 110, 74, 0.15);
  color: #5bb87a;
}

/* -- Screen 2 -- */
.dark .ps2-map-bg {
  background: #1a1d25;
}
.dark .ps2-map-grid {
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}
.dark .ps2-map-water {
  background: rgba(108, 180, 230, 0.06);
}
.dark .ps2-map-road {
  background: rgba(255, 255, 255, 0.06);
}
.dark .ps2-region-label {
  background: rgba(30, 32, 40, 0.8);
  color: #5a5d6a;
}
.dark .ps2-feed-item {
  background: #252830;
  box-shadow: none;
}
.dark .ps2-feed-name {
  color: #e4e5e9;
}
.dark .ps2-feed-meta {
  color: #5a5d6a;
}

/* -- Screen 3 -- */
.dark .ps3-date-label {
  color: #5a5d6a;
}
.dark .ps3-user {
  background: #252830;
  color: #e4e5e9;
  box-shadow: none;
}
.dark .ps3-report-card {
  background: #252830;
  border-color: #2a2d37;
  box-shadow: none;
}
.dark .ps3-report-header {
  color: #e4e5e9;
  border-bottom-color: #2a2d37;
}
.dark .ps3-report-row {
  color: #9395a0;
}
.dark .ps3-report-dots span {
  background: #2a2d37;
}
.dark .ps3-report-dots span.filled {
  background: #ff6b5b;
}
.dark .ps3-report-tags span {
  background: #1e2028;
  color: #9395a0;
}
.dark .ps3-typing {
  background: linear-gradient(135deg, #4a8cc2, #6cb4e6);
}
.dark .ps3-input-bar {
  background: #252830;
  border-color: #2a2d37;
}
.dark .ps3-input-field {
  color: #5a5d6a;
}

/* -- Screen 4 -- */
.dark .ps4-insight {
  background: #252830;
  color: #e4e5e9;
  box-shadow: none;
}
.dark .ps4-list-title {
  color: #5a5d6a;
}
.dark .ps4-list-item {
  background: #252830;
  box-shadow: none;
}
.dark .ps4-list-name {
  color: #e4e5e9;
}
.dark .ps4-list-meta {
  color: #5a5d6a;
}

/* -- Screen 5 -- */
.dark .ps5-profile {
  background: #252830;
  box-shadow: none;
}
.dark .ps5-name {
  color: #e4e5e9;
}
.dark .ps5-score-bar {
  background: #2a2d37;
}
.dark .ps5-stats {
  background: #252830;
  box-shadow: none;
}
.dark .ps5-stat-val {
  color: #e4e5e9;
}
.dark .ps5-stat-label {
  color: #5a5d6a;
}
.dark .ps5-stat-divider {
  background: #2a2d37;
}
.dark .ps5-handoff-banner {
  background: rgba(255, 107, 91, 0.06);
  border-color: rgba(255, 107, 91, 0.2);
}
.dark .ps5-her {
  background: #252830;
  color: #e4e5e9;
  box-shadow: none;
}
.dark .ps5-input-bar {
  background: #252830;
  border-color: #2a2d37;
}
.dark .ps5-input-field {
  color: #5a5d6a;
}

/* -- Screen 6 -- */
.dark .ps6-couple-names {
  color: #e4e5e9;
}
.dark .ps6-couple-since {
  color: #5a5d6a;
}
.dark .ps6-stat-num {
  color: #e4e5e9;
}
.dark .ps6-stat-label {
  color: #5a5d6a;
}
.dark .ps6-timeline-title {
  color: #5a5d6a;
}
.dark .ps6-timeline::before {
  background: rgba(255, 107, 91, 0.1);
}
.dark .ps6-tl-card {
  background: #252830;
  box-shadow: none;
}
.dark .ps6-tl-date {
  color: #5a5d6a;
}
.dark .ps6-tl-text {
  color: #9395a0;
}

/* -- Step watermark -- */
.dark .step-watermark {
  color: rgba(255, 255, 255, 0.03);
}

/* -- Step cards -- */
.dark .step-card {
  background: #181a20;
  border-color: #2a2d37;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.dark .step-panel.active .step-card {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: #1e2028;
}
.dark .step-icon {
  background: rgba(255, 255, 255, 0.05);
}
.dark .step-icon svg {
  color: #5a5d6a;
}
.dark .step-panel.active .step-icon {
  background: rgba(255, 107, 91, 0.12);
}
.dark .step-panel.active .step-icon svg {
  color: #ff6b5b;
}
.dark .step-kicker {
  color: #5a5d6a;
}
.dark .step-kicker::before {
  background: rgba(255, 138, 125, 0.3);
}
.dark .step-panel.active .step-kicker::before {
  background: #ff8a7d;
}
.dark .step-panel.active .step-kicker {
  background: linear-gradient(90deg, #ff8a7d, #ff6b5b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dark .step-title {
  color: #e4e5e9;
}
.dark .step-body {
  color: #9395a0;
}
.dark .step-badge {
  background: rgba(91, 184, 122, 0.1);
  color: #5bb87a;
}

/* -- Steps progress -- */
.dark .steps-progress-track {
  background: #2a2d37;
}
.dark .steps-dot {
  background: #2a2d37;
  color: #5a5d6a;
}
.dark .steps-dot.active {
  background: #ff6b5b;
  color: white;
}

/* -- Pricing -- */
.dark .pricing-card {
  background: #181a20;
  border-color: #2a2d37;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.dark .pricing-card-pro {
  border-color: rgba(255, 107, 91, 0.3);
  background: linear-gradient(180deg, rgba(255, 107, 91, 0.04), #181a20);
}
.dark .pricing-popular-badge {
  background: #ff6b5b;
}
.dark .pricing-feature {
  color: #9395a0;
}

/* -- Roadmap -- */
.dark .roadmap-line {
  background: #2a2d37;
}
.dark .roadmap-content {
  color: #e4e5e9;
}
.dark .roadmap-title {
  color: #e4e5e9;
}
.dark .roadmap-desc {
  color: #9395a0;
}
.dark .roadmap-features span {
  background: rgba(255, 255, 255, 0.04);
  border-color: #2a2d37;
  color: #9395a0;
}
.dark .roadmap-tag-active {
  background: rgba(91, 184, 122, 0.12);
  color: #5bb87a;
}
.dark .roadmap-tag-launch {
  background: rgba(255, 107, 91, 0.12);
  color: #ff8a7d;
}

/* -- Footer CTA -- */
.dark .footer-cta {
  background: linear-gradient(135deg, #13151c, #1a1d28, #13151c);
}

/* -- Generic overrides for Tailwind classes used inline -- */
.dark .text-ink {
  color: #e4e5e9;
}
.dark .text-ink\/60,
.dark .text-ink\/65,
.dark .text-ink\/70,
.dark .text-ink\/75 {
  color: #9395a0;
}
.dark .text-ink\/80 {
  color: #b8bac2;
}
.dark .text-ink\/50,
.dark .text-ink\/40 {
  color: #6b6e7a;
}
.dark .bg-white {
  background: #181a20;
}
.dark .bg-white\/60,
.dark .bg-white\/70 {
  background: rgba(24, 26, 32, 0.6);
}
.dark .border-white {
  border-color: #2a2d37;
}
.dark .bg-cream {
  background: #0f1117;
}

/* -- Smooth transitions for theme switch -- */
body,
.step-card,
.pricing-card,
.hero-gradient,
.phone-frame,
.phone-screen,
nav {
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════
   WOW DESIGN SYSTEM — Premium futuristic layer
   ═══════════════════════════════════════════════════════════ */

/* ─── WOW ANIMATIONS ────────────────────────────────────── */
@keyframes shimmerSlide {
  0% { left: -80%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

@keyframes headlineShift {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}

@keyframes auroraShift {
  0% { filter: hue-rotate(0deg) brightness(1) saturate(1); }
  40% { filter: hue-rotate(8deg) brightness(1.015) saturate(1.04); }
  100% { filter: hue-rotate(-4deg) brightness(1.01) saturate(1.02); }
}

@keyframes phoneGlow {
  0% {
    box-shadow:
      0 40px 80px rgba(27, 46, 68, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset,
      0 0 80px rgba(108, 180, 230, 0.18),
      0 0 160px rgba(255, 107, 91, 0.06);
  }
  100% {
    box-shadow:
      0 50px 100px rgba(27, 46, 68, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.14) inset,
      0 0 100px rgba(255, 107, 91, 0.22),
      0 0 180px rgba(108, 180, 230, 0.08);
  }
}

@keyframes stepsPhoneGlow {
  0% {
    box-shadow:
      0 40px 80px rgba(27, 46, 68, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset,
      0 0 60px rgba(108, 180, 230, 0.12);
  }
  100% {
    box-shadow:
      0 50px 100px rgba(27, 46, 68, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset,
      0 0 90px rgba(255, 107, 91, 0.16);
  }
}

@keyframes floatCard1 {
  0% { transform: translate(0, 0) rotate(-1deg); }
  100% { transform: translate(6px, -11px) rotate(0.5deg); }
}
@keyframes floatCard2 {
  0% { transform: translate(0, 0) rotate(0.5deg); }
  100% { transform: translate(-7px, 9px) rotate(-1deg); }
}
@keyframes floatCard3 {
  0% { transform: translate(0, 0) rotate(-0.5deg); }
  100% { transform: translate(8px, -8px) rotate(1deg); }
}

@keyframes gradientBorderSpin {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes labelPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

@keyframes quoteAmbient {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.18) translate(2%, 1%); opacity: 1; }
}

/* ─── AURORA HERO BACKGROUND (override) ─────────────────── */
.hero-gradient {
  background:
    radial-gradient(ellipse 100% 70% at 5% 15%, rgba(108, 180, 230, 0.48) 0%, transparent 62%),
    radial-gradient(ellipse 65% 55% at 90% 20%, rgba(255, 107, 91, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 80% at 50% 95%, rgba(116, 75, 162, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(232, 245, 238, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 72% 65%, rgba(255, 165, 0, 0.055) 0%, transparent 60%),
    linear-gradient(160deg, #f6f4ff 0%, #edf6ff 25%, #fff7f6 65%, #faf9f6 100%);
}

/* ─── ENHANCED BLOBS (override) ─────────────────────────── */
.blob-1 {
  width: 44rem;
  height: 44rem;
  top: -14rem;
  left: -10rem;
  background: radial-gradient(circle at 40% 40%, rgba(108, 180, 230, 0.55) 0%, rgba(116, 75, 162, 0.18) 45%, transparent 75%);
  filter: blur(84px);
  opacity: 0.72;
}
.blob-2 {
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 91, 0.36) 0%, rgba(255, 165, 100, 0.12) 50%, transparent 75%);
  filter: blur(84px);
  opacity: 0.68;
}
.blob-3 {
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle at 50% 50%, rgba(116, 75, 162, 0.12) 0%, rgba(232, 245, 238, 0.48) 50%, transparent 75%);
  filter: blur(72px);
  opacity: 0.72;
}

/* ─── HERO HEADLINE — static gradient (no animation) ────── */
.hero-headline-gradient {
  background: linear-gradient(135deg, #1a3f5c 0%, #2d5f8a 45%, #ff6b5b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── PREMIUM CTA BUTTON (override) ─────────────────────── */
.cta-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff7060 0%, #ff6b5b 50%, #e85a4a 100%);
  box-shadow:
    0 6px 28px rgba(255, 107, 91, 0.45),
    0 2px 8px rgba(255, 107, 91, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  letter-spacing: 0.015em;
  font-weight: 700;
}
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.cta-button:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow:
    0 12px 40px rgba(255, 107, 91, 0.55),
    0 4px 14px rgba(255, 107, 91, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* ─── PHONE GLOW ANIMATION (override) ───────────────────── */
.phone-frame {
  animation: phoneFadeIn 1s 0.5s ease both;
}

/* ─── PHONE ORBIT WRAPPER ────────────────────────────────── */
.phone-orbit-wrapper {
  position: relative;
  display: inline-block;
}

/* ─── FLOATING CARDS AROUND PHONE ───────────────────────── */
.phone-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px) saturate(1.7);
  -webkit-backdrop-filter: blur(22px) saturate(1.7);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0.875rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.73rem;
  font-weight: 600;
  color: #253348;
  box-shadow:
    0 8px 28px rgba(37, 51, 72, 0.1),
    0 2px 6px rgba(37, 51, 72, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  white-space: nowrap;
  z-index: 10;
  display: none;
  align-items: center;
  gap: 0.5rem;
}
/* Show float cards only on xl and up, prevents fallback text on live */
@media (min-width: 1280px) {
  .phone-float-card {
    display: flex !important;
  }
}

.phone-float-card-1 {
  top: 10%;
  left: -72%;
}
.phone-float-card-2 {
  bottom: 22%;
  left: -74%;
}
.phone-float-card-3 {
  top: 38%;
  right: -72%;
}

.phone-float-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.phone-float-dot-green {
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2), 0 0 8px rgba(34, 197, 94, 0.5);
  animation: livePulse 1.8s ease-in-out infinite;
}
.phone-float-dot-coral {
  background: #ff6b5b;
  box-shadow: 0 0 0 2px rgba(255, 107, 91, 0.2), 0 0 8px rgba(255, 107, 91, 0.5);
  animation: livePulse 2.2s ease-in-out infinite;
}
.phone-float-dot-blue {
  background: #6cb4e6;
  box-shadow: 0 0 0 2px rgba(108, 180, 230, 0.2), 0 0 8px rgba(108, 180, 230, 0.5);
  animation: livePulse 2s ease-in-out infinite;
}

/* ─── WOW SECTION PILL ───────────────────────────────────── */
.wow-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem 0.3rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.13), rgba(255, 107, 91, 0.07)) !important;
  border: 1px solid rgba(255, 107, 91, 0.22) !important;
  color: #d94f3e !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 12px rgba(255, 107, 91, 0.1);
}
.wow-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b5b;
  box-shadow: 0 0 0 2px rgba(255, 107, 91, 0.2), 0 0 8px rgba(255, 107, 91, 0.6);
  flex-shrink: 0;
  animation: labelPulse 2s ease-in-out infinite;
}

/* ─── SECTION DIVIDER ────────────────────────────────────── */
.section-divider {
  height: 1px;
  max-width: 72rem;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(108, 180, 230, 0.35) 25%,
    rgba(255, 107, 91, 0.18) 75%,
    transparent 100%
  );
}

/* ─── STEP CARD PREMIUM ACTIVE STATE (override) ─────────── */
.step-panel.active .step-card {
  box-shadow:
    0 20px 60px rgba(37, 51, 72, 0.1),
    0 4px 14px rgba(37, 51, 72, 0.06);
  transform: translateY(-4px);
  background: linear-gradient(165deg, rgba(255, 107, 91, 0.03) 0%, rgba(255, 255, 255, 1) 45%);
}
.step-panel.active .step-icon {
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.14), rgba(255, 107, 91, 0.06));
  box-shadow: 0 0 0 1px rgba(255, 107, 91, 0.15), 0 0 20px rgba(255, 107, 91, 0.12);
}

/* ─── PREMIUM PRICING PRO CARD (override) ───────────────── */
.pricing-card-pro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 107, 91, 0.05) 0%, rgba(255, 255, 255, 0.98) 40%);
  border-color: rgba(255, 107, 91, 0.3) !important;
  box-shadow: 0 8px 32px rgba(255, 107, 91, 0.1), 0 2px 8px rgba(255, 107, 91, 0.06);
}
.pricing-card-pro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 107, 91, 0.05), transparent);
  pointer-events: none;
  border-radius: inherit;
}

/* ─── TESTIMONIAL PREMIUM HOVER (override) ──────────────── */
.testi-card {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}
.testi-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 28px 64px rgba(37, 51, 72, 0.13),
    0 4px 14px rgba(37, 51, 72, 0.06);
}
.testi-highlight {
  background: linear-gradient(150deg, rgba(255, 107, 91, 0.07) 0%, rgba(255, 255, 255, 0.99) 55%);
  border-color: rgba(255, 107, 91, 0.18);
  box-shadow: 0 4px 24px rgba(255, 107, 91, 0.07);
}

/* ─── CINEMATIC QUOTE SECTION (override) ────────────────── */
.quote-section {
  background: linear-gradient(
    155deg,
    #0c1829 0%,
    #152840 20%,
    #1e2d45 40%,
    #2a1a35 70%,
    #15222e 100%
  );
}
.quote-bg {
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(108, 180, 230, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 60% 55% at 85% 50%, rgba(255, 107, 91, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 50% 80%, rgba(116, 75, 162, 0.06) 0%, transparent 70%);
}
.quote-text {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.55;
}
.quote-icon {
  width: 52px;
  height: 52px;
  color: rgba(255, 107, 91, 0.45);
  filter: drop-shadow(0 0 14px rgba(255, 107, 91, 0.28));
}

/* ─── ROADMAP PREMIUM GLOW (override) ───────────────────── */
.roadmap-current .roadmap-dot {
  box-shadow:
    0 0 0 4px rgba(255, 107, 91, 0.18),
    0 0 0 8px rgba(255, 107, 91, 0.06),
    0 0 28px rgba(255, 107, 91, 0.5),
    0 4px 16px rgba(255, 107, 91, 0.35);
}
.roadmap-done .roadmap-dot {
  box-shadow:
    0 0 0 4px rgba(46, 110, 74, 0.18),
    0 0 22px rgba(46, 110, 74, 0.4),
    0 4px 14px rgba(46, 110, 74, 0.25);
}
.roadmap-line-fill {
  background: linear-gradient(
    180deg,
    #2e6e4a 0%,
    #4a9e6a 25%,
    #ff8a7d 65%,
    rgba(255, 107, 91, 0.3) 100%
  );
  box-shadow: 0 0 12px rgba(255, 107, 91, 0.3);
}

/* ─── FOOTER CTA PREMIUM (override) ─────────────────────── */
.footer-cta {
  background: linear-gradient(
    155deg,
    #0c1829 0%,
    #162540 20%,
    #1f1530 55%,
    #14202f 100%
  );
}
.footer-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(
    ellipse,
    rgba(255, 107, 91, 0.14) 0%,
    rgba(108, 180, 230, 0.07) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* ─── PREMIUM TRUST BADGES (override) ───────────────────── */
.trust-badge {
  padding: 0.4rem 0.85rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(184, 224, 255, 0.3);
  box-shadow: 0 2px 10px rgba(37, 51, 72, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 51, 72, 0.09);
}

/* ─── ENHANCED REVEAL ANIMATION (override) ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Reveal from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px) scale(0.97);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Reveal from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px) scale(0.97);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ─── STAGGERED REVEAL DELAYS ────────────────────────────── */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal[data-delay="7"] { transition-delay: 0.56s; }
.reveal[data-delay="8"] { transition-delay: 0.64s; }
.reveal[data-delay="9"] { transition-delay: 0.72s; }

/* ─── STEP KICKER PREMIUM ────────────────────────────────── */
.step-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.step-kicker::before {
  content: '';
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 107, 91, 0.35);
  display: inline-block;
  transition: width 0.4s ease, background 0.4s ease;
}
.step-panel.active .step-kicker::before {
  width: 20px;
  background: #ff6b5b;
}
.step-panel.active .step-kicker {
  background: linear-gradient(90deg, #ff6b5b, #e85a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── STEP CARD ACCENT PREMIUM ───────────────────────────── */
.step-card-accent {
  background: linear-gradient(90deg, rgba(255, 107, 91, 0.5), rgba(108, 180, 230, 0.3));
  transition: opacity 0.55s ease, transform 0.55s ease;
  opacity: 0.5;
}
.step-panel.active .step-card-accent {
  opacity: 1;
  background: linear-gradient(90deg, #ff6b5b, rgba(108, 180, 230, 0.5));
}

/* ─── STEP NUMBER PREMIUM ────────────────────────────────── */
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.12), rgba(255, 107, 91, 0.06));
  border: 1.5px solid rgba(255, 107, 91, 0.2);
  color: #e85a4a;
  letter-spacing: -0.01em;
  transition: transform 0.3s ease, background 0.3s ease;
}
.step-panel.active .step-number {
  background: linear-gradient(135deg, #ff6b5b, #e85a4a);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 91, 0.4);
  transform: scale(1.1);
}

/* ─── STEP CARD TRANSITION ───────────────────────────────── */
.step-card {
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.55s ease;
}

/* ─── SCROLL PROGRESS PREMIUM ────────────────────────────── */
.steps-progress-bar {
  background: linear-gradient(180deg, #ff6b5b, rgba(255, 107, 91, 0.3));
  box-shadow: 0 0 8px rgba(255, 107, 91, 0.5);
}

/* ─── PRICING CARD HOVER ─────────────────────────────────── */
.pricing-card {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(37, 51, 72, 0.12),
    0 6px 16px rgba(37, 51, 72, 0.07);
}
.pricing-card-pro:hover {
  transform: translateY(-8px);
}

/* ─── ROADMAP ITEM HOVER ─────────────────────────────────── */
.roadmap-content {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.roadmap-item:hover .roadmap-content {
  transform: translateX(4px);
}

/* ─── HERO BADGE UPGRADE ─────────────────────────────────── */
#hero .inline-flex.gap-2.rounded-full {
  background: rgba(255, 255, 255, 0.84) !important;
  backdrop-filter: blur(22px) saturate(1.7) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  box-shadow:
    0 4px 20px rgba(37, 51, 72, 0.08),
    0 1px 4px rgba(37, 51, 72, 0.04);
}

/* ─── SECTION HEADING GRADIENT ACCENT ───────────────────── */
/* h2 in key sections gets a subtle gradient accent on first word */
#hoe-het-werkt h2,
#prijzen h2,
#reacties h2,
#roadmap h2 {
  background: linear-gradient(
    100deg,
    #1a3355 0%,
    #253348 50%,
    #2d5f8a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dark #hoe-het-werkt h2,
.dark #prijzen h2,
.dark #reacties h2,
.dark #roadmap h2 {
  background: linear-gradient(
    100deg,
    #d0e8f5 0%,
    #b8daed 50%,
    #9acae0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SOCIAL PROOF COUNTER PREMIUM ──────────────────────── */
.waitlist-count {
  background: linear-gradient(135deg, #ff6b5b, #e85a4a) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 800 !important;
}
.dark .waitlist-count {
  background: linear-gradient(135deg, #ff8a7d, #ff6b5b) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* ─── STEP PROGRESS DOT PREMIUM ─────────────────────────── */
.steps-progress-dot.active {
  background: linear-gradient(135deg, #ff6b5b, #e85a4a);
  box-shadow: 0 0 0 3px rgba(255, 107, 91, 0.2), 0 0 12px rgba(255, 107, 91, 0.4);
  transform: scale(1.3);
}

/* ─── DARK MODE — WOW ADDITIONS ──────────────────────────── */
.dark .hero-gradient {
  background:
    radial-gradient(ellipse 90% 65% at 8% 15%, rgba(108, 180, 230, 0.11) 0%, transparent 65%),
    radial-gradient(ellipse 65% 55% at 90% 20%, rgba(255, 107, 91, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 50% 90%, rgba(116, 75, 162, 0.06) 0%, transparent 70%),
    linear-gradient(160deg, #0e1016 0%, #121520 40%, #0f0d15 70%, #0e1016 100%);
}
.dark .phone-float-card {
  background: rgba(26, 28, 36, 0.92);
  border-color: rgba(255, 255, 255, 0.07);
  color: #c8ccd8;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.dark .wow-pill {
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.16), rgba(255, 107, 91, 0.08)) !important;
  border-color: rgba(255, 107, 91, 0.2) !important;
  color: #ff8a7d !important;
}
.dark .trust-badge {
  background: rgba(28, 30, 38, 0.72);
  border-color: rgba(255, 255, 255, 0.07);
}
.dark .step-panel.active .step-card {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 4px 14px rgba(0, 0, 0, 0.2);
  background: linear-gradient(165deg, rgba(255, 107, 91, 0.04) 0%, #1e2028 45%);
}
.dark .pricing-card-pro {
  background: linear-gradient(160deg, rgba(255, 107, 91, 0.08) 0%, #181a20 40%);
  border-color: rgba(255, 107, 91, 0.25) !important;
}
.dark .testi-highlight {
  background: linear-gradient(150deg, rgba(255, 107, 91, 0.07) 0%, #181a20 55%);
}
.dark .hero-headline-gradient {
  background: linear-gradient(135deg, #7ec8e8 0%, #6cb4e6 45%, #ff8a7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dark .quote-section {
  background: linear-gradient(
    155deg,
    #060c14 0%,
    #0b1626 20%,
    #101420 40%,
    #150d1e 70%,
    #0a1220 100%
  );
}
.dark .footer-cta {
  background: linear-gradient(
    155deg,
    #060c14 0%,
    #0c1828 20%,
    #120e24 55%,
    #080d16 100%
  );
}
.dark .section-divider {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(108, 180, 230, 0.14) 25%,
    rgba(255, 107, 91, 0.09) 75%,
    transparent 100%
  );
}

/* ── Pitch image breaks (parallax) ────────────────── */
.pitch-img-break {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.pitch-img-break img.pitch-img-inner {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -10%;
  margin-bottom: -10%;
  will-change: transform;
  filter: grayscale(100%) contrast(1.2);
}
.pitch-img-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 95, 138, 0.7) 0%, rgba(255, 107, 91, 0.7) 100%);
  mix-blend-mode: color;
  pointer-events: none;
}

/* ── Pitch promo card ──────────────────────────────── */
.pitch-promo-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2.5rem 2.5rem;
  background: linear-gradient(135deg, #fffaf9 0%, #fff4f2 50%, #f7f8ff 100%);
  border: 1px solid rgba(255, 107, 91, 0.15);
  box-shadow: 0 4px 24px rgba(255, 107, 91, 0.06), 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden;
}
@media (min-width: 640px) {
  .pitch-promo-card {
    padding: 3rem 3.5rem;
  }
}
.dark .pitch-promo-card {
  background: linear-gradient(135deg, #111827 0%, #0f1c30 50%, #120f1e 100%);
  border-color: rgba(255, 107, 91, 0.18);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,107,91,0.08);
}

.pitch-chapter-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.85rem 1rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pitch-chapter-item:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(255, 107, 91, 0.25);
  transform: translateX(3px);
  box-shadow: 0 2px 12px rgba(255,107,91,0.08);
}
.dark .pitch-chapter-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.dark .pitch-chapter-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255, 107, 91, 0.3);
  box-shadow: 0 2px 14px rgba(255,107,91,0.1);
}

.pitch-chapter-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,107,91,0.12), rgba(255,107,91,0.06));
  border: 1px solid rgba(255,107,91,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #e84e39;
}
.dark .pitch-chapter-num {
  background: rgba(255,107,91,0.12);
  border-color: rgba(255,107,91,0.25);
  color: #ff8577;
}
