:root {
  color-scheme: light;
  --black: #070a0f;
  --ink: #11151c;
  --ink-soft: #171d26;
  --text: #f6f3ea;
  --dim: #a8b0b8;
  --line: #29313a;
  --paper: #f8f4e9;
  --paper-deep: #ebe4d2;
  --gold: #f4b63a;
  --gold-deep: #dc8e00;
  --lime: #36d982;
  --violet: #5d34d0;
  --magenta: #ff006e;
  --cyan: #00d4e7;
  --shadow: 0 16px 48px rgba(7, 10, 15, 0.2);
  --display: "Trebuchet MS", ui-rounded, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.5), transparent 24rem),
    radial-gradient(circle at 85% 24%, rgba(0, 240, 255, 0.45), transparent 30rem),
    linear-gradient(145deg, var(--violet) 0%, var(--magenta) 48%, var(--cyan) 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.65) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.65) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}

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

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
.brand,
.button,
.price {
  font-family: var(--display);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5.4vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

h2,
h3 {
  text-wrap: balance;
}

section[id] {
  scroll-margin-top: 100px;
}

p {
  line-height: 1.65;
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 14px;
  border: 0;
  border-radius: 16px;
  color: var(--text);
  background: rgba(7, 10, 15, 0.9);
  box-shadow: 0 10px 28px rgba(7, 10, 15, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  image-rendering: pixelated;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #e8e5dd;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1), background-color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  border-radius: 11px;
  font-size: 0.86rem;
}

.button-gold {
  color: var(--black);
  background: linear-gradient(180deg, #ffd568, var(--gold));
  box-shadow: 0 12px 28px rgba(244, 182, 58, 0.25), inset 0 1px rgba(255, 255, 255, 0.72);
}

.button-gold:hover {
  box-shadow: 0 16px 34px rgba(244, 182, 58, 0.36), inset 0 1px rgba(255, 255, 255, 0.72);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.button-outline {
  border-color: #6d7581;
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--ink);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: 64px 0 80px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--violet);
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(3.2rem, 4.8vw, 5.2rem);
  line-height: 0.91;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 span {
  display: block;
  color: var(--gold);
  font-size: 0.55em;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 0.22em;
}

.hero-subhead {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
  font-weight: 600;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  padding: 0;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  font-weight: 700;
  list-style: none;
}

.trust-list span {
  margin-right: 6px;
  color: var(--lime);
}

.product-window {
  position: relative;
  overflow: visible;
  margin: 0;
  border: 0;
  border-radius: 16px;
  background: var(--black);
  box-shadow: 0 28px 72px rgba(31, 8, 68, 0.38), 0 0 0 6px rgba(255, 255, 255, 0.09);
  transform: rotate(1.2deg);
}

.product-window > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 0 0 15px 15px;
  object-fit: cover;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 14px;
  border-radius: 15px 15px 0 0;
  color: var(--dim);
  background: var(--ink);
}

.browser-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4c5663;
}

.browser-bar > span:first-child {
  background: #ff5f57;
}

.browser-bar > span:nth-child(2) {
  background: var(--gold);
}

.browser-bar > span:nth-child(3) {
  background: var(--lime);
}

.browser-bar p {
  margin: 0 0 0 10px;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.72rem;
}

.product-window figcaption {
  position: absolute;
  right: 22px;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border: 0;
  border-radius: 14px;
  color: var(--text);
  background: var(--black);
  box-shadow: 0 10px 28px rgba(7, 10, 15, 0.3);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  transform: rotate(-1.2deg);
}

.product-window figcaption img,
.mascot-large,
.final-cta > img {
  image-rendering: pixelated;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 48px;
  padding: clamp(34px, 6vw, 76px);
  border: 0;
  border-radius: 16px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-bottom: 2px;
  color: #565e69;
  font-weight: 600;
}

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

.workflow-step {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: 42px;
  align-items: center;
  padding-top: 34px;
  border-top: 1px solid #d8d0bf;
}

.workflow-reverse .step-copy {
  grid-column: 2;
}

.workflow-reverse .step-media {
  grid-column: 1;
  grid-row: 1;
}

.step-copy p {
  margin-bottom: 0;
  color: #5d6570;
  font-weight: 600;
}

.step-number {
  display: inline-block;
  margin-bottom: 16px;
  color: #b0004b;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 900;
}

.step-media {
  overflow: hidden;
  min-height: 270px;
  border: 1px solid #cfc7b5;
  border-radius: 14px;
  background: #fff;
}

.image-crop img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.image-crop-search img {
  object-position: 0 45%;
}

.image-crop-filters img {
  object-position: 48% 45%;
}

.csv-preview {
  display: grid;
  align-content: center;
  padding: 24px;
  color: var(--text);
  background: var(--ink);
}

.csv-top,
.csv-row {
  display: grid;
  grid-template-columns: 0.8fr 0.7fr 1.5fr;
  gap: 12px;
}

.csv-top {
  grid-template-columns: 1fr auto;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.csv-row {
  padding: 12px 10px;
  border-top: 1px solid var(--line);
  color: #d8dce0;
  font-size: 0.78rem;
}

.csv-head {
  color: var(--dim);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-weight: 800;
}

.verdict-section,
.pricing-section {
  color: var(--text);
  background:
    radial-gradient(circle at 92% 10%, rgba(54, 217, 130, 0.16), transparent 20rem),
    var(--ink);
  border-color: rgba(255, 255, 255, 0.16);
}

.verdict-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.verdict-intro h2 {
  max-width: 740px;
}

.verdict-intro p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--dim);
  font-weight: 600;
}

