@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #090910;
  --bg-soft: #11111d;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.13);
  --accent: #ff4fc3;
  --accent-2: #7c5cff;
  --accent-3: #24f2ff;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 195, 0.15), transparent 34rem),
    radial-gradient(circle at top right, rgba(36, 242, 255, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.32;
  pointer-events: none;
  z-index: -1;
}

.page-glow-one {
  left: -10rem;
  top: 12rem;
  background: var(--accent);
}

.page-glow-two {
  right: -12rem;
  bottom: 4rem;
  background: var(--accent-3);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 70px);
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 16, 0.68);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 12px 34px rgba(255, 79, 195, 0.32);
}

.logo-text {
  font-size: 1.08rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover {
  color: var(--text);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 20px;
  background: var(--text);
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 42px;
  padding: 70px 0 46px;
}

.eyebrow,
.section-label {
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 14px;
}

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

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
}

h3 {
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 16px 42px rgba(255, 79, 195, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-stats div {
  min-width: 130px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.phone-frame {
  width: min(340px, 100%);
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 46px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.phone-top {
  width: 86px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  margin: 0 auto 28px;
}

.phone-profile {
  min-height: 482px;
  border-radius: 34px;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.74) 100%),
    radial-gradient(circle at 30% 20%, rgba(255, 79, 195, 0.85), transparent 34%),
    radial-gradient(circle at 72% 16%, rgba(36, 242, 255, 0.78), transparent 30%),
    linear-gradient(135deg, #2a104a, #14142b 54%, #190a1f);
  overflow: hidden;
}

.phone-profile h3 {
  font-size: 2.4rem;
  margin: 20px 0 6px;
}

.phone-profile p {
  color: var(--muted);
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-links span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
}

.toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0 24px;
}

.filters {
  display: flex;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
}

.search,
.select {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search input,
.select select {
  height: 50px;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.search input:focus,
.select select:focus {
  border-color: rgba(36, 242, 255, 0.58);
}

.select option {
  background: #12121c;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 70px;
}

.model-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.23);
}

.model-cover {
  min-height: 250px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 100%),
    var(--cover-gradient);
}

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.32);
  background: var(--cover-gradient);
}

.avatar.big {
  width: 112px;
  height: 112px;
  border-radius: 32px;
  font-size: 3rem;
}

.avatar.small {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 1.25rem;
}

.model-body {
  padding: 20px;
}

.model-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.model-head h3 {
  font-size: 1.35rem;
  margin: 0 0 3px;
}

.model-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.social-link,
.more-button {
  border: 1px solid var(--line);
  border-radius: 15px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover,
.more-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
}

.more-button {
  width: 100%;
  margin-top: 10px;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 20px 0 86px;
}

.about-card,
.contact,
.steps div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: clamp(22px, 4vw, 38px);
}

.about-card p,
.contact p,
.steps p {
  color: var(--muted);
  line-height: 1.7;
}

.steps {
  display: grid;
  gap: 18px;
}

.steps span {
  display: inline-flex;
  color: var(--accent-3);
  font-weight: 900;
  margin-bottom: 16px;
}

.contact {
  text-align: center;
  margin-bottom: 70px;
  background:
    linear-gradient(135deg, rgba(255, 79, 195, 0.18), rgba(124, 92, 255, 0.12)),
    var(--card);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 78px 18px auto 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(17, 17, 29, 0.96);
  backdrop-filter: blur(18px);
  padding: 14px;
  z-index: 49;
}

.mobile-nav a {
  display: block;
  padding: 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 800;
}

.mobile-nav a:hover {
  background: var(--card);
  color: var(--text);
}

.mobile-nav.open {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  z-index: 90;
}

.modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 30px;
  background: #12121d;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-card p {
  color: var(--muted);
  line-height: 1.7;
}

.modal-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 38px;
  color: var(--muted);
  text-align: center;
}

.gradient-1 { --cover-gradient: linear-gradient(135deg, #ff4fc3, #7c5cff); }
.gradient-2 { --cover-gradient: linear-gradient(135deg, #24f2ff, #2f6bff); }
.gradient-3 { --cover-gradient: linear-gradient(135deg, #ffb84f, #ff4f8b); }
.gradient-4 { --cover-gradient: linear-gradient(135deg, #7cffd9, #7c5cff); }
.gradient-5 { --cover-gradient: linear-gradient(135deg, #ff4f4f, #20104a); }
.gradient-6 { --cover-gradient: linear-gradient(135deg, #e7ff4f, #ff4fc3); }

@media (max-width: 920px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    justify-content: flex-start;
  }

  .phone-frame {
    transform: none;
  }

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

  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  main {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .model-grid,
  .socials,
  .modal-socials {
    grid-template-columns: 1fr;
  }

  .filters,
  .search,
  .select,
  .search input,
  .select select {
    width: 100%;
    min-width: 0;
  }

  .phone-frame {
    min-height: auto;
  }

  .phone-profile {
    min-height: 420px;
  }
}
