:root {
  color-scheme: light;
  --brand: #f47466;
  --brand-strong: #d9574b;
  --brand-soft: #fff0ec;
  --brand-pale: #fff7f4;
  --bg: #fffaf7;
  --surface: #ffffff;
  --surface-soft: #fff4ef;
  --surface-mint: #eef9f4;
  --surface-blue: #eff8fc;
  --ink: #292d32;
  --muted: #606873;
  --quiet: #7a828d;
  --line: rgba(92, 67, 58, 0.12);
  --line-strong: rgba(244, 116, 102, 0.25);
  --mint: #67cfa5;
  --blue: #9dd8f2;
  --shadow-sm: 0 10px 28px rgba(90, 57, 44, 0.06);
  --shadow-md: 0 24px 64px rgba(117, 67, 48, 0.1);
  --shadow-brand: 0 18px 42px rgba(244, 116, 102, 0.24);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --page-width: 1180px;
  --header-height: 84px;
  --section-space: 112px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(244, 116, 102, 0.08), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(103, 207, 165, 0.08), transparent 24rem),
    var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

p {
  margin-bottom: 0;
}

::selection {
  color: var(--ink);
  background: rgba(244, 116, 102, 0.24);
}

:where(a, button, summary):focus-visible {
  outline: 3px solid rgba(244, 116, 102, 0.35);
  outline-offset: 4px;
  border-radius: 12px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--brand-strong);
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

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

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

.section-block {
  position: relative;
  padding-block: var(--section-space);
}

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

.section-heading h2,
.download-cta-copy h2,
.topic-section h2,
.topic-faq-block h2 {
  margin-top: 14px;
  font-size: clamp(36px, 4.4vw, 58px);
}

.section-heading > p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(244, 116, 102, 0.2);
  border-radius: 999px;
  color: var(--brand-strong);
  background: rgba(255, 240, 236, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--brand-strong);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding-inline: 4px;
  color: var(--brand-strong);
  font-weight: 650;
  transition: color 0.18s ease, transform 0.18s ease;
}

.text-link::after {
  content: "→";
  transition: transform 0.18s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  padding-top: 12px;
  pointer-events: none;
  transition: padding 0.25s var(--ease);
}

