:root {
  --bg: #03060b;
  --bg-soft: #070d16;
  --panel: rgba(13, 20, 33, 0.78);
  --panel-strong: #0b111d;
  --line: rgba(177, 195, 225, 0.18);
  --text: #f7f9ff;
  --muted: #aeb8c9;
  --blue: #2679ff;
  --blue-bright: #38bdf8;
  --indigo: #6d5dfc;
  --rose: #e879a5;
  --green: #3dd68c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(38, 121, 255, 0.34), transparent 34rem),
    radial-gradient(circle at 22% 88%, rgba(109, 93, 252, 0.2), transparent 28rem),
    linear-gradient(180deg, #020409 0%, #070b12 44%, #020409 100%);
  color: var(--text);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 78px;
  padding: 0 36px;
  border-bottom: 1px solid rgba(177, 195, 225, 0.1);
  background: rgba(3, 6, 11, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 42px;
  height: 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  transform: skew(-10deg);
}

.brand-mark span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 28px;
  border-radius: 10px 16px 16px 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 10px 28px rgba(38, 121, 255, 0.4);
}

.brand-mark span + span {
  margin-left: -7px;
  border-radius: 16px 10px 10px 16px;
}

.brand-name {
  font-size: 25px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  color: var(--muted);
  font-size: 15px;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
}

.site-nav a.active,
.site-nav a:hover {
  color: #fff;
}

.site-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-box {
  display: flex;
  align-items: center;
  width: min(230px, 24vw);
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(12, 18, 30, 0.78);
  color: var(--muted);
}

.search-box span {
  width: 13px;
  height: 13px;
  margin-right: 10px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.search-box span::after {
  display: block;
  width: 7px;
  height: 1.7px;
  margin: 9px 0 0 10px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(45deg);
  content: "";
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #135cff, #35a9ff);
  box-shadow: 0 16px 34px rgba(38, 121, 255, 0.34);
}

.button-ghost {
  border-color: rgba(221, 231, 249, 0.38);
  background: rgba(3, 6, 11, 0.42);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #fff;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  min-height: 650px;
  padding: 70px clamp(28px, 6vw, 88px);
  border-bottom: 1px solid rgba(177, 195, 225, 0.08);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 0 15px;
  border: 1px solid rgba(177, 195, 225, 0.16);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  color: #cdd7e7;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--blue);
}

.hero-copy > p:not(.pill),
.page-hero p:not(.pill),
.section-intro {
  max-width: 520px;
  color: #d8deea;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 62px;
}

.trust-row div {
  min-height: 76px;
  padding-top: 10px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  margin-top: 7px;
  color: var(--muted);
}

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.portrait {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  border: 1px solid rgba(177, 195, 225, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 21%, rgba(255, 255, 255, 0.96) 0 7%, transparent 7.2%),
    radial-gradient(ellipse at 50% 30%, rgba(34, 26, 38, 0.8) 0 24%, transparent 24.4%),
    radial-gradient(ellipse at 50% 46%, rgba(232, 121, 165, 0.72) 0 25%, transparent 25.4%),
    linear-gradient(145deg, #171b25, #111722 38%, #070a10);
  box-shadow: inset 0 -70px 90px rgba(0, 0, 0, 0.86), var(--shadow);
}

.portrait::before {
  position: absolute;
  inset: 8% 12% auto;
  height: 54%;
  border-radius: 47% 47% 44% 44%;
  background: linear-gradient(135deg, rgba(12, 10, 16, 0.98), rgba(48, 32, 45, 0.96));
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.45);
  content: "";
}

.portrait::after {
  position: absolute;
  right: 16%;
  bottom: 0;
  left: 16%;
  height: 44%;
  border-radius: 46% 46% 0 0;
  background: linear-gradient(135deg, rgba(232, 121, 165, 0.74), rgba(58, 72, 96, 0.92));
  content: "";
}

.portrait-large {
  width: min(560px, 82%);
  min-height: 565px;
  border-radius: 18px;
  transform: rotate(1deg);
}

.portrait-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 18%, rgba(56, 189, 248, 0.35), transparent 13rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 45%);
}

.creator-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  font-weight: 900;
}

.portrait-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(3, 6, 11, 0.58);
  backdrop-filter: blur(12px);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption span {
  margin-top: 5px;
  color: var(--muted);
}

