:root {
  --ink: #26222b;
  --ink-deep: #1a171f;
  --bone: #faf7f2;
  --bone-soft: #fdfcfa;
  --bone-inset: #f3eee5;
  --ember: #d96c4f;
  --ember-pressed: #c05439;
  --ember-soft: #fdf1ec;
  --brand-coral: #f07858;
  --brand-gold: #e1b355;
  --claret: #9e4256;
  --muted: #5c5566;
  --text-soft: #7e7789;
  --line: #e8e0d3;
  --surface: #ffffff;
  --placeholder: #fdf1ec;
  --maxw: 720px;
  --wide: 1120px;
  --page-max: 1120px;
  --page-gutter: 24px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

@font-face {
  font-family: "Literata";
  src: url("fonts/Literata_600SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Literata";
  src: url("fonts/Literata_600SemiBold_Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter_400Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter_600SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

a {
  color: var(--claret);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--ember);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bone);
  transform: translateY(-160%);
}

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

.site-header {
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--ink);
  font-family: "Literata", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-decoration: none;
}

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

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

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

.site-brand:hover {
  color: var(--ember);
}

.site-brand img {
  width: 28px;
  height: 28px;
}

.site-nav,
.site-nav__links,
.footer-links {
  display: flex;
  align-items: center;
}

.site-nav__links {
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

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

.site-nav a[aria-current="page"] {
  color: var(--ember);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 0.35em;
}

.icon-link svg {
  width: 21px;
  height: 21px;
}

main {
  min-height: 60vh;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  padding-block: 36px 44px;
}

.footer-links {
  flex-wrap: wrap;
  gap: 2px 8px;
  margin: 0 0 20px;
}

.footer-links a:first-child {
  padding-left: 0;
}

.site-footer p {
  max-width: var(--maxw);
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-disclaimer {
  font-style: italic;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.landing-shell {
  width: min(100% - 32px, var(--wide));
  margin-inline: auto;
}

.hero {
  display: grid;
  place-items: center;
  min-height: min(700px, calc(100vh - 76px));
  padding-block: 72px 88px;
  text-align: center;
}

.hero__content {
  max-width: 800px;
}

.hero-wordmark {
  margin: 0 0 18px;
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2.5rem, 8vw, 5.25rem);
  line-height: 1.02;
}

.hero__subhead {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.hero__actions,
.closing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 22px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  border: 2px solid var(--ember);
  border-radius: 999px;
  background: var(--ember);
  color: var(--surface);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.button:hover {
  background: var(--claret);
  border-color: var(--claret);
  color: var(--surface);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
}

.landing-section {
  padding-block: 72px;
  border-top: 1px solid var(--line);
}

.section-copy {
  max-width: var(--maxw);
  margin-inline: auto;
}

.section-eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-section h2 {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 5vw, 3.25rem);
  line-height: 1.12;
}

.problem p,
.trust p,
.free-tier p {
  margin: 0;
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}

.feature {
  padding-top: 24px;
  border-top: 2px solid var(--line);
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ember);
}

.feature__icon svg {
  width: 24px;
  height: 24px;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.trust-grid {
  display: grid;
  gap: 28px;
}

.trust-note {
  align-self: end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--claret);
  font-weight: 700;
}

.trust-note p {
  font-size: 18px;
}

.free-tier {
  text-align: center;
}

.free-tier p {
  max-width: 760px;
  margin-inline: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.closing-cta {
  padding-block: 88px 28px;
  text-align: center;
}

.closing-cta h2 {
  max-width: 680px;
  margin-inline: auto;
}

.legal-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px 32px;
}

.legal-wrap > header {
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.legal-wrap .brand {
  color: var(--ember);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.legal-wrap h1 {
  margin: 0.4em 0 0.2em;
  font-size: 30px;
  line-height: 1.2;
}

.legal-wrap h2 {
  margin: 2em 0 0.5em;
  padding-top: 0.4em;
  font-size: 20px;
  line-height: 1.35;
}

.legal-wrap h3 {
  margin: 1.4em 0 0.3em;
  font-size: 17px;
}

.legal-wrap .meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-wrap .summary,
.legal-wrap .callout,
.legal-wrap .card {
  margin: 24px 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.legal-wrap .callout {
  border-left: 4px solid var(--ember);
  border-radius: 10px;
}

.legal-wrap .summary h2,
.legal-wrap .callout h2 {
  margin-top: 0;
  padding-top: 0;
}

.legal-wrap ul {
  padding-left: 1.2em;
}

.legal-wrap li {
  margin: 0.3em 0;
}

.legal-wrap table {
  width: 100%;
  margin: 0.6em 0;
  border-collapse: collapse;
  font-size: 15px;
}

.legal-wrap th,
.legal-wrap td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-wrap th {
  color: var(--muted);
  font-weight: 600;
}

.placeholder {
  padding: 0 4px;
  border-radius: 3px;
  background: var(--placeholder);
  color: var(--ember);
  font-weight: 600;
}

.legal-wrap code {
  padding: 1px 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  font-size: 14px;
}

.legal-wrap .email {
  color: var(--claret);
  font-size: 20px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.legal-wrap .in-short {
  color: var(--muted);
  font-size: 15px;
}

.legal-wrap .toc {
  margin: 8px 0 32px;
}

.legal-wrap .toc ol {
  margin: 0;
  padding-left: 1.3em;
}

.legal-wrap .toc li {
  margin: 0.45em 0;
}

.document-footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 760px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.8fr);
  }
}

@media (max-width: 680px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding-block: 10px;
  }

  .site-brand {
    margin-left: 8px;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .site-nav a {
    width: 100%;
    padding-inline: 8px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding-block: 64px 72px;
  }

  .hero__content {
    width: 100%;
    min-width: 0;
  }

  .landing-section {
    padding-block: 56px;
  }

  .legal-wrap {
    padding-top: 40px;
  }

  .legal-wrap table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 380px) {
  .site-header__inner,
  .site-footer__inner,
  .landing-shell {
    width: min(100% - 24px, var(--wide));
  }

  .site-nav a {
    font-size: 13px;
  }

  .hero__actions,
  .closing-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    justify-content: center;
    width: 100%;
  }

  .legal-wrap {
    padding-inline: 16px;
  }

  .legal-wrap .summary,
  .legal-wrap .callout,
  .legal-wrap .card {
    padding: 16px;
  }
}

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

/* App-aligned website */

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Literata", Georgia, serif;
  font-weight: 600;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--bone);
}

