@font-face {
  font-family: "Fraunces Variable";
  src: url("assets/fonts/fraunces-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #0a0c5c;
  --ink-deep: #070842;
  --coral: #f44a46;
  --coral-soft: #ffe4de;
  --ivory: #f8f5eb;
  --paper: #fffdf7;
  --taupe: #a79b91;
  --muted: #6e685f;
  --line: #ded8ca;
  --gold: #c78721;
  --blue: #3a67b4;
  --shadow: 0 28px 80px rgb(25 20 12 / 12%);
  --serif: "Fraunces Variable", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: white;
  background: var(--coral);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.scrolled {
  border-color: rgb(222 216 202 / 80%);
  background: rgb(248 245 235 / 88%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 177px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav > a:not(.button) {
  position: relative;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  color: white;
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--coral);
  font-size: 0.88rem;
  font-weight: 750;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.button:hover {
  background: var(--ink-deep);
  box-shadow: 2px 2px 0 var(--coral);
  transform: translate(3px, 3px);
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  box-shadow: none;
}

.button-small:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.button-coral {
  border-color: var(--coral);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--coral);
}

.button-coral:hover {
  color: white;
  background: var(--coral);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #ff847d;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 164px 0 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 5%, rgb(244 74 70 / 12%), transparent 31rem),
    var(--ivory);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -180px;
  left: -10%;
  height: 270px;
  border-radius: 50% 50% 0 0;
  content: "";
  background: var(--paper);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 50px;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7.8vw, 7rem);
  font-variation-settings: "wght" 660;
  letter-spacing: -0.065em;
  line-height: 0.79;
}

.hero h1 em {
  color: var(--coral);
  font-style: italic;
  font-variation-settings: "wght" 560;
}

.hero-lede {
  max-width: 550px;
  margin: 36px 0 28px;
  color: #403d52;
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-note svg {
  width: 17px;
  fill: var(--coral);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgb(10 12 92 / 10%);
  border-radius: 50%;
}

.hero-orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--coral);
}

.hero-orbit-one {
  top: 102px;
  right: -105px;
  width: 410px;
  height: 410px;
}

.hero-orbit-one::after {
  top: 50%;
  left: -5px;
}

.hero-orbit-two {
  top: 190px;
  right: 65px;
  width: 600px;
  height: 600px;
}

.hero-orbit-two::after {
  right: 105px;
  bottom: 35px;
}

.product-scene {
  position: relative;
  padding: 38px 0 62px 8px;
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1.1deg);
}

.window-bar {
  display: flex;
  height: 47px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  background: #f3eee3;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 0.83rem;
  font-weight: 700;
}

.window-brand img {
  width: 27px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--taupe);
}

.window-dots i:first-child {
  background: var(--coral);
}

.window-body {
  display: grid;
  grid-template-columns: 138px 1fr;
  min-height: 430px;
}

.mock-sidebar {
  padding: 23px 13px;
  border-right: 1px solid var(--line);
  background: #fbf7ee;
}

.mock-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 3px 0;
  padding: 8px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
}

.mock-nav.active {
  color: white;
  background: var(--ink);
}

.mock-file {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 13px;
  padding: 10px 8px;
  border-left: 2px solid transparent;
  font-size: 0.58rem;
}

.mock-file b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-file small {
  color: var(--muted);
  font-size: 0.5rem;
}

.mock-file.selected {
  border-left-color: var(--coral);
  background: var(--coral-soft);
}

.mock-document {
  padding: 28px 27px;
}

.document-kicker {
  color: var(--coral);
  font-size: 0.53rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.document-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin: 7px 0 18px;
}

.document-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.document-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.55rem;
}

.status-pill {
  padding: 5px 8px;
  border-radius: 20px;
  color: #276a48;
  background: #e7f5eb;
  font-size: 0.5rem;
  font-weight: 750;
  white-space: nowrap;
}

.voice-map {
  padding: 13px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--coral);
  border-radius: 9px;
  background: white;
  box-shadow: 0 10px 28px rgb(25 20 12 / 7%);
}

.voice-map-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 9px;
}

