:root {
  --bg: #fffaf7;
  --bg-warm: #fff0ea;
  --surface: #ffffff;
  --surface-soft: #fff8f4;
  --text: #2e2927;
  --muted: #81756f;
  --subtle: #a99b94;
  --line: #eee0d9;
  --primary: #e9806d;
  --primary-dark: #d66d5a;
  --primary-soft: #fff1ed;
  --sage: #75a489;
  --sky: #7bb9cf;
  --gold: #f0c66f;
  --shadow: 0 24px 60px rgba(95, 58, 43, 0.08);
  --shadow-soft: 0 12px 32px rgba(95, 58, 43, 0.07);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1200px;
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(233, 128, 109, 0.45);
  outline-offset: 3px;
}

.skip-link,
.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:focus {
  z-index: 1001;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(238, 224, 217, 0.9);
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 999px;
  color: #766963;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.nav-link:active,
.btn:active,
.story-card button:active {
  transform: scale(0.98);
}

.nav-cta {
  justify-self: end;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 18px 34px rgba(233, 128, 109, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 20px 40px rgba(233, 128, 109, 0.3);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface);
}

.btn-secondary:hover {
  border-color: rgba(233, 128, 109, 0.45);
  background: #fffdfb;
}

.section,
.hero {
  padding: 104px 0;
}

.section-plain {
  background: var(--bg);
}

.section-warm {
  background: var(--bg-warm);
}

.hero {
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 96px;
}

.hero-copy.single {
  max-width: 760px;
}

.hero-copy h1 {
  margin: 28px 0 24px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.08;
  font-weight: 950;
}

.hero-copy p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.85;
  font-weight: 600;
}

.hero-copy .subtitle {
  margin-top: -6px;
  margin-bottom: 18px;
  color: #6f625c;
  font-size: 22px;
}

.eyebrow {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid #ffdcd2;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-weight: 900;
}

.eyebrow svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.actions.centered {
  justify-content: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
  color: #968a84;
  font-size: 14px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.hero-media img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.section-title,
.center-title {
  margin: 0 0 56px;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.15;
  font-weight: 950;
}

.center-title {
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-heading h2,
.cta-section h2,
.creator-section h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 950;
}

.section-heading p,
.cta-section p,
.creator-section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.85;
}

.section-heading.align-left {
  margin-inline: 0;
}

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

.feature-card,
.mini-card,
.quote-card,
.plan-card,
.story-card,
.privacy-panel,
.recorder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 220px;
  padding: 36px 34px;
}

.card-icon,
.icon-badge svg,
.large-icon svg,
.step-icon svg,
.round-icon svg {
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: var(--primary);
}

.feature-card h3,
.mini-card h3,
.step-card h3,
.story-card h3,
.plan-card h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 25px;
  line-height: 1.25;
  font-weight: 950;
}

.feature-card p,
.mini-card p,
.step-card p,
.quote-card,
.plan-card p,
.story-card p,
.privacy-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

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

.mini-card {
  min-height: 128px;
  padding: 28px 30px;
}

.mini-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

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

.quote-card {
  min-height: 170px;
  margin: 0;
  padding: 34px;
}

.quote-card blockquote {
  margin: 0 0 28px;
  color: #766963;
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
}

.quote-card figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--subtle);
}

.quote-card strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 950;
}

.cta-section {
  text-align: center;
}

.cta-section p,
.creator-section p {
  margin-inline: auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-warm);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 64px 0 48px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-main p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
  color: #7a6f69;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.footer-bottom {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-weight: 600;
}

.voice-hero {
  min-height: 620px;
  background:
    radial-gradient(circle at 86% 28%, rgba(233, 128, 109, 0.14), transparent 17%),
    var(--bg);
}

.compact-hero,
.price-hero {
  min-height: 460px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  color: #8f837d;
  font-weight: 700;
}

