:root {
  --accent-primary: #0F766E;
  --accent-dark: #134E4A;
  --accent-mid: #0D9488;
  --accent-soft: #CFFAF1;
  --accent-text-on-soft: #064E48;

  --paper: #FDFCF8;
  --subtle-surface: #F3F2EE;

  --ink-primary: #1A1A1A;
  --ink-secondary: rgba(26, 26, 26, 0.62);
  --ink-tertiary: rgba(26, 26, 26, 0.42);
  --separator: rgba(26, 26, 26, 0.12);

  --bg-page: #FBFAF6;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-hero: 0 12px 40px rgba(15, 56, 52, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);

  --radius-card: 16px;
  --radius-button: 12px;
  --radius-pill: 999px;

  --max-content: 1120px;
  --max-prose: 680px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --easing: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1F1F22;
    --subtle-surface: #28282B;
    --bg-page: #161618;
    --ink-primary: #F5F5F5;
    --ink-secondary: rgba(245, 245, 245, 0.66);
    --ink-tertiary: rgba(245, 245, 245, 0.42);
    --separator: rgba(245, 245, 245, 0.12);
    --accent-soft: rgba(15, 118, 110, 0.16);
    --accent-text-on-soft: #5EEAD4;
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.25);
    --shadow-hero: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.35);
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--ink-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 160ms var(--easing);
}

a:hover {
  color: var(--accent-dark);
}

@media (prefers-color-scheme: dark) {
  a {
    color: #5EEAD4;
  }
  a:hover {
    color: #99F6E4;
  }
}

h1,
h2,
h3,
h4 {
  color: var(--ink-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

@media (prefers-color-scheme: dark) {
  .eyebrow {
    color: #5EEAD4;
  }
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--separator);
}

@media (prefers-color-scheme: dark) {
  .site-nav {
    background: rgba(22, 22, 24, 0.78);
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-primary);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.nav-logo:hover {
  color: var(--ink-primary);
}

.nav-logo .logo-mark {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 8px;
  overflow: hidden;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
}

.nav-links a:hover {
  color: var(--ink-primary);
}

.nav-login {
  display: none;
}

.nav-lang-switch {
  margin-left: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--separator);
}

.nav-lang-switch a {
  color: var(--ink-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-lang-switch a:hover {
  color: var(--accent-primary);
}

@media (prefers-color-scheme: dark) {
  .nav-lang-switch a:hover {
    color: #5EEAD4;
  }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ink-primary);
  border-radius: 8px;
}

.nav-toggle:hover {
  background: var(--subtle-surface);
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--separator);
    box-shadow: var(--shadow-card);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms var(--easing), transform 160ms var(--easing);
  }

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

  .nav-links li {
    border-bottom: 1px solid var(--separator);
  }

  .nav-links li:last-child {
    border-bottom: 0;
  }

  .nav-links a {
    display: block;
    padding: 14px 4px;
  }

  .nav-lang-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-button);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 160ms var(--easing), background-color 160ms var(--easing), box-shadow 160ms var(--easing), color 160ms var(--easing);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-primary);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.32);
}

.btn-secondary {
  background: var(--accent-soft);
  color: var(--accent-text-on-soft);
}

.btn-secondary:hover {
  background: #B5F0E2;
  color: var(--accent-text-on-soft);
}

.btn.is-disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.62;
  box-shadow: none;
}

.btn.is-disabled:hover {
  transform: none;
}

@media (prefers-color-scheme: dark) {
  .btn-secondary:hover {
    background: rgba(15, 118, 110, 0.28);
  }
}

/* ---------- Store badges ---------- */
.store-badges {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 6px;
  align-items: center;
  justify-content: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  line-height: 0;
  transition: opacity 160ms var(--easing);
}

.store-badge-image {
  display: block;
  height: 40px;
  width: auto;
}

