
:root {
  --pink: #E91E8C;
  --pink-bright: #E91E8C;
  --rose: #E91E8C;
  --dark: #080808;
  --cream: #ffffff;
  --muted: rgba(255,255,255,0.7);
  --line: rgba(233, 30, 140, 0.35);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #080808;
  color: #ffffff;
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.page-creators {
  background: #080808;
}

body.page-about {
  background: #080808;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

section {
  padding: 77px 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

h3 {
  font-size: 1.5rem;
}

.label,
.eyebrow {
  color: var(--pink-bright);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 800;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  font-weight: 800;
  transition: 0.3s ease;
}

.btn-primary {
  background: #E91E8C;
  color: white;
  box-shadow: 0 0 15px #E91E8C, 0 0 30px rgba(233, 30, 140, 0.4);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
  background: transparent;
}

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

.btn-primary:hover {
  box-shadow: 0 0 25px #E91E8C, 0 0 50px rgba(233, 30, 140, 0.6);
}

/* NAV */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  background: #080808;
  border-bottom: 1px solid rgba(233, 30, 140, 0.3);
  box-shadow: 0 2px 20px rgba(233, 30, 140, 0.15);
}

.nav-logo img {
  height: 82px;
  width: auto;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a,
.nav-cta {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  transition: 0.3s ease;
}

.nav-links a {
  display: inline-block;
  transition: all 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--pink-bright);
}

.nav-links a.active {
  text-shadow: 0 0 12px rgba(233, 30, 140, 0.6);
}

.nav-links a:hover {
  background: transparent;
  transform: scale(1.08);
  text-shadow: 0 0 12px rgba(233, 30, 140, 0.6);
}

.nav-links a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 11px;
  background: var(--pink-bright);
  box-shadow: 0 0 6px #E91E8C, 0 0 12px rgba(233, 30, 140, 0.5);
}

.nav-cta {
  padding: 15px 30px;
  border-radius: 999px;
  color: #ffffff;
  background: #E91E8C;
  border: 2px solid #E91E8C;
  box-shadow: 0 0 15px rgba(233, 30, 140, 0.6), 0 0 30px rgba(233, 30, 140, 0.3);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  background: #d4006e;
  border-color: #d4006e;
  box-shadow: 0 0 25px #E91E8C, 0 0 50px rgba(233, 30, 140, 0.5);
}

/* HERO */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero-spacer {
  flex: 0 0 57%;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 43%;
  padding: 96px 4% 70px 28px;
}

.hero-content h1 {
  margin-top: 0;
  font-size: clamp(4.5rem, 5.5vw, 5rem);
  color: #ffffff;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-content h1 em {
  color: var(--pink-bright);
  font-style: italic;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 20px;
  width: 100%;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  height: 2px;
  flex: 1;
  background: var(--line);
}

.hero-divider span {
  width: 20px;
  height: 20px;
  border: 2px solid var(--pink);
  border-radius: 50%;
}

.hero-text {
  max-width: 520px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.58;
}

.hero-text em {
  color: var(--pink-bright);
}

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

.hero-note {
  margin-top: 24px;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}

/* STATS — dark bar with pink numbers */

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding: 32px 6%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.hero-stats > div {
  flex: 1;
  text-align: center;
}

.hero-stats > div:nth-child(2),
.hero-stats > div:nth-child(3) {
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: #E91E8C;
  font-weight: 300;
  text-shadow: 0 0 20px #E91E8C, 0 0 40px #E91E8C, 0 0 80px #E91E8C;
  white-space: nowrap;
  overflow: visible;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* FEATURES — dark section */

#hero-features {
  padding: 34px 0;
  background: #080808;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  text-align: center;
}

.feature-item span {
  display: block;
  color: var(--pink);
  font-size: 2rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px #E91E8C) drop-shadow(0 0 16px #E91E8C);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.feature-item:hover span {
  filter: drop-shadow(0 0 12px #E91E8C) drop-shadow(0 0 28px #E91E8C) drop-shadow(0 0 48px rgba(233, 30, 140, 0.6));
  transform: scale(1.15);
}

.feature-item p {
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* TICKER — dark background */

.ticker-outer {
  overflow: hidden;
  width: 100%;
  background: #0d0d0d;
  padding: 14px 0;
  border-top: 1px solid rgba(233, 30, 140, 0.3);
  border-bottom: 1px solid rgba(233, 30, 140, 0.3);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

.ticker-track span {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #E91E8C;
  text-transform: uppercase;
  padding: 0 48px;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(233, 30, 140, 0.6);
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* MAIN SECTIONS */

#pricing,
#services {
  background: #080808;
}

/* CHOOSE PATH */

#choose-path {
  position: relative;
  padding: 56px 42px;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url('../images/services-banner.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 30% center;
  overflow: hidden;
}

#choose-path .container {
  max-width: 1400px;
}

#choose-path .section-header {
  text-align: center;
}

#choose-path .section-header p {
  text-align: center;
  margin: 0 auto;
}

#services {
  padding: 42px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-header p:not(.label) {
  margin-top: 18px;
  max-width: 680px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* HOW IT WORKS — dark section */

#how-it-works {
  padding: 42px;
  background: #0d0d0d;
}

#how-it-works .container {
  max-width: 1400px;
}

