:root {
  --canvas: #f8f3ea;
  --mist: #f4efe5;
  --sun-cream: #f6ead0;
  --sky-blue: #8db7d8;
  --sea-lavender: #a89dc8;
  --meadow-green: #7a9f82;
  --poppy-coral: #d98774;
  --stone: rgba(77, 72, 68, 0.14);
  --slate: #544d48;
  --charcoal: #2f2b28;
  --white: rgba(255, 252, 248, 0.82);
  --shadow: 0 28px 60px rgba(89, 84, 79, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --content-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Instrument Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(141, 183, 216, 0.24), transparent 32%),
    radial-gradient(circle at 80% 16%, rgba(168, 157, 200, 0.22), transparent 28%),
    radial-gradient(circle at 55% 78%, rgba(217, 135, 116, 0.12), transparent 25%),
    linear-gradient(180deg, #fcf8f0 0%, #f7f1e8 46%, #f8f4ed 100%);
  color: var(--slate);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.13'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

button,
input,
summary {
  font: inherit;
}

.page-shell {
  position: relative;
  max-width: calc(var(--content-width) + 64px);
  margin: 0 auto;
  padding: 24px 32px 48px;
}

.site-header,
.site-footer,
.section,
.hero {
  backdrop-filter: blur(10px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding: 16px 20px;
  border: 1px solid rgba(84, 77, 72, 0.08);
  border-radius: var(--radius-pill);
  background: rgba(250, 247, 241, 0.72);
  box-shadow: 0 10px 30px rgba(89, 84, 79, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  font-weight: 600;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fdf7ee 0%, #fdf7ee 20%, transparent 22%),
    linear-gradient(135deg, var(--sky-blue), var(--sea-lavender) 60%, var(--poppy-coral));
  box-shadow: 0 0 0 6px rgba(141, 183, 216, 0.14);
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  color: rgba(47, 43, 40, 0.8);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--charcoal);
}

.section,
.hero,
.site-footer {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 40px;
  border: 1px solid rgba(84, 77, 72, 0.09);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.75), rgba(249, 244, 236, 0.66));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  min-height: 76vh;
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-hero {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: start;
  min-height: auto;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-hero-copy {
  max-width: 56rem;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 5.4vw, 5rem);
}

.page-hero .hero-text {
  max-width: 46ch;
  margin-top: 16px;
}

.page-hero .hero-actions {
  margin-top: 22px;
}

.page-hero-aside {
  min-width: 0;
}

.page-hero-summary {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(84, 77, 72, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(141, 183, 216, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(168, 157, 200, 0.14), transparent 30%),
    rgba(255, 252, 248, 0.78);
}

.page-hero-summary h2 {
  max-width: 10ch;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.page-hero-summary p {
  margin: 0;
}

.page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero::after,
.section::after {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 183, 216, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-copy,
.hero-art,
.section-heading,
.steps,
.privacy-grid,
.timeline-panel,
.pricing-grid,
.faq-list,
.two-up,
.site-footer {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(84, 77, 72, 0.7);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.price,
.footer-title,
.mock-card h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
}

h1 {
  max-width: 16ch;
  font-size: clamp(3.8rem, 8vw, 6.8rem);
}

h2 {
  max-width: 20ch;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

p,
li,
summary,
code,
.button,
.price-meta {
  font-size: 1.03rem;
  line-height: 1.7;
}

.hero-text,
.section-note,
.footer-copy {
  max-width: 60ch;
}

.hero-text {
  margin: 20px 0 0;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--sky-blue), var(--sea-lavender));
  color: #fffaf4;
  box-shadow: 0 14px 28px rgba(122, 128, 180, 0.22);
}

.button-secondary {
  border: 1px solid rgba(84, 77, 72, 0.12);
  background: rgba(255, 252, 248, 0.75);
  color: var(--charcoal);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li,
.pill,
.mock-meta span,
.price-label {
  border: 1px solid rgba(84, 77, 72, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.64);
}

.hero-notes li {
  min-height: 100%;
  padding: 14px 16px;
  font-size: 0.96rem;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 420px);
  padding: 18px;
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(252, 249, 243, 0.86), rgba(240, 232, 220, 0.68)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.68),
    0 40px 60px rgba(101, 93, 87, 0.12);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 32%;
  height: 18px;
  border-radius: 999px;
  background: rgba(52, 47, 43, 0.13);
  transform: translateX(-50%);
}

.phone-screen {
  display: grid;
  gap: 18px;
  padding: 28px 22px 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(168, 157, 200, 0.22), transparent 30%),
    radial-gradient(circle at bottom left, rgba(141, 183, 216, 0.18), transparent 26%),
    linear-gradient(180deg, #fdf9f2, #f5eee2);
}

.mock-status,
.mock-meta,
.mock-pills {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mock-status,
.mock-label,
.mock-meta {
  color: rgba(84, 77, 72, 0.76);
  font-size: 0.92rem;
}

.mock-card {
  padding: 24px;
  border: 1px solid rgba(84, 77, 72, 0.08);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.76);
  box-shadow: 0 20px 34px rgba(89, 84, 79, 0.06);
}

.mock-card h2 {
  margin-top: 4px;
  font-size: 2.4rem;
}

.mock-body {
  margin: 12px 0 20px;
}

.waveform {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 56px;
  margin-bottom: 18px;
}

.waveform span {
  flex: 1 1 0;
  min-width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sky-blue), var(--sea-lavender));
  animation: drift 3s ease-in-out infinite;
  transform-origin: bottom;
}

.waveform span:nth-child(2n) {
  animation-duration: 3.8s;
}

.waveform span:nth-child(3n) {
  animation-duration: 4.6s;
}

.waveform span:nth-child(1) {
  height: 42%;
}

.waveform span:nth-child(2) {
  height: 68%;
}

.waveform span:nth-child(3) {
  height: 35%;
}

.waveform span:nth-child(4) {
  height: 58%;
}

.waveform span:nth-child(5) {
  height: 86%;
}

.waveform span:nth-child(6) {
  height: 62%;
}

.waveform span:nth-child(7) {
  height: 48%;
}

.waveform span:nth-child(8) {
  height: 70%;
}

.waveform span:nth-child(9) {
  height: 55%;
}

.waveform span:nth-child(10) {
  height: 88%;
}

.waveform span:nth-child(11) {
  height: 44%;
}

.waveform span:nth-child(12) {
  height: 65%;
}

.pill,
.mock-meta span,
.price-label {
  padding: 8px 12px;
}

.pill {
  display: inline-flex;
  justify-content: center;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 28px;
}

.two-up,
.privacy-grid,
.pricing-grid,
.timeline-panel {
  display: grid;
  gap: 20px;
}

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

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

.step-card,
.info-card,
.price-card,
.bundle-card {
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(84, 77, 72, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.72);
}

.step-number {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(84, 77, 72, 0.62);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

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

.info-card ul,
.price-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.section-note {
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--charcoal);
  font-weight: 500;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(2px);
}

.timeline-panel {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
}

.bundle-card {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(244, 239, 229, 0.88), rgba(255, 252, 248, 0.72));
}

