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

:root {
  --bg: #050510;
  --bg-alt: #09091a;
  --bg-soft: #111126;
  --accent: #ff3b6a;
  --accent-soft: rgba(255, 59, 106, 0.16);
  --accent-strong: #ff6b8d;
  --text: #f5f5ff;
  --muted: #a3a3c2;
  --border-subtle: #26263a;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151533 0, #050510 50%, #020208 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
}

/* CONTAINERS & LAYOUT */
.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5,5,16,0.98), rgba(5,5,16,0.88));
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, #ff9fb8, #ff3b6a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.logo-text {
  font-weight: 600;
  font-size: 16px;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.nav a:hover {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  transform: translateY(-1px);
}

.hero {
  padding: 40px 0 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(32px, 5vw, 40px);
  line-height: 1.1;
  margin: 14px 0 10px;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 480px;
  font-size: 14px;
}

.badge-18plus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: none;
  outline: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 59, 106, 0.35);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 38px rgba(255, 59, 106, 0.45);
}

.btn-small {
  font-size: 13px;
  padding: 8px 14px;
}

.btn-large {
  font-size: 15px;
  padding: 12px 24px;
}

.btn-full {
  width: 100%;
  margin-top: 6px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: background 0.1s ease, color 0.1s ease, border-color 0.1s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: rgba(255,255,255,0.18);
}

/* FORM HERO */
.hero-form {
  margin-top: 22px;
  padding: 16px 16px 18px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top right, rgba(255, 59, 106, 0.28), transparent 55%), var(--bg-soft);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 10px;
}

.form-row label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--muted);
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(7,7,24,0.9);
  color: var(--text);
  font-size: 13px;
}

input::placeholder {
  color: #6e6e90;
}

input:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(255, 59, 106, 0.5);
}

/* PILL GROUP */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  transition: background 0.1s ease, color 0.1s ease, border-color 0.1s ease, transform 0.08s ease;
}

.pill-active {
  background: var(--accent-soft);
  border-color: var(--accent-strong);
  color: #fff;
  transform: translateY(-1px);
}

/* AD BOX */
.ad-box {
  margin: 10px 0 6px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 10px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  background: linear-gradient(135deg, rgba(255,59,106,0.1), rgba(62, 14, 168, 0.18));
}

.ad-label {
  opacity: 0.9;
}

/* FORM NOTE */
.form-note {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

.form-note a {
  color: var(--accent-strong);
  text-decoration: none;
}

/* TRUST ROW */
.trust-row {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.avatar {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.5);
}

/* Placeholder gradients for avatars */
.avatar-1 { background: linear-gradient(135deg, #ff9fb8, #ff3b6a); }
.avatar-2 { background: linear-gradient(135deg, #9f9bff, #4336ff); }
.avatar-3 { background: linear-gradient(135deg, #ffa75a, #ff3b3b); }
.avatar-4 { background: linear-gradient(135deg, #5af9ff, #436bff); }

.avatar-text {
  margin-left: 4px;
}

/* PHONE MOCKUP */
.hero-right {
  display: flex;
  justify-content: center;
}

.card.phone-mock {
  width: 100%;
  max-width: 360px;
  border-radius: 32px;
  background: radial-gradient(circle at top left, rgba(255, 59, 106, 0.25), transparent 55%), #050510;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  padding: 10px;
}

.phone-header {
  display: flex;
  gap: 4px;
  padding: 4px 8px 8px;
}

.phone-header .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
}

.phone-body {
  background: rgba(6, 6, 24, 0.96);
  border-radius: 24px;
  padding: 14px;
}

.chat-card {
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(10, 10, 40, 0.9), rgba(34, 13, 73, 0.9));
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffc2d0, #ff3b6a);
}

.chat-name {
  font-size: 13px;
  font-weight: 600;
}

.chat-city {
  font-size: 11px;
  color: var(--muted);
}

.chat-status {
  margin-left: auto;
  font-size: 11px;
  color: #ffb3c5;
  background: rgba(255, 59, 106, 0.14);
  padding: 3px 7px;
  border-radius: 999px;
}

.chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
}

.bubble {
  padding: 7px 9px;
  border-radius: 14px;
  max-width: 220px;
  line-height: 1.3;
}

.bubble-left {
  background: rgba(255,255,255,0.06);
  border-bottom-left-radius: 3px;
}

.bubble-right {
  background: var(--accent-soft);
  border-bottom-right-radius: 3px;
  margin-left: auto;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
  margin-top: 10px;
}

.mini-card {
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 8px;
}

.mini-title {
  font-size: 11px;
  font-weight: 600;
}

.mini-text {
  font-size: 10px;
  color: var(--muted);
}

/* PHONE AD */
.phone-ad {
  margin-top: 10px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.28);
  padding: 8px;
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  background: rgba(0,0,0,0.35);
}

/* GENERIC SECTIONS */
.section {
  padding: 40px 0;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(147, 79, 255, 0.25), rgba(5,5,16,1));
}

.section h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 13px;
  color: var(--muted);
  max-width: 520px;
}

/* STEPS GRID */
.steps-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.step-card {
  border-radius: var(--radius-lg);
  background: rgba(9,9,26,0.95);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px;
  font-size: 13px;
}

.step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-bottom: 6px;
}

/* FEATURES */
.feature-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}

.feature-card {
  border-radius: var(--radius-lg);
  background: rgba(9,9,26,0.95);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px;
  font-size: 13px;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 14px;
}

/* SAFETY */
.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 20px;
  align-items: flex-start;
}

.safety-list {
  list-style: none;
  padding-left: 0;
  font-size: 13px;
  color: var(--muted);
}

.safety-list li::before {
  content: "• ";
  color: var(--accent-strong);
}

.safety-card {
  border-radius: var(--radius-lg);
  background: rgba(9,9,26,0.95);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px;
  font-size: 13px;
}

.safety-card ul {
  padding-left: 16px;
  margin: 0;
  color: var(--muted);
}

/* TESTI */
.testi-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.testi-card {
  border-radius: 18px;
  background: rgba(9,9,26,0.95);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 14px;
  font-size: 13px;
}

.testi-card p {
  margin: 0 0 6px;
}

.testi-name {
  font-size: 12px;
  color: var(--muted);
}

/* CTA SECTION */
.cta-section {
  background: radial-gradient(circle at center, rgba(255, 59, 106, 0.4), rgba(5,5,16,1));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-inner p {
  max-width: 460px;
  font-size: 13px;
  color: var(--muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #050510;
  padding: 16px 0;
  font-size: 12px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

/* AGE OVERLAY */
.age-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,59,106,0.15), rgba(0,0,0,0.95));
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.age-overlay.hidden {
  display: none;
}

.age-modal {
  width: min(360px, 90%);
  background: #060616;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px 18px 16px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.75);
}

.age-modal h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.age-modal p {
  font-size: 13px;
  color: var(--muted);
}

.age-buttons {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .testi-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-wrap: wrap;
  }

  .nav {
    display: none;
  }

  .feature-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .steps-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .testi-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .safety-layout {
    grid-template-columns: minmax(0,1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
