/* ===== Tokens ===== */
:root {
  --bg: #ffffff;
  --bg-alt: #fdf3f8;
  --surface: #ffffff;
  --surface-2: #fbeaf3;
  --hairline: rgba(30, 12, 22, 0.1);

  --pink: #ff2e79;
  --pink-2: #ff3f96;
  --pink-soft: #ff8fc7;
  --magenta: #c9006b;
  --purple: #7c2bd9;
  --gold: #d68a2c;
  --amber: #e07b1f;
  --teal: #00a98c;
  --coral: #ff5470;
  --blue: #4d7cff;

  --text: #1c0f16;
  --muted: #6b5563;
  --muted-2: #8c7480;

  --grad-primary: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 55%, var(--purple) 100%);
  --grad-text: linear-gradient(90deg, var(--pink) 0%, var(--magenta) 55%, var(--purple) 100%);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --section-pad: 120px;
}

@media (prefers-color-scheme: light) {
  /* Site is intentionally a single fixed dark+pink theme regardless of OS scheme */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(900px circle at 92% 0%, rgba(255, 46, 121, 0.16), transparent 55%),
    radial-gradient(800px circle at 4% 12%, rgba(124, 43, 217, 0.14), transparent 55%),
    radial-gradient(900px circle at 100% 45%, rgba(255, 122, 198, 0.16), transparent 55%),
    radial-gradient(800px circle at 0% 68%, rgba(255, 46, 121, 0.13), transparent 55%),
    radial-gradient(900px circle at 95% 92%, rgba(124, 43, 217, 0.14), transparent 55%),
    radial-gradient(800px circle at 6% 100%, rgba(255, 122, 198, 0.14), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.02em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: 760px; }

/* film grain / noise overlay for texture */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--pink-2);
  margin: 0 0 14px;
}
.eyebrow--center { display: block; text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(255, 46, 121, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(255, 46, 121, 0.7); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--hairline);
}
.btn--ghost:hover { border-color: var(--pink-2); color: var(--pink-soft); }
.btn--ghost-sm {
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline);
  font-size: 14px;
  font-weight: 600;
}
.btn--ghost-sm:hover { background: rgba(255, 46, 121, 0.15); border-color: var(--pink-2); }
.btn--dark {
  background: #150a12;
  color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
}
.btn--dark:hover { transform: translateY(-2px); }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.brand__ring {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 4px solid var(--pink);
  box-shadow: 0 0 14px rgba(255, 46, 121, 0.65);
  flex-shrink: 0;
}
.brand__dot { color: var(--pink-2); font-size: 11px; vertical-align: super; }

