/* DatingShootPhoto — original landing design */
:root {
  --bg: #08080c;
  --bg-elevated: #12121a;
  --bg-card: #181822;
  --text: #f4f0eb;
  --text-muted: #9b9590;
  --accent: #ff5c8d;
  --accent-soft: #ff8eb3;
  --violet: #8b7cf8;
  --mint: #5eead4;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 92, 141, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(139, 124, 248, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(94, 234, 212, 0.06), transparent 45%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Icons & payment marks — never stretch with global img rules */
.trust-badge,
.pay-logo {
  max-width: none;
  height: auto;
  flex-shrink: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8, 8, 12, 0.75);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e84a7a);
  color: #fff;
  box-shadow: 0 8px 32px -8px rgba(255, 92, 141, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -6px rgba(255, 92, 141, 0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-soft);
  background: rgba(255, 92, 141, 0.1);
  border: 1px solid rgba(255, 92, 141, 0.2);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-soft);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 0 1.5rem;
}

.hero-apps {
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.hero-apps-label {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-apps-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-app {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem 0.45rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-app img {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.hero-app:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hero-app:hover img {
  transform: scale(1.08);
}

.hero-app.is-active {
  color: var(--text);
  border-color: color-mix(in srgb, var(--app-color) 55%, transparent);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--app-color) 16%, transparent),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--app-color) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--app-color) 18%, transparent);
}

.hero-app.is-active img {
  transform: scale(1.05);
}

.hero-apps-tip {
  min-height: 2.6rem;
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: opacity 0.25s ease;
}

.hero-apps-tip.is-changing {
  opacity: 0.45;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.price-tag-was {
  color: var(--text-muted);
  font-weight: 500;
  font-style: normal;
  text-decoration: line-through;
  margin-right: 0.35rem;
}

.price-tag-now {
  color: var(--text);
  font-weight: 700;
  font-style: normal;
  text-decoration: none !important;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.photo-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 480px;
  margin-inline: auto;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 80px -24px rgba(0, 0, 0, 0.7);
}

.photo-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.photo-col .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.photo-col.before .label {
  color: #a8a29e;
}

.photo-col.after .label {
  color: var(--mint);
}

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-elevated);
  line-height: 0;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
}

.photo-col.before .photo-frame {
  filter: saturate(0.85) contrast(0.95);
}

.photo-frame--carousel {
  position: relative;
  touch-action: pan-y;
}

.hero-result-track {
  display: flex;
  height: 100%;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-result-track.is-dragging {
  transition: none;
}

.hero-result-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-result-ui {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.75rem 0.55rem 0.45rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}

.hero-result-style {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: opacity 0.25s ease;
}

.hero-result-style.is-changing {
  opacity: 0.45;
}

.hero-result-dots {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  pointer-events: auto;
}

.hero-result-dot {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    width 0.2s ease;
}

.hero-result-dot.is-active {
  width: 14px;
  background: var(--mint);
}

.hero-result-swipe-hint {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  transform: translateY(-50%);
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  animation: heroSwipeHint 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroSwipeHint {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(-50%) translateX(0);
  }
  50% {
    opacity: 0.95;
    transform: translateY(-50%) translateX(4px);
  }
}

.hero-float {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-proof p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

/* Trust strip */
.trust-strip {
  padding: 2rem 0;
  border-block: 1px solid var(--border);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Steps */
.section {
  padding: 5rem 0;
}

.section--tight {
  padding-top: 3rem;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(139, 124, 248, 0.15);
  color: var(--violet);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

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

/* Before / after transforms */
.transform-grid {
  display: grid;
  gap: 2rem;
  max-width: 1040px;
  margin-inline: auto;
  align-items: stretch;
}

@media (min-width: 800px) {
  .transform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.transform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  min-width: 0;
}

.transform-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.transform-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.transform-tag--before {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
}

.transform-tag--after {
  color: var(--mint);
  background: rgba(94, 234, 212, 0.12);
}

.transform-arrow {
  color: var(--accent);
  font-weight: 700;
}

.transform-photos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.transform-cell {
  width: 100%;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  line-height: 0;
}

.transform-cell img {
  width: 100%;
  aspect-ratio: 1;
  max-width: none;
  object-fit: cover;
  object-position: center 20%;
}

.transform-cell--before img {
  filter: saturate(0.88) contrast(0.96);
}

.transform-cell--after {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Gallery — bento mosaic */
.gallery-stage {
  padding-bottom: 2rem;
  background: linear-gradient(180deg, transparent, rgba(139, 124, 248, 0.04) 40%, transparent);
}

.gallery-stage .section-head {
  margin-bottom: 1.5rem;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 0;
  max-width: 40rem;
}

.gallery-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(140px, 28vw);
  gap: 0.65rem;
  max-width: 1040px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 24px 80px -32px rgba(0, 0, 0, 0.65);
}

@media (min-width: 640px) {
  .gallery-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 0.75rem;
    padding: 1.25rem;
  }
}

@media (min-width: 900px) {
  .gallery-mosaic {
    grid-auto-rows: 172px;
  }
}

.gallery-item {
  position: relative;
  margin: 0;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--border);
}

.gallery-item--feature {
  grid-column: span 2;
  grid-row: span 2;
}

@media (min-width: 640px) {
  .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .gallery-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .gallery-item:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }

  .gallery-item:nth-child(5) {
    grid-column: 4;
    grid-row: 2;
  }

  .gallery-item:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-item:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-item:nth-child(8) {
    grid-column: 3;
    grid-row: 3;
  }

  .gallery-item:nth-child(9) {
    grid-column: 4;
    grid-row: 3;
  }
}

@media (max-width: 639px) {
  .gallery-item--feature {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  z-index: 1;
  margin: 0;
  padding: 0.25rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(8, 8, 12, 0.72);
  border-radius: 6px;
  backdrop-filter: blur(6px);
  line-height: 1.3;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 12, 0.45) 0%, transparent 45%);
  pointer-events: none;
}