.section,
.page-shell {
  padding: 68px clamp(24px, 6vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.why-section h2,
.page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.why-section > p,
.feature-grid p,
.price-card p,
.auth-card p {
  color: var(--muted);
  line-height: 1.6;
}

.link-arrow {
  color: #fff;
  font-weight: 800;
}

.link-arrow::after {
  margin-left: 14px;
  color: var(--blue-bright);
  content: ">";
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

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

.creator-card {
  position: relative;
  min-height: 305px;
  border: 1px solid rgba(177, 195, 225, 0.16);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
}

.creator-card .portrait {
  min-height: 305px;
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 -120px 95px rgba(0, 0, 0, 0.88);
}

.portrait-ava {
  background-color: #1d1410;
  filter: hue-rotate(8deg) saturate(1.05);
}

.portrait-lina {
  background-color: #12141b;
  filter: hue-rotate(205deg) saturate(0.78);
}

.portrait-mia {
  background-color: #251811;
  filter: hue-rotate(330deg) saturate(0.86) brightness(1.08);
}

.portrait-kyra {
  background-color: #140f12;
  filter: hue-rotate(25deg) saturate(1.2);
}

.portrait-nora {
  background-color: #241511;
  filter: hue-rotate(350deg) saturate(1.12);
}

.portrait-sera {
  background-color: #111927;
  filter: hue-rotate(180deg) saturate(0.94);
}

.creator-info {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 5;
}

.creator-info h3 {
  margin-bottom: 2px;
  font-size: 19px;
}

.creator-info h3 span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 20px;
  padding: 0 6px;
  border-radius: 99px;
  background: var(--blue);
  font-size: 11px;
}

.creator-info p {
  margin-bottom: 14px;
  color: #c7cfdb;
}

.creator-info strong {
  display: inline-flex;
  align-items: baseline;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
}

.creator-info small,
.price-card small {
  color: var(--muted);
  font-size: 12px;
}

.why-section {
  text-align: center;
}

.why-section .section-intro {
  margin-right: auto;
  margin-left: auto;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
  text-align: left;
}

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

.feature-grid article,
.price-card,
.auth-card,
.cta-band {
  border: 1px solid rgba(177, 195, 225, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(13, 20, 33, 0.82), rgba(7, 11, 18, 0.86));
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.22);
}

.feature-grid article {
  min-height: 190px;
  padding: 28px;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  color: var(--blue-bright);
  font-size: 25px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 24px clamp(24px, 6vw, 72px) 40px;
  padding: 34px 48px;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 5vw, 42px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 36px clamp(24px, 6vw, 72px) 44px;
  color: var(--muted);
}

.site-footer a,
.site-footer strong {
  display: block;
}

.site-footer strong {
  margin-bottom: 10px;
  color: #fff;
}

.site-footer p {
  align-self: end;
  margin: 0;
  font-size: 13px;
}

.page-shell {
  min-height: calc(100vh - 78px);
}

.page-hero {
  margin: 20px auto 34px;
  text-align: center;
}

.page-hero.compact {
  max-width: 760px;
}

.page-hero h1 {
  margin-right: auto;
  margin-left: auto;
}

.page-hero p:not(.pill) {
  margin-right: auto;
  margin-left: auto;
}

.pricing-grid {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.price-card {
  min-height: 320px;
  padding: 34px;
}

.price-card.highlighted {
  border-color: rgba(56, 189, 248, 0.46);
  background:
    radial-gradient(circle at 85% 0%, rgba(38, 121, 255, 0.28), transparent 18rem),
    linear-gradient(180deg, rgba(13, 20, 33, 0.95), rgba(7, 11, 18, 0.9));
}

.price-card h2 {
  font-size: 28px;
}

.price-card strong {
  display: block;
  margin: 34px 0;
  font-size: 32px;
}

.auth-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 26px;
}

.auth-shell > .brand {
  position: fixed;
  top: 28px;
  left: 32px;
}

.auth-card {
  width: min(100%, 440px);
  padding: 34px;
}

.auth-card h1 {
  margin-bottom: 28px;
  font-size: 42px;
}

.auth-card form {
  display: grid;
  gap: 18px;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: #d9e2f0;
  font-weight: 700;
}

.auth-card input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 14px;
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
}

.check-row input {
  min-height: 20px;
  margin: 2px 0 0;
}

.auth-card .button {
  width: 100%;
}

.auth-card a {
  color: var(--blue-bright);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  body.nav-open .site-nav,
  body.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
  }

  body.nav-open .site-nav {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  body.nav-open .site-nav a {
    padding: 16px 0;
  }

  body.nav-open .header-actions {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: 22px;
  }

  .search-box {
    width: 100%;
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .portrait-large {
    width: min(520px, 100%);
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 0 18px;
  }

  .brand-name {
    font-size: 22px;
  }

  .hero-section,
  .section,
  .page-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-copy > p:not(.pill),
  .page-hero p:not(.pill),
  .section-intro {
    font-size: 17px;
  }

  .trust-row,
  .creator-grid,
  .creator-grid.expanded,
  .feature-grid,
  .feature-grid.expanded,
  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    margin-right: 18px;
    margin-left: 18px;
    padding: 26px;
  }

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

  .button {
    width: 100%;
  }

  .portrait-large {
    min-height: 440px;
  }
}
