:root {
  color-scheme: dark light;
  --night: #080912;
  --night-2: #12101a;
  --panel: #17131f;
  --ink: #11131d;
  --muted: #717789;
  --line: #e8eaf1;
  --page: #ffffff;
  --soft: #f7f8fc;
  --pink: #f02f83;
  --pink-2: #ff70b7;
  --teal: #13bbb4;
  --gold: #f5b23a;
  --green: #0aa66d;
  --blue: #3169df;
  --red: #d83737;
  --shadow: 0 18px 48px rgba(9, 12, 24, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--night);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-top: env(safe-area-inset-top);
  background: rgba(8, 9, 18, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 850;
  white-space: nowrap;
}

.site-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(240, 47, 131, 0.28);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(4, 4, 10, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.menu-panel {
  position: fixed;
  top: env(safe-area-inset-top);
  right: 0;
  bottom: 0;
  z-index: 90;
  width: min(390px, calc(100% - 24px));
  padding: 88px 20px 22px;
  background:
    linear-gradient(180deg, rgba(240, 47, 131, 0.12), transparent 30%),
    #11101a;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.42);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

body.menu-open .menu-panel {
  transform: translateX(0);
}

body.menu-open .menu-scrim {
  opacity: 1;
  pointer-events: auto;
}

.menu-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  font-weight: 820;
}

.menu-list a::after {
  content: ">";
  color: rgba(255, 255, 255, 0.42);
}

.menu-list a:hover,
.menu-list a.active {
  color: #fff;
  border-color: rgba(240, 47, 131, 0.45);
  background: rgba(240, 47, 131, 0.18);
}

.menu-caption {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.55;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(118deg, #080912 0%, #12101a 51%, #301223 100%);
  background-size: 76px 76px, 76px 76px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(8, 9, 18, 0), var(--page));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: 82px 0 144px;
}

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

.eyebrow {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 780;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(240, 47, 131, 0.16);
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin: 21px 0 18px;
  color: #fff;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
}

.accent {
  color: #ff70b7;
}

.lead {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 31px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 830;
  white-space: nowrap;
}

.button-primary {
  background: var(--pink);
  box-shadow: 0 18px 40px rgba(240, 47, 131, 0.28);
}

.button-dark {
  background: #05060a;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.play-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
}

.play-text {
  display: grid;
  gap: 1px;
  text-align: left;
  line-height: 1.08;
}

.play-text small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 760;
}

.portrait-wrap {
  position: relative;
  min-height: 600px;
}

.portrait {
  position: absolute;
  inset: 22px 0 auto auto;
  width: min(560px, 100%);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: var(--night);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 30px 96px rgba(0, 0, 0, 0.44),
    0 0 98px rgba(240, 47, 131, 0.34);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill {
  position: absolute;
  z-index: 2;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
  font-size: 14px;
  font-weight: 830;
}

.pill-online {
  right: -10px;
  top: 82px;
}

.pill-call {
  left: -22px;
  bottom: 92px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #12d873;
  box-shadow: 0 0 0 6px rgba(18, 216, 115, 0.15);
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(118deg, #080912 0%, #12101a 51%, #301223 100%);
  background-size: 76px 76px, 76px 76px, auto;
}

.page-hero-inner {
  min-height: 380px;
  display: grid;
  align-content: center;
  padding: 74px 0 84px;
}

.page-hero h1 {
  max-width: 980px;
}

section {
  padding: 76px 0;
}

.section-soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(240, 47, 131, 0.06), rgba(19, 187, 180, 0.06)),
    var(--soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.kicker {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--pink);
  background: #fff0f7;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.section-head p,
.body-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 24px;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent, var(--pink)) 12%, white);
}

.icon-box img {
  width: 22px;
  height: 22px;
}

.dark-card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #23031c 0%, #831353 48%, #f02f83 100%);
}

.dark-card h3,
.dark-card p {
  color: #fff;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.82);
}

