:root {
  --forest-950: #0d2b23;
  --forest-900: #12372d;
  --forest-800: #183d32;
  --forest-700: #245442;
  --forest-600: #2f6d56;
  --cream-50: #fffdf8;
  --cream-100: #fffcf6;
  --cream-200: #f4efe3;
  --cream-300: #e6dece;
  --ink: #16231f;
  --muted: #65716c;
  --amber: #d89b2b;
  --amber-soft: #f5e4bd;
  --sage: #dfeae3;
  --line: rgba(22, 35, 31, 0.15);
  --shadow: 0 24px 70px rgba(13, 43, 35, 0.14);
  --sans: "Inter", "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream-100);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream-100);
}

body,
button,
input,
textarea,
select {
  font-family: var(--sans);
}

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

a {
  color: inherit;
}

::selection {
  color: #fff;
  background: var(--forest-700);
}

.skipLink {
  position: fixed;
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fff;
  font-weight: 700;
  background: var(--forest-800);
  transform: translateY(-150%);
}

.skipLink:focus {
  transform: translateY(0);
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 5.25rem;
  background: rgba(255, 252, 246, 0.96);
  border-bottom: 1px solid var(--line);
}

.navShell,
.heroGrid,
.proofGrid,
.section,
.safetyGrid,
.finalCta,
.footerGrid,
.footerBottom {
  width: min(calc(100% - 3rem), 76rem);
  margin-inline: auto;
}

.navShell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  gap: 0.65rem;
  color: var(--forest-950);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
}

.navLinks {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2rem);
}

.navLinks a {
  color: #34423d;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.navLinks a:not(.navCta):hover {
  color: var(--forest-700);
}

.navLinks .navCta {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 1.1rem;
  color: #fff;
  background: var(--forest-800);
  border: 1px solid var(--forest-800);
  border-radius: 0.45rem;
}

.hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(5rem, 10vw, 8.5rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(216, 155, 43, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 155, 43, 0.08) 1px, transparent 1px),
    var(--cream-100);
  background-size: 4rem 4rem;
}

.hero::before {
  position: absolute;
  top: -12rem;
  left: -10rem;
  width: 28rem;
  height: 28rem;
  content: "";
  background: rgba(216, 155, 43, 0.14);
  border-radius: 50%;
  filter: blur(1px);
}

.heroGrid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(32rem, 1.22fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.sectionHeading h2,
.controlCopy h2,
.safetyIntro h2,
.insightCopy h2,
.finalCta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 5vw, 5rem);
  line-height: 0.98;
}

.heroLead {
  max-width: 37rem;
  margin: 1.65rem 0 0;
  color: #45534e;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.buttonPrimary {
  color: #fff;
  background: var(--forest-800);
  border-color: var(--forest-800);
}

.buttonPrimary:hover {
  background: var(--forest-950);
}

.buttonSecondary {
  color: var(--forest-900);
  background: transparent;
  border-color: rgba(24, 61, 50, 0.35);
}

.buttonSecondary:hover {
  background: #fff;
  border-color: var(--forest-800);
}

.launchNote {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.launchNote span {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 0.3rem rgba(216, 155, 43, 0.14);
}

.heroVisual {
  position: relative;
  padding: 2rem 0 2.5rem;
}

.visualAccent {
  position: absolute;
  top: -1.5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  background: var(--amber-soft);
  border-radius: 50%;
}

.productWindow {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(13, 43, 35, 0.18);
  box-shadow: var(--shadow);
}

.productWindowHero {
  transform: rotate(1.2deg);
}

.windowBar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.3rem;
  padding: 0 0.85rem;
  color: #718079;
  background: #f7f3e9;
  border-bottom: 1px solid rgba(13, 43, 35, 0.1);
}

.windowBar span {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--cream-300);
  border-radius: 50%;
}

.windowBar span:first-child {
  background: var(--amber);
}

.windowBar small {
  margin-left: auto;
  font-size: 0.66rem;
  font-weight: 600;
}

.floatingNote {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  min-width: 10.5rem;
  padding: 0.85rem 1rem;
  background: var(--cream-50);
  border: 1px solid rgba(13, 43, 35, 0.18);
  box-shadow: 0 15px 40px rgba(13, 43, 35, 0.16);
}

.floatingNote strong {
  color: var(--forest-900);
  font-size: 0.78rem;
}

.floatingNote span {
  color: var(--muted);
  font-size: 0.66rem;
}

.floatingNoteTop {
  top: 0;
  left: -1.5rem;
}

.floatingNoteBottom {
  right: -1.5rem;
  bottom: 0;
}

.proofStrip {
  background: var(--forest-800);
}

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

.proofGrid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 2rem clamp(1rem, 3vw, 2.3rem);
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

.proofNumber {
  color: #f1c46d;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.proofGrid h2 {
  margin: 0;
  font-size: 0.92rem;
}

