/* Dosina Connect — Homepage v2 (premium community) */
:root {
  --dc-ink: #14101f;
  --dc-ink-soft: #3b3354;
  --dc-muted: #6b6280;
  --dc-line: rgba(139, 92, 246, 0.14);
  --dc-bg: #fff7fb;
  --dc-surface: #ffffff;
  --dc-surface-2: rgba(255, 255, 255, 0.78);
  --dc-accent: #db2777;
  --dc-accent-2: #7c3aed;
  --dc-accent-3: #0891b2;
  --dc-glow: rgba(219, 39, 119, 0.22);
  --dc-radius: 1.5rem;
  --dc-radius-lg: 2rem;
  --dc-shadow: 0 24px 60px rgba(124, 58, 237, 0.12);
  --dc-shadow-lg: 0 40px 100px rgba(219, 39, 119, 0.16);
  --dc-font-display: var(--font-display, "Fraunces", Georgia, serif);
  --dc-font-body: var(--font-body, "Manrope", "Segoe UI", sans-serif);
  --dc-nav-h: 76px;
  --dc-max: 1180px;
  --dc-pride: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #24408e, #732982);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  body.dc-home.dc-home-auto-dark {
    --dc-ink: #f8fafc;
    --dc-ink-soft: #cbd5e1;
    --dc-muted: #94a3b8;
    --dc-line: rgba(248, 250, 252, 0.1);
    --dc-bg: #070b14;
    --dc-surface: #111827;
    --dc-surface-2: rgba(17, 24, 39, 0.75);
    --dc-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --dc-shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.45);
    color-scheme: dark;
  }
}

body.dc-home {
  font-family: var(--dc-font-body);
  color: var(--dc-ink);
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(244, 114, 182, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 35% at 100% 8%, rgba(125, 211, 252, 0.22), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(167, 139, 250, 0.16), transparent 55%),
    linear-gradient(180deg, #fff9fc 0%, #f7f4ff 45%, #eefbff 100%);
  overflow-x: hidden;
}

body.dc-home .dc-home-main {
  padding: 0 !important;
  max-width: none !important;
  width: 100%;
}

body.dc-home .dating-footer { display: none !important; }

.dc-wrap {
  width: min(100% - 2rem, var(--dc-max));
  margin-inline: auto;
}

.dc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dc-accent);
  margin-bottom: 0.85rem;
}

.dc-title {
  font-family: var(--dc-font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  color: var(--dc-ink);
}

.dc-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dc-muted);
  max-width: 38rem;
  margin: 0;
}

.dc-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.dc-section--tight { padding-top: 2.5rem; }

/* Meet IRL */
.dc-meet-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .dc-meet-grid {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: auto auto;
  }
  .dc-meet-card--wide { grid-row: 1 / span 2; }
}

.dc-meet-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--dc-radius-lg);
  min-height: 260px;
  background: #fff;
  border: 1px solid var(--dc-line);
  box-shadow: var(--dc-shadow);
}

.dc-meet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 260px;
}

.dc-meet-card--wide img { min-height: 100%; }

.dc-meet-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(20, 16, 31, 0.82));
}

.dc-meet-card--accent {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.25), transparent 40%),
    linear-gradient(145deg, #db2777, #7c3aed 55%, #0891b2);
  border: 0;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.dc-meet-card--accent .dc-meet-copy {
  position: relative;
  background: transparent;
  padding: 1.5rem;
}

.dc-meet-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.65rem;
}

.dc-meet-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.dc-meet-card p {
  margin: 0;
  opacity: 0.92;
  line-height: 1.55;
}

