:root {
  --ink: #0a0a0a;
  --white: #ffffff;
  --accent: #6d8cff;
  --accent-soft: #8aa4ff;
  --accent-deep: #4f6ef7;
  --deep: #07111f;
  --navy: #0a0a0a;
  --font: "Poppins", system-ui, -apple-system, sans-serif;
  --mono: "Poppins", system-ui, -apple-system, sans-serif;
  --promo-h: 2.85rem;
  --rail-peek: 3.5rem;
  --rail-gap: 0.7rem;
  --rail-visible: 5;
  --rail-inset: 0.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #ffffff;
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

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

/* ========== PROMO BANNER ========== */
.promo-banner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(90deg, #07111f 0%, #1e3a8a 40%, #2563eb 70%, #60a5fa 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-banner__label {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.promo-banner__text {
  color: rgba(255, 255, 255, 0.88);
}

.promo-banner__sep {
  opacity: 0.55;
}

.promo-banner__deal {
  color: rgba(255, 255, 255, 0.95);
}

.promo-banner__deal strong {
  font-weight: 700;
  color: #fff;
}

/* ========== HERO STAGE ========== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--promo-h) - var(--rail-peek));
  min-height: calc(100dvh - var(--promo-h) - var(--rail-peek));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
}

.hero__mesh {
  position: absolute;
  inset: -18% -14% 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 8% 100%, #1d4ed8 0%, transparent 58%),
    radial-gradient(ellipse 55% 70% at 92% 100%, #f97316 0%, transparent 58%),
    radial-gradient(ellipse 48% 62% at 18% 88%, #ef4444 0%, transparent 55%),
    radial-gradient(ellipse 48% 62% at 82% 88%, #fdba74 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 50% 58%, #1e3a8a 0%, transparent 60%),
    radial-gradient(ellipse 58% 48% at 50% 42%, #1d4ed8 0%, transparent 56%),
    radial-gradient(ellipse 50% 42% at 50% 28%, #1e40af 0%, transparent 55%),
    radial-gradient(ellipse 95% 80% at 50% 18%, #0b1f3a 0%, #07111f 55%, transparent 72%);
  filter: blur(46px) saturate(1.15);
  transform: scale(1.04);
  opacity: 0.84;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 46%,
    rgba(0, 0, 0, 0.88) 60%,
    rgba(0, 0, 0, 0.4) 76%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 46%,
    rgba(0, 0, 0, 0.88) 60%,
    rgba(0, 0, 0, 0.4) 76%,
    transparent 100%
  );
}

.hero__mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 48%,
    rgba(255, 255, 255, 0.38) 68%,
    rgba(255, 255, 255, 0.82) 86%,
    #ffffff 100%
  );
  pointer-events: none;
}

.hero__mesh::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10%;
  width: 145%;
  height: 58%;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 38%,
    #ffffff 76%
  );
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  pointer-events: none;
}

/* ========== NAV ========== */
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 68rem;
  min-height: 4.6rem;
  margin: 0 auto;
  padding: 1.85rem 1.75rem 0;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
}

.logo-c {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("./logo.svg") center / contain no-repeat;
  mask: url("./logo.svg") center / contain no-repeat;
}

.menu {
  position: absolute;
  left: 50%;
  top: calc(1.6rem + 1.425rem);
  transform: translate(-50%, -50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 2.85rem;
  min-width: min(40rem, 78vw);
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(148, 180, 255, 0.14);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 28px rgba(7, 17, 31, 0.18);
}

.menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 2.2rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
  transition: background 0.15s ease;
}

.menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16);
}