.site-header__inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  min-height: 72px;
}

.site-brand {
  gap: 11px;
  font-family: "Literata", Georgia, serif;
  font-size: 25px;
  font-style: italic;
  letter-spacing: -0.03em;
}

.site-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav__links {
  gap: 8px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 4px 8px 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 600 14px/1 "Inter", sans-serif;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.app-hero {
  border-bottom: 1px solid var(--line);
}

.app-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 8vw, 96px);
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  min-height: 640px;
  margin-inline: auto;
  padding-block: var(--space-9);
}

.app-hero__copy {
  max-width: 650px;
}

.hero-mark {
  width: 132px;
  height: 132px;
  margin-bottom: 18px;
  object-fit: contain;
}

.brand-name {
  margin: 0;
  font-family: "Literata", Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 4.25rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-condition {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--ember-pressed);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-tagline {
  max-width: 590px;
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.hero-description {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
}

.button--primary {
  border-color: var(--ember);
  background: var(--ember);
  color: var(--bone-soft);
}

.button--primary:hover {
  border-color: var(--ember-pressed);
  background: var(--ember-pressed);
  color: var(--bone-soft);
}

.button--secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--ember);
  background: var(--ember-soft);
  color: var(--ember-pressed);
}

.record-preview {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 24px 70px color-mix(in srgb, var(--ink) 10%, transparent);
}

.record-preview__top,
.record-card__heading,
.free-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.record-preview__top {
  margin-bottom: 18px;
}

.record-preview__top p {
  margin: 3px 0 0;
  font-family: "Literata", Georgia, serif;
  font-size: 21px;
  font-weight: 600;
}

