:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.82);
  --text: #1a1a2e;
  --muted: #5f6280;
  --border: rgba(122, 64, 191, 0.12);
  --shadow: 0 24px 60px rgba(122, 64, 191, 0.12);
  --shadow-soft: 0 18px 35px rgba(26, 26, 46, 0.08);
  --radius: 14px;
  --pink: #ffb5c2;
  --purple: #d9bff2;
  --lavender: #c2a6ed;
  --blue: #adc7f5;
  --mint: #aeebda;
  --yellow: #ffe8a6;
  --peach: #ffd1ba;
  --deep-purple: #7a40bf;
  --deep-pink: #d94073;
  --gradient-main: linear-gradient(135deg, #d94073 0%, #7a40bf 100%);
  --gradient-card: linear-gradient(180deg, rgba(194, 166, 237, 0.45) 0%, rgba(255, 181, 194, 0.4) 100%);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 24%, #ffffff 100%);
  color: var(--text);
  font-family: "Nunito", "Avenir Next", "Segoe UI", sans-serif;
}

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

button,
a,
input,
textarea,
select {
  font: inherit;
}

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

.bg-orb {
  display: none;
}

.bg-orb-one {
  top: 3rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 181, 194, 0.28);
}

.bg-orb-two {
  top: 40rem;
  right: -4rem;
  width: 20rem;
  height: 20rem;
  background: rgba(174, 235, 218, 0.22);
}

.container {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1rem 0;
  background: rgba(250, 250, 250, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(122, 64, 191, 0.08);
}

.nav-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-row {
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--deep-purple);
}

.brand-name {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.brand-sparkle {
  font-size: 1rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: 3;
  width: 100%;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--deep-purple);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.button-small {
  padding: 0.85rem 1.15rem;
  font-size: 0.95rem;
}

.nav-row > .button-small {
  margin-left: auto;
}

.button-large {
  padding: 1rem 1.4rem;
  font-size: 1rem;
}

.button-full {
  width: 100%;
  padding: 1rem 1.4rem;
}

.button-gradient {
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow: 0 18px 30px rgba(122, 64, 191, 0.28);
}

.button-gradient:hover {
  box-shadow: 0 20px 36px rgba(122, 64, 191, 0.34);
}

.button-ghost {
  color: var(--deep-purple);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(122, 64, 191, 0.3);
}

.button-white {
  color: var(--deep-purple);
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(37, 16, 58, 0.2);
}

.button-icon {
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-section {
  position: relative;
  padding: 3.5rem 0 2.5rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 232, 166, 0.26), rgba(255, 181, 194, 0.28) 34%, rgba(217, 191, 242, 0.34) 68%, rgba(174, 235, 218, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.section-kicker,
.section-label {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-purple);
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.85);
}

.gradient-text {
  display: inline-block;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle,
.section-heading p,
.final-cta p,
.feature-card p,
.pricing-list,
.step-card p,
.footer-tagline,
.footer-copy,
.hero-meta-card span {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

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

.hero-meta-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(122, 64, 191, 0.12);
  box-shadow: var(--shadow-soft);
}

.hero-meta-card strong,
.price-row strong {
  display: block;
  font-size: 1.15rem;
}

.hero-visual {
  position: relative;
  padding: 1rem 0 2rem;
  min-height: 31rem;
}

.phone-frame {
  position: relative;
  width: min(100%, 23rem);
  margin: 0 auto;
  padding: 0.9rem;
  border-radius: 2.7rem;
  background: linear-gradient(180deg, #2f2941 0%, #161424 100%);
  box-shadow: 0 32px 80px rgba(58, 26, 89, 0.28);
  isolation: isolate;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: -1.2rem;
  border-radius: 3.4rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), transparent 20%),
    radial-gradient(circle at 80% 15%, rgba(255, 181, 194, 0.35), transparent 18%),
    radial-gradient(circle at 50% 110%, rgba(194, 166, 237, 0.35), transparent 26%);
  z-index: -1;
  animation: haloPulse 5s ease-in-out infinite;
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 2.1rem;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.38) 48%, transparent 66%);
  transform: translateX(-130%) skewX(-16deg);
  animation: shimmerSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #0f0c17;
  z-index: 2;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 42rem;
  padding: 2.4rem 1rem 1.1rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 232, 166, 0.24), rgba(255, 181, 194, 0.22) 36%, rgba(217, 191, 242, 0.28) 68%, rgba(174, 235, 218, 0.18)),
    #fafafa;
}

.phone-status,
.phone-chip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.phone-status {
  color: rgba(26, 26, 46, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
}

.story-cover,
.phone-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(122, 64, 191, 0.1);
  box-shadow: var(--shadow-soft);
}

.story-cover {
  background-image: var(--gradient-card);
}

