/* ═══════════════════════════════════════════════════════════════════
   dAIting.ai — Landing Page
   ═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #07080f;
  --bg2:     #0c0e1c;
  --card:    rgba(14,17,32,.88);
  --text:    #f0f2fc;
  --muted:   #7c87a4;
  --muted2:  #4a526a;
  --line:    rgba(255,255,255,.08);
  --pink:    #ff4f8b;
  --purple:  #7a5cff;
  --gold:    #ffd166;
  --teal:    #00d4ff;
  --green:   #34d399;
  --gp:      rgba(255,79,139,.28);
  --gpu:     rgba(122,92,255,.28);
  --r:       22px;
  --t:       0.22s cubic-bezier(.25,.46,.45,.94);
  /* App-matched glassmorphism tokens (mirror daiting-ai.css app shell) */
  --line-bright: rgba(255,255,255,.14);
  --blur:    blur(14px) saturate(1.6);
  --shadow-lg: 0 24px 80px rgba(0,0,0,.55);
  --card-glow: 0 0 80px rgba(122,92,255,.12);
}

html { scroll-behavior: smooth; }

body.dl-body {
  background: #07080f;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* App-matched: page-wide ambient glow (mirrors .daiting-standalone-body) */
body.dl-body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(122,92,255,.18), transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 25%, rgba(255,79,139,.12), transparent 55%),
    radial-gradient(ellipse 55% 55% at 0% 85%, rgba(0,212,255,.07), transparent 55%);
}
/* App-matched: 3px gradient accent bar pinned to top of viewport */
body.dl-body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 2000;
  pointer-events: none;
  background: linear-gradient(90deg, #ff4f8b 0%, #7a5cff 50%, #00d4ff 100%);
}

.dl-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Scroll reveal ─────────────────────────────────────────────────── */
.dl-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--t), transform .6s var(--t); }
.dl-reveal.is-visible { opacity: 1; transform: none; }
.dl-reveal-delay-1 { transition-delay: .1s; }
.dl-reveal-delay-2 { transition-delay: .2s; }
.dl-reveal-delay-3 { transition-delay: .3s; }
.dl-reveal-delay-4 { transition-delay: .4s; }

/* ── Nav ───────────────────────────────────────────────────────────── */
.dl-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 24px;
  backdrop-filter: blur(16px) saturate(1.6);
  background: rgba(7,8,15,.92);
  border-bottom: 1px solid var(--line);
}
.dl-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.dl-nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.ai-gold { color: var(--gold); filter: drop-shadow(0 0 8px rgba(255,209,102,.4)); }
.dl-nav-logo .ai-gold { color: var(--gold); filter: drop-shadow(0 0 8px rgba(255,209,102,.4)); }
.dl-nav-logo .dot { color: rgba(255,255,255,.3); }
.dl-nav-links { display: flex; align-items: center; gap: 6px; }
.dl-nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t);
}
.dl-nav-links a:hover { color: var(--text); }
.dl-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  transition: opacity var(--t), box-shadow var(--t), transform var(--t);
}
.dl-btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
}
.dl-btn-ghost:hover { border-color: rgba(255,255,255,.2); color: var(--text); }
.dl-btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 4px 18px var(--gp);
}
.dl-btn-primary:hover { opacity: .9; box-shadow: 0 6px 28px var(--gp), 0 0 40px var(--gpu); transform: translateY(-1px); }
.dl-btn-lg { padding: 14px 28px; font-size: 15px; }
.dl-btn-xl { padding: 16px 34px; font-size: 16px; }

/* ── Hero ──────────────────────────────────────────────────────────── */
.dl-hero {
  min-height: calc(100dvh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 24px 80px;
  position: relative;
  overflow: hidden;
}
.dl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 40%, rgba(122,92,255,.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(255,79,139,.14), transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(0,212,255,.08), transparent 50%);
  pointer-events: none;
}
.dl-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.dl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(122,92,255,.12);
  border: 1px solid rgba(122,92,255,.3);
  color: #a78bfa;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.dl-hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: dl-pulse 2s ease-in-out infinite;
}
@keyframes dl-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.dl-hero-h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.dl-hero-h1 .grad {
  background: linear-gradient(135deg, #fff 0%, var(--pink) 55%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dl-hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}
.dl-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.dl-hero-social {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.dl-hero-social-item {
  font-size: 13px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dl-hero-social-item strong { color: var(--text); font-size: 18px; font-weight: 800; }

/* ── Hero app mockup ───────────────────────────────────────────────── */
.dl-hero-mockup {
  background: var(--card);
  border: 1px solid rgba(255,79,139,.2);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(255,79,139,.06) inset;
  animation: dl-float 6s ease-in-out infinite;
}
@keyframes dl-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.dl-mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.dl-mock-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted2); }
.dl-mock-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .06em;
}
.dl-mock-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: dl-pulse 1.5s ease-in-out infinite;
}

