:root {
  --bg: #08060b;
  --surface: #130f1b;
  --surface-2: #1c1428;
  --text: #fff8fb;
  --muted: #b9aebf;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #ff4fa3;
  --purple: #9d5cff;
  --gold: #d6a84f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 79, 163, 0.16), transparent 32rem),
    radial-gradient(circle at 90% 18%, rgba(157, 92, 255, 0.15), transparent 28rem),
    linear-gradient(180deg, #08060b 0%, #0d0812 48%, #08060b 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 16px;
  background: rgba(8, 6, 11, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 10px 26px rgba(255, 79, 163, 0.32);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  gap: 4px;
  align-content: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav-links {
  position: fixed;
  inset: 69px 16px auto 16px;
  display: none;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(19, 15, 27, 0.98);
  box-shadow: var(--shadow);
}

.nav-links.open {
  display: grid;
}

.nav-links a {
  padding: 13px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.hero,
.page-main,
.auth-main,
.dashboard-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: center;
  gap: 34px;
  padding: 54px 0 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 12vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 6vw, 3rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-subtitle,
.page-hero p,
.profile-bio,
.section-heading h2 + p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  box-shadow: 0 18px 38px rgba(255, 79, 163, 0.28);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(214, 168, 79, 0.55);
  background: rgba(214, 168, 79, 0.08);
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(360px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.phone-content {
  padding: 20px;
}

.phone-content h2 {
  margin: 12px 0 4px;
  font-size: 1.7rem;
}

.mini-link,
.card-link {
  color: var(--gold);
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
  text-align: center;
}

.section-heading.left {
  text-align: left;
}

.featured-grid,
.model-grid,
.locked-grid,
.three-columns,
.dashboard-grid {
  display: grid;
  gap: 16px;
}

.model-card,
.info-card,
.form-card,
.dashboard-panel,
.analytics-panel,
.progress-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.model-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.model-card:hover,
.model-card.is-touched {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 163, 0.55);
}

.model-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.card-body {
  padding: 16px;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.card-body p {
  margin-bottom: 12px;
  color: var(--muted);
}

.bio {
  min-height: 76px;
  font-size: 0.95rem;
}

.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid rgba(214, 168, 79, 0.45);
  border-radius: 999px;
  color: #ffe0a2;
  background: rgba(214, 168, 79, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.stats-band {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(214, 168, 79, 0.16), rgba(157, 92, 255, 0.08));
}

.stat {
  padding: 12px;
}

.stat strong {
  display: block;
  font-size: 1.55rem;
}

.stat span {
  color: var(--muted);
}

.info-card {
  padding: 24px;
}

.icon-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 28px var(--pink);
}

.icon-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 28px var(--gold);
}

.icon-dot.purple {
  background: var(--purple);
  box-shadow: 0 0 28px var(--purple);
}

.page-main {
  padding: 38px 0 56px;
}

.page-hero {
  padding: 36px 0 26px;
  text-align: center;
}

.page-hero.compact h1 {
  font-size: clamp(2.1rem, 10vw, 4.6rem);
}

.left-aligned {
  text-align: left;
}

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

.profile-layout {
  display: grid;
  gap: 22px;
  padding: 38px 0;
}

.profile-media {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.profile-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-info {
  align-self: center;
}

.profile-info h1 {
  margin-top: 16px;
}

.location {
  color: var(--gold);
  font-weight: 800;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.social-row a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.locked-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.locked-card img {
  width: 100%;
  height: 100%;
  filter: blur(10px) saturate(0.85);
  transform: scale(1.06);
  object-fit: cover;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  background: rgba(8, 6, 11, 0.45);
}

.lock-icon {
  font-size: 2rem;
}

.auth-main {
  min-height: calc(100vh - 280px);
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.form-card {
  width: min(560px, 100%);
  padding: 24px;
}

.form-card.slim {
  width: min(460px, 100%);
}

.demo-form {
  display: grid;
  gap: 16px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: rgba(255, 79, 163, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 79, 163, 0.12);
}

.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
}

.check-row input {
  width: 18px;
  height: 18px;
}

.dashboard-main {
  padding-bottom: 56px;
}

.dashboard-grid {
  align-items: start;
}

.progress-card,
.dashboard-panel,
.analytics-panel {
  padding: 22px;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  margin: 18px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--gold));
}

.upload-placeholder {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px dashed rgba(214, 168, 79, 0.5);
  border-radius: 18px;
  background: rgba(214, 168, 79, 0.06);
}

.upload-placeholder img {
  width: 78px;
  height: 78px;
  border-radius: 16px;
  object-fit: cover;
}

.upload-placeholder p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.analytics-list {
  display: grid;
  gap: 12px;
}

.analytics-list article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.analytics-list span {
  display: block;
  color: var(--muted);
}

.analytics-list strong {
  display: block;
  margin-top: 4px;
  font-size: 1.9rem;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 20px;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  color: var(--text);
}

.footer p {
  margin-bottom: 6px;
}

.disclaimer {
  max-width: 720px;
  font-size: 0.9rem;
}

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

.footer-links a {
  color: var(--gold);
  font-weight: 800;
}

@media (min-width: 640px) {
  .featured-grid,
  .large-grid,
  .locked-grid,
  .three-columns,
  .stats-band {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    padding: 9px 12px;
  }

  .hero {
    grid-template-columns: 1.02fr 0.78fr;
  }

  .large-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .profile-layout {
    grid-template-columns: 0.82fr 1fr;
    gap: 44px;
  }

  .dashboard-grid {
    grid-template-columns: 0.78fr 1.35fr 0.9fr;
  }
}