#how-it-works .section-header,
#services .section-header {
  text-align: center;
}

#how-it-works .section-header p,
#services .section-header p {
  text-align: center;
  margin: 0 auto;
}

#how-it-works .section-header .label {
  color: #E91E8C;
}

#how-it-works .section-header h2 {
  color: #ffffff;
}

#how-it-works .section-header p:not(.label) {
  color: rgba(255,255,255,0.7);
}

.path-grid,
.steps-grid,
.pricing-grid,
.services-grid {
  display: grid;
  gap: 28px;
}

.path-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

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

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

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

.path-card,
.step-card,
.pricing-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 48px;
  transition: 0.3s ease;
}

.service-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.path-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.path-card:hover,
.step-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(233, 30, 140, 0.15);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(233, 30, 140, 0.12);
}

.path-card span {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.path-card h3,
.step-card h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.path-card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-weight: 600;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-weight: 400;
}

.svc-card-accent {
  width: 36px;
  height: 2px;
  background: #E91E8C;
  margin-bottom: 24px;
}

.svc-card-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 30, 140, 0.1);
  margin-bottom: 20px;
}

.svc-card-icon {
  width: 28px;
  height: 28px;
  color: #E91E8C;
  stroke: #E91E8C;
}

.step-card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-weight: 600;
}

.path-list {
  margin: 20px 0 28px;
}

.path-list li {
  color: rgba(255,255,255,0.7);
  line-height: 2;
}

.path-list li::before {
  content: "—";
  color: var(--pink);
  margin-right: 10px;
}

.step-card {
  min-height: 380px;
}

.card-accent {
  width: 60px;
  height: 2px;
  background: var(--pink);
  margin-bottom: 40px;
}

.step-icon {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 16px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 24px;
}

/* PRICING — dark section */

#pricing {
  padding: 42px 28px;
  background: #080808;
}

#pricing .container {
  max-width: 100%;
}

.pricing-card {
  padding: 54px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  font-size: 2.3rem;
  color: #ffffff;
}

.pricing-card p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.85;
}

.pricing-subtitle {
  color: #E91E8C !important;
  font-weight: 700;
}

.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 26px 0;
}

.pricing-list li {
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
  font-size: 1.1rem;
  line-height: 2;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E91E8C;
  font-weight: 700;
}

.pricing-card.featured {
  background: rgba(233, 30, 140, 0.06);
  border-color: rgba(233, 30, 140, 0.4);
}

.pricing-card.featured .btn-primary {
  background: #E91E8C;
  box-shadow: none;
}

.pricing-badge {
  display: inline-block;
  background: #E91E8C;
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
}