.dc-meet-points {
  list-style: none;
  margin: 1rem 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.dc-meet-points li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.dc-meet-points i { color: #fce7f3; }

/* Header */
.dc-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--dc-nav-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
  background: transparent;
}

.dc-nav.is-scrolled {
  background: var(--dc-surface-2);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 10px 30px rgba(12, 18, 34, 0.06);
  border-bottom: 1px solid var(--dc-line);
}

.dc-nav-inner {
  width: min(100% - 1.5rem, var(--dc-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.dc-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--dc-ink);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.dc-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #db2777, #7c3aed 55%, #0891b2);
  color: #fff;
  box-shadow: 0 12px 28px var(--dc-glow);
  font-size: 1rem;
}

.dc-nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dc-nav-links a {
  text-decoration: none;
  color: var(--dc-ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.dc-nav-links a:hover,
.dc-nav-links a:focus-visible {
  background: rgba(15, 118, 110, 0.08);
  color: var(--dc-ink);
  outline: none;
}

.dc-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.dc-btn:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.35);
  outline-offset: 2px;
}

.dc-btn:hover { transform: translateY(-1px); }

.dc-btn--ghost {
  background: transparent;
  color: var(--dc-ink);
  border-color: var(--dc-line);
}

.dc-btn--ghost:hover {
  background: var(--dc-surface);
  box-shadow: var(--dc-shadow);
}

.dc-btn--primary {
  background: linear-gradient(135deg, #db2777, #7c3aed 55%, #2563eb);
  color: #fff;
  box-shadow: 0 14px 34px var(--dc-glow);
}

.dc-btn--primary:hover {
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.32);
  color: #fff;
}

.dc-btn--light {
  background: #fff;
  color: var(--dc-ink);
  box-shadow: var(--dc-shadow);
}

.dc-btn--light:hover { color: var(--dc-ink); }

.dc-btn--lg {
  min-height: 54px;
  padding-inline: 1.55rem;
  font-size: 1rem;
}

.dc-nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 1px solid var(--dc-line);
  border-radius: 14px;
  background: var(--dc-surface);
  align-items: center;
  justify-content: center;
  color: var(--dc-ink);
}

.dc-nav-panel {
  display: none;
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: calc(100% + 0.35rem);
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: var(--dc-radius);
  box-shadow: var(--dc-shadow-lg);
  padding: 0.75rem;
  z-index: 20;
}

.dc-nav-panel.is-open { display: grid; gap: 0.25rem; }

.dc-nav-panel a {
  text-decoration: none;
  color: var(--dc-ink);
  font-weight: 600;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
}

.dc-nav-panel a:hover { background: rgba(15, 118, 110, 0.08); }

@media (min-width: 1100px) {
  .dc-nav-links { display: flex; }
  .dc-nav-toggle { display: none; }
}

/* Hero */
.dc-hero {
  position: relative;
  min-height: calc(100dvh - var(--dc-nav-h));
  display: grid;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}

.dc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(244, 114, 182, 0.28), transparent 60%),
    radial-gradient(ellipse 55% 45% at 90% 10%, rgba(125, 211, 252, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 90%, rgba(167, 139, 250, 0.22), transparent 50%),
    linear-gradient(180deg, #fff8fc 0%, #f3f0ff 100%);
}

.dc-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  mix-blend-mode: multiply;
  transform: scale(1.04);
}

.dc-pride-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--dc-pride);
  opacity: 0.85;
}

.dc-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: dcFloat 9s ease-in-out infinite;
}

.dc-hero-orb--1 {
  width: 280px; height: 280px; left: -40px; top: 18%;
  background: rgba(244, 114, 182, 0.45);
}

.dc-hero-orb--2 {
  width: 220px; height: 220px; right: 8%; top: 12%;
  background: rgba(56, 189, 248, 0.35);
  animation-delay: -3s;
}

.dc-hero-orb--3 {
  width: 180px; height: 180px; right: 22%; bottom: 8%;
  background: rgba(167, 139, 250, 0.4);
  animation-delay: -5s;
}