.proofGrid p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.5;
}

.section {
  padding-block: clamp(5rem, 10vw, 8.5rem);
}

.sectionHeading {
  max-width: 48rem;
}

.sectionHeadingCentered {
  margin-inline: auto;
  text-align: center;
}

.sectionHeading h2,
.controlCopy h2,
.safetyIntro h2,
.insightCopy h2,
.finalCta h2 {
  color: var(--forest-950);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.sectionHeading > p:last-child,
.controlCopy > p,
.safetyIntro > p:last-child,
.insightCopy > p {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.workflow {
  padding-bottom: clamp(6rem, 12vw, 10rem);
}

.workflowSteps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  margin: 4.5rem 0 0;
  padding: 0;
  list-style: none;
}

.workflowSteps::before {
  position: absolute;
  top: 3.4rem;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: var(--line);
}

.workflowSteps li {
  position: relative;
  text-align: center;
}

.stepIndex {
  color: var(--amber);
  font-family: var(--serif);
  font-style: italic;
}

.stepMarker {
  position: relative;
  z-index: 1;
  width: 0.9rem;
  height: 0.9rem;
  margin: 1.3rem auto 1.8rem;
  background: var(--forest-800);
  border: 0.25rem solid var(--cream-100);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--forest-800);
}

.workflowSteps h3 {
  margin: 0;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.workflowSteps p {
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.featureSection {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100% - 76rem) / 2));
  background: var(--cream-200);
}

.featureShowcase {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(18rem, 0.72fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 3.5rem;
}

.screenshotPanel img,
.controlVisual img,
.insightVisual img {
  width: 100%;
  height: auto;
}

.screenshotPanel figcaption {
  padding: 0.9rem 1.1rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
  border-top: 1px solid var(--line);
}

.featureList {
  display: grid;
}

.featureList article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.featureList article:first-child {
  padding-top: 0;
}

.featureIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--forest-800);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--amber-soft);
  border-radius: 50%;
}

.featureList h3 {
  margin: 0;
  color: var(--forest-950);
  font-size: 0.98rem;
}

.featureList p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.controlGrid,
.insightGrid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.controlCopy h2,
.insightCopy h2 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.checkList {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 0;
  padding: 0;
  color: #3f4d48;
  list-style: none;
}

.checkList li {
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.5;
}

.checkList li::before {
  position: absolute;
  top: 0.05rem;
  left: 0;
  color: var(--forest-700);
  font-weight: 700;
  content: "✓";
}

.safety {
  padding-block: clamp(5rem, 10vw, 8rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 155, 43, 0.08), transparent 46%),
    var(--forest-950);
}

.safetyGrid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.eyebrowLight {
  color: #f1c46d;
}

.safetyIntro h2,
.finalCta h2 {
  color: #fff;
}

.safetyIntro > p:last-child {
  color: rgba(255, 255, 255, 0.69);
}

.safetyRules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.safetyRules article {
  min-height: 12rem;
  padding: 1.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.safetyRules article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  color: #f1c46d;
  font-family: var(--serif);
  font-weight: 700;
  border: 1px solid rgba(241, 196, 109, 0.5);
  border-radius: 50%;
}

.safetyRules h3 {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}

.safetyRules p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  line-height: 1.55;
}

.insightSection {
  padding-block: clamp(6rem, 12vw, 10rem);
}

.insightGrid {
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
}

.privacyNote {
  margin-top: 2rem;
  padding: 1.2rem 0 0 1.2rem;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--amber);
}

.privacyNote strong {
  color: var(--forest-900);
  font-size: 0.85rem;
}

.privacyNote p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.faqSection {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100% - 76rem) / 2));
  background: var(--cream-200);
}

.faqGrid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faqSection .sectionHeading {
  position: sticky;
  top: 7rem;
}

.faqSection .sectionHeading a {
  color: var(--forest-700);
  font-weight: 600;
  text-underline-offset: 0.2em;
}

.faqList {
  border-top: 1px solid var(--line);
}

.faqList details {
  border-bottom: 1px solid var(--line);
}