.mascot-large {
  width: clamp(88px, 12vw, 144px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(54, 217, 130, 0.42));
  animation: mascot-bob 3.8s ease-in-out infinite;
}

.verdict-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line);
}

.verdict-grid article {
  min-width: 0;
  padding: 26px 20px;
  border-right: 1px solid var(--line);
}

.verdict-grid article:first-child {
  padding-left: 0;
}

.verdict-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.verdict-grid h3 {
  margin-top: 18px;
}

.verdict-grid p {
  margin-bottom: 0;
  color: var(--dim);
  font-size: 0.9rem;
}

.verdict-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}

.badge-gold {
  color: var(--gold);
}

.badge-social {
  color: #ff6fae;
}

.badge-down {
  color: #ff736c;
}

.badge-fossil {
  color: #78d9ff;
}

.badge-rescue {
  color: #c4a1ff;
}

.verdict-note {
  margin: 24px 0 0;
  color: var(--dim);
  font-size: 0.88rem;
}

.narrow-heading {
  display: block;
  max-width: 850px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

.feature-list article {
  padding: 25px 0;
  border-top: 1px solid #d8d0bf;
}

.feature-list h3,
.feature-list p {
  margin-bottom: 0;
}

.feature-list p {
  color: #5d6570;
  font-size: 0.93rem;
  font-weight: 600;
}

.pricing-heading {
  display: block;
  max-width: 820px;
}

.pricing-heading p:last-child {
  color: var(--dim);
  font-size: 1.1rem;
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: var(--ink-soft);
}

.price-featured {
  border-color: var(--gold);
  background: #1d222b;
  transform: translateY(-8px);
}

.price-name {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 22px;
  color: var(--dim);
  font-size: 0.9rem;
  font-weight: 800;
}

.price span {
  color: var(--text);
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: -0.035em;
}

.price-card ul {
  flex: 1;
  padding: 0;
  margin: 0 0 28px;
  color: #d7dbe0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 10px 0 10px 23px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "✓";
  font-weight: 900;
}

.price-card .button-outline {
  border-color: #67717e;
  color: var(--text);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 90px);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 108px;
}

.faq-heading p:last-child {
  color: #5d6570;
  font-weight: 600;
}

.faq-heading a,
.faq-list a {
  color: var(--violet);
  font-weight: 800;
}

.faq-list details {
  border-top: 1px solid #d8d0bf;
}

.faq-list details:last-child {
  border-bottom: 1px solid #d8d0bf;
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
  transition: color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list summary:hover,
.faq-list details[open] summary {
  color: var(--violet);
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 2px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #bdb5a4;
  border-radius: 50%;
  content: "+";
}

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

.faq-list details p {
  max-width: 700px;
  margin-bottom: 22px;
  color: #535b66;
  font-weight: 600;
}

.final-cta {
  width: min(1040px, calc(100% - 48px));
  margin: 84px auto;
  color: #fff;
  text-align: center;
}

.final-cta > img {
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 28px rgba(54, 217, 130, 0.45));
}

.final-cta h2 {
  max-width: 800px;
  margin-inline: auto;
}