.dl-mock-profiles {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.dl-mock-profile {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dl-mock-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}
.dl-mock-avatar-a { background: linear-gradient(135deg, var(--pink), #c026d3); }
.dl-mock-avatar-b { background: linear-gradient(135deg, var(--purple), var(--teal)); }
.dl-mock-name { font-size: 13px; font-weight: 700; color: var(--text); }
.dl-mock-role { font-size: 11px; color: var(--muted); margin-top: 1px; }

.dl-mock-chat { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.dl-mock-bubble {
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 82%;
}
.dl-mock-bubble-a {
  align-self: flex-start;
  background: rgba(122,92,255,.14);
  border: 1px solid rgba(122,92,255,.25);
  border-radius: 14px 14px 14px 3px;
  color: var(--text);
}
.dl-mock-bubble-b {
  align-self: flex-end;
  background: rgba(255,79,139,.12);
  border: 1px solid rgba(255,79,139,.25);
  border-radius: 14px 14px 3px 14px;
  color: var(--text);
}
.dl-mock-typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 14px;
  background: rgba(255,255,255,.05);
  border-radius: 14px;
}
.dl-mock-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--muted);
  animation: dl-typing 1.2s ease-in-out infinite;
}
.dl-mock-typing span:nth-child(2) { animation-delay: .2s; }
.dl-mock-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes dl-typing { 0%,80%,100%{transform:scale(1);opacity:.4} 40%{transform:scale(1.3);opacity:1} }

.dl-mock-score {
  background: linear-gradient(135deg, rgba(52,211,153,.08), rgba(122,92,255,.08));
  border: 1px solid rgba(52,211,153,.25);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dl-mock-score-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.dl-mock-score-val { font-size: 22px; font-weight: 900; color: var(--green); }
.dl-mock-chips { display: flex; gap: 5px; margin-top: 6px; flex-wrap: wrap; }
.dl-mock-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(52,211,153,.12);
  border: 1px solid rgba(52,211,153,.25);
  color: var(--green);
}

.dl-mock-footer {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--muted2);
  font-style: italic;
}
.dl-mock-footer strong { color: var(--muted); font-style: normal; }

/* ── Trust strip ───────────────────────────────────────────────────── */
.dl-trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
}
.dl-trust-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.dl-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted2);
  white-space: nowrap;
}
.dl-trust-item span { font-size: 16px; }

/* ── Section shared ────────────────────────────────────────────────── */
.dl-section { padding: 96px 24px; }
.dl-section-alt { background: var(--bg2); }

