:root {
  --black: #050505;
  --black-2: #0b0b0d;
  --card: rgba(20, 20, 22, 0.86);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --pink: #e94f98;
  --pink-soft: #ff75b5;
  --pink-muted: #b93e76;
  --white: #ffffff;
  --grey: #b8b8b8;
  --grey-muted: #777777;
  --header-height: 90px;
  --serif: "Playfair Display", Georgia, serif;
  --script: "Parisienne", cursive;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--pink-soft);
  outline-offset: 4px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-sprite path,
.icon-sprite circle,
.icon-sprite rect,
.icon-sprite ellipse {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

svg:not(.icon-sprite):not(.quote-mark) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

svg:not(.icon-sprite):not(.quote-mark) use {
  fill: none;
  stroke: currentColor;
}

.container {
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(22px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.header-inner {
  width: min(100% - 64px, 1240px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.logo-main {
  color: var(--white);
  font-weight: 500;
}

.logo-accent {
  color: var(--pink-soft);
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.3em;
  line-height: 0.72;
  margin-left: -2px;
  transform: translateY(4px);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--pink-soft);
}

.nav-links a.is-active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.btn-outline {
  min-width: 138px;
  padding: 0 22px;
  color: var(--pink-soft);
  border-color: rgba(233, 79, 152, 0.8);
  background: transparent;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 28px rgba(233, 79, 152, 0.24);
}

.btn-primary {
  min-width: 248px;
  min-height: 54px;
  padding: 0 56px;
  color: var(--white);
  border-radius: 2px;
  justify-content: center;
  background: linear-gradient(135deg, #e94f98 0%, #f467a9 52%, #ff75b5 100%);
  box-shadow: 0 14px 34px rgba(233, 79, 152, 0.24);
}

.btn-primary svg,
.btn-secondary svg,
.btn-light svg {
  position: absolute;
  right: 24px;
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(233, 79, 152, 0.34);
}

.btn-secondary {
  min-width: 172px;
  padding: 0 56px;
  color: var(--white);
  background: rgba(233, 79, 152, 0.14);
  border-color: rgba(233, 79, 152, 0.68);
}

.btn-secondary:hover {
  background: var(--pink);
  box-shadow: 0 18px 38px rgba(233, 79, 152, 0.25);
}

.btn-light {
  min-width: 210px;
  padding: 0 56px;
  color: var(--pink-muted);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.22);
}

.btn-light:hover {
  box-shadow: 0 24px 52px rgba(255, 255, 255, 0.3);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

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

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 76% 28%, rgba(233, 79, 152, 0.18), transparent 32%),
    linear-gradient(180deg, #060606 0%, #050505 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 38%, rgba(5, 5, 5, 0.32) 63%, rgba(5, 5, 5, 0.76) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.92) 100%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 66%;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.06) contrast(1.03);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(760px - var(--header-height));
  display: grid;
  align-items: center;
  grid-template-columns: 48% 52%;
}

.hero-content {
  width: 760px;
  max-width: calc(100vw - 64px);
  padding: 62px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--pink-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  margin-bottom: 22px;
  font-size: 94px;
  line-height: 0.84;
}

h1 em {
  color: var(--pink-soft);
  font-style: italic;
}

.hero-copy {
  max-width: 550px;
  margin-bottom: 28px;
  color: var(--grey);
  font-size: 18px;
}

.benefit-pills,
.trust-row,
.cta-benefits,
.check-list {
  list-style: none;
  padding: 0;
}

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0 0 34px;
}

.benefit-pills li,
.trust-row li,
.cta-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.benefit-pills span {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(233, 79, 152, 0.95);
  box-shadow: 0 0 18px rgba(233, 79, 152, 0.35);
}

.benefit-pills svg,
.trust-row svg,
.cta-benefits svg {
  width: 13px;
  height: 13px;
}

.hero-cta {
  margin-bottom: 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
}

.trust-row li {
  color: var(--grey);
  font-size: 12px;
}

.trust-row svg {
  width: 16px;
  height: 16px;
  color: var(--pink-soft);
}

.hero-badge {
  position: absolute;
  right: 7%;
  bottom: 58px;
  z-index: 3;
  width: 164px;
  height: 164px;
  border: 1px solid rgba(255, 117, 181, 0.78);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  color: var(--white);
  text-align: center;
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 0 36px rgba(233, 79, 152, 0.34), inset 0 0 26px rgba(233, 79, 152, 0.12);
  backdrop-filter: blur(14px);
}

.hero-badge svg {
  width: 21px;
  height: 21px;
  color: var(--pink-soft);
}

.hero-badge span {
  color: var(--grey);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-badge strong {
  color: var(--pink-soft);
  font-family: var(--serif);
  font-size: 35px;
  line-height: 1;
}

.feature-strip {
  min-height: 150px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #070707;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 150px;
}

.feature-item {
  position: relative;
  padding: 28px 28px 24px;
  text-align: center;
}

.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  bottom: 28px;
  width: 1px;
  background: var(--border);
}

.feature-item svg,
.benefit-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 13px;
  color: var(--pink);
  transition: filter 180ms ease, transform 180ms ease;
}

.feature-item:hover svg,
.benefit-card:hover svg {
  filter: drop-shadow(0 0 11px rgba(255, 117, 181, 0.44));
  transform: translateY(-2px);
}

.feature-item h3,
.benefit-card h3,
.footer-column h3,
.footer-apply h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.feature-item p,
.benefit-card p,
.footer-brand p,
.footer-apply p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 14px;
}

.why-section,
.benefits-section {
  background: var(--black);
}

.why-section {
  padding: 120px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 76px;
}

.section-copy h2,
.section-heading h2,
.stories-section h2,
.final-cta h2 {
  margin-bottom: 22px;
  font-size: 56px;
  line-height: 1.04;
}

.section-copy > p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--grey);
  font-size: 17px;
}