.pricing-outcome {
  margin: 28px 0;
  padding: 22px;
  border-left: 4px solid #E91E8C;
  background: rgba(233, 30, 140, 0.06);
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* TESTIMONIALS — dark section */

.testimonial-section {
  position: relative;
  padding: 42px 0;
  background: #0d0d0d;
  min-height: 510px;
  overflow: hidden;
}

.testimonial-panel {
  position: relative;
  z-index: 2;
  width: min(82%, 1320px);
  margin: 0 auto;
  background: transparent;
  padding: 0 0 50px;
  text-align: center;
}

.testimonial-top-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 70px;
}

.testimonial-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.7vw, 4.7rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 74px;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
}

.testimonial-track {
  min-height: 200px;
}

.testimonial-slide {
  display: none;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid rgba(233, 30, 140, 0.4);
  box-shadow: 0 0 20px rgba(233, 30, 140, 0.15),
              inset 0 0 30px rgba(233, 30, 140, 0.05);
  border-radius: 12px;
  padding: 48px;
  background: rgba(233, 30, 140, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide:hover {
  border-color: rgba(233, 30, 140, 0.7);
  box-shadow: 0 0 35px rgba(233, 30, 140, 0.3),
              inset 0 0 40px rgba(233, 30, 140, 0.08);
}

.testimonial-name {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 800;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.testimonial-arrow {
  background: transparent;
  border: 1px solid rgba(233, 30, 140, 0.4);
  border-radius: 50%;
  color: #E91E8C;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.testimonial-arrow:hover {
  background: rgba(233, 30, 140, 0.08);
  border-color: #E91E8C;
  box-shadow: 0 0 12px rgba(233, 30, 140, 0.5), inset 0 0 8px rgba(233, 30, 140, 0.1);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.dot.active {
  background: #E91E8C;
  box-shadow: 0 0 8px #E91E8C, 0 0 18px rgba(233, 30, 140, 0.6);
}

/* CTA — dark section */

#cta-banner {
  text-align: center;
  padding: 60px 0;
  background: #0d0d0d;
}

#cta-banner .label {
  color: #E91E8C;
}

#cta-banner h2 {
  margin: 18px 0;
  color: #ffffff;
}

#cta-banner p {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

#cta-banner .btn-primary {
  background: #E91E8C;
  color: #ffffff;
  font-weight: 900;
}

#cta-banner .btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  background: transparent;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* FOOTER — deep dark */

.site-footer {
  background: #0a0a0a;
  padding: 0 8%;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}

.footer-logo-link {
  display: inline-block;
  flex-shrink: 0;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.footer-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-apply {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.footer-apply:hover {
  color: rgba(255,255,255,0.7) !important;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-sep {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  user-select: none;
}

@media (max-width: 760px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 48px 0;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ANIMATION */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SERVICES PAGE */

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #080808;
  overflow: hidden;
  margin-top: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 300;
  color: #ffffff;
  margin: 12px 0;
}

.page-hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* CREATOR HERO — video */

.creator-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 560px;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #080808;
  overflow: hidden;
}

.creator-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.creator-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.creator-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  max-width: 900px;
}

.creator-eyebrow {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #E91E8C;
}

.creator-hero-rule {
  width: 60px;
  height: 2px;
  background: #E91E8C;
  margin: 0 auto;
}

.creator-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  white-space: nowrap;
}

.creator-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  line-height: 1.9;
}

/* CREATOR BANNER STRIP */

.section-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

.creator-banner {
  padding: 100px 0 80px;
  text-align: center;
}

.creator-banner-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.creator-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 300;
  color: #ffffff;
  margin-top: 16px;
  line-height: 1;
}

#services-page {
  padding: 0;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 28px;
  row-gap: 32px;
}

.service-detail-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 48px;
  min-height: 300px;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(233, 30, 140, 0.12);
}

.service-detail-card .card-accent {
  width: 40px;
  background: #E91E8C;
}

.service-detail-icon {
  font-size: 2.2rem;
  color: #E91E8C;
  display: block;
  margin-bottom: 24px;
}

.service-detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 400;
}

.service-detail-card p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* EDITORIAL SERVICES LIST */

.services-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 60px;
  box-sizing: border-box;
}

