:root {
  color-scheme: dark;
  --ink: #17131b;
  --paper: #f7f1ec;
  --rose: #f1a9bb;
  --rose-deep: #cf7891;
  --line: rgba(255, 255, 255, 0.2);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #fff;
  background: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: 48% center; z-index: -2; }
.hero__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 10, 18, .08) 0%, rgba(9, 10, 18, .08) 42%, rgba(12, 9, 15, .84) 100%),
    linear-gradient(90deg, rgba(10, 12, 22, .56) 0%, rgba(10, 12, 22, .06) 64%);
}
.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: max(22px, env(safe-area-inset-top)) clamp(20px, 5vw, 72px);
}
.wordmark {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
}
.disclosure {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 17, 25, .26);
  backdrop-filter: blur(12px);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero__content {
  width: min(680px, calc(100% - 40px));
  margin: 0 clamp(20px, 8vw, 120px) clamp(76px, 11vh, 132px);
}
.eyebrow {
  margin: 0 0 16px;
  color: #ffd6df;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2 { margin: 0; font-family: "Newsreader", serif; font-weight: 500; letter-spacing: -.05em; }
h1 { font-size: clamp(4rem, 9vw, 8rem); line-height: .78; }
h1 em { color: #ffd0dc; font-weight: 500; }
.intro {
  max-width: 560px;
  margin: 28px 0 24px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  transition: transform 160ms var(--ease-out), background-color 180ms ease;
}
.cta:active, .sticky-cta:active { transform: scale(.97); }
.microcopy { margin: 12px 0 0; color: rgba(255,255,255,.58); font-size: .75rem; }

.about {
  color: var(--ink);
  background: var(--paper);
  padding: clamp(90px, 12vw, 170px) 20px;
}
.about__inner { width: min(780px, 100%); margin: 0 auto; text-align: center; }
.about .eyebrow { color: var(--rose-deep); }
.about h2, .closer h2 { font-size: clamp(4rem, 9vw, 7rem); line-height: .88; }
.about p:not(.eyebrow), .closer p {
  max-width: 650px;
  margin: 28px auto;
  color: #5c515d;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}
.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pill-row span { padding: 10px 15px; border: 1px solid rgba(23,19,27,.14); border-radius: 999px; color: #6b5c68; font-size: .82rem; }

.closer {
  padding: clamp(72px, 10vw, 130px) 20px 140px;
  background: radial-gradient(circle at 50% 0%, #4b2938 0%, var(--ink) 58%);
}
.closer__card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 8vw, 86px) clamp(24px, 7vw, 72px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 36px;
  background: rgba(255,255,255,.06);
  text-align: center;
  backdrop-filter: blur(18px);
}
.closer p { color: rgba(255,255,255,.7); }
.cta--dark { background: var(--rose); }
.closer small { display: block; max-width: 520px; margin: 18px auto 0; color: rgba(255,255,255,.46); line-height: 1.5; }

.sticky-cta { display: none; }
[data-reveal] { opacity: 0; transform: translateY(18px) scale(.985); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0) scale(1); }

@media (hover: hover) and (pointer: fine) {
  .cta:hover { transform: translateY(-2px); background: #ffe8ee; }
}
@media (max-width: 640px) {
  .hero__image { object-position: 50% center; }
  .hero__shade { background: linear-gradient(180deg, rgba(9,10,18,.06) 0%, rgba(9,10,18,.08) 38%, rgba(12,9,15,.92) 82%); }
  .topbar { padding: max(16px, env(safe-area-inset-top)) 16px; }
  .disclosure { font-size: .62rem; padding: 8px 10px; }
  .hero__content { margin: 0 20px 94px; }
  h1 { font-size: clamp(3.8rem, 18vw, 5.5rem); }
  .cta { width: 100%; }
  .sticky-cta {
    position: fixed;
    z-index: 20;
    left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    background: rgba(248, 231, 236, .94);
    color: var(--ink);
    font-weight: 700;
    box-shadow: 0 18px 54px rgba(0,0,0,.34);
    backdrop-filter: blur(16px);
    transition: transform 160ms var(--ease-out);
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: opacity 180ms ease; }
}