.nav-shell {
  position: relative;
  display: flex;
  width: min(var(--page-width), calc(100% - 48px));
  min-height: 60px;
  margin-inline: auto;
  padding: 8px 10px 8px 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background: rgba(255, 252, 250, 0.78);
  box-shadow: 0 8px 26px rgba(79, 49, 38, 0.04);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  pointer-events: auto;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.site-header.is-scrolled .nav-shell {
  border-color: var(--line);
  background: rgba(255, 252, 250, 0.94);
  box-shadow: 0 12px 34px rgba(79, 49, 38, 0.08);
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-link img,
.footer-brand img {
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(244, 116, 102, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > a {
  display: inline-flex;
  min-height: 42px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links > a:hover {
  color: var(--ink);
  background: var(--brand-pale);
}

.nav-links .nav-download-link {
  gap: 7px;
  margin-left: 5px;
  padding-inline: 16px;
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 9px 22px rgba(244, 116, 102, 0.2);
}

.nav-links .nav-download-link:hover {
  color: #ffffff;
  background: #ee6b5d;
}

.nav-download-link .apple-icon,
.premium-download-btn .apple-icon {
  filter: brightness(0) invert(1);
}

.nav-links .language-switch {
  min-width: 44px;
  padding-inline: 10px;
  color: var(--brand-strong);
  font-weight: 700;
}

.nav-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 13px;
  color: var(--ink);
  background: var(--brand-pale);
  cursor: pointer;
}

.nav-menu-button span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-menu-button span:first-child {
  transform: translateY(-4px);
}

.nav-menu-button span:last-child {
  transform: translateY(4px);
}

.nav-menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

/* Buttons */
.premium-download-btn,
.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  font-weight: 650;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease;
}

.premium-download-btn,
.button-primary {
  padding: 8px 22px;
  color: #ffffff;
  background: var(--brand);
  box-shadow: var(--shadow-brand);
}

.premium-download-btn:hover,
.button-primary:hover {
  transform: translateY(-2px);
  background: #ee6b5d;
  box-shadow: 0 22px 46px rgba(244, 116, 102, 0.29);
}

.premium-download-btn:active,
.button-primary:active,
.button-secondary:active {
  transform: translateY(0) scale(0.98);
}

.premium-download-btn-inner {
  display: flex;
  align-items: center;
  gap: 11px;
}

.premium-download-btn .btn-text {
  display: grid;
  text-align: left;
  line-height: 1.05;
}

.premium-download-btn .badge-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.015em;
  opacity: 0.82;
}

.premium-download-btn .badge-title {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.button-secondary {
  padding-inline: 21px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(96, 61, 47, 0.04);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 116, 102, 0.44);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

/* Hero */
.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 154px 0 104px;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
  filter: blur(2px);
  pointer-events: none;
}

.hero-section::before {
  top: 86px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(244, 116, 102, 0.17), rgba(244, 116, 102, 0));
}

.hero-section::after {
  bottom: 30px;
  left: -190px;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, rgba(103, 207, 165, 0.12), rgba(103, 207, 165, 0));
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 11.5ch;
  margin-top: 18px;
  font-size: clamp(50px, 6.2vw, 78px);
  font-weight: 650;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 610px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-metrics {
  display: grid;
  margin: 44px 0 0;
  padding: 24px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-metrics li {
  display: grid;
  min-width: 0;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 9px;
}

.hero-metrics .metric-inline-icon {
  margin-top: 2px;
  color: var(--brand);
}

.hero-metrics strong,
.hero-metrics span {
  grid-column: 2;
}

.hero-metrics strong {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.hero-metrics span {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-visual {
  position: relative;
  width: min(100%, 450px);
  padding: 18px;
  border: 1px solid rgba(244, 116, 102, 0.15);
  border-radius: 48px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.95), transparent 30%),
    linear-gradient(145deg, rgba(255, 229, 220, 0.8), rgba(255, 250, 247, 0.82) 48%, rgba(229, 248, 240, 0.78));
  box-shadow: var(--shadow-md);
}

.product-visual::before {
  position: absolute;
  z-index: -1;
  right: -34px;
  bottom: 62px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(244, 116, 102, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-shot-frame {
  overflow: hidden;
  border: 1px solid rgba(85, 58, 48, 0.11);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 30px 70px rgba(78, 50, 40, 0.14);
}

.hero-poster {
  width: 100%;
  height: auto;
}

/* Core features */
.product-section {
  background: rgba(255, 255, 255, 0.64);
  border-block: 1px solid rgba(94, 68, 58, 0.07);
}

.product-section .section-heading {
  max-width: 1120px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 34px;
  grid-column: span 3;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.feature-card-primary {
  grid-column: span 6;
  background:
    radial-gradient(circle at 86% 14%, rgba(244, 116, 102, 0.15), transparent 34%),
    var(--brand-pale);
  border-color: rgba(244, 116, 102, 0.2);
}

.feature-card::after {
  position: absolute;
  right: -46px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(244, 116, 102, 0.11);
  border-radius: 50%;
  content: "";
}

.feature-icon,
.seo-topic-icon,
.trust-icon,
.use-case-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.feature-icon.accent {
  color: #2c9770;
  background: var(--surface-mint);
}

.feature-icon.warm {
  color: #397f9d;
  background: var(--surface-blue);
}

.feature-card h3 {
  max-width: 14ch;
  margin-top: auto;
  padding-top: 58px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.feature-card:not(.feature-card-primary) h3 {
  font-size: 24px;
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 44ch;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}

/* Screenshots */
.screenshots-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 24%, rgba(244, 116, 102, 0.1), transparent 24rem),
    linear-gradient(180deg, #fff7f3 0%, #fffaf7 100%);
}

.screenshots-section .section-heading {
  max-width: 850px;
}

.screenshots-carousel-wrapper {
  position: relative;
}

.screenshots-container {
  width: 100%;
  overflow: hidden;
}

.screenshots-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}

.screenshot-card {
  display: flex;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  padding: 12px 12px 24px;
  flex-direction: column;
  border: 1px solid rgba(244, 116, 102, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(102, 61, 45, 0.08);
}

.screenshot-poster {
  overflow: hidden;
  border-radius: 21px;
  background: var(--brand-pale);
  aspect-ratio: 1284 / 2778;
}

.screenshot-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-info {
  padding: 24px 14px 0;
}

.screenshot-info h3 {
  font-size: 21px;
  letter-spacing: -0.025em;
}

.screenshot-info p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.carousel-btn {
  position: absolute;
  z-index: 3;
  top: 42%;
  display: flex;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.carousel-btn:hover {
  color: var(--brand-strong);
  border-color: var(--line-strong);
  transform: translateY(-50%) scale(1.05);
}

.prev-btn {
  left: -24px;
}

.next-btn {
  right: -24px;
}

.carousel-dots {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(96, 104, 115, 0.22);
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease;
}

.carousel-dots .dot.active {
  width: 28px;
  background: var(--brand);
}

/* Daily rhythm */
.timeline-section {
  background: var(--surface);
}

.timeline-container {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.timeline-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.timeline-step {
  position: relative;
  min-width: 0;
  padding: 22px 24px 28px;
}

.timeline-step:not(:last-child) {
  border-right: 1px solid var(--line);
}

.timeline-time {
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.timeline-card {
  margin-top: 54px;
}

.timeline-card::before {
  position: absolute;
  top: 72px;
  left: 24px;
  width: 9px;
  height: 9px;
  border: 4px solid var(--brand-soft);
  border-radius: 50%;
  background: var(--brand);
  content: "";
  box-sizing: content-box;
}

.timeline-tag {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.25;
}

.timeline-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

/* Trust */
.trust-section {
  padding-top: 40px;
}

.trust-shell {
  display: grid;
  padding: 68px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  border: 1px solid rgba(244, 116, 102, 0.15);
  border-radius: 40px;
  background:
    radial-gradient(circle at 8% 10%, rgba(244, 116, 102, 0.12), transparent 20rem),
    linear-gradient(145deg, #fff1ec, #fff9f6 55%, #f1faf6);
}

.trust-shell .section-heading {
  margin-bottom: 0;
}

.trust-shell .section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
}

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

.trust-item {
  display: grid;
  padding: 21px;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.trust-item .trust-icon {
  grid-row: 1 / span 2;
  background: rgba(255, 255, 255, 0.86);
}

.trust-item h3 {
  align-self: end;
  font-size: 18px;
}

.trust-item p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Editorial cards */
.article-band {
  background: var(--surface);
}

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

.article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), border-color 0.22s ease, box-shadow 0.22s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.article-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-soft);
}

.article-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.article-card:hover .article-card-image {
  transform: scale(1.025);
}

.media-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--quiet);
  background:
    radial-gradient(circle at 25% 25%, rgba(244, 116, 102, 0.13), transparent 12rem),
    var(--brand-pale);
}

.slot-icon {
  color: var(--brand);
}

.article-card-body {
  padding: 25px;
}

.article-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 14px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 650;
}

.article-card-meta span:not(:last-child)::after,
.article-meta span:not(:last-child)::after {
  margin-left: 14px;
  color: rgba(96, 104, 115, 0.34);
  content: "·";
}

.article-card h3 {
  margin-top: 15px;
  font-size: 21px;
  line-height: 1.32;
}

.article-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--muted);
  background: var(--brand-pale);
  text-align: center;
}

/* Explore by goal */
.seo-hub-section {
  background:
    radial-gradient(circle at 86% 20%, rgba(157, 216, 242, 0.13), transparent 22rem),
    var(--surface-mint);
}

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

.seo-topic-card {
  display: flex;
  min-height: 280px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid rgba(72, 119, 99, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 34px rgba(67, 105, 88, 0.06);
  transition: transform 0.22s var(--ease), background 0.22s ease, border-color 0.22s ease;
}

.seo-topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 116, 102, 0.22);
  background: #ffffff;
}