@keyframes dcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .dc-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.dc-hero-brand {
  font-family: var(--dc-font-display);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 1rem;
  background: linear-gradient(120deg, #14101f 8%, #db2777 38%, #7c3aed 68%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dc-hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--dc-ink-soft);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.dc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.dc-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--dc-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.dc-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dc-hero-trust i { color: var(--dc-accent); }

.dc-hero-visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  padding: 1.35rem 1.6rem 1.5rem;
}

.dc-hero-canvas {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--dc-shadow-lg);
  border: 1px solid rgba(255,255,255,0.7);
  background: linear-gradient(135deg, #f9a8d4, #c4b5fd);
}

.dc-hero-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.dc-avatar-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 6px 14px rgba(12, 18, 34, 0.12);
}

.dc-avatar-img:first-child { margin-left: 0; }
.dc-avatar-img--md { width: 40px; height: 40px; margin-left: 0; }
.dc-avatar-img--lg { width: 56px; height: 56px; margin-left: 0; }

.dc-badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #9d174d;
  background: rgba(244, 114, 182, 0.16);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

.dc-float-card {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 1rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
  padding: 0.7rem 0.85rem;
  animation: dcFloat 7s ease-in-out infinite;
  pointer-events: none;
}

/* Tuck cards into corners so faces stay clear */
.dc-float-card--a {
  left: 0;
  top: 0;
  width: min(178px, 52%);
  animation-delay: -1s;
}

.dc-float-card--b {
  right: 0;
  top: auto;
  bottom: 22%;
  width: min(172px, 50%);
  animation-delay: -2.5s;
}

.dc-float-card--c {
  left: 0;
  bottom: 0;
  width: min(205px, 60%);
  animation-delay: -4s;
}

.dc-float-people {
  display: flex;
  align-items: center;
}

.dc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 8px 18px rgba(12, 18, 34, 0.12);
}

.dc-avatar:first-child { margin-left: 0; }

