:root {
  --bg: #0a0610;
  --bg-alt: #0f0a14;
  --accent: #e94560;
  --cyan: #00e5ff;
  --text: #ffffff;
  --muted: #b8b0c4;
  --muted-2: #999999;
  --pink-soft: #f9a8d4;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --radius: 14px;
  --max: 1080px;
}

*,
*::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.5;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: var(--cyan);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

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

.radar {
  color: var(--cyan);
  font-weight: 700;
}

.wordmark {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 720px);
  width: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 6, 16, 0.28) 0%,
    rgba(10, 6, 16, 0.45) 40%,
    rgba(10, 6, 16, 0.88) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 7vw, 4.5rem);
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-soft);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.85rem;
}

.hero-sub {
  margin: 0 0 1.4rem;
  color: #ddd;
  font-size: 1.05rem;
  max-width: 22rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.store-btn {
  padding: 0.75rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 6, 16, 0.72);
  backdrop-filter: blur(6px);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.5);
}

.store-btn-light {
  background: #fff;
  color: #0a0610;
  border-color: #fff;
}

.centered-row {
  justify-content: center;
}

/* Sections */
.section {
  padding: clamp(2.75rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section-problem {
  background: var(--bg-alt);
}

.section-fix {
  background: var(--bg);
}

.section-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.accent-pink {
  color: var(--pink-soft);
}

.accent-cyan {
  color: #67e8f9;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  max-width: 28rem;
}

.section-body {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 28rem;
}

.section-body.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 26rem;
}

/* How it works */
.section-hiw {
  background:
    radial-gradient(circle at 50% 12%, rgba(76, 29, 149, 0.45) 0%, transparent 50%),
    linear-gradient(180deg, #120a18, var(--bg));
}

.hiw-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.hiw-intro .section-title {
  margin-left: auto;
  margin-right: auto;
}

.hiw-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.hiw-steps {
  flex: 1 1 200px;
  max-width: 260px;
  display: grid;
  gap: 0.7rem;
}

.hiw-step {
  text-align: left;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.hiw-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hiw-step.is-active {
  background: rgba(233, 69, 96, 0.22);
  border-color: rgba(233, 69, 96, 0.7);
}

.hiw-step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.hiw-step-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #aaa;
}

.hiw-step.is-active .hiw-step-title {
  color: var(--accent);
}

.hiw-badge {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #666;
  flex-shrink: 0;
}

.hiw-step.is-active .hiw-badge {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.hiw-step-body {
  display: block;
  font-size: 0.8rem;
  color: #888;
  line-height: 1.4;
}

.hiw-step.is-active .hiw-step-body {
  color: #ccc;
}

.hiw-phone-wrap {
  flex: 0 0 auto;
  width: min(200px, 42vw);
}

.hiw-phone {
  border-radius: 28px;
  padding: 0.55rem;
  background: #111;
  border: 2px solid #333;
  box-shadow: 0 20px 50px rgba(192, 38, 168, 0.35);
  animation: phone-glow 3.5s ease-in-out infinite;
}

.hiw-screen {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0a0610;
  aspect-ratio: 9 / 19.5;
}

#hiw-phone {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.25s ease, transform 0.35s ease;
  background: #0a0610;
}

#hiw-phone.is-swapping {
  opacity: 0.35;
  transform: scale(0.96);
}

.hiw-screen.share-mode #hiw-phone {
  object-fit: contain;
  padding-bottom: 5rem;
  box-sizing: border-box;
}

.hiw-caption {
  text-align: center;
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: #aaa;
  transition: opacity 0.2s;
}

.hiw-share-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.5rem 0.75rem;
  background: linear-gradient(180deg, rgba(10, 6, 16, 0) 0%, rgba(10, 6, 16, 0.92) 28%, #121018 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hiw-share-sheet[hidden] {
  display: none;
}

.hiw-share-label {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  text-align: center;
}

.hiw-share-row {
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
}

.hiw-share-app {
  flex: 1;
  text-align: center;
  font-size: 0.55rem;
  color: #ccc;
}

.hiw-share-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.55rem;
  margin: 0 auto 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

.hiw-share-icon.whatsapp {
  background: #25d366;
}