.section-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 28px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.check-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 3px;
  color: var(--pink-soft);
}

.image-feature {
  position: relative;
  isolation: isolate;
  padding: 24px 24px 74px 0;
}

.image-feature::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 48%;
  z-index: -1;
  opacity: 0.42;
  background-image: radial-gradient(rgba(255, 117, 181, 0.45) 1px, transparent 1px);
  background-size: 14px 14px;
}

.image-feature img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: rgba(11, 11, 13, 0.82);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.floating-card svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: var(--pink-soft);
}

.floating-card h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.12;
}

.floating-card p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 13px;
  line-height: 1.5;
}

.benefits-section {
  padding: 12px 0 112px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefit-card {
  min-height: 218px;
  padding: 34px 24px 30px;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.benefit-card:not(:last-child) {
  border-right: 1px solid var(--border);
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.025);
}

.home-seo-section,
.home-process-section,
.faq-preview-section,
.internal-links-section,
.page-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(233, 79, 152, 0.06), transparent 28%),
    linear-gradient(180deg, #050505 0%, #08080a 100%);
}

.home-seo-section,
.faq-preview-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 16% 12%, rgba(233, 79, 152, 0.1), transparent 30%),
    var(--black-2);
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.seo-card,
.process-steps article,
.faq-preview-list article,
.inner-card,
.article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.seo-card::before,
.inner-card::before,
.faq-preview-list article::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 117, 181, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(233, 79, 152, 0.24), rgba(255, 117, 181, 0.06)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 26px rgba(233, 79, 152, 0.16);
}

.seo-card::after,
.inner-card::after,
.faq-preview-list article::after {
  content: "\2713";
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--pink-soft);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.seo-card,
.process-steps article,
.faq-preview-list article,
.inner-card {
  padding: 94px 28px 28px;
}

.process-steps article {
  padding-top: 28px;
}

.seo-card:hover,
.process-steps article:hover,
.faq-preview-list article:hover,
.inner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 117, 181, 0.42);
  background:
    linear-gradient(145deg, rgba(233, 79, 152, 0.13), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.seo-card h3,
.process-steps h3,
.faq-preview-list h3,
.inner-card h3,
.article-card h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.seo-card p,
.process-steps p,
.faq-preview-list p,
.inner-card p,
.article-card p {
  margin: 0;
  color: var(--grey);
  font-size: 14px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 117, 181, 0.42), transparent);
  pointer-events: none;
}

.process-steps article {
  isolation: isolate;
  min-height: 240px;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 117, 181, 0.5);
  border-radius: 50%;
  color: var(--pink-soft);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  background: #09090a;
  box-shadow: 0 0 34px rgba(233, 79, 152, 0.16);
}

.section-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  margin-top: 34px;
}

.text-link {
  color: var(--pink-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--white);
}

.faq-preview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.faq-preview-grid h2,
.internal-links-section h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
}

.faq-preview-grid p {
  color: var(--grey);
}