.dc-avatar--1 { background: linear-gradient(145deg, #0f766e, #134e4a); }
.dc-avatar--2 { background: linear-gradient(145deg, #be185d, #9d174d); }
.dc-avatar--3 { background: linear-gradient(145deg, #4338ca, #312e81); }
.dc-avatar--4 { background: linear-gradient(145deg, #b45309, #92400e); }
.dc-avatar--5 { background: linear-gradient(145deg, #0369a1, #0c4a6e); }
.dc-avatar--lg { width: 56px; height: 56px; font-size: 1rem; }
.dc-member-photo.dc-avatar--1,
.dc-member-photo.dc-avatar--2,
.dc-member-photo.dc-avatar--3,
.dc-member-photo.dc-avatar--4,
.dc-member-photo.dc-avatar--5 {
  background-image: inherit;
}
.dc-member-photo.dc-avatar--1 { background: linear-gradient(160deg, #14b8a6, #0f766e 55%, #134e4a); }
.dc-member-photo.dc-avatar--2 { background: linear-gradient(160deg, #f472b6, #be185d 55%, #9d174d); }
.dc-member-photo.dc-avatar--3 { background: linear-gradient(160deg, #818cf8, #4338ca 55%, #312e81); }
.dc-member-photo.dc-avatar--4 { background: linear-gradient(160deg, #fbbf24, #b45309 55%, #92400e); }
.dc-member-photo.dc-avatar--5 { background: linear-gradient(160deg, #38bdf8, #0369a1 55%, #0c4a6e); }

.dc-float-card strong {
  display: block;
  font-size: 0.82rem;
  margin-top: 0.4rem;
  line-height: 1.25;
  color: var(--dc-ink);
}

.dc-float-card span {
  font-size: 0.7rem;
  line-height: 1.3;
  color: var(--dc-muted);
}

@media (max-width: 575.98px) {
  .dc-hero-visual {
    padding: 1rem 0.85rem 1.15rem;
    max-width: 420px;
  }

  .dc-float-card {
    padding: 0.55rem 0.65rem;
  }

  .dc-float-card--a { width: min(150px, 48%); }
  .dc-float-card--b { width: min(148px, 48%); bottom: 26%; }
  .dc-float-card--c { width: min(175px, 58%); }

  .dc-float-card strong { font-size: 0.74rem; }
  .dc-float-card span { font-size: 0.64rem; }
  .dc-avatar-img { width: 28px; height: 28px; }
  .dc-avatar-img--md { width: 34px; height: 34px; }
}

/* Stats */
.dc-stats {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.dc-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: var(--dc-radius-lg);
  box-shadow: var(--dc-shadow);
  padding: 1rem;
}

@media (min-width: 768px) {
  .dc-stats-grid {
    grid-template-columns: repeat(5, 1fr);
    padding: 1.25rem;
    gap: 0.5rem;
  }
}

.dc-stat {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 1.1rem;
}

.dc-stat-value {
  font-family: var(--dc-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--dc-ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.dc-stat-label {
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--dc-muted);
  line-height: 1.35;
}

/* Cards / grids */
.dc-grid-3 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .dc-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}

.dc-grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .dc-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
}

.dc-card {
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: var(--dc-radius);
  padding: 1.35rem;
  box-shadow: 0 10px 30px rgba(12, 18, 34, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dc-shadow);
  border-color: rgba(219, 39, 119, 0.28);
}

.dc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, rgba(244, 114, 182, 0.2), rgba(125, 211, 252, 0.22), rgba(167, 139, 250, 0.2));
  color: #db2777;
  font-size: 1.25rem;
}

.dc-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}

.dc-card p {
  margin: 0;
  color: var(--dc-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.dc-cat-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--dc-radius);
  padding: 1.4rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--dc-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  isolation: isolate;
}

.dc-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dc-shadow-lg);
  color: #fff;
}

.dc-cat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.dc-cat-card:hover .dc-cat-img {
  transform: scale(1.08);
}

.dc-cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 16, 31, 0.15) 10%, rgba(20, 16, 31, 0.78) 78%),
    linear-gradient(145deg, rgba(219, 39, 119, 0.22), rgba(124, 58, 237, 0.18));
}

.dc-cat-card > *:not(.dc-cat-img) { position: relative; z-index: 2; }

.dc-cat-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.dc-cat-card p {
  margin: 0;
  opacity: 0.95;
  font-size: 0.88rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.dc-cat--friend { background: #0f766e; }
.dc-cat--dating { background: #be185d; }
.dc-cat--network { background: #4338ca; }
.dc-cat--events { background: #0369a1; }
.dc-cat--support { background: #b45309; }
.dc-cat--local { background: #0e7490; }

/* Members */
.dc-member {
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: var(--dc-radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(12, 18, 34, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dc-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--dc-shadow);
}

.dc-member-photo {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f9a8d4, #c4b5fd);
}

.dc-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dc-member-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(20, 16, 31, 0.5));
  pointer-events: none;
}

.dc-member-body { padding: 1rem 1.1rem 1.2rem; }

.dc-member-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.dc-member-top h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.dc-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #9d174d;
  background: rgba(244, 114, 182, 0.16);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.dc-blur-line {
  filter: blur(5px);
  user-select: none;
  color: var(--dc-muted);
  font-size: 0.85rem;
  margin: 0;
}

.dc-member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.dc-member-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dc-ink-soft);
  background: rgba(15, 23, 42, 0.05);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}

/* Events timeline */
.dc-timeline {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .dc-timeline {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.dc-event {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  border-radius: var(--dc-radius);
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dc-event:hover {
  transform: translateY(-3px);
  box-shadow: var(--dc-shadow);
}

.dc-event-date {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dc-accent);
}

.dc-event h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.dc-event p {
  margin: 0;
  color: var(--dc-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.dc-map-card {
  border-radius: var(--dc-radius-lg);
  background:
    linear-gradient(165deg, rgba(255,255,255,0.92), rgba(241, 245, 249, 0.88)),
    radial-gradient(circle at 22% 28%, rgba(167, 139, 250, 0.18), transparent 42%),
    radial-gradient(circle at 78% 62%, rgba(14, 165, 233, 0.12), transparent 40%);
  border: 1px solid var(--dc-line);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  padding: 0.85rem 0.85rem 5.6rem;
  display: flex;
  flex-direction: column;
}

.dc-map-stage {
  position: relative;
  flex: 1;
  min-height: 340px;
  display: grid;
  place-items: center;
}

.dc-map-india {
  width: min(100%, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(76, 29, 149, 0.12));
  pointer-events: none;
  user-select: none;
}

.dc-map-pins {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(100%, 340px);
  aspect-ratio: 612 / 696;
}

.dc-map-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f766e;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.16);
  animation: dcPulse 2.4s ease-out infinite;
  z-index: 2;
}

.dc-map-pin--metro {
  width: 13px;
  height: 13px;
  background: #db2777;
  box-shadow: 0 0 0 7px rgba(219, 39, 119, 0.18);
  animation-name: dcPulseMetro;
}

.dc-map-pin--t1 {
  width: 10px;
  height: 10px;
  background: #7c3aed;
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.16);
  animation-name: dcPulseT1;
}

.dc-map-pin--t2 {
  width: 7px;
  height: 7px;
  background: #0891b2;
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.14);
  animation: none;
}

@keyframes dcPulse {
  0% { box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.35); }
  100% { box-shadow: 0 0 0 14px rgba(15, 118, 110, 0); }
}

@keyframes dcPulseMetro {
  0% { box-shadow: 0 0 0 0 rgba(219, 39, 119, 0.4); }
  100% { box-shadow: 0 0 0 16px rgba(219, 39, 119, 0); }
}

@keyframes dcPulseT1 {
  0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.35); }
  100% { box-shadow: 0 0 0 14px rgba(124, 58, 237, 0); }
}

.dc-map-label {
  position: absolute;
  transform: translate(-50%, calc(-100% - 10px));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(255,255,255,0.9);
  z-index: 3;
  pointer-events: none;
}

.dc-map-label--metro {
  font-size: 0.72rem;
  padding: 0.28rem 0.62rem;
}

.dc-map-legend {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 650;
  color: var(--dc-ink);
  z-index: 4;
}

.dc-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--dc-muted);
}

.dc-map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dc-map-dot--metro { background: #db2777; }
.dc-map-dot--t1 { background: #7c3aed; }
.dc-map-dot--t2 { background: #0891b2; }

.dc-map-foot {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  z-index: 4;
}

.dc-map-foot strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--dc-ink);
}

.dc-map-foot span {
  color: var(--dc-muted);
  font-size: 0.86rem;
}

@media (max-width: 575.98px) {
  .dc-map-card {
    min-height: 380px;
    padding-bottom: 5.8rem;
  }

  .dc-map-india,
  .dc-map-pins {
    width: min(100%, 280px);
  }

  .dc-map-label {
    font-size: 0.6rem;
    padding: 0.18rem 0.45rem;
  }

  .dc-map-legend {
    font-size: 0.64rem;
    gap: 0.35rem 0.55rem;
    padding: 0.32rem 0.55rem;
  }
}

/* Stories slider */
.dc-stories {
  position: relative;
}

.dc-story-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.dc-story-track::-webkit-scrollbar { display: none; }

.dc-story {
  flex: 0 0 min(86vw, 360px);
  scroll-snap-align: start;
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: var(--dc-radius);
  padding: 1.35rem;
  box-shadow: 0 12px 30px rgba(12, 18, 34, 0.05);
}

.dc-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.dc-story blockquote {
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--dc-ink-soft);
  font-family: var(--dc-font-display);
  font-weight: 500;
}

.dc-story-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dc-story-person strong {
  display: block;
  font-size: 0.95rem;
}

.dc-story-person span {
  font-size: 0.8rem;
  color: var(--dc-muted);
}

.dc-story-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dc-story-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--dc-line);
  background: var(--dc-surface);
  color: var(--dc-ink);
}

.dc-story-nav button:hover {
  border-color: rgba(15, 118, 110, 0.35);
  color: var(--dc-accent);
}

/* Safety */
.dc-safety {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.05), transparent);
  border-radius: var(--dc-radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--dc-line);
}

.dc-safety-list {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .dc-safety-list { grid-template-columns: repeat(2, 1fr); }
}

.dc-safety-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--dc-surface);
  border-radius: 1.1rem;
  border: 1px solid var(--dc-line);
}

.dc-safety-item i {
  color: var(--dc-accent);
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

.dc-safety-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
}

.dc-safety-item p {
  margin: 0;
  color: var(--dc-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* FAQ */
.dc-faq details {
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: 1.15rem;
  padding: 0;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.dc-faq details[open] {
  box-shadow: var(--dc-shadow);
  border-color: rgba(15, 118, 110, 0.22);
}

.dc-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dc-faq summary::-webkit-details-marker { display: none; }

.dc-faq summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--dc-accent);
  font-weight: 500;
}

.dc-faq details[open] summary::after { content: "–"; }

.dc-faq details p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--dc-muted);
  line-height: 1.65;
}

/* CTA */
.dc-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--dc-radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.2), transparent 35%),
    linear-gradient(135deg, #db2777 0%, #7c3aed 48%, #0891b2 100%);
  box-shadow: var(--dc-shadow-lg);
}

.dc-cta h2 {
  font-family: var(--dc-font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.dc-cta p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  opacity: 0.9;
  font-size: 1.05rem;
  line-height: 1.65;
}

.dc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */
.dc-footer {
  margin-top: 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(15, 118, 110, 0.22), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(67, 56, 202, 0.2), transparent 45%),
    linear-gradient(180deg, #0c1222, #070b14);
  color: rgba(248, 250, 252, 0.88);
  padding: 4rem 0 2rem;
}

.dc-footer a {
  color: rgba(248, 250, 252, 0.72);
  text-decoration: none;
}

.dc-footer a:hover { color: #fff; }

.dc-footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .dc-footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.dc-footer h3,
.dc-footer h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.dc-footer-brand {
  font-family: var(--dc-font-display);
  font-size: 1.6rem;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.dc-footer p {
  color: rgba(248, 250, 252, 0.65);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.dc-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.dc-newsletter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.dc-newsletter input {
  flex: 1;
  min-width: 180px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0.65rem 1rem;
}

.dc-newsletter input::placeholder { color: rgba(255,255,255,0.45); }

.dc-social {
  display: flex;
  gap: 0.55rem;
}

.dc-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.dc-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.5);
}

/* Reveal animations */
.dc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.dc-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .dc-hero-orb,
  .dc-float-card,
  .dc-map-pin,
  .dc-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Public header override cleanup on homepage */
body.dc-home > .dating-nav { display: none !important; }

/* ============================================================
   Homepage v3 — CRO redesign (additive; brand tokens reused)
   ============================================================ */

/* Section helpers */
.dc-section-head {
  margin-bottom: 2.25rem;
  max-width: 44rem;
}
.dc-section-head .dc-lead { margin-inline: 0; }
.dc-section--soft {
  background:
    radial-gradient(ellipse 60% 50% at 8% 0%, rgba(219, 39, 119, 0.06), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 20%, rgba(8, 145, 178, 0.07), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.5), rgba(247,244,255,0.5));
}

/* Hero (v3 copy) */
.dc-hero-headline {
  font-family: var(--dc-font-display);
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 1.1rem;
  color: var(--dc-ink);
  background: linear-gradient(115deg, #14101f 6%, #db2777 40%, #7c3aed 70%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dc-hero-sub {
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.6;
  color: var(--dc-ink-soft);
  max-width: 33rem;
  margin: 0 0 1.75rem;
}
.dc-hero-sub strong { color: var(--dc-accent); }

.dc-hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 0.9rem;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  max-width: 32rem;
}
.dc-hero-badges li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dc-ink-soft);
}
.dc-hero-badges i {
  color: #16a34a;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* Quick trust strip */
.dc-trustbar {
  position: relative;
  z-index: 2;
  margin-top: -1.25rem;
}
.dc-trustbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--dc-line);
  border-radius: var(--dc-radius);
  box-shadow: var(--dc-shadow);
  padding: 0.9rem 1.25rem;
}
.dc-trustbar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--dc-ink-soft);
}
.dc-trustbar-inner i { color: var(--dc-accent); }

