:root {
  --bg: #f4efe7;
  --bg-deep: #102226;
  --surface: rgba(255, 251, 246, 0.72);
  --surface-strong: rgba(255, 251, 246, 0.9);
  --surface-dark: rgba(16, 34, 38, 0.9);
  --ink: #152126;
  --muted: #5e6a6d;
  --line: rgba(21, 33, 38, 0.1);
  --gold: #d4ad63;
  --clay: #b46f5d;
  --mist: #d9e5e0;
  --sage: #6e8a82;
  --white: #fffdf9;
  --shadow: 0 24px 60px rgba(16, 34, 38, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 223, 160, 0.45), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(255, 242, 204, 0.55), transparent 16%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(180deg, #dceeff 0%, #edf7ff 32%, #f8fbff 64%, #f4efe7 100%);
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(21, 33, 38, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 33, 38, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
}

body::after {
  position: fixed;
  top: 0;
  left: -12%;
  width: 124%;
  height: 100%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.92) 0 5%, transparent 5.2%),
    radial-gradient(circle at 23% 15%, rgba(255, 255, 255, 0.88) 0 4.8%, transparent 5%),
    radial-gradient(circle at 20% 17%, rgba(255, 255, 255, 0.82) 0 6.5%, transparent 6.8%),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.9) 0 5.4%, transparent 5.6%),
    radial-gradient(circle at 81% 19%, rgba(255, 255, 255, 0.84) 0 4.6%, transparent 4.9%),
    radial-gradient(circle at 79% 21%, rgba(255, 255, 255, 0.78) 0 6.4%, transparent 6.7%),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.7) 0 7%, transparent 7.4%);
  filter: blur(10px);
  opacity: 0.75;
  animation: cloudDrift 85s linear infinite;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  margin-top: 18px;
  border: 1px solid rgba(255, 253, 249, 0.7);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.74);
  box-shadow: 0 18px 40px rgba(16, 34, 38, 0.08);
}

.brand,
.site-nav a,
.text-link {
  color: var(--ink);
  text-decoration: none;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 248, 226, 0.95), transparent 34%),
    linear-gradient(135deg, rgba(212, 173, 99, 0.95), rgba(180, 111, 93, 0.92));
  box-shadow: 0 10px 22px rgba(180, 111, 93, 0.28);
}

.winged-heart {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 25px;
}

.wing {
  position: absolute;
  top: -5px;
  width: 15px;
  height: 23px;
  overflow: visible;
  z-index: 2;
}

.wing path {
  fill: none;
  stroke: rgba(77, 84, 89, 0.92);
  stroke-width: 2.15;
  stroke-linecap: round;
  opacity: 0.95;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.18));
}

.wing-left {
  left: -1px;
  transform: rotate(-34deg);
  transform-origin: 100% 100%;
}

.wing-right {
  right: -1px;
  transform: rotate(34deg);
  transform-origin: 0 100%;
}

.heart-core {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 14px;
  height: 14px;
  background: #bfe2ff;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(255, 253, 249, 0.45),
    0 2px 6px rgba(110, 166, 214, 0.28);
}

.heart-core::before,
.heart-core::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #bfe2ff;
}

.heart-core::before {
  left: -6.5px;
  top: 0;
}

.heart-core::after {
  left: 0;
  top: -6.5px;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a,
.button,
.button-small,
.text-link,
.memory-card,
.step-card,
.format-card,
.audience-card,
.intro-card {
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a:hover,
.text-link:hover {
  opacity: 0.66;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 130px);
  padding: 48px 0 32px;
  position: relative;
}

.hero::before {
  position: absolute;
  top: -6%;
  left: -4%;
  width: 52%;
  height: 66%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 234, 171, 0.72) 0, rgba(255, 234, 171, 0.28) 34%, rgba(255, 255, 255, 0) 72%);
  filter: blur(18px);
  opacity: 0.95;
  z-index: 0;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: #406058;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.7rem, 7vw, 7rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.65rem;
  line-height: 1;
}

p {
  margin: 0;
}

.lede,
.sublede,
.step-card p,
.format-card p,
.legacy-panel p,
.audience-card p,
.interest-copy p,
.interest-form label,
.intro-card p,
.form-note,
.quote-panel blockquote,
.trust-list,
.preview-grid p {
  color: var(--muted);
}

.lede,
.sublede {
  max-width: 41rem;
  line-height: 1.7;
}

.lede {
  margin-top: 22px;
  font-size: 1.14rem;
}

.sublede {
  margin-top: 16px;
  font-size: 1.02rem;
}

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

.button,
.button-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button {
  padding: 16px 24px;
}

.button-small {
  padding: 12px 18px;
  font-size: 0.94rem;
}

.button:hover,
.button-small:hover {
  transform: translateY(-2px);
}

.text-link {
  font-weight: 800;
}

.tagline {
  margin-top: 26px;
  font-size: 1rem;
  font-weight: 700;
  color: #33514c;
}

.hero-stage {
  position: relative;
  min-height: 610px;
  padding: 26px;
  border: 1px solid rgba(21, 33, 38, 0.08);
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(180deg, rgba(237, 246, 255, 0.88), rgba(255, 250, 244, 0.92)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-stage::before {
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.7) 0 8%, transparent 8.4%),
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.66) 0 6.5%, transparent 6.9%),
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.58) 0 9%, transparent 9.5%),
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.52) 0 7.5%, transparent 8%),
    radial-gradient(circle at 84% 33%, rgba(255, 255, 255, 0.46) 0 5.8%, transparent 6.2%);
  opacity: 0.8;
  animation: cloudDrift 60s linear infinite reverse;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.orb-large {
  top: 12%;
  right: -8%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 231, 167, 0.55), transparent 70%);
}