.services-editorial {
  display: flex;
  flex-direction: column;
}

.editorial-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: start;
  gap: 40px;
  padding: 60px 0;
  transition: all 0.3s ease;
}

.editorial-item:hover .editorial-number {
  color: rgba(233, 30, 140, 0.9) !important;
}

.editorial-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-weight: 300;
  color: rgba(233, 30, 140, 0.25) !important;
  line-height: 1;
  user-select: none;
  transition: color 0.3s ease;
}

.editorial-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.editorial-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 680px;
}

.editorial-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

.svc-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 30, 140, 0.1);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.svc-icon {
  width: 36px;
  height: 36px;
  color: #E91E8C;
  stroke: #E91E8C;
}

/* SERVICES GRID — creators page */

.services-grid {
  background: #080808;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px;
  box-sizing: border-box;
}

.service-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 48px;
  min-height: 280px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(233, 30, 140, 0.12);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 30, 140, 0.1);
  margin-bottom: 20px;
}

.card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E91E8C;
  margin-bottom: 14px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}

.services-grid-disclaimer {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  max-width: 700px;
  margin: 60px auto 0;
  padding: 0 60px 80px;
}

#services-testimonial {
  padding: 100px 60px;
  text-align: center;
  background: #0d0d0d;
}

#services-testimonial .services-testimonial-headline {
  color: #ffffff;
}

.services-testimonial-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 48px;
}

.services-testimonial-card {
  max-width: 700px;
  margin: 0 auto;
}

.services-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 24px;
  border: none;
}

.services-attribution {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* SERVICES CTA — dark section */

#services-cta {
  padding: 70px 0;
  text-align: center;
  background: #080808;
}

.services-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 300;
}

.services-cta-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

#services-cta .btn-primary {
  background: #E91E8C;
  color: #ffffff;
  font-weight: 900;
}

#services-cta .book-note {
  color: rgba(255,255,255,0.45);
  margin-top: 24px;
}

#services-cta .book-note a {
  color: #E91E8C;
  font-weight: 700;
  text-decoration: none;
}

/* SERVICES BANNER — dark */

.services-choose {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 180px 60px 120px;
  background: #080808;
}

.services-choose-header {
  text-align: center;
  margin-bottom: 30px;
}

.services-choose-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  color: #ffffff;
  margin: 16px 0 20px;
  line-height: 1;
}

.services-choose-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1100px;
}

.services-choose-card {
  display: flex;
  flex-direction: column;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  min-height: 420px;
}

.services-choose-card:hover {
  background: rgba(233, 30, 140, 0.06);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(233, 30, 140, 0.15);
}

.services-choose-icon {
  font-size: 32px;
  color: #E91E8C;
  display: block;
  margin-bottom: 24px;
}

.services-choose-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1;
}

.services-choose-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  flex: 1;
}

/* WHY WYLLEX STRIP — dark */

#why-wyllex {
  padding: 80px 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #080808;
}

.why-wyllex-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-wyllex-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 60px;
}

.why-wyllex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-wyllex-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.why-wyllex-item i {
  font-size: 2rem;
  color: #E91E8C;
}

.why-wyllex-item h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
}

.why-wyllex-item p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* SERVICES PROCESS TIMELINE */

#services-process {
  padding: 80px 60px;
  background: #080808;
}

.services-process-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-process-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 60px;
}

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

.services-process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #E91E8C;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: #E91E8C;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
}

.process-step p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.split-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E91E8C;
  font-weight: 800;
  margin-bottom: 12px;
  display: block;
}

.split-cta {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E91E8C;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}

.services-choose-card:hover .split-cta {
  gap: 16px;
}

/* SERVICES DISCLAIMER */