.faq-preview-list {
  display: grid;
  gap: 14px;
}

.internal-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.internal-link-grid a,
.article-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.internal-link-grid a {
  font-weight: 800;
}

.internal-link-grid a:hover,
.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 117, 181, 0.45);
  background: rgba(233, 79, 152, 0.08);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 76px) 0 92px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 78% 18%, rgba(233, 79, 152, 0.16), transparent 30%),
    linear-gradient(135deg, #050505 0%, #08080a 52%, #180811 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  width: min(45vw, 620px);
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.34) 36%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.42)),
    var(--page-hero-image, url("assets/hero-velvetdolls-model.webp")) center / cover no-repeat;
  opacity: 0.62;
  filter: saturate(0.96) contrast(1.05);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 50%, rgba(5, 5, 5, 0.26) 100%),
    radial-gradient(rgba(255, 117, 181, 0.16) 1px, transparent 1px);
  background-size: auto, 18px 18px;
  opacity: 1;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 72px;
  line-height: 0.96;
}

.page-intro {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--grey);
  font-size: 19px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.copy-block {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.44fr 0.56fr;
  gap: 56px;
  align-items: center;
}

.copy-block::before {
  content: "";
  min-height: 430px;
  grid-row: 1 / span 6;
  border: 1px solid var(--border);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.52)),
    url("assets/about-blonde-model.webp") center top / cover no-repeat;
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.32);
}

.copy-block h2,
.article-body h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.05;
}

.copy-block h2:not(:first-of-type),
.article-body h2:not(:first-of-type) {
  margin-top: 34px;
}

.copy-block p,
.article-body p,
.copy-block li,
.article-body li {
  color: var(--grey);
  font-size: 17px;
}

.copy-block ul,
.article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.faq-list {
  max-width: 980px;
  display: grid;
  gap: 16px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 22px 66px 22px 24px;
  color: var(--white);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 117, 181, 0.45);
  border-radius: 50%;
  color: var(--pink-soft);
  font: 700 18px/1 var(--sans);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 66px 24px 24px;
  color: var(--grey);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--pink-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-card::before {
  content: "";
  display: block;
  height: 170px;
  margin: -24px -24px 22px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.58)),
    url("assets/testimonial-satin-bg.webp") center / cover no-repeat;
  filter: saturate(0.98);
}

.article-card:nth-child(2)::before,
.article-card:nth-child(5)::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.58)),
    url("assets/about-blonde-model.webp") center 30% / cover no-repeat;
}

.article-card:nth-child(3)::before,
.article-card:nth-child(6)::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.58)),
    url("assets/cta-model-right.webp") center 28% / cover no-repeat;
}

.article-body {
  max-width: 940px;
  margin: 0 auto;
}

.article-body::before {
  content: "";
  display: block;
  height: 320px;
  margin-bottom: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.52)),
    url("assets/testimonial-satin-bg.webp") center / cover no-repeat;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.article-body .lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.stories-section {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black-2);
}

.stories-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.stories-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.64)),
    radial-gradient(circle at 50% 32%, rgba(233, 79, 152, 0.18), transparent 36%);
}

.stories-content {
  position: relative;
  z-index: 1;
  max-width: 830px;
  padding: 88px 0;
  text-align: center;
}

.stories-content .eyebrow {
  justify-content: center;
}

.quote-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  opacity: 0.9;
}

.quote-mark path {
  fill: var(--pink);
  stroke: none;
}

blockquote {
  margin: 0;
}

blockquote p {
  margin: 0 auto 21px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.38;
}

blockquote cite {
  color: var(--pink-soft);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.story-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
}

.circle-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.circle-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 117, 181, 0.72);
  background: rgba(233, 79, 152, 0.16);
}

.circle-button svg {
  width: 18px;
  height: 18px;
}

.circle-button:first-child svg {
  transform: rotate(180deg);
}

.story-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.story-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.story-dots button.is-active {
  transform: scale(1.55);
  background: var(--pink);
}

.final-cta {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, #b93e76 0%, #e94f98 46%, #ff75b5 100%);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.12));
}

.cta-model {
  position: absolute;
  z-index: 0;
  top: 50%;
  width: 260px;
  height: 300px;
  object-fit: cover;
  opacity: 0.24;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.08);
  transform: translateY(-50%);
}

.cta-model-left {
  left: 0;
  object-position: center;
}