.hiw-share-icon.ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.hiw-share-icon.msg {
  background: #34c759;
}

.hiw-share-icon.more {
  background: #3a3a3c;
}

/* Soft proof */
.section-proof {
  text-align: center;
  background: linear-gradient(90deg, #1a0a22, #0f1a2e, #1a0a22);
  background-size: 200% 200%;
  animation: proof-shimmer 8s ease infinite alternate;
}

.proof-line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin: 0 auto;
  max-width: 28rem;
  line-height: 1.3;
}

/* FAQ */
.section-faq {
  background:
    radial-gradient(circle at 80% 0%, rgba(233, 69, 96, 0.12), transparent 45%),
    var(--bg-alt);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 34rem;
  margin: 0 auto;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.faq-item:hover {
  border-color: rgba(233, 69, 96, 0.35);
}

.faq-item.is-open {
  border-color: rgba(0, 229, 255, 0.35);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(233, 69, 96, 0.06));
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 0.95rem 1.1rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: "+";
  color: #666;
  font-weight: 500;
  transition: transform 0.25s, color 0.25s;
}

.faq-item.is-open .faq-q::after {
  transform: rotate(45deg);
  color: var(--cyan);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a > p {
  margin: 0;
  overflow: hidden;
  padding: 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.faq-item.is-open .faq-a > p {
  padding-bottom: 1rem;
}

/* Final CTA */
.section-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, #831843 0%, transparent 55%),
    var(--bg);
  padding-bottom: 4rem;
}

.section-cta .section-title {
  margin-left: auto;
  margin-right: auto;
}

.section-cta .section-body {
  margin-bottom: 1.25rem;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  font-size: 0.8rem;
  color: #666;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
  color: #888;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  justify-content: flex-end;
}

.privacy-main ol.deletion-steps {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.privacy-main ol.deletion-steps > li {
  margin-bottom: 0.75rem;
  line-height: 1.55;
  font-size: 0.98rem;
}

.deletion-mailto {
  display: inline-block;
  margin: 0.25rem 0 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 6, 16, 0.72);
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.deletion-mailto:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--cyan);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  background: #1a1224;
  border: 1px solid rgba(233, 69, 96, 0.5);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.toast[hidden] {
  display: none;
}

/* Motion */
.fade-up {
  animation: fade-up 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.22s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phone-glow {
  0%,
  100% {
    box-shadow: 0 20px 50px rgba(192, 38, 168, 0.35);
  }
  50% {
    box-shadow: 0 24px 60px rgba(233, 69, 96, 0.5), 0 0 36px rgba(0, 229, 255, 0.12);
  }
}

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

@media (max-width: 800px) {
  .hiw-layout {
    flex-direction: column;
  }

  .hiw-steps {
    max-width: 100%;
    width: 100%;
    order: 2;
  }

  .hiw-phone-wrap {
    order: 1;
    width: min(220px, 70vw);
  }

  .hiw-steps-left {
    order: 2;
  }

  .hiw-steps-right {
    order: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up,
  .hiw-phone,
  .section-proof,
  #hiw-phone {
    animation: none !important;
    transition: none !important;
  }
}

/* Privacy page */
.page-privacy {
  min-height: 100vh;
}

.privacy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-header .wordmark {
  text-decoration: none;
}

.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--cyan);
}

.privacy-main {
  max-width: 42rem;
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem) 4rem;
}

.privacy-main h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.privacy-main h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2.25rem 0 0.85rem;
  color: var(--text);
}

.privacy-main h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.35rem 0 0.55rem;
  color: var(--text);
}

.privacy-updated {
  color: var(--muted-2);
  font-size: 0.85rem;
  margin-bottom: 1.75rem;
}

.privacy-main p,
.privacy-main li {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.privacy-main p strong,
.privacy-main li strong {
  color: #ddd;
  font-weight: 600;
}

.privacy-main ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.privacy-main li {
  margin-bottom: 0.45rem;
}

.privacy-footnote {
  margin-top: 2.5rem;
  font-size: 0.85rem !important;
  font-style: italic;
  color: var(--muted-2) !important;
}

.privacy-back {
  margin-top: 1.5rem;
}

.privacy-back a {
  text-decoration: none;
  color: var(--cyan);
}