.bundle-card code {
  overflow-wrap: anywhere;
  color: var(--charcoal);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.95rem;
}

.featured {
  background:
    radial-gradient(circle at top right, rgba(141, 183, 216, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(168, 157, 200, 0.16), transparent 26%),
    rgba(255, 252, 248, 0.8);
}

.price-row {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 8px;
}

.price {
  font-size: clamp(3rem, 5vw, 4.2rem);
}

.price-meta {
  color: rgba(84, 77, 72, 0.68);
}

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

.faq-list details {
  padding: 20px 22px;
  border: 1px solid rgba(84, 77, 72, 0.08);
  border-radius: 20px;
  background: rgba(255, 252, 248, 0.7);
}

.faq-list p {
  margin: 12px 0 0;
}

summary {
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 500;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.footer-title {
  margin-bottom: 10px;
  font-size: 2rem;
}

.footer-copy,
.footer-meta {
  margin: 0;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: rgba(84, 77, 72, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-links .divider {
  opacity: 0.4;
}

.legal-page {
  display: grid;
  gap: 28px;
}

.legal-hero {
  min-height: auto;
  grid-template-columns: 1fr;
  padding-top: 40px;
  padding-bottom: 32px;
}

.legal-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.legal-hero .hero-text {
  max-width: 54ch;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.legal-section {
  padding: 28px;
  border: 1px solid rgba(84, 77, 72, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.72);
}

.legal-section h2 {
  max-width: none;
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

.legal-section h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.legal-section p,
.legal-section ul {
  margin: 12px 0 0;
}

.legal-section ul {
  padding-left: 20px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: scaleY(0.86);
  }

  50% {
    transform: scaleY(1.06);
  }
}

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

  .js .reveal,
  .waveform span,
  .button {
    transition: none;
    animation: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero,
  .steps,
  .privacy-grid,
  .pricing-grid,
  .two-up,
  .timeline-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: start;
  }

  .footer-meta {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 16px 16px 32px;
  }

  .site-header,
  .section,
  .hero,
  .site-footer {
    padding: 24px;
  }

  .site-header {
    position: static;
    border-radius: 24px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.92rem;
  }

  .hero,
  .page-hero {
    gap: 20px;
  }

  .hero-copy,
  .page-hero-copy,
  .hero-art,
  .page-hero-aside {
    min-width: 0;
    width: 100%;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  h2 {
    max-width: none;
  }

  .hero-text {
    max-width: none;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-art {
    justify-content: center;
  }

  .mock-card h2 {
    font-size: 2rem;
  }

  .phone-frame {
    width: min(100%, 320px);
    padding: 12px;
    margin-inline: auto;
  }

  .phone-screen {
    gap: 14px;
    padding: 20px 14px 14px;
    border-radius: 24px;
  }

  .mock-card {
    padding: 18px;
    border-radius: 22px;
  }

  .mock-status,
  .mock-meta,
  .mock-pills {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .mock-pills {
    gap: 10px;
  }
}