.cta-model-right {
  right: 0;
  object-position: center;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  text-align: center;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin: 0 0 22px;
}

.cta-benefits li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
}

.cta-benefits svg {
  width: 16px;
  height: 16px;
}

.final-cta h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.final-cta p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 60px;
  padding: 72px 0 58px;
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 310px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(233, 79, 152, 0.14);
  border: 1px solid rgba(233, 79, 152, 0.32);
  transition: background 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--pink);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-column,
.footer-apply {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h3,
.footer-apply h3 {
  margin-bottom: 17px;
}

.footer-column a {
  margin-bottom: 10px;
  color: var(--grey);
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--pink-soft);
}

.footer-apply p {
  margin-bottom: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom .container {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: var(--grey-muted);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 95;
  padding: 22px;
  pointer-events: none;
}

.cookie-banner-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(233, 79, 152, 0.56);
  border-radius: 6px;
  background:
    radial-gradient(circle at 94% 0%, rgba(233, 79, 152, 0.2), transparent 28%),
    linear-gradient(112deg, rgba(5, 5, 5, 0.98) 0%, rgba(13, 10, 12, 0.98) 58%, rgba(47, 14, 28, 0.94) 100%);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.56), 0 0 38px rgba(233, 79, 152, 0.1);
  pointer-events: auto;
}

.cookie-banner-copy h2,
.cookie-preferences-panel h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.cookie-banner-copy p,
.cookie-preferences-panel p,
.cookie-choice span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
}

.cookie-policy-links a,
.policy-list a {
  color: var(--pink-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions .btn {
  min-width: 154px;
  min-height: 46px;
  padding: 0 20px;
  font-size: 11px;
}

.cookie-preferences {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(14px);
}

.cookie-preferences-panel {
  position: relative;
  width: min(100%, 640px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(233, 79, 152, 0.68);
  border-radius: 6px;
  background:
    radial-gradient(circle at 80% 0%, rgba(233, 79, 152, 0.18), transparent 30%),
    linear-gradient(112deg, rgba(5, 5, 5, 0.98) 0%, rgba(13, 10, 12, 0.98) 52%, rgba(47, 14, 28, 0.94) 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62), 0 0 54px rgba(233, 79, 152, 0.12);
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 2px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.cookie-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-choice {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.cookie-choice input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--pink);
}

.cookie-choice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding: 18px 18px 18px 54px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--grey);
  background: rgba(255, 255, 255, 0.035);
}

.policy-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 117, 181, 0.55);
  border-radius: 50%;
  background: rgba(233, 79, 152, 0.18);
}

.policy-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 0% 67%, rgba(233, 79, 152, 0.2), transparent 20%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
}

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

.apply-modal-panel {
  position: relative;
  width: min(100%, 626px);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 38px 36px 34px;
  border: 1px solid rgba(233, 79, 152, 0.76);
  border-radius: 6px;
  background:
    radial-gradient(circle at 68% 0%, rgba(233, 79, 152, 0.18), transparent 34%),
    linear-gradient(112deg, rgba(5, 5, 5, 0.98) 0%, rgba(13, 10, 12, 0.98) 46%, rgba(47, 14, 28, 0.94) 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62), 0 0 54px rgba(233, 79, 152, 0.12);
}

.apply-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.apply-modal-close:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 117, 181, 0.86);
  color: var(--pink-soft);
}

.apply-modal-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.apply-modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 52px 12px 0;
  color: var(--pink-soft);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.apply-modal-eyebrow svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.apply-modal h2 {
  margin: 0 52px 10px 0;
  font-family: var(--serif);
  font-size: 49px;
  font-weight: 500;
  line-height: 0.98;
}

.apply-modal-note {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}

.apply-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 14px;
}

.form-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

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

.form-field label {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.form-field label span {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  font: 400 16px/1.2 var(--sans);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  padding: 0 15px;
}

.upload-field {
  gap: 9px;
}

.upload-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.09);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.upload-control:focus-within {
  border-color: var(--pink);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 5px rgba(233, 79, 152, 0.14);
}

.upload-control input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 117, 181, 0.62);
  border-radius: 2px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(233, 79, 152, 0.34), rgba(244, 103, 169, 0.22));
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.upload-button svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.upload-hint {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  pointer-events: none;
}

