:root {
  color-scheme: light;
  --paper: #f5f0e6;
  --paper-deep: #e9e0d1;
  --cream: #fffaf0;
  --ink: #18221d;
  --muted: #68736c;
  --green: #214d3b;
  --green-dark: #143327;
  --green-soft: #dce8df;
  --gold: #e0ad45;
  --gold-pale: #f2dca8;
  --rust: #a24f35;
  --line: rgba(24, 34, 29, .14);
  --line-light: rgba(255, 255, 255, .18);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
  --shadow-soft: 0 24px 70px rgba(32, 52, 42, .12);
  --shadow-tight: 0 14px 32px rgba(22, 45, 34, .16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 2%, rgba(224, 173, 69, .14), transparent 25rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { color: inherit; font: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-shell,
.site-header__inner,
.site-footer__inner,
.test-header,
.test-shell,
.test-footer {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  background: rgba(245, 240, 230, .78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(24, 34, 29, .06);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  font-size: .95rem;
  font-weight: 750;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(25, 38, 32, .14);
}

.site-nav { display: flex; gap: clamp(22px, 3vw, 42px); }

.site-nav a,
.site-footer nav a,
.test-footer a {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.site-header .button { justify-self: end; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.985); }

.button--small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: .8rem;
}

.button--dark {
  background: var(--green-dark);
  box-shadow: 0 10px 26px rgba(20, 51, 39, .17);
  color: white;
}

.button--dark:hover {
  background: var(--green);
  box-shadow: 0 14px 30px rgba(20, 51, 39, .22);
}

.button--gold {
  background: var(--gold);
  box-shadow: 0 13px 30px rgba(132, 91, 18, .18);
  color: #1e271f;
}

.button--gold:hover {
  background: #e9ba58;
  box-shadow: 0 17px 34px rgba(132, 91, 18, .24);
}

.button--cream { background: var(--cream); color: var(--green-dark); }
.button--cream:hover { box-shadow: 0 15px 34px rgba(0, 0, 0, .17); }

.button--outline {
  border-color: var(--line);
  background: transparent;
  color: var(--green-dark);
}

.button--outline:hover { border-color: var(--green); background: rgba(33, 77, 59, .05); }

.button--store { min-height: 62px; padding: 8px 25px 9px 20px; }
.button--store svg { width: 25px; height: 25px; fill: currentColor; }
.button--store span { display: grid; gap: 1px; font-size: 1.08rem; }
.button--store small { font-size: .62rem; font-weight: 700; letter-spacing: .025em; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span { width: 24px; height: 2px; background: var(--gold); }
.eyebrow--light { color: var(--gold-pale); }

.hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  gap: clamp(50px, 7vw, 104px);
  align-items: center;
  padding-block: 74px 110px;
}

.hero__copy { position: relative; z-index: 2; }

.hero h1,
.section-heading h2,
.workflow h2,
.setup-callout h2,
.final-cta h2,
.test-hero h1,
.setup-panel h2,
.troubleshooting h2,
.support-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .98;
  text-wrap: balance;
}

.hero h1 { font-size: clamp(4rem, 6.6vw, 6.9rem); }
.hero h1 em { color: var(--green); font-weight: 500; }

.hero__lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--green);
  font-size: .85rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateY(3px); }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 650;
  list-style: none;
}

.hero__proof li { display: flex; align-items: center; gap: 7px; }
.hero__proof li > span { color: var(--green); font-weight: 900; }

.hero__visual { position: relative; padding: 28px 0 42px 32px; }

.hero__visual::before {
  position: absolute;
  content: "";
  inset: -20% -32% -18% 4%;
  z-index: -1;
  border-radius: 54% 46% 38% 62% / 43% 35% 65% 57%;
  background: rgba(33, 77, 59, .11);
  transform: rotate(-4deg);
}

.hero__visual::after {
  position: absolute;
  content: "";
  width: 170px;
  height: 170px;
  right: -80px;
  bottom: -34px;
  z-index: -2;
  border: 1px solid rgba(162, 79, 53, .25);
  border-radius: 50%;
}

.recipe-window {
  overflow: hidden;
  border: 1px solid rgba(24, 34, 29, .12);
  border-radius: 24px 24px 12px 12px;
  background: var(--cream);
  box-shadow: 0 42px 90px rgba(25, 47, 37, .18);
  transform: rotate(1.4deg);
}

.recipe-window__bar {
  display: grid;
  height: 53px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  background: #ece6dc;
}