/* Why grid (6 cards) */
.dc-why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .dc-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .dc-why-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; } }

.dc-card {
  position: relative;
  overflow: hidden;
}
.dc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(219,39,119,0.06), rgba(124,58,237,0.05) 55%, rgba(8,145,178,0.06));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.dc-card:hover::after { opacity: 1; }
.dc-card > * { position: relative; z-index: 1; }
.dc-card-icon i { transition: transform 0.3s ease; }
.dc-card:hover .dc-card-icon i { transform: scale(1.12) rotate(-4deg); }

/* Steps timeline */
.dc-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: dcstep;
  position: relative;
}
@media (min-width: 900px) {
  .dc-steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .dc-steps::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #db2777, #7c3aed 55%, #0891b2);
    opacity: 0.35;
    z-index: 0;
  }
}
.dc-step {
  position: relative;
  z-index: 1;
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: var(--dc-radius);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 10px 30px rgba(12, 18, 34, 0.05);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dc-step:hover { transform: translateY(-4px); box-shadow: var(--dc-shadow); }
.dc-step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  font-family: var(--dc-font-display);
  font-weight: 650;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(145deg, #db2777, #7c3aed 55%, #0891b2);
  box-shadow: 0 10px 24px var(--dc-glow);
}
.dc-step-icon {
  font-size: 1.6rem;
  color: var(--dc-accent-2);
  margin-bottom: 0.6rem;
  display: inline-block;
}
.dc-step-body h3 { margin: 0 0 0.4rem; font-size: 1.12rem; font-weight: 800; }
.dc-step-body p { margin: 0; color: var(--dc-muted); line-height: 1.6; font-size: 0.94rem; }

/* Cities */
.dc-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-content: flex-start;
}
.dc-city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dc-ink-soft);
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  box-shadow: 0 6px 16px rgba(12, 18, 34, 0.04);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
a.dc-city-chip:hover {
  transform: translateY(-2px);
  color: var(--dc-accent);
  border-color: var(--dc-accent);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.16);
}
a.dc-city-chip:focus-visible {
  outline: 2px solid var(--dc-accent);
  outline-offset: 2px;
}
.dc-city-chip i { color: var(--dc-accent); }
.dc-city-chip--more {
  color: #fff;
  background: linear-gradient(135deg, #db2777, #7c3aed);
  border-color: transparent;
}
a.dc-city-chip--more:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(219, 39, 119, 0.32);
}