.back-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 96px;
  left: 18%;
  right: 18%;
  height: 1px;
  background: #f2c9be;
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 220px;
}

.step-icon,
.icon-badge,
.large-icon,
.round-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--primary-soft);
}

.step-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 30px;
  border-radius: var(--radius-lg);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-card span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 96px;
}

.icon-badge {
  width: 72px;
  height: 72px;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
}

.icon-badge svg {
  width: 38px;
  height: 38px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #766963;
  font-weight: 700;
}

.check-list li::before,
.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 950;
}

.recorder-card {
  padding: 34px;
}

.recorder-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.round-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.round-icon svg {
  width: 24px;
  height: 24px;
}

.record-time {
  color: var(--muted);
  font-weight: 700;
}

.record-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee7e3;
}

.record-progress span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  animation: progressPulse 3s ease-in-out infinite;
}

.waveform {
  height: 136px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
  margin: 30px 0 22px;
}

.waveform i {
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb59a, var(--primary));
  animation: wave 900ms ease-in-out infinite;
}

.waveform i:nth-child(1) { height: 26px; animation-delay: 0ms; }
.waveform i:nth-child(2) { height: 48px; animation-delay: 80ms; }
.waveform i:nth-child(3) { height: 78px; animation-delay: 160ms; }
.waveform i:nth-child(4) { height: 108px; animation-delay: 240ms; }
.waveform i:nth-child(5) { height: 72px; animation-delay: 320ms; }
.waveform i:nth-child(6) { height: 46px; animation-delay: 400ms; }
.waveform i:nth-child(7) { height: 28px; animation-delay: 480ms; }

.recorder-card p {
  text-align: center;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 56px;
  padding: 76px 96px;
}

.large-icon {
  width: 92px;
  height: 92px;
  border-radius: var(--radius-lg);
}

.large-icon svg {
  width: 48px;
  height: 48px;
}

.privacy-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
}

.privacy-panel .btn {
  margin-top: 32px;
}

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

.story-card {
  overflow: hidden;
}

