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

:root {
  --chalk:        #F8F6F2;
  --chalk-warm:   #EFECE6;
  --chalk-mid:    #E4E0D8;
  --charcoal:     #1E1E1C;
  --charcoal-mid: #3A3A37;
  --charcoal-soft:#6B6B67;
  --charcoal-pale:#A8A8A4;
  --accent:       #7B8FA1;
  --accent-soft:  #9BAEBB;
  --white:        #FDFCFA;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 5rem;
  background: rgba(253,252,250,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30,30,28,0.07);
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
}

.logo span { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--charcoal); }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--charcoal);
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5rem 6rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18rem, 30vw, 32rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(30,30,28,0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.hero-tag {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.3s;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  max-width: 14ch;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.5s;
}

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

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  max-width: 40ch;
  line-height: 1.9;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.hero-cta {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.hero-scroll {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-pale);
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--charcoal);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  flex-shrink: 0;
}

.marquee-item span { color: var(--accent-soft); margin: 0 1.5rem; }

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

/* ── PROBLEM ── */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}

.problem-left {
  background: var(--chalk);
  padding: 9rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-right {
  background: var(--chalk-warm);
  padding: 9rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 36px;
  background: var(--accent);
  opacity: 0.6;
}

.problem-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.problem-right p {
  font-size: 1rem;
  color: var(--charcoal-mid);
  line-height: 1.9;
  margin-bottom: 1.8rem;
}

.problem-right p:last-child { margin-bottom: 0; }

/* ── WHAT ── */
.what {
  padding: 10rem 5rem;
  background: var(--charcoal);
  color: var(--chalk);
}

.what-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 7rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(248,246,242,0.08);
}

.what-top h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--chalk);
  flex-shrink: 0;
}

.what-top h2 em {
  font-style: italic;
  color: var(--accent-soft);
}

.what-intro {
  font-size: 1rem;
  color: var(--charcoal-pale);
  line-height: 1.9;
  max-width: 46ch;
  padding-top: 0.5rem;
}

.what .section-label { color: var(--accent-soft); }
.what .section-label::after { background: var(--accent-soft); }

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

.timeline-item {
  border-right: 1px solid rgba(248,246,242,0.07);
  padding: 0 4rem 0 0;
}

.timeline-item:not(:first-child) { padding-left: 4rem; }
.timeline-item:last-child { border-right: none; }

.timeline-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(248,246,242,0.08);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.timeline-month {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.5rem;
}

.timeline-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--chalk);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--charcoal-pale);
  line-height: 1.8;
}

/* ── WHO ── */
.who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  padding: 10rem 5rem;
  align-items: center;
}

.who h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}

.who-right p {
  font-size: 1rem;
  color: var(--charcoal-mid);
  line-height: 1.9;
  margin-bottom: 1.6rem;
}

.who-right p:last-child { margin-bottom: 0; }

/* ── OFFER ── */
.offer {
  padding: 10rem 5rem;
  background: var(--chalk);
}

.offer-inner { max-width: 860px; }

.offer h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--chalk-mid);
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 3.5rem 4rem;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price sup {
  font-size: 2rem;
  vertical-align: super;
  letter-spacing: 0;
}

.price-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-pale);
  margin-top: 0.5rem;
}

.offer-card-right { flex: 1; }

.terms {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.offer-cta {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: background 0.2s, transform 0.15s;
}

.offer-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ── FOUNDER ── */
.founder {
  padding: 10rem 5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8rem;
  align-items: center;
}

.founder-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.founder blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.founder-right {
  border-top: 1px solid var(--chalk-mid);
  padding-top: 2.5rem;
}

.founder-sig strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.founder-sig span {
  font-size: 0.72rem;
  color: var(--charcoal-pale);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 2.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .logo { color: var(--chalk-warm); }
footer .logo span { color: var(--accent-soft); }

footer p {
  font-size: 0.7rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.08em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-right { gap: 1.5rem; }
  .nav-link { display: none; }
  .hero { padding: 0 1.5rem 4rem; }
  .hero-bg-text { font-size: 10rem; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero-cta-group { align-items: flex-start; }
  .problem { grid-template-columns: 1fr; }
  .problem-left, .problem-right { padding: 5rem 1.5rem; }
  .what { padding: 6rem 1.5rem; }
  .what-top { flex-direction: column; gap: 2rem; margin-bottom: 4rem; padding-bottom: 3rem; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { border-right: none; border-bottom: 1px solid rgba(248,246,242,0.07); padding: 2.5rem 0; }
  .timeline-item:not(:first-child) { padding-left: 0; }
  .who { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 1.5rem; }
  .offer { padding: 6rem 1.5rem; }
  .offer-card { flex-direction: column; align-items: flex-start; padding: 2.5rem; }
  .offer-card-right { text-align: left; }
  .founder { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
}