:root {
  --canvas: #fff8fb;
  --shell: #fffdfd;
  --mist: #fceef5;
  --powder: #eaf1ff;
  --peach: #ffd9c9;
  --sage: #dceadb;
  --blush: #f06dab;
  --rose: #d7508b;
  --violet: #7567b6;
  --plum: #3f2437;
  --ink: #261c28;
  --muted-ink: #6e6170;
  --border: #e9d7e1;
  --success: #59b87e;
  --shadow: 0 30px 80px rgba(63, 36, 55, 0.12);
  --shadow-soft: 0 20px 45px rgba(63, 36, 55, 0.08);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --page-max: 1240px;
  --section-space: clamp(3.6rem, 6vw, 6.6rem);
  --copy-max: 68ch;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 217, 201, 0.55), transparent 28%),
    radial-gradient(circle at top right, rgba(234, 241, 255, 0.8), transparent 30%),
    linear-gradient(180deg, #fffdfd 0%, var(--canvas) 22%, #fff7fb 100%);
}

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

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  width: 20rem;
  height: 20rem;
  top: 8rem;
  right: -5rem;
  background: rgba(240, 109, 171, 0.14);
}

.page-shell::after {
  width: 22rem;
  height: 22rem;
  left: -8rem;
  bottom: 10rem;
  background: rgba(117, 103, 182, 0.1);
}

.section {
  width: min(calc(100% - 2rem), var(--page-max));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

section[id] {
  scroll-margin-top: 7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: min(calc(100% - 2rem), var(--page-max));
  margin: 1rem auto 0;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 253, 255, 0.82);
  border: 1px solid rgba(233, 215, 225, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
}

.brand span {
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--muted-ink);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(252, 238, 245, 0.9);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blush), var(--rose));
  color: white !important;
  box-shadow: 0 18px 32px rgba(240, 109, 171, 0.24);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--rose), #c13e79);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(233, 215, 225, 0.8);
}

.nav-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 4vw, 5rem);
  padding-top: clamp(2.6rem, 5vw, 4.4rem);
}

.hero-copy h1,
.section-heading h2,
.feature-cards h2,
.premium-copy h2,
.journal-copy h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink);
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  max-width: 11ch;
  margin: 0;
}

.lede,
.section-heading p,
.story-copy p,
.spotlight-text p,
.glass-card p,
.premium-copy p,
.journal-copy p,
.gallery-copy p {
  color: var(--muted-ink);
  line-height: 1.6;
}

.lede {
  max-width: 58ch;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}

.hero-actions,
.journal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  box-shadow: 0 24px 48px rgba(240, 109, 171, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(233, 215, 225, 0.92);
}

.hero-points {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
  max-width: var(--copy-max);
}

.hero-points li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
  line-height: 1.55;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blush), var(--violet));
  box-shadow: 0 0 0 0.22rem rgba(240, 109, 171, 0.14);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.proof-card,
.glass-card,
.signal-band article,
.journal-card,
.premium-callout {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(233, 215, 225, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.proof-card {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
}

.proof-title {
  margin: 0 0 0.4rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
}

.proof-copy {
  margin: 0;
  color: var(--muted-ink);
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 48rem;
  display: grid;
  place-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.72;
}

.orb-one {
  width: 20rem;
  height: 20rem;
  top: 2rem;
  right: 4rem;
  background: radial-gradient(circle, rgba(240, 109, 171, 0.36), transparent 70%);
}

.orb-two {
  width: 18rem;
  height: 18rem;
  bottom: 6rem;
  left: 2rem;
  background: radial-gradient(circle, rgba(117, 103, 182, 0.3), transparent 70%);
}

.orb-three {
  width: 14rem;
  height: 14rem;
  top: 12rem;
  left: 6rem;
  background: radial-gradient(circle, rgba(255, 217, 201, 0.56), transparent 68%);
}

.phone-stack {
  position: relative;
  width: min(100%, 37rem);
  height: 45rem;
}

.phone-card,
.phone-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 251, 0.92));
  border: 1px solid rgba(233, 215, 225, 0.82);
  box-shadow: var(--shadow);
}

.phone-card::before,
.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: 2;
}

.phone-card img,
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-topbar {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(38, 28, 40, 0.16);
  z-index: 2;
}

.phone-card-main {
  position: absolute;
  z-index: 3;
  width: 19rem;
  height: 41rem;
  left: 50%;
  top: 2.2rem;
  transform: translateX(-50%);
}

.phone-card-left {
  position: absolute;
  z-index: 2;
  width: 16rem;
  height: 34rem;
  left: 0;
  top: 7.4rem;
  transform: rotate(-11deg);
}

.phone-card-right {
  position: absolute;
  z-index: 1;
  width: 16rem;
  height: 34rem;
  right: 0;
  top: 9rem;
  transform: rotate(12deg);
}