.store-badge.is-disabled {
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.store-badge.is-disabled .store-badge-image {
  filter: grayscale(1) brightness(0.78) opacity(0.58);
}

@media (prefers-color-scheme: dark) {
  .store-badge.is-disabled {
    opacity: 1;
  }
}

.store-badges > .availability-caption,
.store-badges > .android-caption {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.75rem;
  color: var(--ink-tertiary);
  padding-left: 0;
  text-align: center;
  white-space: nowrap;
}

.store-badges > .availability-caption {
  grid-column: 1;
  max-width: 180px;
  white-space: normal;
}

.store-badges > .store-badge-ios {
  grid-column: 1;
  grid-row: 1;
}

.store-badges > .store-badge-android {
  grid-column: 2;
  grid-row: 1;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1875rem;
  color: var(--ink-secondary);
  max-width: 540px;
  margin: 0 0 32px;
}

.hero-illustration {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  width: 100%;
}

.hero-illustration img,
.hero-illustration svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 880px) {
  .hero {
    padding: 40px 0 64px;
  }

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

  .hero-illustration {
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ---------- Sections ---------- */
section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  margin-bottom: 16px;
}

.section-head p {
  color: var(--ink-secondary);
  font-size: 1.0625rem;
  margin: 0;
}

.section-alt {
  background: var(--subtle-surface);
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 200ms var(--easing), box-shadow 200ms var(--easing);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-text-on-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--ink-secondary);
  margin: 0;
  font-size: 0.9375rem;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.price-card.is-featured {
  border-color: var(--accent-primary);
  box-shadow: 0 12px 36px rgba(15, 118, 110, 0.18), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.price-card .badge-best {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent-primary);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.1875rem;
  margin: 0 0 8px;
}

.price-tagline {
  color: var(--ink-secondary);
  font-size: 0.9375rem;
  margin: 0 0 22px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.price-amount .num {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-amount .per {
  color: var(--ink-secondary);
  font-size: 0.9375rem;
}

.price-secondary {
  color: var(--ink-secondary);
  font-size: 0.875rem;
  margin: 0 0 24px;
}

.price-secondary .save {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-text-on-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
  margin-left: 6px;
}

.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--ink-primary);
  border-bottom: 1px solid var(--separator);
}

.price-features li:last-child {
  border-bottom: 0;
}

.price-features li svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--accent-primary);
  margin-top: 2px;
}

.price-note {
  color: var(--ink-secondary);
  font-size: 0.8125rem;
  text-align: center;
  margin: 24px 0 0;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--separator);
  padding: 40px 0;
  background: var(--paper);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink-primary);
}

.footer-brand .logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  overflow: hidden;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--ink-secondary);
  font-size: 0.9375rem;
}

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

.footer-copy {
  width: 100%;
  color: var(--ink-tertiary);
  font-size: 0.8125rem;
  margin: 0;
}

/* ---------- Legal / prose pages ---------- */
.page-header {
  padding: 56px 0 24px;
  border-bottom: 1px solid var(--separator);
}

.page-header h1 {
  margin: 0 0 8px;
}

.page-header .meta {
  color: var(--ink-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

.prose {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 48px 24px 80px;
  font-size: 0.9375rem;
  color: var(--ink-primary);
}

.prose h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.prose h2 {
  font-size: 1.375rem;
  margin: 40px 0 12px;
  letter-spacing: -0.015em;
}

.prose h3 {
  font-size: 1.0625rem;
  margin: 28px 0 8px;
  font-weight: 600;
}

.prose p,
.prose li {
  color: var(--ink-primary);
}

.prose ul {
  padding-left: 22px;
  margin: 0 0 1em;
}

.prose li {
  margin-bottom: 6px;
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--separator);
  margin: 40px 0;
}

.prose code {
  background: var(--subtle-surface);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.875em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--ink-primary);
  word-break: break-word;
}

.prose blockquote {
  border-left: 3px solid var(--accent-primary);
  background: var(--subtle-surface);
  margin: 24px 0;
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  color: var(--ink-secondary);
  font-size: 0.9375rem;
}

.prose blockquote p {
  margin: 0 0 6px;
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Contact ---------- */
.contact-section {
  padding: 80px 0 96px;
}

.contact-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  padding: 48px 32px;
  box-shadow: var(--shadow-card);
}