.services-disclaimer {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* MOBILE */

@media (max-width: 950px) {
  #nav {
    height: 72px;
  }

  .nav-links {
    display: none;
  }

  .nav-logo img {
    height: 54px;
  }

  .nav-cta {
    display: none;
  }

  .hero-spacer {
    display: none;
  }

  .hero-content {
    flex: 0 0 100%;
    padding: 120px 7% 140px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .features-grid,
  .path-grid,
  .steps-grid,
  .pricing-grid,
  .services-grid,
  .footer-inner,
  .services-page-grid,
  .why-wyllex-grid,
  .services-process-grid,
  .services-choose-grid {
    grid-template-columns: 1fr;
  }

  #choose-path {
    padding: 80px 24px;
    background-position: center center;
  }

  #how-it-works,
  #services-page,
  #services-process,
  #why-wyllex {
    padding: 80px 24px;
  }

  .services-container {
    padding: 60px 24px;
    grid-template-columns: 1fr;
  }

  .services-grid-disclaimer {
    padding: 0 24px 60px;
  }

  .services-choose {
    padding: 140px 24px 60px;
  }

  #pricing {
    padding: 100px 24px;
  }

  .pricing-card {
    min-height: auto;
    padding: 42px;
  }

  .testimonial-section {
    padding-top: 80px;
    min-height: 640px;
  }

  .testimonial-panel {
    width: 92%;
  }

  .testimonial-panel h2 {
    font-size: 3rem;
    margin-bottom: 70px;
  }

  .testimonial-carousel {
    grid-template-columns: 34px 1fr 34px;
    padding: 0 18px;
    gap: 8px;
  }

  .testimonial-name,
  .testimonial-quote {
    font-size: 1rem;
  }

  .services-process-grid::before {
    display: none;
  }

  .about-hero-headline {
    font-size: 2.4rem;
  }

  .about-story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story-quote {
    font-size: 2rem;
  }

  .about-how-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-founder-bio {
    padding: 0 20px;
  }
}

/* ABOUT PAGE */

.about-hero {
  position: relative;
  height: 100vh;
  margin-top: 100px;
  overflow: hidden;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.about-hero-content {
  position: absolute;
  left: 8%;
  top: 30%;
  transform: translateY(-50%);
  max-width: 600px;
  text-align: left;
  z-index: 2;
}

.about-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #E91E8C;
  margin-bottom: 0;
}

.about-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 28px;
}

.about-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-hero-cta {
  display: inline-block;
  background: #E91E8C;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 16px 40px;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-hero-cta:hover {
  background: #d4006e;
  transform: translateY(-3px);
}

/* ABOUT STATS STRIP — dark with pink numbers */

.about-stats-strip {
  background: #0d0d0d;
  margin: 0;
  padding: 0;
}

.about-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.about-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: 100px;
}

.about-stat-main {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: #E91E8C;
  line-height: 1.2;
  margin-bottom: 10px;
}

.about-stat-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.about-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 40px;
}

/* OUR STORY — dark */

.about-story {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin: 0;
  padding: 0;
}

.about-story-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
  align-items: start;
}

.about-story-pull {
  position: relative;
  align-self: flex-start;
}

.about-story-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #E91E8C;
  margin-bottom: 18px;
}

.about-story-quote {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  font-style: italic;
  color: #E91E8C;
  line-height: 1.1;
}

.about-story-rule {
  width: 40px;
  height: 2px;
  background: #E91E8C;
  margin: 0;
  padding: 0;
}

.about-story-mark {
  width: 80px;
  opacity: 0.4;
  margin-top: 24px;
  display: block;
}

.about-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.about-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.about-story-body {
  padding-left: 40px;
}

.about-story-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-story-body p:last-child {
  margin-bottom: 0;
}

/* HOW WE WORK — dark */

.about-how {
  background: #080808;
}

.about-how-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}

.about-section-header {
  text-align: center;
  margin-bottom: 30px;
}

.about-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #E91E8C;
  margin-bottom: 14px;
  display: block;
}

.about-section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
}

.about-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-how-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(233, 30, 140, 0.12);
}

.about-how-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 30, 140, 0.1);
  margin-bottom: 20px;
}

.about-how-icon {
  width: 26px;
  height: 26px;
  color: #E91E8C;
  stroke: #E91E8C;
}

.about-how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-how-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-how-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-left: 14px;
  position: relative;
}