.floating-note {
  position: absolute;
  max-width: 16rem;
  padding: 1rem 1.05rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(233, 215, 225, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.floating-note-top {
  top: 5rem;
  left: -0.6rem;
}

.floating-note-bottom {
  right: -0.4rem;
  bottom: 5rem;
}

.note-label,
.signal-number,
.card-label,
.gallery-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-top: calc(var(--section-space) * 0.55);
}

.signal-band article {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.signal-band h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.signal-band p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted-ink);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.feature-cards h2,
.premium-copy h2,
.journal-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-heading-tight {
  max-width: 44rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.story-list {
  display: grid;
  gap: 1.2rem;
}

.story-list article {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(233, 215, 225, 0.82);
  background: rgba(255, 253, 255, 0.72);
}

.story-list h3,
.spotlight-text h3,
.glass-card h3,
.gallery-copy h3 {
  margin: 0 0 0.55rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.12;
}

.story-list p,
.spotlight-text p,
.glass-card p,
.gallery-copy p {
  margin: 0;
}

.spotlight {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 248, 251, 0.66)),
    linear-gradient(160deg, rgba(255, 217, 201, 0.16), rgba(117, 103, 182, 0.08));
  border: 1px solid rgba(233, 215, 225, 0.88);
  box-shadow: var(--shadow);
}

.spotlight-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.4rem;
  margin-bottom: 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(233, 215, 225, 0.88);
}

.spotlight-controls button {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: transparent;
  color: var(--muted-ink);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.spotlight-controls button.is-active {
  color: white;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  box-shadow: 0 14px 28px rgba(240, 109, 171, 0.18);
}

.spotlight-panels {
  position: relative;
}

.spotlight-panel {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.spotlight-panel.is-active {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.85fr);
}

.spotlight-text {
  padding-inline: 0.2rem;
}

.phone-frame {
  width: min(100%, 18rem);
  height: 39rem;
  margin: 0 auto;
}

.phone-frame-wide {
  width: min(100%, 18rem);
}

.feature-cards .card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.glass-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.premium {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.feature-list {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.55;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.premium-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.premium-callout {
  position: absolute;
  right: 0;
  bottom: 3rem;
  width: min(100%, 18rem);
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
}

.screens .gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(233, 215, 225, 0.82);
  box-shadow: var(--shadow-soft);
}

.story,
.feature-cards,
.premium,
.screens,
.journal {
  position: relative;
}

.story::before,
.screens::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 109, 171, 0.09), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}

.screens::before {
  left: auto;
  right: 0;
  background: radial-gradient(circle, rgba(117, 103, 182, 0.1), transparent 70%);
}

.gallery-card-large {
  grid-column: span 3;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.78fr);
  align-items: center;
}

.journal-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.6rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius-xl);
}

.site-footer {
  width: min(calc(100% - 2rem), var(--page-max));
  margin: 0 auto 3rem;
  padding: 1.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  border-top: 1px solid rgba(233, 215, 225, 0.82);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.15rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted-ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted-ink);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--rose);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .site-nav a,
  .spotlight-controls button,
  .reveal {
    transition: none;
  }

  body.motion-ready .reveal,
  body.motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero,
  .premium,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 48rem;
  }

  .hero-visual {
    min-height: 40rem;
  }

  .feature-cards .card-grid,
  .signal-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-inline: 0.85rem;
    border-radius: 1.4rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(255, 253, 255, 0.94);
    border: 1px solid rgba(233, 215, 225, 0.88);
    border-radius: 1.4rem;
    box-shadow: var(--shadow-soft);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .hero {
    padding-top: 2.5rem;
  }

  html {
    scroll-padding-top: 6.5rem;
  }

  section[id] {
    scroll-margin-top: 6.5rem;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-proof,
  .feature-cards .card-grid,
  .signal-band,
  .screens .gallery {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    height: 35rem;
  }

  .phone-card-main {
    width: 15.75rem;
    height: 34rem;
  }

  .phone-card-left,
  .phone-card-right {
    width: 12.5rem;
    height: 27rem;
  }

  .floating-note {
    max-width: 12rem;
    padding: 0.8rem 0.9rem;
  }

  .spotlight-panel.is-active,
  .gallery-card-large,
  .journal-card {
    grid-template-columns: 1fr;
  }

  .premium-callout {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(calc(100% - 1.2rem), var(--page-max));
  }

  .site-header {
    width: min(calc(100% - 1.2rem), var(--page-max));
  }

  .brand img {
    width: 3.3rem;
    height: 3.3rem;
  }

  .brand span {
    font-size: 0.7rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .feature-cards h2,
  .premium-copy h2,
  .journal-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .hero-visual {
    min-height: 32rem;
  }

  .hero-proof {
    gap: 0.8rem;
  }

  .phone-stack {
    height: 31rem;
    width: 100%;
  }

  .phone-card-main {
    width: 13.6rem;
    height: 29rem;
  }

  .phone-card-left,
  .phone-card-right {
    width: 10.2rem;
    height: 22rem;
    top: 8.2rem;
  }

  .phone-card-left {
    left: -0.4rem;
  }

  .phone-card-right {
    right: -0.4rem;
  }

  .floating-note {
    display: none;
  }

  .phone-frame {
    width: min(100%, 15.5rem);
    height: 33rem;
  }
}