.preview-label,
.preview-date {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preview-date {
  padding: 7px 10px;
  border-radius: 10px;
  background: var(--bone-inset);
  color: var(--muted);
}

.record-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.record-card--accent {
  padding: 18px;
}

.record-card__heading {
  justify-content: flex-start;
  gap: 12px;
}

.record-card__heading div {
  display: grid;
  gap: 2px;
}

.record-card__heading strong,
.record-card--small strong {
  color: var(--ink);
  font-size: 15px;
}

.record-card__heading span:not(.record-icon) {
  color: var(--text-soft);
  font-size: 13px;
}

.record-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--ember-soft);
  color: var(--ember);
}

.record-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.record-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.record-scale span {
  height: 7px;
  border-radius: 999px;
  background: var(--bone-inset);
}

.record-scale span:first-child,
.record-scale span:nth-child(2) {
  background: var(--ember);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.record-card--small {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 14px;
}

.preview-action {
  margin-top: 14px;
  padding: 13px;
  border-radius: 14px;
  background: var(--ember);
  color: var(--bone-soft);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* Shared page rhythm - matches app gap-6 / surface cards */
.site-section {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin-inline: auto;
  padding-block: var(--space-9);
}

.site-section--muted {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-gutter), calc((100% - var(--page-max)) / 2));
  background: var(--bone-inset);
}

.site-section--muted > .section-heading,
.site-section--muted > .card-grid {
  width: min(100%, var(--page-max));
  margin-inline: auto;
}

/* Keep heading block full content-width so it left-aligns with the cards */
.site-section--muted > .section-heading {
  max-width: min(100%, var(--page-max));
  text-align: left;
}

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

.site-section--split {
  padding-block: var(--space-9);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: var(--space-7);
}

.eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--ember-pressed);
  font-family: "Literata", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
}

.section-heading h2,
.site-section--split h2,
.trust-copy h2,
.patterns-copy h2,
.reports-copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-copy,
.problem-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-heading {
  max-width: 36rem;
  margin: 0 0 var(--space-6);
}

.section-heading--wide {
  max-width: 40rem;
}

.section-lead {
  max-width: 36rem;
  margin: var(--space-3) 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 100%;
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.site-section--muted .info-card {
  background: var(--surface);
}

.info-card__index {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.info-card__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--ember-soft);
  color: var(--ember);
}

.info-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  margin: var(--space-2) 0 0;
  padding-right: 2rem;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Legacy aliases kept for nested pages */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.feature-number {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--ember-soft);
  color: var(--ember);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: var(--space-2) 0 0;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.trust-section {
  background: var(--ink-deep);
  color: var(--bone);
}

.trust-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: var(--space-7);
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin-inline: auto;
  padding-block: var(--space-9);
}

.trust-copy img {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  object-fit: contain;
}

.trust-copy h2 {
  color: var(--bone);
}

.trust-copy > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--bone-inset);
  font-size: 18px;
  line-height: 1.65;
}

.trust-copy .button {
  margin-top: 22px;
}

.trust-section .eyebrow {
  color: var(--brand-gold);
}

.trust-list {
  align-self: end;
  border-top: 1px solid var(--muted);
}

.trust-list div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding-block: 18px;
  border-bottom: 1px solid var(--muted);
}

.trust-list span {
  color: var(--brand-gold);
  font-size: 12px;
}

.trust-list strong {
  color: var(--bone);
  font-size: 15px;
  font-weight: 600;
}

.trust-list > p {
  margin: 22px 0 0;
  color: var(--bone-inset);
  font-family: "Literata", Georgia, serif;
  font-size: 18px;
}

.free-section {
  gap: 32px;
  padding-block: 72px;
  border-bottom: 1px solid var(--line);
}

.free-section .eyebrow {
  margin-bottom: 8px;
}

.free-statement {
  margin: 0;
  font-family: "Literata", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
}

.closing-section {
  display: grid;
  justify-items: center;
  text-align: center;
}