.rate-number {
  color: var(--blue);
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1;
  font-weight: 850;
}

.dark-card .rate-number {
  color: #ff70b7;
}

.feature-strip {
  position: relative;
  z-index: 2;
  margin-top: -74px;
}

.mini-card {
  min-height: 118px;
  padding: 18px;
}

.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--pink);
  font-size: 13px;
  font-weight: 900;
}

.notice {
  border-color: rgba(216, 55, 55, 0.28);
  background: #fff7f7;
  box-shadow: none;
}

.notice strong {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
}

.register-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: 18px;
  align-items: start;
}

.register-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(240, 47, 131, 0.12), rgba(49, 105, 223, 0.07)),
    #11101a;
  box-shadow: 0 24px 70px rgba(8, 9, 18, 0.26);
  color: #fff;
  overflow: hidden;
}

.register-panel-inner {
  padding: clamp(22px, 4vw, 34px);
}

.register-panel h2,
.register-panel h3,
.register-panel p {
  color: inherit;
}

.register-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.register-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.register-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.register-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.register-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(240, 47, 131, 0.14);
}

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

.model-form [hidden] {
  display: none !important;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
}

.form-card-title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 19px;
}

.step-dot {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.model-form .full {
  grid-column: 1 / -1;
}

.form-field label,
.upload-title {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.model-form input[type="text"],
.model-form input[type="tel"],
.model-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dde1ea;
  border-radius: 10px;
  background: #f8f9fd;
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.model-form input:focus,
.model-form select:focus {
  border-color: rgba(240, 47, 131, 0.54);
  box-shadow: 0 0 0 4px rgba(240, 47, 131, 0.11);
  background: #fff;
}

.phone-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
}

.dial-code {
  min-width: 78px;
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #dde1ea;
  border-radius: 10px;
  background: #11101a;
  color: #fff;
  font-weight: 900;
}

.agency-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e8eaf1;
  border-radius: 10px;
  background: #fafbff;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}

.agency-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
}

.upload-zone {
  display: grid;
  gap: 12px;
}

.upload-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.upload-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.photo-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.photo-slot,
.selfie-preview {
  min-height: 142px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(240, 47, 131, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(240, 47, 131, 0.09), rgba(49, 105, 223, 0.08)),
    #fafbff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 840;
  text-align: center;
}

.photo-slot img,
.selfie-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selfie-preview {
  min-height: 210px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.model-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-status {
  display: none;
  padding: 13px 14px;
  border-radius: 10px;
  background: #f7f8fc;
  color: var(--ink);
  font-weight: 820;
  line-height: 1.45;
}

.form-status.show {
  display: block;
}

.form-status.success {
  border: 1px solid rgba(10, 166, 109, 0.28);
  background: #effaf5;
  color: #086844;
}

.form-status.error {
  border: 1px solid rgba(216, 55, 55, 0.26);
  background: #fff5f5;
  color: #b42323;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.footer-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 780;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

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

.footer-links a {
  color: var(--ink);
  font-weight: 720;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .register-shell,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 58px;
  }

  .portrait-wrap {
    min-height: 550px;
  }

  .portrait {
    left: 0;
    right: 0;
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .pill-online {
    right: calc(50% - 245px);
  }

  .pill-call {
    left: calc(50% - 245px);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-nav {
    min-height: 66px;
  }

  .site-logo {
    width: 38px;
    height: 38px;
  }

  .site-brand {
    font-size: 18px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .lead {
    font-size: 16px;
  }

  .hero-grid,
  .page-hero-inner {
    padding-top: 50px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .portrait-wrap {
    min-height: 430px;
  }

  .pill {
    position: static;
    margin: 10px 0 0;
  }

  .feature-strip {
    margin-top: -52px;
  }

  section {
    padding: 58px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }

  .form-grid,
  .photo-slots {
    grid-template-columns: 1fr;
  }

  .upload-head,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }
}