.nav__right {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.nav__faq {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0 0.95rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.nav__faq:hover,
.nav__faq[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16);
}

/* ========== BUTTONS — Creomify theme ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  padding: 0 1.2rem;
  border-radius: 0.8rem;
  border: 0;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    filter 0.15s ease;
}

.btn--sm {
  min-height: 2.4rem;
  padding: 0 1.05rem;
  border-radius: 0.7rem;
  font-size: 0.84rem;
}

.btn--lg {
  min-height: 3.2rem;
  padding: 0 2.75rem;
  border-radius: 0.9rem;
  font-size: 0.98rem;
}

.hero__body > .btn--primary {
  margin: 0 auto;
  min-width: min(100%, 22rem);
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: 0.9rem;
  background: linear-gradient(
    145deg,
    #1d4ed8 0%,
    #1e40af 42%,
    #1e3a8a 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 12px 28px rgba(30, 58, 138, 0.42);
}

.hero__body > .btn--primary:hover {
  filter: brightness(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 16px 34px rgba(30, 58, 138, 0.5);
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: #0a0a0a;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.final-cta .btn--primary {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* ========== HERO BODY — full stage, airy ========== */
.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 54rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4.5rem;
  text-align: center;
}

.hero h1 {
  margin: 0 auto 1.75rem;
  max-width: 14ch;
  font-size: clamp(3.15rem, 7.8vw, 6.15rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
}

.hero__lead {
  margin: 0 auto 1.65rem;
  max-width: 36rem;
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  line-height: 1.5;
  font-weight: 400;
  color: #0a0a0a;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.85rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0a0a0a;
}

.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust__check,
.trust__g2 {
  display: inline-grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  color: #111111;
}

/* ========== ADS RAIL — only tops peek under hero ========== */
.ads-rail {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0 var(--rail-inset) 1.5rem;
  background: #ffffff;
}

.ads-rail__shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.ads-rail__viewport {
  display: flex;
  gap: var(--rail-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.15rem 0 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ads-rail__viewport::-webkit-scrollbar {
  display: none;
}

.ad-card {
  position: relative;
  flex: 0 0 auto;
  width: calc(
    (100vw - (var(--rail-inset) * 2) - (var(--rail-gap) * (var(--rail-visible) - 1))) /
      var(--rail-visible)
  );
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 1.05rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  scroll-snap-align: start;
  overflow: hidden;
}

.ad-card__video,
.ad-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0a0a0a;
}

.ad-card--image .ad-card__img {
  background: #f3f4f6;
}

.ad-card__mute {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}

.ads-rail__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.15s ease, transform 0.15s ease;
}

.ads-rail__nav:hover {
  background: rgba(0, 0, 0, 0.88);
}

.ads-rail__nav:active {
  transform: translateY(-50%) scale(0.97);
}

.ads-rail__nav--prev {
  left: 0.85rem;
}

.ads-rail__nav--next {
  right: 0.85rem;
}

@media (max-width: 820px) {
  .nav {
    padding: 1.2rem 1.2rem 0;
    min-height: 3.8rem;
  }

  .menu {
    display: none;
  }

  .nav__faq {
    display: inline-flex;
  }

  .hero__body {
    padding: 2rem 1.2rem 3.5rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 12vw, 4.05rem);
    margin-bottom: 1.45rem;
  }

  .hero__lead {
    margin-bottom: 1.35rem;
  }

  .trust {
    margin-top: 1.55rem;
    gap: 1.5rem;
  }

  .ads-rail {
    padding: 0 var(--rail-inset) 1rem;
    --rail-visible: 2.6;
    --rail-gap: 0.6rem;
    --rail-inset: 0.55rem;
  }

  .ad-card {
    border-radius: 0.95rem;
  }

  .ads-rail__nav--prev {
    left: 0.45rem;
  }

  .ads-rail__nav--next {
    right: 0.45rem;
  }
}

/* ========== UGC PACK (product → ads demo) ========== */
.ugc-pack {
  position: relative;
  z-index: 2;
  padding: 5rem 1.75rem 2.75rem;
  background: #ffffff;
  color: #0a0a0a;
}

.ugc-pack__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.45fr);
  gap: 3.25rem 4.25rem;
  align-items: center;
  max-width: 74rem;
  margin: 0 auto;
}

.ugc-pack__copy {
  max-width: 26rem;
}

.ugc-pack__copy h2 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #0a0a0a;
}

.ugc-pack__copy p {
  margin: 0;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.55;
  font-weight: 400;
  color: #52525b;
}

