:root {
  --bg-main: #05030a;
  --bg-elevated: #0b0716;
  --accent-pink: #ff2fbf;
  --accent-purple: #a855ff;
  --accent-cyan: #00f0ff;
  --text-main: #f5f3ff;
  --text-muted: #a0a0c0;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-neon: 0 0 18px rgba(255, 47, 191, 0.5);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --max-width: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #1a1030 0, #05030a 40%, #020005 100%);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1 0 auto;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(5, 3, 10, 0.96), rgba(5, 3, 10, 0.85));
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, #ff2fbf, #4b0077);
  box-shadow: 0 0 12px rgba(255, 47, 191, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 15px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.brand-tagline {
  font-size: 11px;
  color: var(--text-muted);
}

/* Navigation */

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast),
    color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255, 47, 191, 0.7);
}

.btn-ghost {
  border-color: var(--border-soft);
  background: rgba(10, 6, 25, 0.7);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-main);
}

/* Mobile nav */

.nav-mobile-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  padding: 6px;
}

.nav-mobile-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
  margin: 3px 0;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border-soft);
  padding-bottom: 8px;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
}

.nav-mobile-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  padding: 6px 0;
}

/* Hero */

.hero {
  padding: 40px 0 28px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(9, 4, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.9);
}

.hero-title {
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 20px;
}

.hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-step-badge {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(16, 9, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent-cyan);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-note {
  font-size: 11px;
  color: var(--text-muted);
}

/* Hero visual */

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 47, 191, 0.3), transparent 55%),
    radial-gradient(circle at bottom, rgba(0, 240, 255, 0.2), transparent 55%),
    linear-gradient(145deg, #060313, #140822);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.8);
  padding: 12px;
}

.hero-visual-inner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0, #ff2fbf 0, transparent 45%),
    radial-gradient(circle at 90% 90%, #00f0ff 0, transparent 55%),
    #060313;
}

.hero-visual-img {
  height: 260px;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.2) contrast(1.05);
  position: relative;
}

.hero-visual-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.7), transparent 50%);
}

.hero-visual-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}

.hero-chip-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-chip {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: rgba(5, 3, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent-pink);
  box-shadow: 0 0 10px rgba(255, 47, 191, 0.9);
}

.hero-stat-card {
  padding: 8px 10px;
  border-radius: 12px;
  background: radial-gradient(circle at top, rgba(10, 255, 209, 0.15), rgba(4, 2, 15, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-width: 120px;
}

.hero-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.hero-stat-value {
  font-size: 18px;
  font-weight: 700;
  margin-top: 3px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hero-stat-value span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Sections / cards */

.section {
  padding: 20px 0 26px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 480px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.model-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(7, 3, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.model-thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.model-tag {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  background: rgba(5, 3, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.model-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.model-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.model-name {
  font-size: 13px;
  font-weight: 600;
}

.model-earning {
  font-size: 11px;
  color: var(--accent-cyan);
}

.model-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.model-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 10px;
  color: var(--text-muted);
}

.model-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00d98b;
  box-shadow: 0 0 10px rgba(0, 217, 139, 0.9);
  margin-right: 4px;
}

/* Forms */

.form-card {
  max-width: 440px;
  margin: 40px auto 32px;
  padding: 22px 20px 20px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(255, 47, 191, 0.18), rgba(5, 3, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}

.form-title {
  font-size: 20px;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.form-grid-full {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.form-field label {
  color: var(--text-muted);
}

.form-control,
.form-select,
.form-textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 3, 22, 0.9);
  color: var(--text-main);
  padding: 8px 9px;
  font-size: 13px;
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 1px rgba(255, 47, 191, 0.5);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

.form-help {
  font-size: 11px;
  color: var(--text-muted);
}

.form-footer {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.form-footer a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Content pages */

.page-hero {
  padding: 32px 0 18px;
}

.page-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.page-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 520px;
}

.content-card {
  border-radius: var(--radius-lg);
  background: rgba(7, 3, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 18px 20px;
  margin-bottom: 24px;
}

.content-card h2 {
  font-size: 16px;
  margin: 0 0 8px;
}

.content-card h3 {
  font-size: 14px;
  margin: 14px 0 4px;
}

.content-card p,
.content-card li {
  font-size: 13px;
  color: var(--text-muted);
}

.content-card ul {
  padding-left: 18px;
}

/* Compliance TOC */

.compliance-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.compliance-toc a {
  font-size: 11px;
  color: var(--accent-cyan);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 1, 16, 0.9);
}

.compliance-toc a:hover {
  border-color: var(--accent-pink);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 14px 0 18px;
  background: radial-gradient(circle at bottom, rgba(255, 47, 191, 0.18), rgba(3, 0, 10, 0.98));
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-main);
  text-decoration: underline;
}

/* Age gate */

.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 47, 191, 0.25), rgba(0, 0, 0, 0.96));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.age-gate-modal {
  max-width: 380px;
  width: 100%;
  margin: 0 16px;
  border-radius: var(--radius-lg);
  background: rgba(7, 3, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 18px 16px;
  box-shadow: 0 0 36px rgba(0, 0, 0, 0.95);
}

.age-gate-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.age-gate-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.age-gate-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Sticky mobile CTA */

.sticky-mobile-cta {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 35;
  display: none;
}

.sticky-mobile-cta-inner {
  padding: 5px 6px;
  border-radius: 999px;
  background: rgba(5, 3, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
}

/* Utility */

.text-accent {
  color: var(--accent-cyan);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-visual-img {
    height: 220px;
  }

  .section {
    padding-top: 16px;
  }

  .model-thumb {
    height: 150px;
  }

  .form-card {
    margin-top: 24px;
    padding: 18px 15px 16px;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-mobile-cta {
    display: block;
  }
}

@media (max-width: 520px) {
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
