* {
  box-sizing: border-box;
}

:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: rgba(148, 163, 184, 0.35);
  --primary: #7c3aed;
  --primary-2: #06b6d4;
  --shadow: 0 18px 60px rgba(2, 6, 23, 0.14);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 700px at 15% -10%, rgba(124, 58, 237, 0.16), transparent 55%),
    radial-gradient(900px 600px at 85% 0%, rgba(6, 182, 212, 0.16), transparent 52%),
    #ffffff;
  line-height: 1.5;
}

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

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

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  background: var(--surface);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.home .site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: none;
  border-bottom: none;
}

.home .brand,
.home .nav {
  color: rgba(248, 250, 252, 0.94);
}

.home .brand {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.home .brand,
.home .nav a {
  text-shadow: 0 2px 6px rgba(2, 6, 23, 0.5);
}

.home .nav a:hover {
  background: rgba(248, 250, 252, 0.12);
}

.home .nav a[aria-current="page"] {
  background: rgba(248, 250, 252, 0.12);
}

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

.brand {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
  font-weight: 750;
  letter-spacing: 0.2px;
  font-size: 16px;
}

.brand-domain {
  display: inline-block;
  min-width: 0;
  letter-spacing: 0.2px;
}

.brand-tld {
  opacity: 0.85;
}

.nav {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: #0f172a;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: #f1f5f9;
}

.nav a.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.22);
}

.nav a.nav-cta:hover {
  background: linear-gradient(135deg, #6d28d9, #0891b2);
}

.hero {
  position: relative;
  color: #ffffff;
  background-image: url("../images/positive-singles-dating-site.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid #e2e8f0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 20% 10%, rgba(124, 58, 237, 0.42), transparent 55%),
    radial-gradient(900px 520px at 90% 0%, rgba(6, 182, 212, 0.34), transparent 52%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.65), rgba(2, 6, 23, 0.48));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 96px 0;
  min-height: 80vh;
}

.home .hero-grid {
  min-height: 100vh;
  padding: 140px 0 72px;
}

.hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.hero-copy {
  max-width: 640px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.92);
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(226, 232, 240, 0.18);
  padding: 7px 12px;
  border-radius: 999px;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.6px;
}

.lead {
  margin: 0 0 18px;
  font-size: 18px;
  color: #334155;
}

.hero .lead {
  color: rgba(226, 232, 240, 0.95);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(226, 232, 240, 0.22);
  backdrop-filter: blur(10px);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.join-card {
  max-width: 460px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 26px 78px rgba(2, 6, 23, 0.26);
}

.join-title {
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #0f172a;
  font-size: 16px;
  text-align: center;
}

.join-subtitle {
  margin: 0 0 12px;
  color: #475569;
  font-size: 12px;
  text-align: center;
}

.form-grid {
  display: grid;
  gap: 8px;
}

.field {
  display: grid;
  gap: 6px;
}

.label {
  font-size: 11px;
  color: #0f172a;
  font-weight: 700;
}

.input,
.select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #f8fafc;
  outline: none;
  font-size: 13px;
}

.input:focus,
.select:focus {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
}