.closing-section img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.closing-brand {
  margin: 14px 0 0;
  font-family: "Literata", Georgia, serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.closing-section > p:not(.closing-brand) {
  margin: 10px 0 24px;
  color: var(--muted);
  font-family: "Literata", Georgia, serif;
  font-size: 20px;
}

.site-footer {
  margin-top: 0;
  background: var(--bone-inset);
}

.site-footer__inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  padding-block: var(--space-7);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: "Literata", Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-links {
  margin-bottom: 18px;
}

.legal-wrap {
  padding-top: 64px;
}

.legal-wrap .brand {
  color: var(--ember-pressed);
  font-family: "Literata", Georgia, serif;
  font-style: italic;
  text-transform: lowercase;
}

.patterns-section.site-section--band {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-gutter), calc((100% - var(--page-max)) / 2));
  background: var(--bone-inset);
}

.patterns-section__inner,
.reports-section__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-7);
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-block: 0;
}

.reports-section .reports-section__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

@media (max-width: 1100px) {
  .reports-section .reports-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .reports-copy {
    order: -1;
    min-width: 0;
  }

  .reports-copy .button {
    width: 100%;
  }

  .report-preview__brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .report-sections {
    grid-template-columns: 1fr;
  }
}

.patterns-copy > p:not(.eyebrow),
.reports-copy > p:not(.eyebrow, .included-note) {
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.patterns-copy .patterns-disclaimer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ember-pressed);
  font-size: 14px;
  font-weight: 600;
}

.patterns-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(200px, 0.75fr);
  gap: 12px;
}

.pattern-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.pattern-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.pattern-card__header > div:first-child {
  display: grid;
  gap: 5px;
}

.pattern-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.pattern-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.pattern-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-soft);
  font-size: 10px;
}

.pattern-legend i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.legend-pain {
  background: var(--ember);
}

.legend-fatigue {
  background: var(--brand-gold);
}

.pattern-chart {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 8px;
  height: 142px;
  margin-top: 28px;
  padding-top: 12px;
  border-bottom: 1px solid var(--line);
}

.pattern-chart div {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 100%;
}

.pattern-chart i,
.pattern-chart b {
  display: block;
  width: 7px;
  height: var(--bar);
  min-height: 8px;
  border-radius: 5px 5px 0 0;
}

.pattern-chart i {
  background: var(--ember);
}

.pattern-chart b {
  background: var(--brand-gold);
}

.pattern-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 10px;
}

.pattern-card {
  border-radius: var(--radius-md);
}

.pattern-card--together {
  display: flex;
  flex-direction: column;
}

.pattern-card--together strong {
  margin-top: 8px;
}

.pattern-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
}

.pattern-tags span {
  padding: 7px 9px;
  border-radius: 10px;
  background: var(--ember-soft);
  color: var(--ember-pressed);
  font-size: 11px;
  font-weight: 600;
}

.reports-section {
  border-bottom: 1px solid var(--line);
}