.nav__links {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav__links a:hover { color: var(--text); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.32;
}
.hero__glow--a {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  top: -220px; right: -160px;
}
.hero__glow--b {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  bottom: -220px; left: -180px;
  opacity: 0.22;
}

.hero__grid {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero__copy--centered {
  max-width: 680px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.06;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero__sub {
  max-width: 480px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.stat-row--centered { justify-content: center; }
.stat-row__item { display: flex; flex-direction: column; }
.stat-row--centered .stat-row__item { align-items: center; }
.stat-row__item strong {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  color: var(--text);
}
.stat-row__item span {
  font-size: 12.5px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.stat-row__div {
  width: 1px; height: 34px;
  background: var(--hairline);
}

.float-chip {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  font-size: 13px;
  font-weight: 600;
  color: var(--magenta);
}

.scroll-cue {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.scroll-cue span {
  width: 1px; height: 40px;
  background: linear-gradient(var(--pink-2), transparent);
  display: block;
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue { 0%,100% { opacity: 0.2; } 50% { opacity: 1; } }

/* ===== Marquee ===== */
.marquee {
  background: var(--grad-primary);
  overflow: hidden;
  padding: 16px 0;
  transform: skewY(-1.4deg);
  margin: -1px 0;
}
.marquee__track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #150a12;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section { padding: var(--section-pad) 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255,46,121,0.045) 18%, rgba(255,46,121,0.045) 82%, transparent); }
.section--tight { padding: 50px 0; }

/* ===== Photo gallery strip ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.photo-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  isolation: isolate;
}
.photo-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.35), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(0,0,0,0.35), transparent 55%);
  z-index: 1;
}
.photo-tile--photo {
  background-size: cover;
  background-position: center;
}
.photo-tile--photo::before {
  background: linear-gradient(180deg, rgba(11,5,9,0.05) 45%, rgba(11,5,9,0.75) 100%);
}
.photo-tile span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.photo-tile--big { grid-row: span 2; }
.pt-1 { background: linear-gradient(145deg, var(--pink) 0%, var(--purple) 100%); }
.pt-2 { background: linear-gradient(145deg, var(--amber) 0%, var(--coral) 100%); }
.pt-3 { background: linear-gradient(145deg, var(--teal) 0%, var(--blue) 100%); }
.pt-4 { background: linear-gradient(145deg, var(--gold) 0%, var(--pink) 100%); }
.pt-5 { background: linear-gradient(145deg, var(--blue) 0%, var(--purple) 100%); }
.pt-6 { background: linear-gradient(145deg, var(--coral) 0%, var(--gold) 100%); }

.section__title {
  font-size: clamp(28px, 3.6vw, 44px);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
  font-weight: 800;
}
.section__sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--muted);
  font-size: 16px;
}

/* ===== Feature grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 10px 30px -20px rgba(28, 15, 22, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,122,198,0.4); }
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(255, 46, 121, 0.12);
  color: var(--pink-2);
  margin-bottom: 18px;
}
.fc-pink .feature-card__icon { background: rgba(255, 46, 121, 0.16); color: var(--pink-2); }
.fc-gold .feature-card__icon { background: rgba(255, 159, 67, 0.18); color: var(--amber); }
.fc-teal .feature-card__icon { background: rgba(0, 212, 176, 0.16); color: var(--teal); }
.fc-purple .feature-card__icon { background: rgba(124, 43, 217, 0.2); color: #c79bff; }
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.feature-card p { color: var(--muted); font-size: 14.5px; }

/* ===== Attachments ===== */
.attach-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.attach-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 22px 22px 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px -20px rgba(28, 15, 22, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.attach-card:hover { transform: translateY(-6px); border-color: rgba(255,122,198,0.4); }
.attach-card h4 { font-size: 15.5px; margin: 0 0 8px; font-weight: 700; }
.attach-card p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

.attach-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  padding: 34px 8px;
  border-top: 1px solid var(--hairline);
}
.step__num {
  font-family: 'Unbounded', sans-serif;
  font-size: 34px;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; max-width: 320px; }

/* ===== Looks gallery ===== */
.looks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .looks-grid { grid-template-columns: repeat(2, 1fr); }
}
.look-card {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.look-card:hover { transform: translateY(-8px); }
.look-card h3 { font-size: 22px; line-height: 1.15; margin-bottom: 8px; position: relative; z-index: 2; color: #fff; }
.look-card p { font-size: 13px; color: rgba(255,255,255,0.75); position: relative; z-index: 2; }
.look-card--6 { background: linear-gradient(160deg, #00d4b0, #4d7cff); }
.look-card--photo {
  background-size: cover;
  background-position: center;
}
.look-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,5,9,0) 40%, rgba(11,5,9,0.85) 100%);
  z-index: 1;
}

/* ===== Reviews ===== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: 0 10px 30px -20px rgba(28, 15, 22, 0.25);
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; font-size: 15px; }
.review-card p { color: var(--text); font-size: 15px; line-height: 1.6; margin-bottom: 22px; }
.review-card__who { display: flex; flex-direction: column; }
.review-card__who strong { font-size: 14px; }
.review-card__who span { font-size: 12.5px; color: var(--muted-2); }

/* ===== CTA band ===== */
.cta-band {
  position: relative;
  background: var(--grad-primary);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-band__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.25), transparent 60%);
}
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(30px, 4.2vw, 48px);
  margin-bottom: 18px;
}
.cta-band__price {
  color: rgba(255,255,255,0.92);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 40px;
}
.cta-band__price span { font-weight: 500; opacity: 0.85; font-size: 15px; }

.waitlist {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
}
.waitlist input {
  flex: 1;
  min-width: 220px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 15px;
}
.waitlist input::placeholder { color: rgba(255,255,255,0.7); }
.waitlist input:focus { outline: none; border-color: #fff; background: rgba(255,255,255,0.2); }
.waitlist__note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.75); }

/* ===== FAQ ===== */
.faq__item {
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.faq__item summary {
  cursor: pointer;
  font-family: 'Unbounded', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--pink-2);
  margin-left: 20px;
  transition: transform 0.25s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin-top: 14px; color: var(--muted); font-size: 14.5px; max-width: 620px; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 70px 0 30px;
  background: var(--bg-alt);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 50px;
}
.footer__brand p { color: var(--muted-2); font-size: 13.5px; margin-top: 14px; max-width: 260px; }
.footer__col h5 {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer__col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}
.footer__col a:hover { color: var(--pink-2); }
.footer__bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
}
.footer__bottom p { color: var(--muted-2); font-size: 12.5px; }

/* ===== Reveal animation ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .attach-scroll { grid-template-columns: repeat(2, 1fr); }
  .looks-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 84px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--hairline);
    padding: 20px 28px 28px;
    gap: 18px;
  }
  .nav__cta { display: none; }
  .stat-row { gap: 16px; }
  .stat-row__item strong { font-size: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .attach-scroll { grid-template-columns: 1fr; }
  .looks-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
}

@media (max-width: 480px) {
  .hero { padding: 140px 0 60px; }
  .looks-grid { grid-template-columns: 1fr; }
  .attach-scroll { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 90px; }
  .waitlist { flex-direction: column; }
  .waitlist input, .waitlist .btn { width: 100%; }
}