.seo-topic-icon {
  color: #278763;
  background: rgba(103, 207, 165, 0.16);
}

.seo-topic-kicker {
  margin-top: auto;
  padding-top: 42px;
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-topic-card h3 {
  margin-top: 10px;
  font-size: 24px;
}

.seo-topic-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* FAQ */
.faq-section .section-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.faq-section .section-heading {
  position: sticky;
  top: 118px;
  margin-bottom: 0;
}

.faq-grid {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.faq-item[open] {
  border-color: var(--line-strong);
  background: var(--surface);
}

.faq-item summary {
  display: flex;
  min-height: 72px;
  padding: 20px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  font-weight: 620;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

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

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--brand);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item p {
  padding: 0 58px 22px 22px;
  color: var(--muted);
  line-height: 1.75;
}

/* Final CTA */
.download-cta-band {
  padding: 30px 0 112px;
}

.download-cta-shell {
  position: relative;
  display: flex;
  min-height: 380px;
  padding: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  overflow: hidden;
  border: 1px solid rgba(244, 116, 102, 0.18);
  border-radius: 42px;
  background:
    radial-gradient(circle at 84% 22%, rgba(103, 207, 165, 0.19), transparent 17rem),
    radial-gradient(circle at 64% 120%, rgba(157, 216, 242, 0.17), transparent 21rem),
    linear-gradient(135deg, #ffe5de 0%, #fff4ef 56%, #fffaf7 100%);
  box-shadow: var(--shadow-md);
}

.download-cta-shell::before {
  position: absolute;
  right: 10%;
  bottom: -170px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(244, 116, 102, 0.17);
  border-radius: 50%;
  content: "";
}

.download-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.download-cta-copy h2 {
  max-width: 12ch;
}

.download-cta-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.download-cta-visual {
  position: relative;
  z-index: 1;
  display: flex;
  width: 190px;
  height: 190px;
  flex: 0 0 190px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 24px 60px rgba(113, 69, 50, 0.12);
  transform: rotate(4deg);
}

.download-cta-icon {
  width: 124px;
  height: 124px;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(244, 116, 102, 0.2);
}

/* Footer */
.site-footer {
  padding: 64px 0 38px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.footer-shell {
  display: flex;
  width: min(var(--page-width), calc(100% - 48px));
  margin-inline: auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  font-size: 16px;
}

.footer-shell > div:first-child p {
  max-width: 460px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  max-width: 560px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.footer-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: var(--brand-strong);
}

/* Shared page hero */
.page-hero {
  padding: 164px 0 82px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 15%, rgba(103, 207, 165, 0.11), transparent 24rem),
    linear-gradient(180deg, #fff3ee 0%, var(--bg) 100%);
}

.page-hero h1 {
  max-width: 15ch;
  margin-top: 18px;
  font-size: clamp(46px, 6.2vw, 74px);
}

.page-hero p {
  max-width: 740px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.breadcrumb {
  display: flex;
  margin-bottom: 34px;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: var(--quiet);
  font-size: 13px;
}

.breadcrumb a {
  transition: color 0.18s ease;
}

.breadcrumb a:hover {
  color: var(--brand-strong);
}

.breadcrumb-separator {
  opacity: 0.44;
}

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

/* Topic pages */
.topic-hero-links {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 9px;
}

.topic-hero-links a {
  display: inline-flex;
  min-height: 44px;
  padding: 0 16px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 620;
  transition: background 0.18s ease, transform 0.18s ease;
}

.topic-hero-links a:hover {
  transform: translateY(-2px);
  background: var(--surface);
}

.topic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 68px;
}

.topic-main {
  display: grid;
  gap: 18px;
}

.topic-section,
.topic-faq-block {
  scroll-margin-top: 118px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.topic-section-kicker {
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topic-section h2,
.topic-faq-block h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3.5vw, 44px);
}

.topic-section > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.topic-section ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.topic-section li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.7;
}

.topic-section li::before {
  position: absolute;
  top: 0.72em;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.topic-faq-list {
  display: grid;
  margin-top: 26px;
  gap: 0;
}

.topic-faq-list article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.topic-faq-list h3 {
  font-size: 18px;
}

.topic-faq-list p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.75;
}

.topic-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}

.topic-aside-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.topic-aside-card h2 {
  font-size: 20px;
}

.topic-aside-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.topic-aside-card .premium-download-btn {
  width: 100%;
  margin-top: 22px;
}

.topic-related-links {
  display: grid;
  margin-top: 14px;
}

.topic-related-links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  transition: color 0.18s ease, padding 0.18s ease;
}

.topic-related-links a:hover {
  padding-left: 4px;
  color: var(--brand-strong);
}

/* Article detail */
.article-detail {
  padding: 138px 24px 112px;
}

.article-breadcrumb-shell,
.article-hero,
.article-layout {
  width: min(var(--page-width), 100%);
  margin-inline: auto;
}

.article-breadcrumb-shell {
  margin-bottom: 28px;
}

.article-hero {
  display: grid;
  min-height: 500px;
  padding: 54px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
  border: 1px solid rgba(244, 116, 102, 0.15);
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 116, 102, 0.12), transparent 20rem),
    linear-gradient(145deg, var(--brand-pale), var(--surface) 58%, var(--surface-mint));
}