.join-actions {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.join-actions .btn {
  width: 100%;
  padding: 12px 14px;
}

.join-actions .btn.primary {
  background: linear-gradient(90deg, #6d28d9, #06b6d4);
  box-shadow: 0 18px 46px rgba(124, 58, 237, 0.28);
}

.join-actions .btn.primary:hover {
  background: linear-gradient(90deg, #7c3aed, #0891b2);
}

.microcopy {
  margin: 0;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-weight: 650;
  font-size: 14px;
}

.btn:hover {
  background: #f8fafc;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 42px rgba(124, 58, 237, 0.22);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #6d28d9, #0891b2);
}

.fineprint {
  margin: 12px 0 0;
  font-size: 12px;
  color: #64748b;
}

.hero .fineprint {
  color: rgba(226, 232, 240, 0.85);
}

.hero-media img {
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
}

.section {
  padding: 72px 0;
}

.section.seo h1 {
  margin: 0 0 12px;
  font-size: 28px;
}

.section.seo p {
  margin: 0 auto;
  max-width: 720px;
  color: #475569;
}

.section.seo {
  text-align: center;
}

.section.alt {
  background: radial-gradient(900px 600px at 20% 0%, rgba(124, 58, 237, 0.08), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(6, 182, 212, 0.08), transparent 60%),
    #f8fafc;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.section h2 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.2px;
}

.section p {
  margin: 0 0 14px;
  color: #334155;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.card p {
  margin: 0;
  font-size: 14px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 650;
}

.pill:hover {
  background: #f1f5f9;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.profile-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.profile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 6px auto 8px;
  color: #fff;
  font-weight: 750;
  display: grid;
  place-items: center;
}

.g1 { background: linear-gradient(135deg, #7c3aed, #06b6d4); }
.g2 { background: linear-gradient(135deg, #ef4444, #f59e0b); }
.g3 { background: linear-gradient(135deg, #10b981, #3b82f6); }
.g4 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.g5 { background: linear-gradient(135deg, #f97316, #22c55e); }
.g6 { background: linear-gradient(135deg, #0ea5e9, #a78bfa); }

.p-name {
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}

.p-living {
  margin-top: 2px;
  font-size: 12px;
  color: #475569;
}

.p-meta {
  font-size: 12px;
  color: #64748b;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.2px;
  color: #0f172a;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.badge.online {
  color: #065f46;
  background: rgba(236, 253, 245, 0.9);
  border-color: rgba(16, 185, 129, 0.28);
}

.meta-row {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.26);
  color: #0f172a;
}

.profile-actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 32px 18px;
  background: radial-gradient(900px 520px at 15% 0%, rgba(124, 58, 237, 0.4), transparent 55%),
    radial-gradient(900px 520px at 95% 0%, rgba(6, 182, 212, 0.35), transparent 55%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(226, 232, 240, 0.18);
  box-shadow: 0 26px 90px rgba(2, 6, 23, 0.22);
  color: rgba(248, 250, 252, 0.95);
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.cta-band p {
  margin: 0 0 16px;
  color: rgba(226, 232, 240, 0.88);
}

.cta-band .cta-row {
  margin-top: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.step {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.22);
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.step p {
  margin: 0;
  font-size: 14px;
  color: #334155;
}

.trustbar {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 16px 46px rgba(2, 6, 23, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.26);
}

.stat-num {
  font-weight: 900;
  letter-spacing: -0.6px;
  font-size: 22px;
  color: #0f172a;
}

.stat-label {
  margin-top: 2px;
  font-size: 13px;
  color: #475569;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.quote {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.quote p {
  margin: 0;
  color: #334155;
  font-size: 14px;
}

.quote-footer {
  margin-top: 12px;
  display: grid;
  gap: 2px;
}

.quote-name {
  font-weight: 800;
  color: #0f172a;
  font-size: 13px;
}

.quote-meta {
  font-size: 12px;
  color: #64748b;
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq details {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.faq summary {
  cursor: pointer;
  font-weight: 750;
  color: #0f172a;
  list-style: none;
}

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

.faq details p {
  margin: 10px 0 0;
  color: #334155;
  font-size: 14px;
}

.notice {
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.notice-title {
  font-weight: 750;
  margin-bottom: 6px;
}

.notice-body {
  color: #334155;
  font-size: 14px;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  color: #0f172a;
}

.site-footer {
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(to top, #f1f5f9, #ffffff);
  padding: 28px 0;
  color: #475569;
}

.footer-inner {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: center;
}

.footer-brand {
  font-weight: 800;
  color: #0f172a;
}

.footer-meta {
  font-size: 12px;
  margin-top: 4px;
}

.footer-legal {
  margin-top: 8px;
  font-size: 12px;
  color: #64748b;
}

@media (max-width: 920px) {
  .footer-inner {
    gap: 12px 18px;
  }
}

.page-hero {
  padding: 42px 0 24px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.4px;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  align-items: start;
  padding-bottom: 40px;
}

.panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
}

.list li {
  margin: 6px 0;
}

@media (max-width: 920px) {
  html,
  body {
    overflow-x: hidden;
  }

  .brand {
    display: inline-block;
    max-width: calc(100% - 100px);
    font-size: clamp(12px, 3.2vw, 15px);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-domain {
    display: inline;
    white-space: nowrap;
    word-break: normal;
  }

  .nav a.nav-cta {
    padding: 8px 10px;
  }

  .hero-grid {
    padding: 48px 0;
  }

  .home .hero-grid {
    min-height: 96vh;
    padding: 110px 0 56px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .join-card {
    margin-top: 18px;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}