.final-cta .button {
  margin-top: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: var(--text);
  background: rgba(7, 10, 15, 0.92);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-meta {
  display: grid;
  gap: 8px;
  color: var(--dim);
  font-size: 0.8rem;
  text-align: right;
}

.reveal {
  animation: reveal-up 560ms ease both;
}

.reveal-late {
  animation-delay: 120ms;
}

/* Content pages */
.page-hero {
  width: min(900px, calc(100% - 48px));
  margin: 80px auto 34px;
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-hero h1 span {
  display: inline;
  font-size: inherit;
  color: var(--gold);
}

.page-hero > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 600;
}

.prose {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto 48px;
  padding: clamp(30px, 6vw, 70px);
  border: 0;
  border-radius: 16px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.prose-wide {
  width: min(1080px, calc(100% - 48px));
}

.prose h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.prose h1 span {
  display: inline;
  font-size: inherit;
}

.prose h2 {
  margin-top: 54px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.prose h3 {
  margin-top: 30px;
}

.prose p,
.prose li {
  color: #444c56;
  font-weight: 600;
}

.prose a:not(.button) {
  color: var(--violet);
  font-weight: 700;
}

.prose code {
  padding: 2px 6px;
  border-radius: 5px;
  color: var(--text);
  background: var(--ink);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.88em;
}

.prose .lede {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
}

.prose .eyebrow {
  color: var(--violet);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.fact-grid article {
  padding: 20px;
  border: 1px solid #d8d0bf;
  border-radius: 14px;
  background: #fff;
}

.fact-grid h3 {
  margin-top: 0;
}

.fact-grid p:last-child {
  margin-bottom: 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid #d8d0bf;
  border-radius: 16px;
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid #ded7c7;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--ink);
  background: #eee7d8;
  font-family: var(--display);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  width: 24%;
  color: var(--ink);
  font-weight: 800;
}

.source-note {
  padding: 16px 18px;
  border: 1px solid #d8d0bf;
  border-radius: 12px;
  color: #515965;
  background: #eee7d8;
  font-size: 0.88rem;
}

.feedback-form {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.feedback-form label {
  font-family: var(--display);
  font-weight: 800;
}

.feedback-form textarea {
  min-height: 140px;
  resize: vertical;
  padding: 14px;
  border: 2px solid #a59c89;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
}

.feedback-form .button {
  justify-self: start;
  cursor: pointer;
}

.error-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 94px);
  padding: 60px 24px;
  color: #fff;
  text-align: center;
}

.error-page img {
  width: 128px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 36px rgba(54, 217, 130, 0.52));
}

.error-code {
  margin: 20px 0 6px;
  color: var(--gold);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.error-page h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6rem);
}

@keyframes reveal-up {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mascot-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 90px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .product-window {
    max-width: 900px;
  }

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

  .verdict-grid article,
  .verdict-grid article:first-child,
  .verdict-grid article:last-child {
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .verdict-grid article:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--line);
  }

  .verdict-grid article:last-child {
    border-bottom: 0;
  }

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

  .price-featured {
    transform: none;
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .section-heading,
  .workflow-step,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .workflow-reverse .step-copy,
  .workflow-reverse .step-media {
    grid-column: auto;
    grid-row: auto;
  }

  .workflow-reverse .step-copy {
    grid-row: 1;
  }

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

  .faq-heading {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section-shell,
  .final-cta,
  .site-footer,
  .page-hero,
  .prose,
  .prose-wide {
    width: min(calc(100% - 24px), 1180px);
  }

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

  .site-header .button {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .hero {
    gap: 48px;
    padding: 66px 0 74px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-list {
    display: grid;
  }

  .product-window {
    border-radius: 15px;
    transform: none;
  }

  .browser-bar {
    height: 34px;
    border-radius: 14px 14px 0 0;
  }

  .browser-bar p {
    display: none;
  }

  .product-window > img {
    aspect-ratio: 4 / 3;
    border-radius: 0 0 14px 14px;
    object-position: 12% center;
  }

  .product-window figcaption {
    right: 12px;
    bottom: -32px;
    transform: none;
  }

  .section-shell {
    margin-bottom: 22px;
    padding: 28px 20px;
    border-radius: 14px;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 34px;
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .workflow-step {
    gap: 22px;
  }

  .step-media,
  .image-crop img {
    min-height: 220px;
  }

  .csv-preview {
    padding: 14px;
  }

  .csv-row {
    grid-template-columns: 0.8fr 0.7fr 1fr;
    gap: 7px;
    padding-inline: 3px;
    font-size: 0.67rem;
  }

  .verdict-intro {
    grid-template-columns: 1fr;
  }

  .mascot-large {
    width: 88px;
  }

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

  .verdict-grid article,
  .verdict-grid article:first-child,
  .verdict-grid article:last-child,
  .verdict-grid article:nth-child(odd) {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-card {
    padding: 22px;
  }

  .site-footer {
    padding: 22px;
  }

  .page-hero {
    margin-top: 60px;
  }

  .prose {
    padding: 28px 20px;
  }

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

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

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