.ugc-pack__media {
  position: relative;
  width: 100%;
  max-width: 46rem;
  margin-left: auto;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #f4f5f7;
  border: 1px solid rgba(10, 10, 10, 0.06);
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.06);
}

.ugc-pack__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 860px) {
  .ugc-pack {
    padding: 3.5rem 1.25rem 1.35rem;
  }

  .ugc-pack__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ugc-pack__copy {
    max-width: 36rem;
    margin: 0 auto;
    text-align: left;
  }

  .ugc-pack__media {
    max-width: none;
    margin-left: 0;
    border-radius: 1rem;
  }
}

/* ========== TALENTS ========== */
.talents {
  position: relative;
  z-index: 2;
  padding: 3.25rem 1.25rem 3.5rem;
  background: #ffffff;
  color: #0a0a0a;
}

.talents__head {
  max-width: 36rem;
  margin: 0 auto 1.85rem;
  text-align: center;
}

.talents__head h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.talents__head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #52525b;
}

.talents__grid,
.talents__more {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 52rem;
  margin: 0 auto;
}

.talents__more {
  margin-top: 0.9rem;
}

.talents__more[hidden] {
  display: none;
}

.talent-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.55rem 0.55rem 0.85rem;
  border-radius: 1.15rem;
  background: #f6f7f9;
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.talent-card__face {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #1e293b;
}

.talent-card__face img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.talent-card h3 {
  margin: 0.25rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.talent-card p {
  margin: 0;
  padding: 0 0.25rem;
  font-size: 0.86rem;
  color: #71717a;
}

.talents__toggle {
  display: block;
  margin: 1.35rem auto 0;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.talents__toggle:hover {
  background: #f4f4f5;
}

.talents__more-link {
  display: block;
  width: fit-content;
  margin: 1.45rem auto 0;
  padding: 0.72rem 1.25rem;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.talents__more-link:hover {
  background: #f4f4f5;
  border-color: rgba(10, 10, 10, 0.18);
}

@media (max-width: 720px) {
  .talents {
    padding: 2.25rem 1rem 2.5rem;
  }

  .talents__grid,
  .talents__more {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

/* ========== MODELS (powered by) ========== */
.models {
  position: relative;
  z-index: 2;
  padding: 4.25rem 1.25rem 4.75rem;
  color: #0a0a0a;
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(29, 78, 216, 0.08), transparent 60%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(249, 115, 22, 0.1), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 48%, #ffffff 100%);
  overflow: hidden;
}

.models__inner {
  position: relative;
  max-width: 68rem;
  margin: 0 auto;
}

.models__head {
  max-width: 34rem;
  margin: 0 auto 2.35rem;
  text-align: center;
}

.models__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.models__head h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.models__head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #52525b;
}

.model-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr);
  gap: 1.75rem 2.25rem;
  align-items: center;
  margin: 0 auto 1.35rem;
  padding: 0.85rem;
  border-radius: 1.35rem;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.06);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.model-feature__visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #0b1f3a;
  aspect-ratio: 16 / 9;
}

.model-feature__visual img,
.model-feature__visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s ease;
}

.model-feature:hover .model-feature__visual img,
.model-feature:hover .model-feature__visual video {
  transform: scale(1.035);
}

.model-feature__visual:has(video)::after {
  display: none;
}