.dl-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.dl-section-h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.dl-section-h2 .grad {
  background: linear-gradient(135deg, #fff 30%, var(--pink) 70%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dl-section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ── How it works ──────────────────────────────────────────────────── */
.dl-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.dl-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  position: relative;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.dl-step:hover {
  border-color: rgba(255,79,139,.3);
  box-shadow: 0 16px 50px rgba(0,0,0,.4);
  transform: translateY(-4px);
}
.dl-step::after {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dl-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.dl-step-icon-1 { background: rgba(122,92,255,.15); }
.dl-step-icon-2 { background: rgba(255,79,139,.15); }
.dl-step-icon-3 { background: rgba(0,212,255,.12); }
.dl-step-icon-4 { background: rgba(52,211,153,.12); }
.dl-step h3 { font-size: 17px; font-weight: 750; margin-bottom: 8px; }
.dl-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Feature sections ──────────────────────────────────────────────── */
.dl-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
.dl-feature-grid.dl-flip { direction: rtl; }
.dl-feature-grid.dl-flip > * { direction: ltr; }

/* ── Lounge mockup ─────────────────────────────────────────────────── */
.dl-lounge-preview {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}
.dl-lounge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.dl-lounge-room-name { font-weight: 700; font-size: 15px; }
.dl-lounge-count { font-size: 12px; color: var(--green); font-weight: 600; }
.dl-lounge-grid-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.dl-lounge-bot-mock {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  position: relative;
  transition: border-color var(--t);
}
.dl-lounge-bot-mock:hover { border-color: rgba(255,79,139,.3); }
.dl-lounge-bot-mock.is-active { border-color: rgba(52,211,153,.35); }
.dl-lounge-bot-mock .dl-mock-avatar {
  width: 36px; height: 36px;
  margin: 0 auto 6px;
  border-radius: 10px;
  font-size: 16px;
}
.dl-lounge-bot-mock .name { font-size: 12px; font-weight: 700; color: var(--text); }
.dl-lounge-bot-mock .status { font-size: 10px; color: var(--muted); margin-top: 2px; }
.dl-active-badge {
  position: absolute;
  top: 6px; right: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: dl-pulse 1.8s ease-in-out infinite;
}
.dl-lounge-activity {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dl-lounge-activity strong { color: var(--text); }
.dl-lounge-activity-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }

/* ── Compatibility bars ────────────────────────────────────────────── */
.dl-compat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}
.dl-compat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.dl-compat-title { font-size: 15px; font-weight: 700; }
.dl-compat-score-big { font-size: 32px; font-weight: 900; color: var(--green); }
.dl-compat-dim { margin-bottom: 14px; }
.dl-compat-dim-label {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 5px;
}
.dl-compat-dim-label span:last-child { color: var(--text); }
.dl-bar-track {
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 99px;
  overflow: hidden;
}
.dl-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(.25,.46,.45,.94);
}
.dl-bar-fill.is-visible { transform: scaleX(var(--w)); }

/* ── Voice wave ────────────────────────────────────────────────────── */
.dl-voice-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dl-voice-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(122,92,255,.12), transparent 60%);
  pointer-events: none;
}
.dl-voice-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 80px;
  margin: 40px auto 48px;
}
.dl-wave-bar {
  width: 5px;
  border-radius: 99px;
  background: linear-gradient(to top, var(--pink), var(--purple));
  animation: dl-wave 1.4s ease-in-out infinite;
}
.dl-wave-bar:nth-child(1)  { height: 20px; animation-delay: 0s; }
.dl-wave-bar:nth-child(2)  { height: 38px; animation-delay: .1s; }
.dl-wave-bar:nth-child(3)  { height: 56px; animation-delay: .2s; }
.dl-wave-bar:nth-child(4)  { height: 68px; animation-delay: .3s; }
.dl-wave-bar:nth-child(5)  { height: 76px; animation-delay: .4s; }
.dl-wave-bar:nth-child(6)  { height: 68px; animation-delay: .5s; }
.dl-wave-bar:nth-child(7)  { height: 52px; animation-delay: .4s; }
.dl-wave-bar:nth-child(8)  { height: 64px; animation-delay: .3s; }
.dl-wave-bar:nth-child(9)  { height: 76px; animation-delay: .2s; }
.dl-wave-bar:nth-child(10) { height: 60px; animation-delay: .1s; }
.dl-wave-bar:nth-child(11) { height: 44px; animation-delay: 0s; }
.dl-wave-bar:nth-child(12) { height: 28px; animation-delay: .1s; }
.dl-wave-bar:nth-child(13) { height: 16px; animation-delay: .2s; }
@keyframes dl-wave { 0%,100%{transform:scaleY(.4);opacity:.6} 50%{transform:scaleY(1);opacity:1} }

.dl-questions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto 48px;
}
.dl-question-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
  transition: all var(--t);
}
.dl-question-pill.active {
  background: rgba(255,79,139,.1);
  border-color: rgba(255,79,139,.3);
  color: var(--text);
}

/* ── Ladies Night callout ──────────────────────────────────────────── */
.dl-ladies-night {
  background: linear-gradient(135deg, rgba(255,79,139,.1), rgba(255,209,102,.06));
  border: 1px solid rgba(255,209,102,.25);
  border-radius: var(--r);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 64px;
  flex-wrap: wrap;
}
.dl-ladies-night h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: var(--gold); }
.dl-ladies-night p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.dl-ladies-badge {
  font-size: 40px;
  flex-shrink: 0;
}

/* ── Pricing ───────────────────────────────────────────────────────── */
.dl-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 56px auto 0;
}
.dl-tier-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.dl-tier-card:hover { border-color: rgba(255,79,139,.3); box-shadow: 0 20px 60px rgba(0,0,0,.4); transform: translateY(-4px); }
.dl-tier-card.featured {
  border-color: rgba(122,92,255,.4);
  box-shadow: 0 24px 70px rgba(122,92,255,.18);
}
.dl-tier-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.dl-tier-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 10px;
}
.dl-tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.dl-tier-price-amount { font-size: 40px; font-weight: 900; color: var(--text); }
.dl-tier-price-period { font-size: 14px; color: var(--muted); }
.dl-tier-desc { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; min-height: 44px; }
.dl-tier-cta { width: 100%; text-align: center; margin-bottom: 24px; }
.dl-tier-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dl-tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}
.dl-tier-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.dl-tier-features li.dim::before { content: '–'; color: var(--muted2); }
.dl-tier-features li.dim { color: var(--muted2); }