/* Trust stats */
.dc-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (min-width: 768px) { .dc-trust-grid { grid-template-columns: repeat(4, 1fr); gap: 1.15rem; } }
.dc-trust-stat {
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: var(--dc-radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(12, 18, 34, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dc-trust-stat:hover { transform: translateY(-4px); box-shadow: var(--dc-shadow); }
.dc-trust-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--dc-accent);
  background: linear-gradient(145deg, rgba(244,114,182,0.18), rgba(125,211,252,0.2), rgba(167,139,250,0.18));
}

/* Membership compare table */
.dc-compare {
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: var(--dc-radius-lg);
  box-shadow: var(--dc-shadow);
  overflow: hidden;
}
.dc-compare-table {
  width: 100%;
  border-collapse: collapse;
}
.dc-compare-table th,
.dc-compare-table td {
  padding: 0.9rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--dc-line);
  font-size: 0.92rem;
}
.dc-compare-table thead th {
  font-family: var(--dc-font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dc-ink);
  background: rgba(124, 58, 237, 0.04);
}
.dc-compare-table tbody th[scope="row"],
.dc-compare-feature {
  text-align: left;
  font-weight: 700;
  color: var(--dc-ink-soft);
}
.dc-compare-premium {
  position: relative;
  color: var(--dc-accent-2) !important;
  background: linear-gradient(180deg, rgba(219,39,119,0.08), rgba(124,58,237,0.05)) !important;
}
.dc-compare-premium span {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dc-accent);
  margin-top: 0.15rem;
}
.dc-compare-table .dc-yes { color: #16a34a; font-size: 1.15rem; }
.dc-compare-table .dc-no { color: #cbd5e1; font-size: 1rem; }
.dc-limited {
  font-size: 0.75rem;
  font-weight: 700;
  color: #b45309;
  background: rgba(245, 158, 11, 0.14);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}
.dc-compare-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.4rem;
}
.dc-compare-price { margin: 0; font-size: 1rem; color: var(--dc-muted); }
.dc-compare-price strong {
  font-family: var(--dc-font-display);
  font-size: 1.9rem;
  font-weight: 650;
  color: var(--dc-ink);
  letter-spacing: -0.02em;
}
.dc-compare-note { margin: 0.15rem 0 0; font-size: 0.82rem; color: var(--dc-muted); }
@media (max-width: 575.98px) {
  .dc-compare-table th,
  .dc-compare-table td { padding: 0.7rem 0.6rem; font-size: 0.84rem; }
  .dc-compare-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .dc-compare-cta .d-flex { justify-content: center; }
}

/* FAQ two-column */
.dc-faq-grid { display: grid; gap: 0 0.75rem; }
@media (min-width: 900px) { .dc-faq-grid { grid-template-columns: repeat(2, 1fr); } }

/* Final CTA tag */
.dc-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
}