.traffic-lights { display: flex; gap: 7px; }
.traffic-lights i { width: 9px; height: 9px; border-radius: 50%; background: #ce6e55; }
.traffic-lights i:nth-child(2) { background: #d6a541; }
.traffic-lights i:nth-child(3) { background: #6e9b76; }
.address { padding: 5px 30px; border: 1px solid rgba(24, 34, 29, .08); border-radius: 8px; background: rgba(255,255,255,.55); color: #868b87; font-size: .58rem; }
.window-mark { justify-self: end; color: #777f79; }

.recipe-window__content { min-height: 520px; padding: clamp(36px, 6vw, 70px); }
.mini-kicker { margin: 0 0 10px; color: var(--green); font-size: .64rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.recipe-window h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 4.1vw, 4.2rem); font-weight: 500; letter-spacing: -.045em; line-height: .99; }
.mini-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.mini-meta span { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .6rem; }
.mini-recipe { display: grid; grid-template-columns: 1fr .8fr; gap: 38px; margin-top: 44px; padding-top: 25px; border-top: 1px solid var(--line); }
.mini-recipe > div > p { margin: 0 0 12px; font-family: var(--serif); font-size: 1.25rem; }
.mini-recipe ul { margin: 0; padding: 0; list-style: none; }
.mini-recipe li { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid rgba(24,34,29,.07); color: var(--muted); font-size: .67rem; }
.mini-recipe li i { width: 11px; height: 11px; flex: 0 0 auto; border: 1px solid #879089; border-radius: 50%; }
.mini-step { display: flex; align-items: flex-start; gap: 12px; }
.mini-step b { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: .56rem; }
.mini-step p { margin: 3px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.55; }

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 186px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 14px;
  background: rgba(255, 252, 245, .9);
  box-shadow: var(--shadow-tight);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.floating-note > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: .78rem; font-weight: 900; }
.floating-note div { display: grid; }
.floating-note strong { font-size: .72rem; }
.floating-note small { margin-top: 1px; color: var(--muted); font-size: .59rem; }
.floating-note--top { top: -4px; right: -15px; }
.floating-note--bottom { bottom: 0; left: -8px; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 240, .42);
}

.trust-strip > div { display: grid; gap: 2px; padding: 23px clamp(24px, 5vw, 72px); border-right: 1px solid var(--line); text-align: center; }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong { color: var(--green-dark); font-family: var(--serif); font-size: 1rem; font-weight: 600; }
.trust-strip span { color: var(--muted); font-size: .68rem; }

.transformation { position: relative; padding: 140px 0 155px; background: var(--green-dark); color: white; }
.transformation::before { position: absolute; content: ""; inset: 0; opacity: .35; background-image: radial-gradient(rgba(255,255,255,.1) .75px, transparent .75px); background-size: 12px 12px; mask-image: linear-gradient(90deg, black, transparent 70%); }
.transformation .section-shell { position: relative; }
.section-heading { max-width: 690px; }
.section-heading h2, .workflow h2, .setup-callout h2, .final-cta h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.section-heading > p:last-child { max-width: 610px; margin: 25px 0 0; color: rgba(255,255,255,.66); font-size: 1rem; line-height: 1.75; }
.transformation .eyebrow { color: var(--gold-pale); }

.comparison { display: grid; grid-template-columns: 1fr 62px 1fr; align-items: center; margin-top: 66px; }
.comparison-card { min-width: 0; }
.comparison-card__label { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 13px; }
.comparison-card__label span { font-family: var(--serif); font-size: 1.4rem; }
.comparison-card__label small { color: rgba(255,255,255,.53); font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.media-frame { overflow: hidden; aspect-ratio: 1.62; border: 1px solid var(--line-light); background: #0c1712; box-shadow: 0 25px 55px rgba(0, 0, 0, .26); }
.media-frame img,
.media-frame video { display: block; width: 100%; height: 100%; object-fit: cover; }
.comparison-card--before .media-frame { opacity: .64; filter: saturate(.65); transform: rotate(-1.1deg); }
.comparison-card--after .media-frame { transform: rotate(1deg); }
.comparison-arrow { display: grid; width: 46px; height: 46px; place-items: center; justify-self: center; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; color: var(--gold); font-size: 1.1rem; }

.workflow { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); padding-block: 145px; }
.workflow__intro { align-self: start; position: sticky; top: 125px; }
.workflow__intro > p:last-child { max-width: 380px; margin: 24px 0 0; color: var(--muted); }
.workflow__steps { margin: 0; padding: 0; list-style: none; }
.workflow__steps li { display: grid; grid-template-columns: 55px 1fr; gap: 23px; padding: 30px 0 34px; border-top: 1px solid var(--line); }
.workflow__steps li:last-child { border-bottom: 1px solid var(--line); }
.workflow__steps > li > span { color: var(--rust); font-family: var(--serif); font-size: .84rem; font-style: italic; }
.workflow__steps h3 { margin: -6px 0 9px; font-family: var(--serif); font-size: 1.75rem; font-weight: 600; letter-spacing: -.025em; }
.workflow__steps p { margin: 0; color: var(--muted); line-height: 1.7; }

.features { padding: 135px 0 150px; border-block: 1px solid var(--line); background: #ebe3d6; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 66px; }
.feature { display: flex; min-height: 340px; flex-direction: column; justify-content: space-between; padding: 32px; border: 1px solid var(--line); background: rgba(255, 250, 240, .72); }
.feature--wide { grid-column: span 2; }
.feature__icon { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green); font-size: 1.15rem; }
.feature__number { margin: 0 0 12px; color: var(--rust); font-family: var(--serif); font-size: .76rem; font-style: italic; }
.feature h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 2.3vw, 2.5rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
.feature p:last-child { max-width: 540px; margin: 14px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.7; }
.feature--dark { border-color: var(--green-dark); background: var(--green-dark); color: white; }
.feature--dark .feature__icon { border-color: var(--line-light); color: var(--gold); }
.feature--dark p:last-child { color: rgba(255,255,255,.65); }
.feature--dark .feature__number { color: var(--gold-pale); }
.feature--gold { background: var(--gold-pale); }

.setup-callout { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-block: 110px; padding: clamp(40px, 7vw, 80px); background: var(--green); color: white; box-shadow: var(--shadow-soft); }
.setup-callout > div > p:last-child { max-width: 580px; margin: 22px 0 0; color: rgba(255,255,255,.69); }
.setup-callout .button { flex: 0 0 auto; }

.final-cta { padding: 135px 0; text-align: center; }
.final-cta img { margin: 0 auto 30px; border-radius: 20px; box-shadow: var(--shadow-tight); }
.final-cta .eyebrow { justify-content: center; }
.final-cta > div > p:not(.eyebrow) { margin: 22px 0 30px; color: var(--muted); font-family: var(--serif); font-size: 1.15rem; }

.site-footer { padding: 30px 0; border-top: 1px solid var(--line); }
.site-footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.brand--footer img { width: 34px; height: 34px; border-radius: 9px; }
.site-footer p { color: var(--muted); font-size: .7rem; text-align: center; }
.site-footer nav { display: flex; justify-self: end; gap: 24px; }

/* Extension test page */
.test-page { background: var(--paper); }
.test-page::before { position: fixed; content: ""; width: 420px; height: 420px; top: -220px; right: -180px; z-index: -1; border: 1px solid rgba(33,77,59,.16); border-radius: 48% 52% 62% 38% / 55% 37% 63% 45%; transform: rotate(22deg); }
.test-header { display: flex; align-items: center; justify-content: space-between; padding-block: 22px; }
.test-header__label { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.test-shell { max-width: 960px; padding-block: 52px 80px; }
.test-hero { position: relative; padding: clamp(38px, 7vw, 72px); overflow: hidden; border: 1px solid var(--line); background: var(--cream); box-shadow: var(--shadow-soft); }
.test-hero::after { position: absolute; content: ""; width: 220px; height: 220px; right: -110px; bottom: -110px; border-radius: 50%; background: var(--green-soft); }
.test-hero__status { position: absolute; top: clamp(32px, 6vw, 60px); right: clamp(32px, 6vw, 60px); display: grid; width: 62px; height: 62px; place-items: center; border: 1px solid rgba(162,79,53,.24); border-radius: 50%; background: #f3ded2; color: var(--rust); font-family: var(--serif); font-size: 1.5rem; }
.test-hero h1 { max-width: 700px; padding-right: 84px; font-size: clamp(3.2rem, 7vw, 6.3rem); }
.test-hero__lede { max-width: 690px; margin: 26px 0 0; color: var(--muted); font-size: 1.03rem; line-height: 1.75; }
.test-hero__actions { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.test-note { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; margin: 26px 0 0; color: var(--muted); font-size: .74rem; }
.test-note span { color: var(--green); font-weight: 900; }

.setup-panel { margin-top: 22px; padding: clamp(34px, 6vw, 62px); border: 1px solid var(--line); background: rgba(255,250,240,.45); }
.setup-panel__heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.setup-panel h2, .troubleshooting h2, .support-card h2 { font-size: clamp(2.2rem, 4.8vw, 4rem); }
.platform-switch { display: flex; flex: 0 0 auto; gap: 3px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; }
.platform-switch button { min-height: 38px; padding: 0 14px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font-size: .7rem; font-weight: 750; }
.platform-switch button[aria-selected="true"] { background: var(--green-dark); color: white; }
.setup-list { margin: 12px 0 0; padding: 0; list-style: none; }
.setup-list li { display: grid; grid-template-columns: 45px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.setup-list li:last-child { border-bottom: 0; }
.setup-list li > span { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-family: var(--serif); font-style: italic; font-weight: 700; }
.setup-list strong { display: block; margin: -2px 0 3px; font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.setup-list p { margin: 0; color: var(--muted); font-size: .88rem; }
.setup-list b { color: var(--ink); font-weight: 750; }

.troubleshooting { padding-block: 100px 70px; }
.troubleshooting__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; border-block: 1px solid var(--line); }
.troubleshooting article { min-height: 210px; padding: 27px; border-right: 1px solid var(--line); }
.troubleshooting article:last-child { border-right: 0; }
.troubleshooting article > span { color: var(--rust); font-family: var(--serif); font-size: .75rem; font-style: italic; }
.troubleshooting h3 { margin: 35px 0 8px; font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.troubleshooting article p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }

.support-card { display: flex; align-items: end; justify-content: space-between; gap: 50px; padding: clamp(36px, 6vw, 62px); background: var(--green-dark); color: white; }
.support-card > div > p:last-child { max-width: 620px; margin: 20px 0 0; color: rgba(255,255,255,.65); }
.support-card .button { flex: 0 0 auto; }
.test-footer { display: flex; justify-content: center; gap: 13px; padding-block: 24px 38px; color: var(--muted); }

[hidden] { display: none !important; }

.reveal { animation: reveal-in 720ms cubic-bezier(.2,.72,.2,1) both; }
.reveal--delay { animation-delay: 110ms; }

.js .reveal {
  opacity: 0;
  animation: none;
}

.js .reveal.is-visible {
  animation: reveal-in 720ms cubic-bezier(.2,.72,.2,1) both;
}

.js .reveal--delay.is-visible { animation-delay: 110ms; }

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 70px 100px; }
  .hero__copy { max-width: 720px; }
  .hero__visual { width: min(100%, 700px); margin: 5px auto 0; }
  .workflow { gap: 65px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature--wide { grid-column: span 1; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer p { display: none; }
  .setup-panel__heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header__inner,
  .site-footer__inner,
  .test-header,
  .test-shell,
  .test-footer { width: min(100% - 32px, 1180px); }
  .site-header { padding-block: 11px; }
  .brand span { font-size: .88rem; }
  .site-header .button { min-height: 39px; padding-inline: 15px; }
  .hero { gap: 45px; padding-block: 58px 82px; }
  .hero h1 { font-size: clamp(3.45rem, 16vw, 5.2rem); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero__proof { align-items: flex-start; flex-direction: column; }
  .hero__visual { padding: 10px 0 28px; }
  .hero__visual::before { inset: -10% -40% -14% -5%; }
  .floating-note--top { right: -8px; top: -18px; }
  .floating-note--bottom { left: -8px; bottom: -4px; }
  .recipe-window__content { min-height: 450px; padding: 40px 30px; }
  .mini-recipe { grid-template-columns: 1fr; gap: 24px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .transformation { padding-block: 100px; }
  .comparison { grid-template-columns: 1fr; gap: 32px; }
  .comparison-arrow { transform: rotate(90deg); }
  .workflow { grid-template-columns: 1fr; padding-block: 100px; }
  .workflow__intro { position: static; }
  .features { padding-block: 100px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .feature { min-height: 300px; }
  .setup-callout { align-items: flex-start; flex-direction: column; margin-block: 70px; }
  .final-cta { padding-block: 95px; }
  .site-footer__inner { grid-template-columns: 1fr; justify-items: center; }
  .brand--footer { justify-self: center; }
  .site-footer nav { justify-self: center; }
  .test-header { padding-block: 16px; }
  .test-shell { padding-block: 35px 60px; }
  .test-hero__status { position: static; width: 48px; height: 48px; margin-bottom: 24px; }
  .test-hero h1 { padding-right: 0; }
  .test-hero__actions { align-items: stretch; flex-direction: column; }
  .test-hero__actions .button { width: 100%; }
  .troubleshooting { padding-block: 75px 55px; }
  .troubleshooting__grid { grid-template-columns: 1fr; }
  .troubleshooting article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .troubleshooting article:last-child { border-bottom: 0; }
  .troubleshooting h3 { margin-top: 20px; }
  .support-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .site-header .brand span { display: none; }
  .hero h1 { font-size: 3.4rem; }
  .floating-note { min-width: 165px; padding: 10px 12px; }
  .floating-note strong { font-size: .66rem; }
  .floating-note small { font-size: .55rem; }
  .address { padding-inline: 15px; }
  .setup-panel { padding-inline: 24px; }
  .platform-switch { width: 100%; }
  .platform-switch button { flex: 1; padding-inline: 8px; }
  .test-footer { flex-wrap: wrap; }
}

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

@media print {
  .site-header, .site-footer, .hero__visual, .trust-strip, .final-cta, .test-header, .test-footer, .test-hero__actions { display: none; }
  body { background: white; color: black; }
  .section-shell, .test-shell { width: 100%; }
  .test-hero, .setup-panel, .support-card { border: 1px solid #aaa; background: white; box-shadow: none; color: black; }
}