/* Marquee */
.marquee-section {
  overflow: hidden;
  padding: 2rem 0;
  border-block: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-group {
  display: flex;
  gap: 0.75rem;
  padding-right: 0.75rem;
}

.marquee-group img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .marquee-group img {
    width: 260px;
    height: 260px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Photoshoot grid */
.photoshoot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.photoshoot-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.35s ease;
}

.photoshoot-grid img:hover {
  transform: scale(1.03);
}

.diversity-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.diversity-row img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.app-icon {
  opacity: 0.9;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(255, 92, 141, 0.12), rgba(139, 124, 248, 0.08));
  border-block: 1px solid var(--border);
}

.cta-band-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}


.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.cta-figure {
  margin: 0;
  flex-shrink: 0;
  line-height: 0;
}

@media (min-width: 768px) {
  .cta-band-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }

  .cta-figure {
    margin: 0;
  }
}

.cta-portrait {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* Apps */
.apps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.apps-row--compact {
  gap: 0.65rem;
  opacity: 0.55;
}

.apps-row--compact .app-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
}

.app-pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

/* Pricing */
.pricing-section {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(255, 92, 141, 0.08), rgba(139, 124, 248, 0.06));
  border: 1px solid rgba(255, 92, 141, 0.25);
  border-radius: calc(var(--radius) + 8px);
}

.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  margin: 0.5rem 0;
  line-height: 1;
}

.pricing-card .price-was {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  text-align: left;
}

.pricing-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-fine {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq {
  max-width: 640px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--accent-soft);
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Header nav */
.site-header .wrap {
  gap: 1rem;
}

.site-nav {
  display: none;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.site-nav a:hover {
  color: var(--text);
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
    margin-left: auto;
    margin-right: 0.5rem;
  }
}

/* Hero rating */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-rating .stars {
  color: #fbbf24;
  letter-spacing: 0.05em;
}

/* Trust badge + payment row */
.trust-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trust-badge {
  width: 200px;
  height: auto;
}

.payment-logos {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
}

.pay-logo {
  width: 48px;
  height: 32px;
  object-fit: contain;
}

.pay-logo--polar {
  width: 110px;
  height: 22px;
  margin-left: 0.25rem;
  opacity: 0.9;
}

/* Section variants */
.section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-soft);
  margin: 0 0 0.5rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 92, 141, 0.35);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: rgba(139, 124, 248, 0.15);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Reviews */
.reviews-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 92, 141, 0.05), transparent 55%);
}

.reviews-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, 90vw);
  height: 360px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255, 92, 141, 0.12), rgba(139, 124, 248, 0.08), transparent 70%);
  pointer-events: none;
}

.reviews-wrap {
  position: relative;
  z-index: 1;
}

.reviews-summary {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.reviews-score-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}

.reviews-score-meta {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.review-hero {
  margin: 0 auto 2rem;
  max-width: 40rem;
  padding: 2rem 1.75rem 1.5rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 92, 141, 0.25);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 20px 60px -24px rgba(255, 92, 141, 0.25);
}

.review-hero-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.6;
  color: rgba(255, 92, 141, 0.35);
  margin-bottom: 0.25rem;
}

.review-hero p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  line-height: 1.4;
  margin: 0 0 1.25rem;
}

.review-hero .review-author {
  justify-content: center;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.review-card {
  margin: 0;
  padding: 1.35rem 1.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.5);
}

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

.review-card p {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-style: normal;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, hsl(var(--avatar-hue, 330), 70%, 55%), hsl(calc(var(--avatar-hue, 330) + 40), 60%, 45%));
}

.review-avatar--initial::before {
  content: attr(data-initial);
}

.review-author-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.review-author-text cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.review-author-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-carousel,
.review-slide,
.review-dots {
  display: none !important;
}

.review-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.review-dots button.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Guarantee / face check */
.guarantee-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .guarantee-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.guarantee-lead {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.guarantee-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guarantee-list li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.guarantee-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

.face-check-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem;
}

.face-check-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1rem;
}

.face-check-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.face-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: face-scan 2.5s ease-in-out infinite;
}

@keyframes face-scan {
  0%,
  100% {
    top: 15%;
  }
  50% {
    top: 75%;
  }
}

.face-check-stats {
  font-size: 0.9rem;
}

.face-stat {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.face-stat strong {
  color: var(--mint);
}

.face-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.face-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--mint));
  border-radius: inherit;
}

.face-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

/* Compare table */
.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--bg-card);
  font-weight: 600;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-highlight {
  background: rgba(255, 92, 141, 0.08);
  color: var(--text);
}

.pack-includes h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 1rem;
}

.pack-includes ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .pack-includes ul {
    grid-template-columns: 1fr 1fr;
  }
}

.pack-includes li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pack-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-soft);
  font-weight: 700;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .face-scan {
    animation: none;
    top: 50%;
  }

  .review-slide {
    transition: none;
  }
}
