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

:root {
  --bg: #020617;
  --card: #020617;
  --accent: #f97316;
  --accent-soft: rgba(249,115,22,0.12);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border-subtle: rgba(148,163,184,0.35);
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-card: 0 18px 40px rgba(15,23,42,0.9);
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  border-bottom: 1px solid rgba(148,163,184,0.18);
  background:
    radial-gradient(circle at top left, rgba(248,250,252,0.06), transparent 55%),
    radial-gradient(circle at top right, rgba(56,189,248,0.04), transparent 55%),
    #020617;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 18px;
  text-transform: uppercase;
}
.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
}
.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 26px 0 18px;
}
.hero-text {
  max-width: 680px;
  padding-bottom: 8px;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.hero-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #020617;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(249,115,22,0.45);
}
.btn-primary:hover {
  opacity: 0.94;
}
.age-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}

main {
  padding: 16px 0 32px;
}

.section-head {
  margin: 12px 0 18px;
}
.section-head h2 {
  margin: 0 0 6px;
  font-size: 20px;
}
.section-head p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.profiles {
  padding: 8px 0 22px;
}
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.profile-card {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(248,250,252,0.04), transparent 55%),
    radial-gradient(circle at bottom right, rgba(56,189,248,0.04), transparent 55%),
    #020617;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.profile-image {
  width: 100%;
  padding-top: 70%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.profile-body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-body h3 {
  font-size: 15px;
  margin: 0;
}
.profile-tags {
  margin: 0;
}
.profile-tags .badge + .badge {
  margin-left: 6px;
}

.profile-desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.rate-row {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 13px;
}
.rate-row span:last-child {
  color: #facc15;
  font-weight: 600;
}

.profile-contact {
  margin-top: 8px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.profile-contact a {
  color: var(--accent);
  text-decoration: none;
}
.profile-contact a:hover {
  text-decoration: underline;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
}
.badge-outline {
  border: 1px solid rgba(248,250,252,0.24);
  background: transparent;
  color: var(--text);
}

.edit-note {
  margin-top: 16px;
  font-size: 11px;
  color: var(--muted);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(148,163,184,0.4);
  padding: 10px 12px;
  background: rgba(15,23,42,0.8);
}

.how-it-works {
  padding: 10px 0 22px;
  border-top: 1px solid rgba(148,163,184,0.18);
  border-bottom: 1px solid rgba(148,163,184,0.18);
  background: radial-gradient(circle at top, rgba(15,23,42,0.9), #020617);
}
.grid-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.step {
  border-radius: var(--radius-md);
  background: rgba(15,23,42,0.92);
  border: 1px solid rgba(148,163,184,0.4);
  padding: 12px 14px;
  font-size: 13px;
}
.step h3 {
  margin: 0 0 6px;
  font-size: 14px;
}
.step-number {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248,250,252,0.3);
  font-size: 11px;
  margin-bottom: 4px;
  color: var(--muted);
}

.contact {
  padding: 18px 0 10px;
}
.contact-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148,163,184,0.4);
  padding: 12px 14px;
  background: rgba(15,23,42,0.92);
  font-size: 13px;
}
.contact-card p {
  margin: 0 0 6px;
}
.contact-card .legal {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}

.site-footer {
  border-top: 1px solid rgba(148,163,184,0.2);
  padding: 10px 0 16px;
  font-size: 11px;
  color: var(--muted);
  background: #020617;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero {
    padding-top: 12px;
  }
  .profile-body {
    padding: 12px 12px 10px;
  }
}


.areas {
  padding: 16px 0 22px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.area-group {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148,163,184,0.4);
  background: rgba(15,23,42,0.9);
  padding: 12px 14px;
  font-size: 13px;
}
.area-group h3 {
  margin: 0 0 6px;
  font-size: 14px;
}
.area-group p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
