:root {
  --ink: #454a53;
  --mint: #d1f0d6;
  --coral: #ea6a60;
  --teal: #377e87;
  --sand: #f8f1e8;
  --paper: #fffdf8;
  --line: rgba(69, 74, 83, 0.12);
  --shadow: 0 28px 70px rgba(58, 51, 46, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(209, 240, 214, 0.9), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(234, 106, 96, 0.24), transparent 18%),
    linear-gradient(180deg, #f7f7f1 0%, #fff8f1 36%, #fffdf8 100%);
  overflow-x: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header,
.proof-strip,
.problem-section,
.framework-section,
.audience-section,
.cta-section,
.site-footer {
  backdrop-filter: blur(10px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  margin-bottom: 28px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(69, 74, 83, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--teal));
}

.site-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.header-cta,
.waitlist-form button,
.story-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--coral), #cb544b);
  box-shadow: 0 20px 30px rgba(234, 106, 96, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 38px;
  align-items: center;
  padding: 36px 0 24px;
}

.eyebrow,
.story-label {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero h1,
.section-heading h2,
.framework-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--coral);
}

.hero-lead,
.hero-support,
.framework-copy p,
.cta-copy p,
.problem-card p,
.audience-grid p,
.story-copy p,
.site-footer p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-lead {
  max-width: 56ch;
  margin: 22px 0 10px;
}