.voice-map-title span {
  color: var(--coral);
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.voice-map-title b {
  font-size: 0.63rem;
}

.voice-person {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 7px;
  align-items: center;
  min-height: 27px;
  border-top: 1px solid #eeeae0;
  font-size: 0.56rem;
}

.voice-person i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.voice-person small {
  color: #568069;
  font-size: 0.44rem;
}

.voice-person button {
  padding: 3px 6px;
  border: 0;
  border-radius: 3px;
  color: white;
  background: var(--ink);
  font-size: 0.43rem;
}

.person-coral {
  background: var(--coral);
}

.person-blue {
  background: var(--blue);
}

.person-gold {
  background: var(--gold);
}

.transcript {
  margin-top: 18px;
}

.transcript-line {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px;
  padding: 8px 4px;
  border-bottom: 1px solid #eeeae0;
  font-size: 0.55rem;
  line-height: 1.5;
}

.transcript-line b {
  font-size: 0.52rem;
}

.transcript-line p {
  margin: 0;
  color: #3f3d48;
}

.transcript-line .coral {
  color: var(--coral);
}

.transcript-line .blue {
  color: var(--blue);
}

.transcript-line .gold {
  color: var(--gold);
}

.focus-line {
  margin-inline: -6px;
  padding-inline: 10px;
  border-radius: 4px;
  background: #fff3ed;
}

.word-seed {
  position: absolute;
  z-index: 3;
  padding: 8px 13px;
  border-radius: 60% 40% 60% 40%;
  color: white;
  background: var(--coral);
  box-shadow: 0 8px 20px rgb(244 74 70 / 22%);
  font-family: var(--serif);
  font-size: 0.68rem;
  font-style: italic;
}

.seed-one {
  top: 11px;
  right: 72px;
  transform: rotate(8deg);
}

.seed-two {
  right: -17px;
  bottom: 94px;
  transform: rotate(-9deg);
}

.seed-three {
  bottom: 18px;
  left: 85px;
  transform: rotate(5deg);
}

.trust-line {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.84rem;
  font-style: italic;
}

.trust-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.section {
  padding: 122px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -5px;
}

.section-heading h2,
.steps-intro h2,
.memory-copy h2,
.closing-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  font-variation-settings: "wght" 620;
  letter-spacing: -0.06em;
  line-height: 0.91;
}

.section-heading > p:last-child {
  max-width: 400px;
  margin: 0 0 7px auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.product-section {
  position: relative;
  z-index: 2;
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.13fr 0.87fr;
  gap: 18px;
}

.feature {
  position: relative;
  min-height: 405px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.feature-wide {
  grid-row: span 2;
  min-height: 828px;
  color: white;
  background: var(--ink);
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--taupe);
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
}

.feature-icon {
  display: flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  margin-bottom: 76px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--coral-soft);
}

.feature-wide .feature-icon {
  margin-top: 92px;
  background: rgb(255 255 255 / 10%);
}

.feature h3 {
  max-width: 570px;
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-variation-settings: "wght" 570;
  letter-spacing: -0.045em;
  line-height: 1;
}

.feature > p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.feature-wide > p {
  color: #c8c7da;
}