.orb-small {
  left: -6%;
  bottom: 8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(182, 219, 255, 0.42), transparent 70%);
}

.memory-card {
  position: absolute;
  padding: 22px;
  border: 1px solid rgba(21, 33, 38, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 18px 34px rgba(16, 34, 38, 0.11);
  z-index: 1;
}

.memory-card:hover,
.step-card:hover,
.format-card:hover,
.audience-card:hover,
.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(16, 34, 38, 0.12);
}

.card-label {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #48675f;
}

.card-message {
  top: 7%;
  left: 4%;
  width: 68%;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.95), rgba(247, 239, 230, 0.9)),
    rgba(255, 252, 247, 0.88);
}

.card-message h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.card-message p,
.card-audio p,
.card-site li {
  margin-top: 14px;
  line-height: 1.6;
  color: #536164;
}

.card-audio {
  right: 5%;
  bottom: 8%;
  width: 42%;
  background: rgba(16, 34, 38, 0.94);
  color: var(--white);
}

.card-audio .card-label,
.card-audio p {
  color: rgba(255, 253, 249, 0.82);
}

.waveform {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 68px;
  margin-top: 10px;
}

.waveform span {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(212, 173, 99, 1), rgba(180, 111, 93, 1));
  animation: pulse 2.2s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 48%; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 88%; animation-delay: 0.12s; }
.waveform span:nth-child(3) { height: 38%; animation-delay: 0.24s; }
.waveform span:nth-child(4) { height: 72%; animation-delay: 0.36s; }
.waveform span:nth-child(5) { height: 56%; animation-delay: 0.48s; }
.waveform span:nth-child(6) { height: 92%; animation-delay: 0.6s; }
.waveform span:nth-child(7) { height: 44%; animation-delay: 0.72s; }

.card-site {
  left: 10%;
  bottom: 9%;
  width: 38%;
  background: linear-gradient(180deg, rgba(218, 229, 224, 0.78), rgba(255, 252, 247, 0.94));
  z-index: 1;
}

.card-site ul {
  padding-left: 18px;
  margin: 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 8px 0 34px;
}

.proof-strip p {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.66);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: 76px 0;
}

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

.intro-panel {
  padding-top: 44px;
}

.intro-grid,
.steps,
.formats-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: 1.05fr 1fr 1fr;
}

.intro-card,
.step-card,
.format-card,
.audience-card,
.legacy-panel,
.interest-section,
.quote-panel,
.trust-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.intro-card,
.step-card,
.format-card,
.audience-card,
.legacy-panel,
.quote-panel,
.trust-panel {
  padding: 24px;
}

.intro-card-quote {
  background:
    linear-gradient(135deg, rgba(180, 111, 93, 0.92), rgba(146, 82, 66, 0.9)),
    rgba(255, 252, 247, 0.8);
}

.intro-card-quote p {
  color: rgba(255, 249, 244, 0.92);
  font-size: 1.08rem;
}

.two-column {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
}

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

.step-card p,
.format-card p,
.legacy-panel p,
.audience-card p,
.interest-copy p,
.intro-card p,
.preview-grid p {
  margin-top: 12px;
  line-height: 1.65;
}

.step-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(212, 173, 99, 0.26);
  color: #7a5b28;
  font-weight: 800;
}

.formats-grid {
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
}

.format-card {
  min-height: 240px;
}

.format-card-feature {
  background:
    linear-gradient(145deg, rgba(16, 34, 38, 0.96), rgba(37, 62, 67, 0.94)),
    rgba(255, 252, 247, 0.8);
  color: var(--white);
}

.format-card-feature p {
  color: rgba(255, 250, 244, 0.82);
}

.legacy-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.legacy-preview {
  display: flex;
  align-items: stretch;
}

.preview-window {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(21, 33, 38, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.86), rgba(244, 238, 230, 0.9)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.preview-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.preview-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(21, 33, 38, 0.16);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.preview-grid article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.74);
  border: 1px solid rgba(21, 33, 38, 0.08);
}

.preview-grid strong {
  font-size: 1rem;
}

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

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

.quote-panel {
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.96), rgba(244, 235, 225, 0.92)),
    var(--surface);
}

.quote-panel blockquote {
  margin-top: 16px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.1;
}

.trust-panel {
  background:
    linear-gradient(180deg, rgba(217, 229, 224, 0.72), rgba(255, 251, 246, 0.84)),
    var(--surface);
}

.trust-list {
  padding-left: 18px;
  margin: 16px 0 0;
  line-height: 1.9;
}

.interest-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(212, 173, 99, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.86), rgba(249, 244, 236, 0.9));
}

.interest-form {
  display: grid;
  gap: 16px;
}

.interest-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.interest-form input,
.interest-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(21, 33, 38, 0.14);
  border-radius: 16px;
  background: rgba(255, 251, 246, 0.94);
  color: var(--ink);
  font: inherit;
}

.interest-form input:focus,
.interest-form select:focus {
  outline: 2px solid rgba(64, 96, 88, 0.2);
  outline-offset: 2px;
}

.form-note {
  font-size: 0.92rem;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 640ms ease, transform 640ms ease;
}

@keyframes pulse {
  0%, 100% {
    transform: scaleY(0.9);
    opacity: 0.8;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes cloudDrift {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .hero-stage::before,
  .waveform span {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .hero,
  .two-column,
  .legacy-section,
  .quote-section,
  .interest-section,
  .formats-grid,
  .audience-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .steps,
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-stage {
    min-height: 680px;
  }

  .card-message {
    width: 78%;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

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

  .proof-strip,
  .steps,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 18px;
  }

  .memory-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .interest-section {
    padding: 24px;
  }
}