.model-feature__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: modelShine 7.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes modelShine {
  0%,
  62% {
    transform: translateX(-120%);
  }
  78% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.model-feature__copy {
  padding: 0.35rem 0.85rem 0.55rem 0.25rem;
}

.model-feature__badge {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.1);
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.model-feature__copy h3 {
  margin: 0 0 0.2rem;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.model-feature__maker,
.model-card__maker {
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: -0.01em;
}

.model-feature__copy > p:last-child {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #52525b;
}

.models__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.model-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0.7rem 1rem;
  border-radius: 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.06);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.model-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.model-card__visual {
  position: relative;
  margin-bottom: 0.65rem;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 3 / 2;
}

.model-card__visual img,
.model-card__visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-card__visual--portrait img,
.model-card__visual--portrait video {
  object-position: center 28%;
}

.model-card h3 {
  margin: 0;
  padding: 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.model-card__maker {
  padding: 0 0.2rem;
  margin-bottom: 0.35rem;
}

.model-card > p:last-child {
  margin: 0;
  padding: 0 0.2rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #71717a;
}

@media (max-width: 900px) {
  .model-feature {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .model-feature__copy {
    padding: 0 0.35rem 0.35rem;
  }
}

@media (max-width: 720px) {
  .models {
    padding: 3rem 1rem 3.25rem;
  }

  .models__head {
    margin-bottom: 1.75rem;
  }

  .models__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .model-feature {
    padding: 0.65rem;
    border-radius: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .model-feature__visual::after,
  .model-feature__visual img,
  .model-card {
    animation: none;
    transition: none;
  }

  .model-feature:hover .model-feature__visual img,
  .model-feature:hover .model-feature__visual video,
  .model-card:hover {
    transform: none;
  }
}

/* ========== PRICING CARDS ========== */
.pricing {
  padding: 3.5rem 1.25rem 5.25rem;
  background: linear-gradient(180deg, #f4f5f7 0%, #f4f5f7 58%, #fafafa 82%, #ffffff 100%);
  color: #0a0a0a;
}

.pricing__head {
  max-width: 36rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.pricing__head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #0a0a0a;
}

.pricing__head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #71717a;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  max-width: 52rem;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 1.65rem;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 14px 40px rgba(15, 23, 42, 0.07);
}

.pricing-card__top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 1.85rem;
}

.pricing-card__name {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}

.pricing-card__tagline {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #71717a;
}

.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  white-space: nowrap;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
  line-height: 1;
}

.pricing-card__current {
  font-size: clamp(2.35rem, 4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #0a0a0a;
}

.pricing-card__old {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #a1a1aa;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.pricing-card__period {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: #a1a1aa;
}

.pricing-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  border: 1px solid #e4e4e7;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.pricing-card__cta:hover {
  background: #fafafa;
  border-color: #d4d4d8;
}

.pricing-card__cta--solid {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #ffffff;
}

.pricing-card__cta--solid:hover {
  background: #18181b;
  border-color: #18181b;
}

.pricing-card__cta-arrow {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: var(--accent-deep);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3.5 8h9M8.5 4.5L12 8l-3.5 3.5' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3.5 8h9M8.5 4.5L12 8l-3.5 3.5' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}

.pricing-card__features {
  list-style: none;
  margin: 1.65rem 0 0;
  padding: 0;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.62rem 0;
  font-size: 0.98rem;
  line-height: 1.4;
  color: #18181b;
}

.pricing-card__features li.is-off {
  color: #a1a1aa;
}

.pricing-card__mark {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.12rem;
  background: var(--accent-deep);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'><path d='M4 9.2L7.2 12.4L14 5.4' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'><path d='M4 9.2L7.2 12.4L14 5.4' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}

.pricing-card__features li.is-off .pricing-card__mark {
  background: #c4c4cc;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'><path d='M5.4 5.4l7.2 7.2M12.6 5.4l-7.2 7.2' stroke='black' stroke-width='2.2' stroke-linecap='round'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'><path d='M5.4 5.4l7.2 7.2M12.6 5.4l-7.2 7.2' stroke='black' stroke-width='2.2' stroke-linecap='round'/></svg>") center / contain no-repeat;
}

.pricing__note {
  max-width: 38rem;
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: #71717a;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
  }

  .pricing-card {
    padding: 1.65rem 1.4rem 1.4rem;
  }
}

/* ========== FINAL CTA ========== */
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5.5rem 1.25rem 6.25rem;
  background: #ffffff;
  color: #0a0a0a;
}