.cover-badge,
.eyebrow,
.pricing-tier {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-purple);
}

.cover-art {
  position: relative;
  overflow: hidden;
  height: 13rem;
  margin-top: 0.9rem;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top, rgba(255, 232, 166, 0.96), rgba(255, 181, 194, 0.8) 30%, rgba(194, 166, 237, 0.8) 65%, rgba(122, 64, 191, 0.94) 100%);
}

.moon {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.65);
}

.hill {
  position: absolute;
  border-radius: 50%;
}

.hill-back {
  bottom: 2rem;
  left: -10%;
  width: 90%;
  height: 52%;
  background: rgba(81, 58, 150, 0.35);
}

.hill-front {
  bottom: -10%;
  right: -18%;
  width: 92%;
  height: 58%;
  background: rgba(39, 105, 105, 0.34);
}

.child-avatar {
  position: absolute;
  bottom: 2rem;
  left: 1.6rem;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 209, 186, 0.95));
  color: var(--deep-purple);
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 12px 20px rgba(26, 26, 46, 0.18);
}

.cover-copy {
  margin-top: 1rem;
}

.cover-copy h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.cover-copy p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.phone-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
}

.progress-track {
  height: 0.7rem;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: rgba(122, 64, 191, 0.08);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-main);
  animation: progressDrift 2.8s ease-in-out infinite;
}

.phone-chip-row {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 1rem;
}

.mini-chip,
.interest-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(122, 64, 191, 0.12);
  box-shadow: 0 10px 18px rgba(26, 26, 46, 0.06);
  font-weight: 700;
}

.mini-chip {
  padding: 0.55rem 0.8rem;
  font-size: 0.88rem;
}

.sparkle,
.float-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  pointer-events: none;
}

.sparkle {
  width: 3.1rem;
  height: 3.1rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(122, 64, 191, 0.12);
  animation: floatSparkle 4s ease-in-out infinite;
}

.sparkle-one {
  top: 0.8rem;
  left: 0;
}

.sparkle-two {
  top: 5rem;
  right: 0.5rem;
  animation-delay: 0.8s;
}

.sparkle-three {
  bottom: 1.8rem;
  left: 1rem;
  animation-delay: 1.6s;
}

.float-bubble {
  width: 2.6rem;
  height: 2.6rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(58, 26, 89, 0.12);
  animation: bubbleRise 5.5s ease-in-out infinite;
}

.bubble-one {
  bottom: 5.5rem;
  right: 0;
}

.bubble-two {
  bottom: 10rem;
  left: -0.4rem;
  animation-delay: 1s;
}

.bubble-three {
  top: 11rem;
  right: 1.2rem;
  animation-delay: 2s;
}

.trust-strip {
  padding: 0.75rem 0 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(122, 64, 191, 0.1);
  box-shadow: var(--shadow-soft);
  text-align: center;
  font-weight: 800;
  color: var(--deep-purple);
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(217, 191, 242, 0.12), rgba(255, 255, 255, 0));
}

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

.steps-grid,
.features-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.about-panel {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.step-card,
.feature-card,
.pricing-card,
.interests-panel,
.about-copy {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(122, 64, 191, 0.1);
  box-shadow: var(--shadow-soft);
}

.pastel-pink {
  background: rgba(255, 181, 194, 0.24);
}

.pastel-lavender {
  background: rgba(194, 166, 237, 0.24);
}

.pastel-mint {
  background: rgba(174, 235, 218, 0.35);
}

.step-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: var(--gradient-main);
  box-shadow: 0 14px 24px rgba(122, 64, 191, 0.18);
  font-size: 1.4rem;
}

.step-card h3,
.feature-card h3,
.pricing-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.feature-card {
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 181, 194, 0.95), rgba(194, 166, 237, 0.95));
}