/* Sticky mobile CTA + floating */
.dc-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(120%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.dc-sticky-cta.is-visible { transform: translateY(0); pointer-events: auto; }
.dc-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--dc-line);
  border-radius: 999px;
  box-shadow: 0 -6px 30px rgba(12, 18, 34, 0.16);
  padding: 0.55rem 0.65rem 0.55rem 1.1rem;
}
.dc-sticky-cta-copy { display: flex; flex-direction: column; min-width: 0; }
.dc-sticky-cta-copy strong { font-size: 0.9rem; line-height: 1.2; color: var(--dc-ink); }
.dc-sticky-cta-copy span { font-size: 0.74rem; color: var(--dc-muted); }
.dc-sticky-cta .dc-btn { flex-shrink: 0; min-height: 44px; }
@media (min-width: 992px) { .dc-sticky-cta { display: none; } }

/* Exit intent popup */
.dc-exit {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.dc-exit[hidden] { display: none; }
.dc-exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 24, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: dcFade 0.25s ease;
}
.dc-exit-card {
  position: relative;
  width: min(100%, 460px);
  background: var(--dc-surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--dc-radius-lg);
  box-shadow: var(--dc-shadow-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  animation: dcPop 0.32s cubic-bezier(0.2, 0.9, 0.3, 1.3);
}
.dc-exit-x {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--dc-muted);
  cursor: pointer;
}
.dc-exit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dc-accent);
  background: rgba(219, 39, 119, 0.1);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.85rem;
}
.dc-exit-card h2 {
  font-family: var(--dc-font-display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  color: var(--dc-ink);
}
.dc-exit-card p { color: var(--dc-muted); line-height: 1.6; margin: 0 0 1.25rem; }
.dc-exit-card .dc-btn { width: 100%; }
.dc-exit-fine { font-size: 0.78rem !important; margin: 0.85rem 0 0 !important; }

@keyframes dcFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes dcPop {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .dc-exit-backdrop, .dc-exit-card { animation: none !important; }
  .dc-sticky-cta { transition: none !important; }
}