.about-how-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #E91E8C;
  font-size: 12px;
}

.about-how-list li:last-child {
  border-bottom: none;
}

/* OUR PHILOSOPHY — dark */

.about-philosophy {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
  padding: 0;
}

.about-philosophy-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}

.about-philosophy-container .about-label {
  margin-bottom: 14px;
}

.about-philosophy-container .about-section-headline {
  margin-bottom: 22px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  text-align: left;
}

.about-value-item {
  padding: 28px 48px 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-value-item:nth-child(even) {
  padding: 28px 0 28px 48px;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.about-value-rule {
  width: 32px;
  height: 2px;
  background: #E91E8C;
  margin-bottom: 18px;
}

.about-value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.about-value-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* MEET THE FOUNDER — dark */

.about-founder {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-founder-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-founder-inner .about-label {
  margin-bottom: 36px;
}

.about-founder-photo-wrap {
  margin-bottom: 36px;
}

.about-founder-photo-frame {
  width: 180px;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-founder-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
}

.about-founder-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.about-founder-placeholder-icon {
  width: 56px;
  height: 56px;
  color: rgba(233, 30, 140, 0.3);
  stroke: rgba(233, 30, 140, 0.3);
}

.about-founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.about-founder-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E91E8C;
  margin-bottom: 32px;
}

.about-founder-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  max-width: 560px;
}

/* =====================
   FAQ PAGE
   ===================== */

body.page-faq {
  background: #080808;
}

/* HERO */

.faq-hero {
  background: #080808;
  padding: 100px 8% 50px;
  text-align: center;
}

.faq-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E91E8C;
  margin: 0 0 22px;
}

.faq-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}

.faq-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: #E91E8C;
  margin: 0 0 14px;
  line-height: 1.4;
}

.faq-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ACCORDION — dark */

.faq-section {
  background: #080808;
  margin: 0;
  padding: 0;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 30px 8% 80px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: none;
  border: none;
  padding: 26px 0;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s ease;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: #E91E8C;
}

.faq-icon {
  flex-shrink: 0;
  color: #E91E8C;
  font-size: 1.3rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1;
  width: 18px;
  text-align: center;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  padding-bottom: 26px;
  margin: 0;
}

@media (max-width: 680px) {
  .faq-hero {
    padding: 100px 6% 40px;
  }

  .faq-headline {
    font-size: clamp(36px, 9vw, 56px);
  }

  .faq-tagline {
    font-size: 18px;
  }

  .faq-container {
    padding: 20px 6% 60px;
  }
}

/* NEWSLETTER — dark section */

.faq-newsletter {
  background: #0d0d0d;
  padding: 80px 8%;
}

.faq-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-newsletter-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E91E8C;
  margin: 0 0 16px;
}

.faq-newsletter-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 12px;
}

.faq-newsletter-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 32px;
  line-height: 1.6;
}

.faq-newsletter-form {
  display: flex;
  gap: 0;
}

.faq-newsletter-input {
  flex: 1;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px 0 0 50px;
  padding: 14px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #ffffff;
  outline: none;
}

.faq-newsletter-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.faq-newsletter-btn {
  background: #E91E8C;
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
  white-space: nowrap;
}

.faq-newsletter-btn:hover {
  background: #d4006e;
}

@media (max-width: 560px) {
  .faq-newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .faq-newsletter-input {
    border-radius: 50px;
  }

  .faq-newsletter-btn {
    border-radius: 50px;
    width: 100%;
  }
}

/* =====================
   LEGAL PAGES
   ===================== */

body.page-legal {
  background: #080808;
}

.legal-hero {
  background: #080808;
  padding: 140px 8% 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.legal-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E91E8C;
  margin: 0 0 20px;
}

.legal-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.05;
  margin: 0;
}

.legal-content {
  background: #080808;
  padding: 60px 8% 100px;
}

.legal-content-inner {
  max-width: 860px;
  margin: 0 auto;
}

.policy_embed_div {
  width: 100% !important;
  min-height: 600px;
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.85;
}