.report-preview {
  min-width: 0;
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.report-preview__brand,
.report-preview__brand > div,
.report-sections div {
  display: flex;
  align-items: center;
}

.report-preview__brand {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.report-preview__brand > div {
  min-width: 0;
  gap: 8px;
  font-family: "Literata", Georgia, serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 600;
}

.report-preview__brand img {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.report-preview__brand > span {
  max-width: 100%;
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--ember-soft);
  color: var(--ember-pressed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.report-preview__title {
  display: grid;
  gap: 6px;
  padding-block: 24px;
}

.report-preview__title span,
.report-overview > span {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-preview__title strong {
  max-width: 430px;
  font-family: "Literata", Georgia, serif;
  font-size: 24px;
  line-height: 1.3;
}

.report-overview {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.1fr 0.65fr;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  background: var(--bone-inset);
}

.report-overview div {
  height: 7px;
  border-radius: 999px;
  background: var(--line);
}

.report-overview div:nth-child(2) {
  background: var(--ember);
}

.report-overview div:nth-child(3) {
  background: var(--brand-gold);
}

.report-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.report-sections div {
  gap: 9px;
  min-width: 0;
  min-height: 52px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.report-sections span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-sections i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
}

.reports-copy .included-note {
  margin: 20px 0 24px;
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 820px) {
  .site-header__inner {
    position: relative;
    align-items: center;
    flex-direction: row;
    gap: var(--space-4);
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
    min-height: 64px;
    padding-block: var(--space-2);
  }

  .site-brand {
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: 0 16px 40px color-mix(in srgb, var(--ink) 10%, transparent);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    padding-inline: 12px;
    font-size: 15px;
  }

  .site-nav .icon-link {
    justify-content: flex-start;
  }

  .app-hero__inner {
    grid-template-columns: 1fr;
    gap: 64px;
    width: min(calc(100% - 32px), 680px);
    padding-block: 64px 72px;
  }

  .app-hero__copy {
    max-width: 620px;
  }

  .hero-mark {
    width: 112px;
    height: 112px;
  }

  .record-preview {
    justify-self: start;
    max-width: 520px;
  }

  .content-grid,
  .card-grid,
  .feature-grid,
  .trust-section__inner,
  .patterns-section__inner,
  .app-hero__inner {
    grid-template-columns: 1fr;
  }

  .trust-section__inner {
    gap: var(--space-6);
  }

  .patterns-section__inner {
    gap: var(--space-6);
  }
}

@media (max-width: 520px) {
  .site-brand {
    font-size: 23px;
  }

  .site-brand img {
    width: 34px;
    height: 34px;
  }

  .app-hero__inner {
    padding-block: var(--space-8);
  }

  .site-section {
    padding-block: var(--space-8);
  }

  .hero-mark {
    width: 102px;
    height: 102px;
    margin-bottom: 14px;
  }

  .brand-name {
    font-size: 44px;
  }

  .hero-tagline {
    margin-top: 10px;
    font-size: 26px;
  }

  .hero-condition {
    margin-top: 18px;
    font-size: 14px;
  }

  .hero-description {
    font-size: 16px;
  }

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

  .hero-actions .button,
  .hero-actions .store-badge {
    width: 100%;
  }

  .record-preview {
    padding: 16px;
    border-radius: 20px;
  }

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

  .problem-section h2,
  .section-heading h2,
  .trust-copy h2,
  .patterns-copy h2,
  .reports-copy h2 {
    font-size: 32px;
  }

  .problem-copy {
    font-size: 17px;
  }

  .feature-card {
    padding: 22px;
  }

  .patterns-preview,
  .report-sections {
    grid-template-columns: 1fr;
  }

  .pattern-card--together {
    min-height: 210px;
  }

  .pattern-card__header {
    display: grid;
  }

  .pattern-legend {
    justify-content: flex-start;
  }

  .report-preview {
    padding: 16px;
  }

  .report-preview__title {
    padding-block: 16px;
  }

  .report-preview__title strong {
    font-size: 20px;
  }

  .report-stat-row {
    grid-template-columns: 1fr;
  }

  .report-stat-row > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
  }

  .report-stat-row strong {
    margin-top: 0;
  }

  .report-overview {
    grid-template-columns: 1fr;
  }

  .free-section {
    align-items: stretch;
    flex-direction: column;
  }

  .free-section .button {
    width: 100%;
  }

  .closing-section {
    padding-block: 84px 60px;
  }

  .site-footer__inner {
    width: min(calc(100% - 32px), 680px);
  }
}

.beta-section {
  width: min(calc(100% - (var(--page-gutter) * 2)), 640px);
  margin-inline: auto;
  padding-block: var(--space-9) var(--space-7);
}

.beta-card {
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.beta-card > img {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
}

.beta-card h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1.15;
}

.beta-intro {
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.beta-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.beta-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.beta-form input,
.beta-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font: 400 16px/1.4 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.beta-form textarea {
  min-height: 140px;
  resize: vertical;
}

.beta-form input:focus,
.beta-form textarea:focus {
  outline: 3px solid var(--ember);
  outline-offset: 2px;
  border-color: var(--ember);
}

.beta-form .button {
  width: 100%;
  margin-top: 4px;
}

.beta-form .button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.beta-form .hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.beta-status {
  margin: 0;
  min-height: 1.4em;
  color: var(--muted);
  font-size: 14px;
}

.beta-status.is-error {
  color: var(--claret);
}

.beta-success {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.beta-success[hidden] {
  display: none;
}

.beta-success h2 {
  margin: 0;
  font-size: 1.6rem;
}

.beta-success p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.support-section {
  width: min(calc(100% - (var(--page-gutter) * 2)), 720px);
}

.support-faq {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.support-faq h2 {
  margin: 0 0 24px;
  font-size: 1.6rem;
}

.support-faq h3 {
  margin: 24px 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.support-faq p,
.support-faq ul,
.support-faq ol {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.support-faq ul,
.support-faq ol {
  padding-left: 1.2em;
}

.support-faq li + li {
  margin-top: 6px;
}

.support-faq h3 + ul,
.support-faq h3 + ol,
.support-faq ol + p {
  margin-top: 8px;
}

.confirm-check {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  cursor: pointer;
}

.confirm-check span {
  font-weight: 500;
  line-height: 1.45;
}

.confirm-check input[type="checkbox"] {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  margin-top: 2px;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--ember);
}

/* --- Launch site additions --- */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-strip li {
  position: relative;
}

.trust-strip li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -12px;
  color: var(--text-soft);
}

.hero-notify {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-notify a {
  font-weight: 600;
}

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

.store-badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 168px;
  min-height: 52px;
  padding: 8px 18px;
  border-radius: 12px;
  background: var(--ink-deep);
  color: var(--bone-soft) !important;
  text-decoration: none !important;
  line-height: 1.15;
}

.store-badge:hover {
  background: var(--ink);
  color: var(--bone-soft) !important;
}

.store-badge__eyebrow {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}

.store-badge__name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.phone-stack {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.phone-frame {
  margin: 0;
  width: min(100%, 280px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ink-deep);
  box-shadow: 0 18px 40px rgba(26, 23, 31, 0.1);
  padding: var(--space-3);
}

.phone-frame--back {
  position: absolute;
  inset: 40px auto auto 8%;
  width: min(100%, 240px);
  transform: rotate(-8deg);
  opacity: 0.92;
  z-index: 0;
}

.phone-frame--front {
  position: relative;
  z-index: 1;
  margin-left: 18%;
}

.phone-screen {
  display: grid;
  gap: 12px;
  min-height: 460px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(165deg, var(--bone-soft), var(--bone-inset));
  color: var(--ink);
}

.phone-screen--report {
  min-height: 380px;
  gap: 14px;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.phone-greeting {
  margin: 0;
  font-family: "Literata", Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.phone-date {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.phone-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.phone-card--hero {
  background: var(--ember-soft);
  border-color: transparent;
}

.phone-card strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.phone-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.phone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.phone-chips span,
.pattern-tags span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bone);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.phone-cta {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: var(--ember);
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 88px;
  margin: 8px 0;
}

.mini-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--brand-coral), var(--brand-gold));
}

.phone-screen--report ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 13px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: 0;
}

.plans-grid h3 {
  margin: 0 0 var(--space-2);
  font-size: 1.125rem;
}

.plan-card {
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.plan-card--accent {
  background: linear-gradient(165deg, var(--ember-soft), var(--bone-soft));
  border-color: transparent;
}

.plan-price {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

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

.plan-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-size: 15px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ember);
  font-weight: 700;
}

.report-preview--rich {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.report-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.report-stat-row > div {
  min-width: 0;
  padding: 12px;
  border-radius: 14px;
  background: var(--bone);
}

.report-stat-row .preview-label {
  display: block;
  overflow-wrap: anywhere;
}

.report-stat-row strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
}

.report-footnote {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
}

.press-section {
  width: min(calc(100% - (var(--page-gutter) * 2)), 720px);
  margin-inline: auto;
  padding-block: var(--space-9) var(--space-7);
}

.press-card {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

@media (max-width: 900px) {
  :root {
    --page-gutter: 20px;
    --space-9: 64px;
  }

  .phone-frame--back {
    display: none;
  }

  .phone-frame--front {
    margin-left: 0;
  }

  .card-grid,
  .feature-grid,
  .plans-grid,
  .content-grid,
  .app-hero__inner,
  .patterns-section__inner,
  .trust-section__inner {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    min-height: 0;
  }

  .site-section--muted {
    padding-inline: var(--page-gutter);
  }
}

@media (max-width: 640px) {
  .trust-strip li:not(:last-child)::after {
    content: none;
  }
}