/* ── Footer CTA ────────────────────────────────────────────────────── */
.dl-footer-cta {
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.dl-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(122,92,255,.12), transparent 65%);
  pointer-events: none;
}
.dl-footer-cta h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.dl-footer-cta p {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.dl-footer-cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────────────── */
.dl-footer {
  border-top: 1px solid var(--line);
  padding: 32px 24px;
}
.dl-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.dl-footer-copy { font-size: 13px; color: var(--muted2); }
.dl-footer-links { display: flex; gap: 20px; }
.dl-footer-links a { font-size: 13px; color: var(--muted2); text-decoration: none; transition: color var(--t); }
.dl-footer-links a:hover { color: var(--text); }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dl-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .dl-hero-mockup { max-width: 480px; margin: 0 auto; }
  .dl-hero { padding: 60px 24px; min-height: auto; }
  .dl-how-grid { grid-template-columns: 1fr 1fr; }
  .dl-feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .dl-feature-grid.dl-flip { direction: ltr; }
  .dl-tier-grid { grid-template-columns: 1fr; max-width: 440px; }
  .dl-tier-card.featured { order: -1; }
  .dl-nav-links { display: none; }
}
@media (max-width: 600px) {
  .dl-how-grid { grid-template-columns: 1fr; }
  .dl-lounge-grid-mock { grid-template-columns: repeat(2, 1fr); }
  .dl-ladies-night { text-align: center; justify-content: center; }
  .dl-section { padding: 64px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   App-matched look & feel — glassmorphic surfaces + ambient glow
   Mirrors the .daiting-shell / .da-auth-card treatment in daiting-ai.css
   so the marketing page reads as the same product as the internal app.
   (Appended last so it overrides the flat-surface defaults above.)
   ═══════════════════════════════════════════════════════════════════ */

/* Glass card surfaces — translucent fill, blur, brighter edge, purple glow */
.dl-hero-mockup,
.dl-lounge-preview,
.dl-compat-card,
.dl-tier-card,
.dl-ladies-night,
.dl-voice-wave {
  background: rgba(14, 17, 32, 0.72);
  border: 1px solid var(--line-bright);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  box-shadow: var(--shadow-lg), var(--card-glow);
}

/* Featured Premium tier — stronger pink/purple glow to draw the eye */
.dl-tier-card.featured {
  border-color: rgba(122, 92, 255, 0.45);
  box-shadow: var(--shadow-lg), 0 0 90px rgba(122, 92, 255, 0.22);
}

/* Alt sections: let the body glow show through instead of a flat slab */
.dl-section-alt { background: rgba(12, 14, 28, 0.45); }

/* Trust strip: subtle glass band rather than opaque bar */
.dl-trust {
  background: rgba(12, 14, 28, 0.40);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  backdrop-filter: blur(10px) saturate(1.4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Logo AI mark: match the app's gold drop-shadow glow intensity */
.dl-nav-logo .ai-gold,
.ai-gold { filter: drop-shadow(0 0 12px rgba(255, 209, 102, 0.55)); }

/* ── Reserve-Premium waitlist modal ─────────────────────────────────── */
.dl-tier-beta-note { margin-top: 10px; font-size: 12px; color: var(--muted2); text-align: center; }
.dl-wl-overlay {
  position: fixed; inset: 0; z-index: 3000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(4, 5, 12, 0.72);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.dl-wl-overlay.is-open { display: flex; animation: dl-wl-fade .2s ease; }
@keyframes dl-wl-fade { from { opacity: 0; } to { opacity: 1; } }
.dl-wl-card {
  position: relative;
  width: min(440px, 100%);
  background: rgba(14, 17, 32, 0.92);
  border: 1px solid var(--line-bright);
  border-radius: var(--r);
  padding: 36px 32px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 90px rgba(122, 92, 255, 0.22);
  -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur);
  animation: dl-wl-pop .24s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes dl-wl-pop { from { transform: translateY(14px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.dl-wl-close {
  position: absolute; top: 12px; right: 14px;
  background: transparent; border: 0; color: var(--muted);
  font-size: 26px; line-height: 1; cursor: pointer; transition: color var(--t);
}
.dl-wl-close:hover { color: var(--text); }
.dl-wl-badge {
  width: 54px; height: 54px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,79,139,.18), rgba(122,92,255,.18));
  border: 1px solid var(--line-bright);
}
.dl-wl-card h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.dl-wl-card h3 .dl-wl-tier-name {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dl-wl-sub { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 22px; }
.dl-wl-sub strong { color: var(--text); }
#dl-wl-form { display: flex; flex-direction: column; gap: 12px; }
#dl-wl-email {
  width: 100%; padding: 13px 16px; font-size: 15px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-bright);
  border-radius: 12px; color: var(--text); outline: none; transition: border-color var(--t);
}
#dl-wl-email::placeholder { color: var(--muted2); }
#dl-wl-email:focus { border-color: rgba(122,92,255,.6); }
.dl-wl-status { min-height: 18px; margin-top: 12px; font-size: 13px; }
.dl-wl-status.is-success { color: var(--green); }
.dl-wl-status.is-error { color: #ff6b6b; }