.article-hero h1 {
  margin-top: 22px;
  font-size: clamp(42px, 5vw, 66px);
}

.article-hero-copy > p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.article-hero-image-wrapper,
.article-hero-image-slot {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.article-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  margin-top: 72px;
  grid-template-columns: minmax(0, 760px) 280px;
  justify-content: center;
  gap: 70px;
}

.article-body {
  min-width: 0;
  color: #41474f;
  font-size: 17px;
  line-height: 1.9;
}

.article-body :where(p, ul, ol, blockquote, table, pre) {
  margin: 0 0 24px;
}

.article-body h2 {
  margin: 52px 0 18px;
  font-size: 31px;
}

.article-body h3 {
  margin: 38px 0 14px;
  font-size: 23px;
}

.article-body a {
  color: var(--brand-strong);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(244, 116, 102, 0.35);
  text-underline-offset: 4px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.35em;
}

.article-body li + li {
  margin-top: 8px;
}

.article-body blockquote {
  padding: 22px 26px;
  border-left: 3px solid var(--brand);
  border-radius: 0 18px 18px 0;
  color: var(--muted);
  background: var(--brand-pale);
}

.article-body img,
.article-body video,
.article-body iframe {
  max-width: 100%;
  border-radius: 22px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.article-body th,
.article-body td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.article-body th {
  background: var(--brand-pale);
}

.article-aside {
  position: sticky;
  top: 112px;
  align-self: start;
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.article-aside > h2 {
  margin-bottom: 22px;
  font-size: 19px;
}

.compact-links {
  display: grid;
}

.compact-links a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.compact-links span {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.compact-links strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.5;
}

.premium-cta-card {
  position: relative;
  margin-top: 68px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(244, 116, 102, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffe6df, #fff8f5 62%, #eef9f4);
}

.cta-glow-bg {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(244, 116, 102, 0.1);
}

.cta-content-layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-eyebrow {
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cta-title {
  margin-top: 12px;
  font-size: 34px;
}

.cta-desc {
  max-width: 470px;
  margin-top: 14px;
  color: var(--muted);
}

.cta-actions {
  margin-top: 26px;
}

.cta-visual-area {
  flex: 0 0 auto;
}

.cta-floating-icon {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(244, 116, 102, 0.2);
  transform: rotate(4deg);
}

.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Reveal motion */
.reveal,
.reveal-slow {
  opacity: 1;
  transform: none;
}

.js .reveal,
.js .reveal-slow {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}

.js .reveal-slow {
  transition-duration: 0.92s;
}

.js .reveal.active,
.js .reveal-slow.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  :root {
    --section-space: 92px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 6.2vw, 66px);
  }

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

  .feature-card {
    grid-column: span 6;
  }

  .feature-card-primary {
    grid-column: span 12;
    min-height: 280px;
  }

  .screenshot-card {
    flex-basis: calc((100% - 24px) / 2);
  }

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

  .timeline-step:nth-child(2) {
    border-right: 0;
  }

  .timeline-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-shell {
    padding: 54px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .topic-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 38px;
  }

  .article-hero {
    padding: 44px;
    grid-template-columns: 1fr 340px;
    gap: 38px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 680px) 240px;
    gap: 44px;
  }
}

@media (min-width: 821px) {
  .product-section .section-heading h2 {
    font-size: 54px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .section-shell,
  .nav-shell,
  .footer-shell {
    width: min(100% - 32px, var(--page-width));
  }

  .site-header {
    padding-top: 8px;
  }

  .nav-shell {
    min-height: 58px;
    border-radius: 20px;
  }

  .nav-menu-button {
    position: relative;
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 10px;
    gap: 3px;
    overflow: hidden;
    border: 0 solid var(--line);
    border-radius: 22px;
    background: #fffcfa;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.28s var(--ease), padding 0.28s var(--ease), opacity 0.2s ease, transform 0.28s var(--ease), border-width 0.1s ease;
  }

  .nav-links.is-open {
    max-height: 440px;
    padding: 10px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open::before {
    position: fixed;
    z-index: 90;
    inset: 0;
    background: rgba(255, 250, 247, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    content: "";
  }

  .nav-links > a {
    min-height: 48px;
    justify-content: flex-start;
    padding-inline: 16px;
  }

  .nav-links .nav-download-link {
    margin: 6px 0 0;
    justify-content: center;
  }

  .nav-links .language-switch {
    justify-content: center;
  }

  .hero-section {
    padding: 126px 0 84px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lede {
    margin-inline: auto;
  }

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

  .hero-metrics {
    max-width: 520px;
    margin-inline: auto;
    text-align: left;
  }

  .product-visual {
    width: min(100%, 430px);
  }

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

  .faq-section .section-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-section .section-heading {
    position: static;
  }

  .download-cta-shell {
    padding: 52px;
  }

  .topic-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .topic-aside,
  .article-aside {
    position: static;
  }

  .article-aside {
    padding: 30px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .article-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .article-hero-image-wrapper,
  .article-hero-image-slot {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 74px;
  }

  html {
    scroll-padding-top: 90px;
  }

  .section-shell {
    width: min(100% - 32px, var(--page-width));
  }

  .section-heading h2,
  .download-cta-copy h2 {
    font-size: clamp(33px, 10vw, 44px);
  }

  .section-heading > p {
    font-size: 16px;
  }

  .split-heading {
    align-items: flex-start;
  }

  .hero-section {
    min-height: 0;
    padding-bottom: 76px;
  }

  .hero-shell {
    gap: 54px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(44px, 13vw, 58px);
    letter-spacing: -0.052em;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-actions > * {
    width: 100%;
  }

  .hero-metrics {
    margin-top: 36px;
  }

  .product-visual {
    width: min(94%, 390px);
    padding: 12px;
    border-radius: 38px;
  }

  .hero-shot-frame {
    border-radius: 28px;
  }

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

  .feature-card,
  .feature-card-primary {
    min-height: 250px;
    padding: 28px;
    grid-column: auto;
  }

  .feature-card h3,
  .feature-card:not(.feature-card-primary) h3 {
    padding-top: 42px;
    font-size: 25px;
  }

  .screenshots-container {
    width: calc(100% + 16px);
    padding-right: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screenshots-container::-webkit-scrollbar {
    display: none;
  }

  .screenshots-track {
    transform: none;
  }

  .screenshot-card {
    flex-basis: min(82vw, 330px);
    scroll-snap-align: start;
  }

  .carousel-btn {
    display: none;
  }

  .timeline-container {
    padding: 8px 22px;
    border-radius: 28px;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    display: grid;
    padding: 28px 0;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .timeline-step:last-child {
    border-bottom: 0;
  }

  .timeline-time {
    padding-top: 2px;
  }

  .timeline-card {
    margin-top: 0;
  }

  .timeline-card::before {
    display: none;
  }

  .timeline-card h3 {
    margin-top: 9px;
  }

  .trust-section {
    padding-top: 20px;
  }

  .trust-shell {
    width: min(100% - 24px, var(--page-width));
    padding: 42px 20px 20px;
    gap: 32px;
    border-radius: 32px;
  }

  .trust-item {
    padding: 18px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .trust-item .trust-icon {
    width: 44px;
    height: 44px;
  }

  .article-grid,
  .index-grid,
  .seo-topic-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    border-radius: 24px;
  }

  .seo-topic-card {
    min-height: 235px;
  }

  .faq-item summary {
    min-height: 66px;
    padding: 18px;
  }

  .faq-item p {
    padding: 0 48px 20px 18px;
  }

  .download-cta-band {
    padding: 10px 0 78px;
  }

  .download-cta-shell {
    width: min(100% - 24px, var(--page-width));
    min-height: 0;
    padding: 42px 24px 28px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 32px;
  }

  .download-cta-copy {
    text-align: center;
  }

  .download-cta-copy h2 {
    margin-inline: auto;
  }

  .download-cta-copy .hero-actions {
    margin-top: 28px;
  }

  .download-cta-visual {
    width: 128px;
    height: 128px;
    margin-inline: auto;
    flex-basis: 128px;
    border-radius: 30px;
  }

  .download-cta-icon {
    width: 88px;
    height: 88px;
    border-radius: 21px;
  }

  .footer-shell {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .page-hero {
    padding: 132px 0 66px;
  }

  .page-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .topic-section,
  .topic-faq-block {
    padding: 28px 22px;
  }

  .topic-aside {
    grid-template-columns: 1fr;
  }

  .article-detail {
    padding: 116px 12px 76px;
  }

  .article-hero {
    padding: 30px 22px 22px;
    gap: 30px;
    border-radius: 30px;
  }

  .article-hero-image-wrapper.is-placeholder {
    display: none;
  }

  .article-hero h1 {
    font-size: clamp(37px, 11vw, 52px);
  }

  .article-layout {
    margin-top: 46px;
    padding-inline: 10px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 27px;
  }

  .premium-cta-card {
    padding: 30px 22px 24px;
  }

  .cta-content-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-visual-area {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-shell,
  .nav-shell,
  .footer-shell {
    width: min(100% - 24px, var(--page-width));
  }

  .brand-link img {
    width: 36px;
    height: 36px;
  }

  .brand-link {
    font-size: 15px;
  }

  .hero-section {
    padding-top: 116px;
  }

  .hero-copy h1 {
    font-size: clamp(41px, 12.5vw, 52px);
  }

  .hero-metrics {
    padding-top: 20px;
  }

  .split-heading {
    display: block;
  }

  .split-heading .text-link {
    margin-top: 20px;
  }

  .timeline-step {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 13px;
  }

  .trust-item {
    grid-template-columns: 1fr;
  }

  .trust-item .trust-icon {
    grid-row: auto;
    margin-bottom: 14px;
  }

  .article-card-body {
    padding: 22px;
  }

  .topic-hero-links a {
    width: 100%;
    justify-content: center;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

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

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

  .reveal,
  .reveal-slow {
    opacity: 1;
    transform: none;
  }
}