.faqList summary {
  position: relative;
  min-height: 4.8rem;
  padding: 1.4rem 3rem 1.4rem 0;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.faqList summary::after {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  color: var(--forest-700);
  font-family: var(--sans);
  font-size: 1.4rem;
  content: "+";
  transform: translateY(-50%);
}

.faqList details[open] summary::after {
  content: "−";
}

.faqList details p {
  max-width: 43rem;
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.resourceSection {
  padding-top: clamp(5rem, 10vw, 8rem);
}

.resourceGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.resourceGrid article {
  padding: 1.5rem;
  background: var(--cream-50);
  border: 1px solid var(--line);
}

.resourceGrid h3 {
  margin: 0;
  color: var(--forest-950);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.resourceGrid p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.resourceGrid a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 1rem;
  color: var(--forest-700);
  font-size: 0.84rem;
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.resourceButton {
  margin-top: 1.25rem;
}

.finalCta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-block: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
  background: var(--forest-800);
  box-shadow: 0 25px 70px rgba(13, 43, 35, 0.18);
}

.finalCta h2 {
  max-width: 16ch;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
}

.buttonCream {
  flex: 0 0 auto;
  color: var(--forest-950);
  background: var(--cream-100);
  border-color: var(--cream-100);
}

.buttonCream:hover {
  background: var(--amber-soft);
}

.siteFooter {
  padding: clamp(4rem, 8vw, 6rem) 0 1.5rem;
  color: #fff;
  background: var(--forest-950);
}

.footerGrid {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) 10rem 10rem;
  gap: clamp(2rem, 7vw, 7rem);
  padding-bottom: 4rem;
}

.brandLight {
  color: #fff;
}

.footerBrand p {
  max-width: 24rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  line-height: 1.6;
}

.footerNav {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.footerNav strong {
  margin-bottom: 0.35rem;
  color: #f1c46d;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footerNav a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  text-decoration: none;
}

.footerNav a:hover {
  color: #fff;
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
  border-radius: 0.15rem;
}

.notFound {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.notFound > div {
  max-width: 40rem;
}

.notFound img {
  width: 4rem;
  margin: 0 auto 1.5rem;
}

.notFound h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.95;
}

.notFound > div > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.notFound .button {
  margin-top: 1rem;
}

@media (max-width: 64rem) {
  .heroGrid {
    grid-template-columns: 1fr;
  }

  .heroCopy {
    max-width: 44rem;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .heroVisual {
    width: min(100%, 54rem);
    margin-inline: auto;
  }

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

  .featureList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .featureList article:nth-child(-n + 2) {
    padding-top: 0;
  }

  .controlGrid,
  .insightGrid {
    grid-template-columns: 1fr;
  }

  .controlCopy,
  .insightCopy {
    max-width: 42rem;
  }

  .insightVisual {
    order: 2;
  }

  .insightCopy {
    order: 1;
  }

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

@media (max-width: 52rem) {
  .navShell,
  .heroGrid,
  .proofGrid,
  .section,
  .safetyGrid,
  .finalCta,
  .footerGrid,
  .footerBottom {
    width: min(calc(100% - 2rem), 76rem);
  }

  .navLinks > a:not(.navCta) {
    display: none;
  }

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

  .proofGrid article,
  .proofGrid article:first-child,
  .proofGrid article:last-child {
    padding: 1.4rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .workflowSteps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3rem;
  }

  .workflowSteps::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0.42rem;
    width: 1px;
    height: auto;
  }

  .workflowSteps li {
    display: grid;
    grid-template-columns: 1.1rem 1fr;
    column-gap: 1.25rem;
    padding-bottom: 2.5rem;
    text-align: left;
  }

  .workflowSteps li:last-child {
    padding-bottom: 0;
  }

  .stepIndex {
    grid-column: 2;
  }

  .stepMarker {
    grid-row: 1 / span 3;
    grid-column: 1;
    margin: 0.1rem 0 0;
  }

  .workflowSteps h3,
  .workflowSteps p {
    grid-column: 2;
  }

  .workflowSteps h3 {
    margin-top: 0.6rem;
  }

  .workflowSteps p {
    margin-left: 0;
  }

  .featureSection,
  .faqSection {
    padding-inline: 1rem;
  }

  .safetyGrid,
  .faqGrid {
    grid-template-columns: 1fr;
  }

  .faqSection .sectionHeading {
    position: static;
  }

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

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

  .footerBrand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 34rem) {
  .siteHeader,
  .navShell {
    min-height: 4.75rem;
  }

  .brand img {
    width: 2rem;
    height: 2rem;
  }

  .navLinks .navCta {
    min-height: 2.75rem;
    padding-inline: 0.85rem;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 3.75rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 4.4rem);
  }

  .heroActions,
  .heroActions .button {
    width: 100%;
  }

  .heroVisual {
    padding-top: 1rem;
  }

  .floatingNote {
    display: none;
  }

  .visualAccent {
    top: -2rem;
    right: -8rem;
  }

  .productWindowHero {
    transform: none;
  }

  .featureList,
  .safetyRules,
  .resourceGrid {
    grid-template-columns: 1fr;
  }

  .featureList article:nth-child(2) {
    padding-top: 1.3rem;
  }

  .safetyRules article {
    min-height: auto;
  }

  .finalCta {
    width: calc(100% - 2rem);
    padding: 1.5rem;
  }

  .buttonCream {
    width: 100%;
  }

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

  .footerBrand {
    grid-column: auto;
  }

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

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

  .button,
  .navCta {
    transition: none;
  }
}