.final-cta__photos {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.final-cta__photo {
  position: absolute;
  margin: 0;
  width: 7.4rem;
  border-radius: 0.95rem;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 18px 40px rgba(15, 23, 42, 0.14);
}

.final-cta__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.final-cta__photo--left {
  top: 18%;
  left: max(1.5rem, calc(50% - 28rem));
  aspect-ratio: 3 / 4;
  transform: rotate(-9deg);
}

.final-cta__photo--right {
  top: 42%;
  right: max(1.5rem, calc(50% - 28rem));
  aspect-ratio: 3 / 4;
  transform: rotate(8deg);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.final-cta__proof {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.final-cta__faces {
  display: inline-flex;
  align-items: center;
}

.final-cta__faces img {
  width: 1.85rem;
  height: 1.85rem;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: #e5e5e5;
}

.final-cta__faces img + img {
  margin-left: -0.45rem;
}

.final-cta h2 {
  margin: 0 auto 0.9rem;
  max-width: 18ch;
  font-size: clamp(2.15rem, 4.8vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.12;
  color: #0a0a0a;
}

.final-cta__lead {
  margin: 0 auto 1.85rem;
  max-width: 30rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #52525b;
}

.final-cta__trust {
  margin: 1.1rem 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #71717a;
}

@media (max-width: 960px) {
  .final-cta__photo {
    width: 6.2rem;
  }

  .final-cta__photo--left {
    left: 0.85rem;
  }

  .final-cta__photo--right {
    right: 0.85rem;
  }
}

@media (max-width: 720px) {
  .final-cta {
    padding: 3.75rem 1.15rem 4.5rem;
  }

  .final-cta h2 {
    max-width: 14ch;
  }

  .final-cta__photos {
    display: none;
  }
}

/* ========== SUBPAGES (FAQ) ========== */
.hero--compact {
  min-height: 0;
}

.hero--compact .hero__mesh {
  inset: -28% -14% -20%;
}

.hero--compact .hero__body {
  flex: 0 0 auto;
  padding: 2.75rem 1.5rem 3.5rem;
}

.hero--compact h1 {
  max-width: none;
  font-size: clamp(2.55rem, 5.4vw, 4.1rem);
  margin-bottom: 0.85rem;
}

.hero--compact .hero__lead {
  margin-bottom: 0;
}

.faq {
  padding: 0.5rem 1.25rem 4.5rem;
  background: #ffffff;
  color: #0a0a0a;
}

.faq__list {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid #e4e4e7;
  border-radius: 1rem;
  background: #f7f7f8;
}

.faq-item[open] {
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.25rem;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #0a0a0a;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: "";
}

.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: -0.2rem;
  border-right: 2px solid #71717a;
  border-bottom: 2px solid #71717a;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  margin-top: 0.15rem;
  transform: rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  max-width: 40rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #52525b;
}

@media (max-width: 720px) {
  .hero--compact .hero__body {
    padding: 1.75rem 1.2rem 2.5rem;
  }

  .faq {
    padding: 0.25rem 1rem 3.5rem;
  }

  .faq-item summary {
    padding: 1rem 1.1rem;
    font-size: 0.98rem;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 2.35rem 1.5rem 2.5rem;
  border-top: 1px solid #ececec;
  background: #ffffff;
  color: #0a0a0a;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.site-footer__brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #52525b;
}

.site-footer nav a:hover {
  color: #0a0a0a;
}

.site-footer__legal {
  width: 100%;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #a1a1aa;
}

@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========== Q4 MODAL ========== */
.q4-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.q4-modal[hidden] {
  display: none;
}

.q4-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, 0.55);
  backdrop-filter: blur(8px);
}

.q4-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 0.95fr) minmax(16rem, 1.05fr);
  width: min(760px, 100%);
  min-height: 22.5rem;
  max-height: min(90vh, 480px);
  overflow: hidden;
  border-radius: 1.35rem;
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.q4-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a0a0a;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.q4-modal__art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #0b1f3a url("./q4-city.png") center 42% / cover no-repeat;
}

.q4-modal__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
}