.upload-summary {
  min-height: 17px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.upload-summary[data-status="ready"] {
  color: rgba(255, 255, 255, 0.75);
}

.upload-summary[data-status="error"] {
  color: #ff9ec9;
}

.form-field textarea {
  min-height: 136px;
  padding: 17px 15px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-field select {
  appearance: none;
  color-scheme: dark;
  padding-right: 42px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 117, 181, 0.95) 50%) calc(100% - 21px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(255, 117, 181, 0.95) 50%, transparent 50%) calc(100% - 16px) 50% / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.09);
}

.form-field select:invalid {
  color: rgba(255, 255, 255, 0.42);
}

.form-field select option {
  color: var(--white);
  background: #181114;
}

.form-field select:focus {
  border-color: var(--pink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--pink);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 5px rgba(233, 79, 152, 0.14);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--pink);
  flex: 0 0 18px;
}

.checkbox-field a {
  color: var(--pink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-field:empty {
  display: none;
}

.turnstile-field iframe {
  max-width: 100%;
}

.form-status {
  min-height: 22px;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.form-status[data-status="success"] {
  color: #79e5aa;
}

.form-status[data-status="error"] {
  color: #ff9ec9;
}

.apply-submit {
  grid-column: 1 / -1;
  min-height: 46px;
  width: 100%;
  padding: 0 24px;
  border-radius: 2px;
  color: var(--white);
  background: linear-gradient(135deg, #e94f98 0%, #f467a9 58%, #ff75b5 100%);
  box-shadow: 0 22px 54px rgba(233, 79, 152, 0.28);
  font-size: 12px;
  justify-content: center;
}

.apply-submit svg {
  position: static;
  width: 16px;
  height: 16px;
}

.apply-submit:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.application-flow-page {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(5, 5, 5, 0.98) 0%, rgba(12, 10, 11, 0.98) 45%, rgba(42, 12, 27, 0.94) 100%),
    #050505;
}

.application-flow-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
  pointer-events: none;
}

.application-flow-page::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 38vh;
  background: linear-gradient(180deg, transparent, rgba(233, 79, 152, 0.16));
  pointer-events: none;
}

.application-flow-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 26px) 24px 42px;
}

.application-flow-shell {
  width: min(100%, 980px);
  display: grid;
  gap: 24px;
  padding: 36px 44px;
  border: 1px solid rgba(233, 79, 152, 0.42);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.018)),
    linear-gradient(120deg, rgba(10, 10, 11, 0.96), rgba(47, 19, 31, 0.9));
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.48), 0 0 80px rgba(233, 79, 152, 0.13);
}

.application-flow-shell .flow-copy {
  max-width: 760px;
}

.application-flow-shell h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.application-flow-shell p {
  margin: 0;
}

.application-flow-shell .eyebrow {
  margin: 0 0 18px;
}

.flow-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.checking-panel,
.success-panel,
.success-next-steps article {
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
}

.checking-panel {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 16px 22px;
  padding: 22px;
}

.checking-status-mark,
.success-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 117, 181, 0.5);
  border-radius: 50%;
  color: var(--pink-soft);
  background: rgba(233, 79, 152, 0.16);
  box-shadow: 0 0 38px rgba(233, 79, 152, 0.2);
}

.checking-status-mark svg,
.success-badge svg {
  width: 28px;
  height: 28px;
}

.checking-status {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.checking-progress {
  grid-column: 2;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.checking-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e94f98, #ff75b5, #ffffff);
  transition: width 420ms ease;
}

.checking-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.checking-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
  transition: color 220ms ease;
}

.checking-list li span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  flex: 0 0 18px;
  transition: border-color 220ms ease, background 220ms ease;
}

.checking-list li.is-active,
.checking-list li.is-complete {
  color: var(--white);
}

.checking-list li.is-active span,
.checking-list li.is-complete span {
  border-color: var(--pink-soft);
  background: var(--pink);
}

.checking-list li.is-complete span::before {
  content: "";
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px);
}

.flow-note,
.whatsapp-note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 600;
}

.success-shell {
  position: relative;
  justify-items: center;
  text-align: center;
}

.success-shell .flow-copy {
  margin: 0 auto;
}

.success-badge {
  width: 64px;
  height: 64px;
  color: var(--white);
  background: linear-gradient(135deg, #e94f98, #ff75b5);
}

.success-badge svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.2;
}

.success-panel {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-items: start;
  gap: 16px 22px;
  padding: 22px;
  text-align: left;
}

.success-panel h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

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

.success-whatsapp {
  width: 300px;
  min-width: 300px;
}