.story-visual {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(135deg, #fff8f5, #fff0ea);
}

.story-visual.blush {
  background: linear-gradient(135deg, #ffe8de, #fff4ed);
}

.story-visual.coral {
  background: linear-gradient(135deg, #ffc9b4, #ffe1d4);
}

.story-visual svg {
  width: 104px;
  height: 104px;
  transition: transform 220ms ease;
}

.story-card:hover .story-visual svg {
  transform: translateY(-4px) scale(1.04);
}

.story-info {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
  padding: 26px 28px;
}

.story-info h3 {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 22px;
}

.story-info span {
  justify-self: start;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-weight: 900;
}

.play-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  color: var(--primary-dark);
  background: transparent;
  font-weight: 900;
}

.play-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-split {
  grid-template-columns: 1.06fr 0.94fr;
}

.rounded-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.creator-section {
  text-align: center;
}

.story-form {
  margin-top: 40px;
}

.input-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.input-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.input-wrap input {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-weight: 700;
}

.input-wrap input::placeholder {
  color: #c0b4ad;
}

.tag-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-row button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-weight: 700;
}

.tag-row button:hover {
  border-color: #f1c5bb;
  color: var(--primary-dark);
}

.generated-story {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #f4d6ce;
  border-radius: var(--radius-lg);
  background: #fff8f4;
  text-align: left;
}

.generated-story h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.generated-story p {
  margin: 0;
  color: var(--muted);
}

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

.plan-card {
  position: relative;
  display: flex;
  min-height: 548px;
  flex-direction: column;
  padding: 36px 34px 32px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.plan-card:hover,
.plan-card.selected {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(95, 58, 43, 0.11);
}

.plan-card.selected {
  border-color: var(--primary);
}

.recommend-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
  font-weight: 950;
}

.plan-card h2 {
  font-size: 28px;
}

.price {
  margin: 36px 0 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.price span {
  color: var(--primary-dark);
}

.plan-card ul {
  display: grid;
  gap: 18px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 30px;
  color: #766963;
  font-weight: 700;
}

.plan-card li.muted {
  color: #beb4ae;
}

.plan-card li.muted::before {
  content: "—";
  color: #d3c9c3;
}

.plan-button {
  margin-top: auto;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: #746861;
  font-weight: 700;
}

th,
td {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

th:first-child,
td:first-child {
  color: var(--text);
  text-align: left;
}

.highlight-col {
  background: rgba(255, 240, 234, 0.86);
  color: var(--primary-dark);
}

.faq-section .center-title {
  margin-bottom: 44px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(95, 58, 43, 0.04);
}

summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  list-style: none;
  cursor: pointer;
  font-weight: 900;
}

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

summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #9c8e87;
  border-bottom: 2px solid #9c8e87;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

details p {
  margin: 0;
  padding: 0 28px 24px;
  color: var(--muted);
  font-weight: 600;
}

.fine-print {
  margin-top: 28px !important;
  color: var(--subtle) !important;
  font-size: 14px !important;
}

.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(38, 31, 28, 0.48);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(31, 23, 18, 0.22);
}

.modal-panel h2 {
  margin: 0 56px 12px 0;
  font-size: 34px;
  line-height: 1.2;
}

.modal-panel p {
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 600;
}

.modal-panel img {
  border-radius: var(--radius);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toast {
  position: fixed;
  z-index: 1002;
  left: 50%;
  bottom: 28px;
  max-width: min(calc(100vw - 32px), 420px);
  padding: 13px 18px;
  border: 1px solid #ffd8cf;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255, 250, 247, 0.96);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes wave {
  0%, 100% { transform: scaleY(0.65); opacity: 0.75; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes progressPulse {
  0%, 100% { width: 58%; }
  50% { width: 72%; }
}

@media (max-width: 1040px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu {
    position: fixed;
    inset: 73px 20px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 247, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .image-split {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero {
    min-height: auto;
  }

  .value-grid,
  .mini-grid,
  .testimonial-grid,
  .story-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps::before {
    display: none;
  }

  .step-card {
    padding-left: 88px;
  }

  .step-icon {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
    padding: 48px;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    font-size: 24px;
  }

  .nav {
    min-height: 66px;
  }

  .nav-menu {
    inset: 67px 14px auto;
  }

  .section,
  .hero {
    padding: 72px 0;
  }

  .hero-copy h1 {
    margin-top: 22px;
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-copy p,
  .section-heading p,
  .cta-section p,
  .creator-section p {
    font-size: 16px;
  }

  .actions,
  .trust-row {
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .actions .btn {
    flex: 1 1 180px;
  }

  .section-title,
  .center-title {
    margin-bottom: 34px;
  }

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

  .value-grid,
  .mini-grid,
  .testimonial-grid,
  .story-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .mini-card,
  .quote-card,
  .recorder-card,
  .plan-card {
    padding: 28px;
  }

  .story-visual {
    height: 220px;
  }

  .privacy-panel {
    padding: 32px;
  }

  .input-wrap {
    grid-template-columns: auto 1fr;
  }

  .input-wrap .btn {
    grid-column: 1 / -1;
  }

  .footer-main {
    flex-direction: column;
    padding: 48px 0 32px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 16px 24px;
  }

  .toast {
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 460px) {
  .hero-copy h1 {
    font-size: 40px;
  }

  .section-heading h2,
  .cta-section h2,
  .creator-section h2,
  .privacy-panel h2 {
    font-size: 34px;
  }

  .section-title,
  .center-title {
    font-size: 34px;
  }

  .trust-row {
    flex-direction: column;
  }

  .step-card {
    padding-left: 0;
  }

  .step-icon {
    position: static;
    margin-bottom: 20px;
  }

  th,
  td {
    padding: 18px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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