.q4-modal__brand {
  position: absolute;
  left: 1.15rem;
  top: 0.95rem;
  z-index: 2;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.q4-modal__brand .logo-c {
  width: 2.35rem;
  height: 2.35rem;
}

.q4-modal__pill {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 2;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.q4-modal__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: auto;
  padding: 2.75rem 2.4rem 2.6rem;
}

.q4-modal__kicker {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.q4-modal__panel h2 {
  margin: 0 0 1.65rem;
  max-width: 16.5rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.q4-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  min-width: 11.5rem;
  min-height: 3.05rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: #0a0a0a;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.q4-modal__cta span {
  color: var(--accent-soft);
  font-size: 1.15rem;
}

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

@media (max-width: 760px) {
  .q4-modal {
    padding: 0.65rem;
    align-items: end;
  }

  .q4-modal__dialog {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: min(94vh, 640px);
    width: 100%;
  }

  .q4-modal__art {
    min-height: 11rem;
  }

  .q4-modal__panel {
    padding: 2.1rem 1.6rem 2rem;
  }
}

/* ========== AUTH / LOGIN (same language as Q4 pop) ========== */
.auth-page {
  min-height: 100vh;
  min-height: 100dvh;
  color: #0a0a0a;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(109, 140, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(79, 110, 247, 0.18), transparent 50%),
    linear-gradient(165deg, #eef3ff 0%, #f7f8fb 45%, #eceff5 100%);
}

.auth-page__mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(10, 10, 10, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.55;
}

.auth-page__home {
  position: fixed;
  top: 1.15rem;
  left: 1.25rem;
  z-index: 2;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #0a0a0a;
}

.auth-shell {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 4.5rem 1.25rem 2rem;
}

.auth-card {
  display: grid;
  grid-template-columns: minmax(16rem, 0.92fr) minmax(18rem, 1.08fr);
  width: min(820px, 100%);
  min-height: 0;
  max-height: min(92vh, 760px);
  overflow: hidden;
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.auth-card__art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #0b1f3a;
}

.auth-card__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
}

.auth-card__brand {
  position: absolute;
  left: 1.15rem;
  top: 0.95rem;
  z-index: 2;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.auth-card__brand .logo-c {
  width: 2.35rem;
  height: 2.35rem;
}

.auth-card__pill {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 2;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.auth-card__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: left;
  overflow: auto;
  padding: 1.55rem 1.85rem 1.35rem;
}

.auth-card__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.auth-card__panel h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #0a0a0a;
}

.auth-card__lead {
  margin: 0 0 0.95rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: #52525b;
}

.auth-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 2.65rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.auth-google:hover {
  background: #f7f8fa;
  border-color: rgba(10, 10, 10, 0.18);
  transform: translateY(-1px);
}

.auth-google__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  margin: 0.7rem 0;
  color: #a1a1aa;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(10, 10, 10, 0.1);
}

.auth-form {
  display: grid;
  gap: 0.6rem;
}

.auth-field {
  display: grid;
  gap: 0.25rem;
}

.auth-field[hidden] {
  display: none !important;
}

.auth-field__label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #3f3f46;
}

.auth-field__input {
  width: 100%;
  min-height: 2.45rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 0.75rem;
  background: #f7f8fa;
  color: #0a0a0a;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.auth-field__input::placeholder {
  color: #a1a1aa;
}

.auth-field__input:focus {
  border-color: rgba(79, 110, 247, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(109, 140, 255, 0.2);
}

.auth-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.65rem;
  margin-top: 0.15rem;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 999px;
  background: #0a0a0a;
  color: #ffffff;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.auth-card__cta span {
  color: var(--accent-soft);
  font-size: 1.15rem;
}

.auth-card__cta:hover {
  transform: translateY(-1px);
  background: #171717;
}

.auth-card__micro {
  margin: 0.7rem 0 0;
  font-size: 0.74rem;
  color: #71717a;
  text-align: center;
}

.auth-card__error {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: #b42318;
  text-align: center;
}

.auth-card__switch {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: #52525b;
  text-align: center;
}

.auth-card__switch a {
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 760px) {
  .auth-shell {
    padding: 4rem 0.65rem 1rem;
    align-items: end;
  }

  .auth-card {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
    width: 100%;
  }

  .auth-card__art {
    min-height: 9.5rem;
  }

  .auth-card__panel {
    padding: 1.35rem 1.25rem 1.25rem;
  }
}