.pricing-section {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.price-card-featured {
  color: white;
  background: var(--ink);
}

.price-label {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card-featured .price-label {
  color: #c8c7da;
}

.price-amount {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-variation-settings: "wght" 620;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.price-amount span {
  margin-right: 7px;
  font-size: 0.42em;
  vertical-align: top;
}

.price-card > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
}

.price-card-featured > p:last-child {
  color: #c8c7da;
}

.pricing-note {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.sound-icon {
  gap: 4px;
}

.sound-icon i {
  width: 3px;
  border-radius: 3px;
  background: var(--coral);
}

.sound-icon i:nth-child(1),
.sound-icon i:nth-child(5) {
  height: 12px;
}

.sound-icon i:nth-child(2),
.sound-icon i:nth-child(4) {
  height: 25px;
}

.sound-icon i:nth-child(3) {
  height: 38px;
}

.speaker-sample {
  display: grid;
  grid-template-columns: 39px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
  padding: 15px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 5px;
  background: rgb(255 255 255 / 5%);
}

.sample-avatar,
.profile-avatar {
  display: flex;
  width: 39px;
  height: 39px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-family: var(--serif);
  font-weight: 700;
}

.coral-bg {
  background: var(--coral);
}

.blue-bg {
  background: var(--blue) !important;
}

.sample-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sample-copy b {
  font-size: 0.75rem;
}

.sample-copy small {
  color: #c8c7da;
  font-size: 0.68rem;
}

.sample-time {
  color: #8e8da8;
  font-family: ui-monospace, monospace;
  font-size: 0.6rem;
}

.fingerprint-icon svg {
  width: 43px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.3;
}

.consent-chip {
  display: inline-flex;
  margin-top: 25px;
  padding: 8px 11px;
  border-radius: 3px;
  color: #347052;
  background: #e1f1e5;
  font-size: 0.66rem;
  font-weight: 750;
}

.edit-icon {
  position: relative;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 650;
}

.edit-icon span {
  position: absolute;
  right: 10px;
  bottom: 9px;
  color: var(--coral);
  font-family: var(--sans);
  font-size: 0.7rem;
}

.format-row {
  display: flex;
  gap: 7px;
  margin-top: 25px;
}

.format-row span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  background: var(--paper);
  font-family: ui-monospace, monospace;
  font-size: 0.55rem;
}

.steps-section {
  color: white;
  background: var(--ink);
}

.steps-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.steps-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.steps-intro > p:not(.eyebrow) {
  max-width: 410px;
  margin: 28px 0 35px;
  color: #c7c6d9;
  line-height: 1.7;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 39px 0 47px;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.step-number {
  color: var(--coral);
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
}

.steps-list h3 {
  margin: -6px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 560;
  letter-spacing: -0.035em;
}

.steps-list p {
  max-width: 520px;
  margin: 0;
  color: #c7c6d9;
  line-height: 1.7;
}

.memory-section {
  background: var(--ivory);
}

.memory-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 90px;
  align-items: center;
}

.memory-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--coral);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.memory-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.memory-card-head .eyebrow {
  margin-bottom: 6px;
}

.memory-card-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.private-pill {
  padding: 6px 9px;
  border-radius: 20px;
  color: #347052;
  background: #e1f1e5;
  font-size: 0.58rem;
  font-weight: 800;
}

.profile-row {
  display: grid;
  grid-template-columns: 43px 1fr 95px 25px;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.profile-avatar {
  background: var(--coral);
}

.profile-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.profile-copy b {
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-copy small {
  color: var(--muted);
  font-size: 0.62rem;
}

.profile-row button {
  border: 0;
  color: var(--taupe);
  background: none;
  font-size: 1.2rem;
}

.audio-wave {
  display: flex;
  height: 25px;
  align-items: center;
  gap: 3px;
}

.audio-wave i {
  width: 3px;
  border-radius: 3px;
  background: var(--coral);
}

.audio-wave i:nth-child(1),
.audio-wave i:nth-child(7) {
  height: 6px;
}

.audio-wave i:nth-child(2),
.audio-wave i:nth-child(6) {
  height: 15px;
}

.audio-wave i:nth-child(3),
.audio-wave i:nth-child(5) {
  height: 22px;
}

.audio-wave i:nth-child(4) {
  height: 11px;
}

.blue-wave i {
  background: var(--blue);
}

.evidence-note {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  background: var(--ivory);
}

.evidence-note > span {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 0.6rem;
}

.evidence-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.45;
}

.evidence-note b {
  color: var(--ink);
}

.memory-copy h2 {
  font-size: clamp(3.2rem, 5vw, 5rem);
}

.memory-lede {
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 12px;
}

.check-list li > span {
  display: flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 0.7rem;
}

.check-list b {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.check-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.closing-section {
  padding: 0 24px 24px;
  background: var(--ivory);
}

.closing-card {
  position: relative;
  width: min(1320px, 100%);
  padding: 104px 40px 92px;
  overflow: hidden;
  color: white;
  background: var(--ink);
  text-align: center;
}

.closing-card::before {
  position: absolute;
  top: -210px;
  left: 50%;
  width: 660px;
  height: 450px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.closing-mark {
  position: relative;
  width: 70px;
  margin: 0 auto 26px;
  padding: 9px;
  border-radius: 50%;
  background: var(--paper);
}

.closing-card .eyebrow {
  position: relative;
  justify-content: center;
}

.closing-card h2 {
  position: relative;
}

.closing-card > p:not(.eyebrow) {
  position: relative;
  margin: 24px 0 31px;
  color: #c7c6d9;
}

.closing-card .button {
  position: relative;
}

.closing-seeds span {
  position: absolute;
  padding: 7px 11px;
  border-radius: 60% 40%;
  color: white;
  background: var(--coral);
  font-family: var(--serif);
  font-size: 0.6rem;
  font-style: italic;
}

.closing-seeds span:nth-child(1) {
  top: 25%;
  left: 12%;
  transform: rotate(-8deg);
}

.closing-seeds span:nth-child(2) {
  right: 11%;
  bottom: 24%;
  transform: rotate(8deg);
}

.closing-seeds span:nth-child(3) {
  bottom: 11%;
  left: 25%;
  transform: rotate(4deg);
}

.site-footer {
  padding: 47px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.footer-inner img {
  width: 145px;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
}

.footer-inner > div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 0.65rem;
}

.footer-inner a:hover {
  color: var(--coral);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 980px) {
  .hero {
    padding-top: 135px;
  }

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

  .hero-copy {
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 13vw, 7.2rem);
  }

  .product-scene {
    width: min(700px, 100%);
    margin-left: auto;
  }

  .hero::after {
    display: none;
  }

  .trust-line {
    margin-top: 5px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-left: 0;
  }

  .steps-grid,
  .memory-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .steps-intro {
    position: static;
  }

  .steps-intro h2 {
    font-size: clamp(4rem, 10vw, 6rem);
  }

  .memory-card {
    width: min(650px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 148px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
    width: 42px;
    height: 42px;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    position: absolute;
    left: 10px;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .nav-toggle span:nth-child(2) {
    top: 16px;
  }

  .nav-toggle span:nth-child(3) {
    top: 24px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 20px;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 70px 32px;
    visibility: hidden;
    opacity: 0;
    background: var(--ivory);
    font-family: var(--serif);
    font-size: 2rem;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 15px;
    font-family: var(--sans);
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 75px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 21vw, 6rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .product-scene {
    padding: 50px 0 42px;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-document {
    padding: 20px 17px;
  }

  .document-heading h2 {
    font-size: 1.2rem;
  }

  .seed-one {
    right: 20px;
  }

  .seed-two {
    right: -7px;
  }

  .trust-line {
    flex-wrap: wrap;
    gap: 11px;
    font-size: 0.71rem;
  }

  .section {
    padding: 85px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-wide {
    grid-row: auto;
    min-height: 665px;
  }

  .feature {
    min-height: 390px;
    padding: 28px;
  }

  .feature-icon {
    margin-bottom: 55px;
  }

  .feature-wide .feature-icon {
    margin-top: 42px;
  }

  .feature h3 {
    font-size: 2.25rem;
  }

  .steps-grid {
    gap: 45px;
  }

  .steps-intro h2,
  .memory-copy h2,
  .closing-card h2 {
    font-size: clamp(3.4rem, 16vw, 4.8rem);
  }

  .steps-list li {
    grid-template-columns: 43px 1fr;
  }

  .steps-list h3 {
    font-size: 2rem;
  }

  .memory-card {
    padding: 20px;
    transform: none;
  }

  .profile-row {
    grid-template-columns: 40px 1fr 25px;
  }

  .audio-wave {
    display: none;
  }

  .closing-section {
    padding: 0;
  }

  .closing-card {
    padding: 85px 22px;
  }

  .closing-seeds span:nth-child(1) {
    left: 3%;
  }

  .closing-seeds span:nth-child(2) {
    right: 3%;
  }

  .closing-seeds span:nth-child(3) {
    left: 12%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-inner > div {
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