.success-next-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}

.success-next-steps article {
  padding: 18px;
}

.success-next-steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--pink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.success-next-steps h3 {
  margin: 0 0 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.success-next-steps p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 60;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 190px 1fr 170px;
    gap: 18px;
  }

  .nav-links {
    gap: 20px;
  }

  h1 {
    font-size: 78px;
  }

  .hero-grid {
    grid-template-columns: 54% 46%;
  }

  .hero-badge {
    right: 38px;
  }

  .section-copy h2,
  .section-heading h2,
  .stories-section h2,
  .final-cta h2 {
    font-size: 48px;
  }

  .split-grid {
    gap: 48px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
  }

  .container,
  .header-inner {
    width: min(100% - 40px, 900px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    min-width: 120px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
  }

  .mobile-menu {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    left: 20px;
    right: 20px;
    z-index: 49;
    display: grid;
    gap: 2px;
    padding: 18px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    background: rgba(8, 8, 9, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a:not(.btn) {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-menu a:not(.btn):hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-cta {
    width: 100%;
    min-width: 0;
    margin-top: 12px;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    width: 100%;
    opacity: 0.58;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.84) 48%, rgba(5, 5, 5, 0.5) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.94) 100%);
  }

  .hero-grid {
    min-height: calc(760px - var(--header-height));
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: 100%;
    max-width: 640px;
    padding: 66px 0 34px;
  }

  h1 {
    font-size: 66px;
  }

  .hero-badge {
    right: 24px;
    bottom: 28px;
    width: 138px;
    height: 138px;
  }

  .hero-badge strong {
    font-size: 29px;
  }

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

  .feature-item:nth-child(2)::after {
    display: none;
  }

  .feature-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .why-section {
    padding: 92px 0;
  }

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

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

  .image-feature {
    max-width: 620px;
    margin: 0 auto;
  }

  .benefits-section {
    padding-bottom: 88px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    border: 0;
    gap: 14px;
  }

  .benefit-card {
    min-height: 190px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.018);
  }

  .benefit-card:not(:last-child) {
    border-right: 1px solid var(--border);
  }

  .benefit-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 46px;
  }

  .seo-card-grid,
  .process-steps,
  .content-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .faq-preview-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero::before {
    width: 50vw;
    opacity: 0.46;
  }

  .page-hero h1 {
    font-size: 58px;
  }

  .copy-block {
    max-width: 760px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .copy-block::before {
    min-height: 360px;
    grid-row: auto;
  }

  .article-body::before {
    height: 280px;
  }

  .apply-modal {
    padding: 28px;
  }

  .apply-modal-panel {
    max-height: calc(100vh - 56px);
    padding: 34px 28px 28px;
  }

  .apply-modal h2 {
    font-size: 43px;
  }

  .apply-modal-note {
    margin-bottom: 24px;
    font-size: 14px;
    white-space: normal;
  }

  .form-field label {
    font-size: 12px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 54px;
    font-size: 16px;
  }

  .form-field textarea {
    min-height: 132px;
  }

  .application-flow-shell {
    padding: 38px;
  }

  .success-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .success-whatsapp {
    width: min(100%, 390px);
    min-width: 0;
  }

  .success-next-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner {
    width: min(100% - 32px, 640px);
  }

  .logo {
    font-size: 29px;
  }

  .header-actions {
    gap: 9px;
  }

  .header-cta {
    min-width: 104px;
    padding: 0 13px;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-content {
    padding: 60px 0 26px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 54px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .benefit-pills {
    gap: 10px;
  }

  .benefit-pills li {
    width: calc(50% - 5px);
    font-size: 12px;
  }

  .btn-primary,
  .hero-cta {
    width: 100%;
    min-width: 0;
  }

  .trust-row {
    display: grid;
    gap: 11px;
  }

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 18px 34px auto;
  }

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

  .feature-item {
    min-height: 145px;
    padding: 28px 22px 24px;
    border-bottom: 1px solid var(--border);
  }

  .feature-item:not(:last-child)::after {
    display: none;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .section-copy h2,
  .section-heading h2,
  .stories-section h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .why-section {
    padding: 76px 0;
  }

  .image-feature {
    padding: 16px 0 92px;
  }

  .floating-card {
    right: 14px;
    bottom: 0;
    width: min(92%, 320px);
  }

  .benefits-section {
    padding: 0 0 72px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

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

  .benefit-card,
  .benefit-card:last-child {
    grid-column: auto;
  }

  .stories-content {
    padding: 72px 0;
  }

  blockquote p {
    font-size: 22px;
  }

  .story-controls {
    gap: 14px;
  }

  .final-cta {
    min-height: 430px;
  }

  .cta-model {
    width: 190px;
    height: 430px;
    opacity: 0.16;
  }

  .cta-benefits {
    display: grid;
    gap: 10px;
  }

  .final-cta-inner {
    padding: 62px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 58px 0 42px;
  }

  .footer-bottom .container {
    min-height: 82px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  .home-seo-section,
  .home-process-section,
  .faq-preview-section,
  .internal-links-section,
  .page-section {
    padding: 72px 0;
  }

  .seo-card-grid,
  .process-steps,
  .content-grid,
  .content-grid.two,
  .article-grid,
  .internal-link-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: calc(var(--header-height) + 54px) 0 64px;
  }

  .page-hero::before {
    top: 0;
    width: 100%;
    opacity: 0.28;
  }

  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.85) 62%, rgba(5, 5, 5, 0.62) 100%),
      radial-gradient(rgba(255, 117, 181, 0.16) 1px, transparent 1px);
    background-size: auto, 18px 18px;
  }

  .page-hero h1,
  .faq-preview-grid h2,
  .internal-links-section h2 {
    font-size: 42px;
  }

  .page-intro,
  .article-body .lead {
    font-size: 17px;
  }

  .page-actions {
    display: grid;
  }

  .cookie-banner {
    padding: 12px;
  }

  .cookie-banner-inner,
  .cookie-preferences-panel {
    padding: 22px;
  }

  .cookie-banner-copy h2,
  .cookie-preferences-panel h2 {
    font-size: 28px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .copy-block::before {
    min-height: 280px;
  }

  .article-card::before {
    height: 150px;
  }

  .article-body::before {
    height: 220px;
    margin-bottom: 32px;
  }

  .apply-modal {
    align-items: start;
    padding: 16px;
  }

  .apply-modal-panel {
    max-height: calc(100vh - 32px);
    padding: 58px 22px 24px;
    border-radius: 10px;
  }

  .apply-modal-close {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
  }

  .apply-modal-close svg {
    width: 20px;
    height: 20px;
  }

  .apply-modal-eyebrow {
    gap: 10px;
    margin: 0 60px 14px 0;
    font-size: 16px;
  }

  .apply-modal-eyebrow svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .apply-modal h2 {
    margin-right: 0;
    font-size: 38px;
    line-height: 1;
  }

  .apply-modal-note {
    margin-bottom: 30px;
    font-size: 17px;
  }

  .apply-form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-field label {
    font-size: 15px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 56px;
    font-size: 16px;
  }

  .form-field input,
  .form-field select {
    padding: 0 18px;
  }

  .upload-control {
    display: grid;
    min-height: auto;
    padding: 12px;
  }

  .upload-button {
    width: 100%;
    min-height: 44px;
    font-size: 12px;
  }

  .upload-hint,
  .upload-summary {
    font-size: 13px;
  }

  .form-field textarea {
    min-height: 130px;
    padding: 20px 18px;
  }

  .apply-submit {
    min-height: 56px;
    font-size: 14px;
  }

  .apply-submit svg {
    position: static;
  }

  .application-flow-main {
    padding: calc(var(--header-height) + 34px) 16px 42px;
  }

  .application-flow-shell {
    gap: 24px;
    padding: 28px 22px;
  }

  .application-flow-shell h1 {
    font-size: 42px;
  }

  .flow-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .checking-panel,
  .success-panel,
  .success-next-steps article {
    padding: 20px;
  }

  .checking-panel {
    grid-template-columns: 1fr;
  }

  .checking-status-mark {
    margin: 0 auto;
  }

  .checking-progress,
  .checking-list,
  .flow-note {
    grid-column: auto;
  }

  .checking-list {
    grid-template-columns: 1fr;
  }

  .success-panel h2 {
    font-size: 29px;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 25px;
  }

  .header-cta {
    min-width: 88px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero {
    min-height: 850px;
  }

  h1 {
    font-size: 49px;
  }

  .benefit-pills li {
    width: 100%;
  }

  .hero-badge {
    margin-right: auto;
  }

  .section-copy h2,
  .section-heading h2,
  .stories-section h2,
  .final-cta h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