.contact-card h1 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--ink-secondary);
  margin: 0 0 28px;
  font-size: 1.0625rem;
}

.contact-card .btn {
  font-size: 1.0625rem;
  padding: 16px 28px;
  margin-bottom: 20px;
}

.contact-meta {
  margin-top: 24px;
  color: var(--ink-tertiary);
  font-size: 0.875rem;
}

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

/* ---------- Article 39a section ---------- */
.article-39a-perks {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: grid;
  gap: 14px;
}

.article-39a-perks li {
  background: var(--paper);
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  padding: 18px 22px;
  font-size: 0.9375rem;
  color: var(--ink-secondary);
  box-shadow: var(--shadow-card);
}

.article-39a-perks li strong {
  color: var(--ink-primary);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-primary);
  font-size: 1rem;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-primary);
  line-height: 1;
  transition: transform 200ms var(--easing);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--ink-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb-nav {
  border-bottom: 1px solid var(--separator);
  font-size: 0.875rem;
  padding: 14px 0;
}

.breadcrumb-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--ink-secondary);
}

.breadcrumb-nav a {
  color: var(--ink-secondary);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: var(--accent-primary);
}

.breadcrumb-nav [aria-current="page"] {
  color: var(--ink-primary);
  font-weight: 500;
}

.breadcrumb-sep {
  color: var(--ink-tertiary);
}

/* ---------- 39a hero variant ---------- */
.hero-39a .hero-headline {
  margin-top: 12px;
}

.article-39a-explainer {
  padding-top: 40px;
}

.article-39a-explainer .prose {
  max-width: 760px;
}

.article-39a-explainer h2 {
  margin-top: 36px;
  margin-bottom: 12px;
}

.article-39a-explainer h2:first-child {
  margin-top: 0;
}

.article-39a-explainer p,
.article-39a-explainer ul,
.article-39a-explainer ol {
  color: var(--ink-secondary);
  line-height: 1.7;
}

.article-39a-explainer ul,
.article-39a-explainer ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.article-39a-explainer li {
  margin-bottom: 8px;
}

.article-39a-explainer strong {
  color: var(--ink-primary);
}

.store-badges-center {
  justify-content: center;
}

/* ---------- Blog index ---------- */
.blog-index {
  padding-top: 40px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.blog-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--separator);
  border-radius: var(--radius-card);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-card);
  transition: transform 200ms var(--easing), box-shadow 200ms var(--easing);
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.blog-card-meta {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  color: var(--ink-tertiary);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.blog-card h2 {
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: var(--ink-primary);
  line-height: 1.3;
}

.blog-card-summary {
  margin: 0 0 14px;
  color: var(--ink-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.blog-card-cta {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ---------- Blog post ---------- */
.blog-post {
  padding: 40px 0 80px;
}

.blog-post .container {
  max-width: 760px;
}

.post-header {
  margin-bottom: 32px;
}

.post-header h1 {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 16px;
}

.post-meta {
  margin: 0;
  color: var(--ink-tertiary);
  font-size: 0.875rem;
}

.post-body {
  color: var(--ink-secondary);
  line-height: 1.7;
}

.post-body h2 {
  color: var(--ink-primary);
  margin-top: 36px;
  margin-bottom: 12px;
}

.post-body h3 {
  color: var(--ink-primary);
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.0625rem;
}

.post-body p,
.post-body ul,
.post-body ol {
  margin-bottom: 16px;
}

.post-body ul,
.post-body ol {
  padding-left: 22px;
}

.post-body li {
  margin-bottom: 8px;
}

.post-body a {
  color: var(--accent-primary);
}

.post-body strong {
  color: var(--ink-primary);
}

.post-body code {
  background: var(--subtle-surface);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875em;
}

.post-cta {
  margin-top: 56px;
  padding: 32px;
  background: var(--accent-soft);
  border-radius: var(--radius-card);
  text-align: center;
}

.post-cta h3 {
  margin: 0 0 8px;
  color: var(--accent-text-on-soft);
}

.post-cta p {
  margin: 0 0 18px;
  color: var(--accent-text-on-soft);
}

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