.policy_embed_div a {
  color: #E91E8C;
}

.policy_embed_div h2,
.policy_embed_div h3,
.policy_embed_div h4,
.policy_embed_div b,
.policy_embed_div strong {
  color: #E91E8C;
  font-family: 'Cormorant Garamond', serif;
}

.policy_embed_div p,
.policy_embed_div li,
.policy_embed_div ol,
.policy_embed_div ul {
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
}

@media (max-width: 680px) {
  .legal-hero {
    padding: 120px 6% 50px;
  }

  .legal-content {
    padding: 40px 6% 80px;
  }
}

/* =====================
   APPLY PAGE
   ===================== */

body.page-apply {
  background: #080808;
}

.apply-hero {
  background: #080808;
  padding: 140px 8% 70px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.apply-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.apply-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #E91E8C;
  margin: 0 0 20px;
}

.apply-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.05;
  margin: 0 0 16px;
}

.apply-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

/* FORM SECTION */

.apply-section {
  background: #080808;
  padding: 0 8% 100px;
}

.apply-container {
  max-width: 720px;
  margin: 0 auto;
}

/* TOGGLE */

.apply-form-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 80px 0;
}

/* FORM INTRO */

.form-intro {
  margin-bottom: 44px;
}

#form-creator .form-intro,
#form-brand .form-intro {
  padding-top: 60px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 300;
  color: #E91E8C;
  margin: 0 0 10px;
}

.form-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}

/* FORM SECTIONS */

.form-section {
  margin-bottom: 44px;
}

.form-section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #E91E8C;
  margin: 0 0 10px;
}

.form-section-rule {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

/* FIELDS */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.req {
  color: #E91E8C;
}

.form-input {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: #E91E8C;
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.12);
}

.form-input::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-textarea {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #ffffff;
  outline: none;
  resize: vertical;
  line-height: 1.7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea:focus {
  border-color: #E91E8C;
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.12);
}

.form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

/* CHECKBOXES */

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

.form-checkbox-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.check-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  background: #111;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
}

.check-item input[type="checkbox"]:checked {
  background: #E91E8C;
  border-color: #E91E8C;
}

.check-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* RADIO BUTTONS */

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.radio-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: #111;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease;
}

.radio-item input[type="radio"]:checked {
  border-color: #E91E8C;
}

.radio-item input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E91E8C;
}

/* SUBMIT */

.apply-submit-btn {
  display: block;
  width: 100%;
  background: #E91E8C;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 32px;
  transition: background 0.25s ease;
}

.apply-submit-btn:hover {
  background: #d4006e;
}

/* SUCCESS MESSAGE */

.apply-success {
  text-align: center;
  padding: 80px 0;
}

.apply-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.5;
}

/* BOOK PAGE */

.book-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 160px 60px 100px;
  background: #080808;
}

.book-hero {
  text-align: center;
  margin-bottom: 52px;
}

.book-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  color: #ffffff;
  margin: 16px 0 20px;
  line-height: 1;
}

.book-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}

.book-card {
  display: flex;
  flex-direction: column;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(233, 30, 140, 0.12);
}

.book-duration {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E91E8C;
  margin-bottom: 14px;
  display: block;
}

.book-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.book-card-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 28px;
}

.book-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(233, 30, 140, 0.6);
  color: #E91E8C;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.book-btn:hover {
  background: #E91E8C;
  color: #fff;
  border-color: #E91E8C;
}