.about-copy {
  padding: 1.7rem;
  background:
    radial-gradient(circle at top left, rgba(255, 181, 194, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.about-copy .button {
  margin-top: 0.4rem;
}

.interests-panel {
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 181, 194, 0.24), transparent 30%),
    rgba(255, 255, 255, 0.84);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.interest-pill {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    var(--gradient-card);
}

.pricing-grid {
  align-items: stretch;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.7rem 0 1rem;
}

.price-row strong {
  font-size: clamp(2.2rem, 6vw, 3rem);
  line-height: 1;
}

.price-row span {
  color: var(--muted);
  font-weight: 700;
}

.pricing-list {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
}

.pricing-list li {
  margin-bottom: 0.8rem;
}

.pricing-card-featured {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(217, 64, 115, 0.92), rgba(122, 64, 191, 0.92)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 26px 50px rgba(122, 64, 191, 0.18);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(122, 64, 191, 0.08);
  color: var(--deep-purple);
  font-size: 0.8rem;
  font-weight: 800;
}

.final-cta {
  padding: 2rem 0 5rem;
}

.final-cta-inner {
  padding: 3rem 1.3rem;
  border-radius: 2rem;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 80% 30%, rgba(255, 232, 166, 0.24), transparent 24%),
    linear-gradient(135deg, #d94073 0%, #7a40bf 100%);
  box-shadow: 0 30px 60px rgba(122, 64, 191, 0.28);
}

.final-cta p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
}

.final-meta {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer {
  padding: 0 0 3rem;
}

.footer-row {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 1rem;
  border-top: 1px solid rgba(122, 64, 191, 0.12);
}

.footer-brand {
  margin-bottom: 0.35rem;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 700;
  color: var(--muted);
}

.legal-shell {
  background:
    linear-gradient(180deg, rgba(255, 232, 166, 0.18), rgba(255, 255, 255, 0) 18rem),
    #ffffff;
}

.legal-hero {
  padding: 4rem 0 2.5rem;
}

.legal-hero h1 {
  max-width: 52rem;
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.legal-updated {
  margin: 1rem 0 0;
  color: var(--deep-purple);
  font-weight: 800;
}

.legal-intro {
  max-width: 52rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.legal-content {
  padding: 0 0 5rem;
}

.legal-grid {
  display: grid;
  gap: 1.5rem;
}

.legal-toc {
  display: grid;
  gap: 0.45rem;
  align-self: start;
  padding: 1rem;
  border: 1px solid rgba(122, 64, 191, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.legal-toc a {
  padding: 0.45rem 0.55rem;
  border-radius: 0.55rem;
  color: var(--muted);
  font-weight: 800;
}

.legal-toc a:hover {
  color: var(--deep-purple);
  background: rgba(122, 64, 191, 0.07);
}

.legal-document {
  padding: 1.4rem;
  border: 1px solid rgba(122, 64, 191, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.legal-document section + section {
  margin-top: 2rem;
}

.legal-document h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.15;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.legal-document p {
  margin: 0 0 1rem;
}

.legal-document ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-document li {
  margin-bottom: 0.65rem;
}

.legal-document strong {
  color: var(--text);
}

.legal-document a {
  color: var(--deep-purple);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.21, 1, 0.31, 1);
  will-change: opacity, transform;
}

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

.tag-cloud .reveal:nth-child(2) { transition-delay: 60ms; }
.tag-cloud .reveal:nth-child(3) { transition-delay: 120ms; }
.tag-cloud .reveal:nth-child(4) { transition-delay: 180ms; }
.tag-cloud .reveal:nth-child(5) { transition-delay: 240ms; }
.tag-cloud .reveal:nth-child(6) { transition-delay: 300ms; }
.tag-cloud .reveal:nth-child(7) { transition-delay: 360ms; }
.tag-cloud .reveal:nth-child(8) { transition-delay: 420ms; }
.tag-cloud .reveal:nth-child(9) { transition-delay: 480ms; }
.tag-cloud .reveal:nth-child(10) { transition-delay: 540ms; }
.tag-cloud .reveal:nth-child(11) { transition-delay: 600ms; }
.tag-cloud .reveal:nth-child(12) { transition-delay: 660ms; }
.tag-cloud .reveal:nth-child(13) { transition-delay: 720ms; }
.tag-cloud .reveal:nth-child(14) { transition-delay: 780ms; }
.tag-cloud .reveal:nth-child(15) { transition-delay: 840ms; }

@keyframes shimmerSweep {
  0%,
  20% {
    transform: translateX(-130%) skewX(-16deg);
    opacity: 0;
  }

  32%,
  58% {
    opacity: 1;
  }

  100% {
    transform: translateX(130%) skewX(-16deg);
    opacity: 0;
  }
}

@keyframes haloPulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes floatSparkle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(8deg);
  }
}

@keyframes bubbleRise {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.06);
  }
}

@keyframes progressDrift {
  0%,
  100% {
    width: 58%;
  }

  50% {
    width: 74%;
  }
}

@media (min-width: 740px) {
  .container {
    width: min(var(--container), calc(100% - 3rem));
  }

  .site-nav {
    order: initial;
    width: auto;
    justify-content: flex-start;
  }

  .nav-row {
    flex-wrap: nowrap;
  }

  .nav-row > .button-small {
    margin-left: 0;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .trust-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .footer-row {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .hero-section {
    padding: 4.6rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    gap: 2.5rem;
  }

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

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

  .legal-grid {
    grid-template-columns: minmax(13rem, 0.28fr) minmax(0, 1fr);
    align-items: start;
  }

  .legal-toc {
    position: sticky;
    top: 6rem;
  }

  .legal-document {
    padding: 2.1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

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