.hero-support {
  max-width: 54ch;
  margin: 0 0 28px;
  color: rgba(69, 74, 83, 0.84);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-points span,
.proof-strip div,
.audience-grid article,
.problem-card,
.framework-steps article,
.story-card,
.cta-section,
.site-footer {
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-points span {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 12px;
}

.waitlist-form input {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.waitlist-form input:focus {
  outline: 2px solid rgba(55, 126, 135, 0.28);
  border-color: var(--teal);
}

.form-note {
  margin: 14px 0 0;
  color: rgba(69, 74, 83, 0.72);
}

.hero-visual {
  position: relative;
}

.image-stack {
  position: relative;
  min-height: 690px;
}

.hero-photo {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-photo img,
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo.primary {
  position: absolute;
  inset: 0 36px 140px 0;
}

.hero-photo.secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 0.95;
  border: 10px solid rgba(255, 253, 248, 0.95);
}

.floating-card {
  position: absolute;
  left: 28px;
  bottom: 122px;
  z-index: 1;
  width: min(280px, 62%);
  padding: 18px 20px;
  border-radius: 22px;
  color: white;
  background: linear-gradient(145deg, var(--ink), #5e6772);
  box-shadow: 0 18px 36px rgba(69, 74, 83, 0.26);
}

.floating-card p {
  margin: 0 0 6px;
  opacity: 0.78;
}

.floating-card strong {
  font-size: 1.15rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0 72px;
}

.proof-strip div,
.problem-card,
.framework-steps article,
.audience-grid article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.proof-strip strong,
.problem-card h3,
.framework-steps h3,
.audience-grid h3,
.story-copy h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.problem-section,
.audience-section,
.detail-section {
  padding: 34px 0;
}

.problem-section,
.audience-section,
.cta-section,
.framework-copy {
  position: relative;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading h2,
.framework-copy h2,
.cta-copy h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
}

.problem-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section-popups {
  position: absolute;
  top: -8px;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 420px;
}

.mini-popup,
.cta-chip {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 30px rgba(69, 74, 83, 0.12);
  animation: floaty 6s ease-in-out infinite;
}

.mini-popup:nth-child(2),
.cta-chip:nth-child(2) {
  animation-delay: 1.1s;
}

.mini-popup:nth-child(3),
.cta-chip:nth-child(3) {
  animation-delay: 2.2s;
}

.soft-mint {
  background: rgba(209, 240, 214, 0.95);
}

.soft-coral {
  color: white;
  background: linear-gradient(135deg, var(--coral), #d95a50);
}

.soft-ink {
  color: white;
  background: linear-gradient(135deg, var(--ink), #606b78);
}

.detail-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.detail-panel {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.manifesto-panel {
  background:
    radial-gradient(circle at top right, rgba(209, 240, 214, 0.92), transparent 35%),
    rgba(255, 253, 248, 0.84);
}

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

.faq-items article {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.faq-items h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.faq-items p,
.detail-list {
  margin: 0;
  line-height: 1.7;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 20px;
}

.accent-coral {
  background: linear-gradient(180deg, rgba(234, 106, 96, 0.18), rgba(255, 253, 248, 0.76));
}

.accent-mint {
  background: linear-gradient(180deg, rgba(209, 240, 214, 0.85), rgba(255, 253, 248, 0.76));
}

.accent-teal {
  background: linear-gradient(180deg, rgba(55, 126, 135, 0.18), rgba(255, 253, 248, 0.76));
}

.framework-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 24px;
  align-items: stretch;
  padding: 34px 0;
}

.framework-copy,
.story-card,
.cta-section {
  padding: 28px;
  border-radius: 30px;
}

.framework-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.quote-popup {
  display: inline-block;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 24px;
  color: white;
  background: linear-gradient(135deg, #2f6f77, var(--ink));
  box-shadow: 0 22px 34px rgba(55, 126, 135, 0.2);
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(-84px, 0, 0) scale(0.96);
  transition:
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.65s ease,
    filter 0.65s ease;
  filter: blur(4px);
  will-change: transform, opacity;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.scroll-reveal.is-exiting {
  opacity: 0;
  transform: translate3d(92px, 0, 0) scale(0.96);
  filter: blur(4px);
}

.scroll-group .scroll-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.scroll-group .scroll-reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.scroll-group .scroll-reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.scroll-group .scroll-reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.quote-popup p {
  margin: 0 0 6px;
  opacity: 0.82;
}

.quote-popup strong {
  font-size: 1.15rem;
}

.framework-steps span {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--coral);
}

.story-card {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(209, 240, 214, 0.46));
}

.story-photo {
  overflow: hidden;
  min-height: 320px;
  border-radius: 24px;
}

.story-copy a {
  margin-top: 6px;
}

.audience-grid article {
  min-height: 220px;
}

.seller-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.seller-banner span {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 24px rgba(69, 74, 83, 0.1);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 26px;
  margin: 24px 0 34px;
  background:
    radial-gradient(circle at top left, rgba(209, 240, 214, 0.92), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(248, 241, 232, 0.96));
}

.waitlist-form-wide {
  align-self: center;
}

.waitlist-form.is-loading {
  opacity: 0.78;
}

.cta-popups {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cta-chip {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.bottom-note {
  grid-column: 2;
  margin-top: -12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 28px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-weight: 700;
}

.footer-copy {
  text-align: right;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1080px) {
  .hero,
  .framework-section,
  .cta-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
  }

  .waitlist-form,
  .waitlist-form-wide,
  .proof-strip,
  .problem-grid,
  .audience-grid,
  .framework-steps,
  .detail-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 18px;
  }

  .section-popups {
    position: static;
    justify-content: flex-start;
    max-width: none;
    margin: 0 0 18px;
  }

  .image-stack {
    min-height: 540px;
  }

  .hero-photo.primary {
    inset: 0 0 90px 0;
  }

  .hero-photo.secondary {
    width: 48%;
  }

  .bottom-note {
    grid-column: auto;
    margin-top: 0;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100vw - 24px, 100%);
    padding-top: 12px;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 16vw, 4.2rem);
  }

  .hero-lead,
  .hero-support,
  .framework-copy p,
  .problem-card p,
  .story-copy p,
  .audience-grid p,
  .cta-copy p {
    font-size: 1rem;
  }

  .image-stack {
    min-height: 430px;
  }

  .hero-photo.primary {
    inset: 0 0 70px 0;
  }

  .hero-photo.secondary {
    width: 58%;
    border-width: 7px;
  }

  .floating-card {
    left: 14px;
    right: 14px;
    width: auto;
    bottom: 98px;
  }

  .seller-banner,
  .cta-popups {
    gap: 10px;
  }

  .framework-copy,
  .story-card,
  .cta-section,
  .site-footer {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mini-popup,
  .cta-chip {
    animation: none;
  }

  .scroll-reveal,
  .scroll-reveal.is-visible,
  .scroll-reveal.is-exiting {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