.book-note {
  margin-top: 44px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* MOBILE */

@media (max-width: 680px) {
  .apply-hero {
    padding: 120px 6% 50px;
  }

  .apply-section {
    padding: 0 6% 80px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   NEON UTILITIES
   ===================== */

.neon-text {
  color: #E91E8C;
  text-shadow: 0 0 10px #E91E8C, 0 0 30px #E91E8C, 0 0 60px rgba(233, 30, 140, 0.5);
}

.neon-glow {
  box-shadow: 0 0 15px #E91E8C, 0 0 30px rgba(233, 30, 140, 0.4);
}

/* =====================
   HAMBURGER + MOBILE NAV
   ===================== */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #080808;
  z-index: 998;
  padding: 32px 8% 60px;
  flex-direction: column;
  overflow-y: auto;
  border-top: 1px solid rgba(233, 30, 140, 0.2);
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.nav-mobile-links li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-mobile-links li:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.nav-mobile-links a {
  display: block;
  padding: 20px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
  color: #E91E8C;
}

.nav-mobile-links .nav-mobile-cta {
  display: inline-block;
  margin-top: 28px;
  background: #E91E8C;
  color: #ffffff !important;
  border: 2px solid #E91E8C;
  padding: 14px 36px;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 0 15px rgba(233, 30, 140, 0.5);
  font-size: 0.78rem;
  border-bottom: none;
}

.nav-mobile-links .nav-mobile-cta:hover {
  background: #d4006e;
  border-color: #d4006e;
}

/* =====================
   ADDITIONAL MOBILE FIXES
   ===================== */

@media (max-width: 950px) {
  .nav-hamburger {
    display: flex;
  }

  /* creator hero - prevent overflow from nowrap */
  .creator-hero-headline {
    white-space: normal;
    font-size: clamp(2.4rem, 8vw, 72px);
  }

  /* about story body loses desktop left-padding when stacked */
  .about-story-body {
    padding-left: 0;
  }

  /* book page */
  .book-section {
    padding: 120px 6% 60px;
  }

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

  /* testimonial slide padding */
  .testimonial-slide {
    padding: 32px;
  }

  /* services testimonial */
  #services-testimonial {
    padding: 60px 24px;
  }

  /* services page editorial */
  .services-page-container {
    padding: 60px 24px;
  }

  .editorial-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .editorial-number {
    font-size: 64px;
  }
}

@media (max-width: 480px) {
  /* hero h1 */
  .hero-content h1 {
    font-size: clamp(2.6rem, 10vw, 3.5rem);
  }

  /* hero actions stack full-width */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }

  /* hero stats — stay horizontal, shrink to fit 390px */
  .hero-stats {
    padding: 20px 4%;
    align-items: center;
  }

  .hero-stats > div {
    min-width: 0;
  }

  .hero-stats > div:nth-child(2),
  .hero-stats > div:nth-child(3) {
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.12);
  }

  .hero-stats strong {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  }

  .hero-stats span {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    line-height: 1.4;
  }

  /* about hero */
  .about-hero-headline {
    font-size: 1.8rem;
  }

  .about-hero-content {
    left: 6%;
    right: 6%;
    max-width: none;
  }

  /* about stats - stack to single column */
  .about-stats-inner {
    flex-wrap: wrap;
    padding: 24px 8%;
    gap: 0;
  }

  .about-stat-item {
    flex: 0 0 100%;
    padding: 16px 0;
    min-height: auto;
  }

  .about-stat-divider {
    display: none;
  }

  /* cta actions */
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8%;
  }

  .cta-actions .btn {
    text-align: center;
  }

  /* creator hero */
  .creator-hero-headline {
    font-size: clamp(2rem, 8vw, 48px);
  }

  .creator-hero-inner {
    padding: 0 24px;
  }

  /* testimonial - hide arrows on very small screens, let dots navigate */
  .testimonial-arrow {
    display: none;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
    padding: 0;
  }

  /* pricing card */
  .pricing-card {
    padding: 32px 24px;
  }

  /* path card */
  .path-card {
    min-height: auto;
    padding: 36px 28px;
  }

  /* step card */
  .step-card {
    min-height: auto;
  }

  /* about story quote */
  .about-story-quote {
    font-size: 2.6rem;
  }

  /* book page */
  .book-section {
    padding: 100px 5% 50px;
  }

  /* forms: ensure no side-by-side rows on smallest screens */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* services choose card */
  .services-choose-card {
    min-height: auto;
    padding: 32px;
  }

  /* services choose grid (already stacked at 950px, keep padding tighter) */
  .services-choose {
    padding: 120px 20px 50px;
  }
}
