:root {
  --ink: #17251b;
  --muted: #647067;
  --forest: #173f2c;
  --forest-deep: #0d2e20;
  --leaf: #9fc978;
  --lime: #d6edb5;
  --cream: #f4f7f1;
  --paper: #ffffff;
  --line: rgba(23, 63, 44, 0.13);
  --shadow: 0 28px 80px rgba(28, 57, 39, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 63, 44, 0.1);
  border-radius: 12px;
  background: white;
  box-shadow: 0 5px 14px rgba(23, 63, 44, 0.1);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 80px;
}

.desktop-nav a {
  color: #4e5c52;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--forest);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 19px;
  color: white;
  border-radius: 12px;
  background: var(--forest);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(23, 63, 44, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--forest-deep);
}

.header-cta svg,
.text-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 730px;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 40px;
  padding: 52px 0 88px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -360px;
  width: 870px;
  height: 870px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 227, 175, 0.6) 0, rgba(225, 238, 210, 0.33) 48%, transparent 70%);
  content: "";
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #4d7358;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: #dceeca;
  color: var(--forest);
  font-size: 11px;
}

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

h1,
.section-heading h2,
.how h2,
.download h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -3.7px;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(54px, 5.5vw, 78px);
  font-weight: 700;
  line-height: 1.03;
}

.hero h1 span,
.section-heading h2 span,
.how h2 span {
  color: #789c65;
  font-weight: 500;
}

.hero-copy > p {
  max-width: 515px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.play-badge {
  display: inline-flex;
  min-width: 204px;
  align-items: center;
  gap: 12px;
  padding: 10px 17px 10px 14px;
  color: white;
  border: 1px solid #0b0b0b;
  border-radius: 12px;
  background: #111;
  box-shadow: 0 13px 32px rgba(23, 37, 27, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(23, 37, 27, 0.24);
}

.play-icon {
  width: 29px;
  height: 33px;
  flex: 0 0 auto;
}

.play-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.play-badge small {
  margin-bottom: 5px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.play-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  color: #68746a;
  font-size: 12px;
}

.trust-note strong {
  color: var(--ink);
}

.trust-avatars {
  display: flex;
  padding-left: 8px;
}

.trust-avatars span {
  display: grid;
  width: 31px;
  height: 31px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: #d9e8d0;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d9eac8, #a7ca86);
  box-shadow: inset -40px -30px 70px rgba(59, 96, 56, 0.11);
  content: "";
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23, 63, 44, 0.14);
  border-radius: 50%;
}

.orbit-one {
  width: 595px;
  height: 595px;
}

.orbit-two {
  width: 675px;
  height: 675px;
  border-style: dashed;
  opacity: 0.62;
}

.phone {
  position: relative;
  z-index: 4;
  width: 286px;
  padding: 9px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 43px;
  background: #19251e;
  box-shadow: 0 48px 90px rgba(22, 56, 36, 0.33), 0 8px 20px rgba(22, 56, 36, 0.17);
  transform: rotate(2deg);
}

.phone::after {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 74px;
  height: 20px;
  border-radius: 20px;
  background: #19251e;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 582px;
  overflow: hidden;
  padding: 15px 15px 11px;
  border-radius: 34px;
  background: #f7f8f4;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  color: #23372a;
  font-size: 8px;
  font-weight: 800;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.app-logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--forest);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.app-logo img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  object-fit: cover;
}

.profile-dot {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: #678a5d;
  font-size: 9px;
}

.phone-greeting {
  margin: 19px 0 3px;
  color: #7e897f;
  font-size: 9px;
}

.phone-screen h2 {
  margin-bottom: 13px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.8px;
  line-height: 1.26;
}

.plant-photo {
  position: relative;
  height: 255px;
  overflow: hidden;
  border-radius: 21px;
  background:
    radial-gradient(circle at 60% 28%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(145deg, #dae5cb, #b9d19f);
}

.plant-photo::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.15) 50%, transparent 50.5%);
  content: "";
}

.plant-art {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 242px;
  transform: translateX(-50%);
  filter: drop-shadow(0 15px 12px rgba(43, 69, 37, 0.21));
}

.scan-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(255, 255, 255, 0.92);
}

.scan-corner.tl { top: 16px; left: 16px; border-top: 2px solid; border-left: 2px solid; border-radius: 7px 0 0; }
.scan-corner.tr { top: 16px; right: 16px; border-top: 2px solid; border-right: 2px solid; border-radius: 0 7px 0 0; }
.scan-corner.bl { bottom: 16px; left: 16px; border-bottom: 2px solid; border-left: 2px solid; border-radius: 0 0 0 7px; }
.scan-corner.br { right: 16px; bottom: 16px; border-right: 2px solid; border-bottom: 2px solid; border-radius: 0 0 7px; }

.phone-scan {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
  padding: 10px;
  color: white;
  border: 0;
  border-radius: 12px;
  background: var(--forest);
  font-size: 10px;
  font-weight: 700;
}

.phone-tabs {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  margin-top: 10px;
  color: #9ca39d;
}

.phone-tabs span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 15px;
}

.phone-tabs small {
  font-size: 6px;
}

.phone-tabs .active {
  color: var(--forest);
}

.floating-card {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 40px rgba(43, 73, 48, 0.15);
  backdrop-filter: blur(13px);
}

.floating-card span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  margin-bottom: 2px;
  color: #788379;
  font-size: 8px;
}

.floating-card strong {
  color: var(--forest);
  font-size: 13px;
}

.scan-card {
  top: 132px;
  right: 17px;
}

.health-card {
  bottom: 125px;
  left: 12px;
}

.mini-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--forest);
  border-radius: 9px;
  background: #dcedcc;
  font-size: 18px;
}

.pulse-dot {
  width: 11px;
  height: 11px;
  border: 3px solid #cce5b9;
  border-radius: 50%;
  background: #6ba558;
  box-shadow: 0 0 0 5px rgba(107, 165, 88, 0.15);
}

.section {
  padding: 112px 0;
}

.features {
  position: relative;
}

.features::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 50%;
  width: 100vw;
  height: 100%;
  background: #fff;
  content: "";
  transform: translateX(50%);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  margin-bottom: 56px;
}

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

.section-heading h2,
.how h2,
.download h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 65px);
  line-height: 1.07;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 4px auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 325px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #f6f8f3;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(37, 64, 45, 0.11);
}

.feature-card h3 {
  margin: 33px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -1px;
}

.feature-card p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--forest);
  border-radius: 14px;
  background: #dceccb;
  font-size: 23px;
}

.card-number {
  position: absolute;
  top: 34px;
  right: 34px;
  color: #9aa49b;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.card-large {
  grid-column: 1 / -1;
  display: grid;
  min-height: 350px;
  grid-template-columns: 0.7fr 1.1fr 1fr;
  align-items: center;
  gap: 30px;
  background: #eff4e9;
}

.card-large .feature-icon {
  width: 84px;
  height: 84px;
  border-radius: 23px;
  font-size: 40px;
}

.card-large h3 {
  margin-top: 0;
}

.card-large .card-number {
  left: 32px;
  top: 28px;
  right: auto;
}

.specimen {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 21px;
  background: white;
  box-shadow: 0 18px 44px rgba(40, 72, 48, 0.1);
}

.specimen-leaf {
  color: #6f9d5c;
  font-size: 72px;
  filter: drop-shadow(0 9px 8px rgba(45, 83, 49, 0.15));
}

.specimen-info {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.specimen-info span {
  color: #7c8a80;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specimen-info strong {
  margin: 4px 0;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.specimen-info small {
  color: #6f8f64;
  font-size: 9px;
}

.feature-dark {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
}

.feature-dark .feature-icon {
  color: #dff3c5;
  background: rgba(223, 243, 197, 0.14);
}

.feature-dark .card-number,
.feature-dark p {
  color: rgba(255, 255, 255, 0.6);
}

.chat-bubble {
  margin-top: 23px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 14px 14px 14px 3px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  line-height: 1.55;
}

.chat-bubble span {
  display: block;
  margin-bottom: 5px;
  color: #cce5b7;
  font-size: 9px;
  font-weight: 700;
}

.health-meter {
  margin-top: 28px;
}

.health-meter > span {
  display: block;
  height: 7px;
  margin-bottom: 9px;
  overflow: hidden;
  border-radius: 10px;
  background: #e1e7dd;
}

.health-meter i {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #82b267, #b9d994);
}

.health-meter small {
  color: #7e8b81;
  font-size: 9px;
}

.week {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
  padding: 15px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 30px rgba(37, 64, 45, 0.07);
}

.week span {
  display: flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #89938c;
  font-size: 9px;
}

.week .today {
  padding: 7px;
  color: white;
  border-radius: 11px;
  background: var(--forest);
}

.week i {
  margin-top: 2px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.how {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 100px;
  align-items: center;
}

.how-copy > p {
  max-width: 400px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:first-child {
  border-top: 1px solid var(--line);
}

.step-number {
  color: #8aaa75;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.6px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.download {
  position: relative;
  width: 100%;
  min-height: 590px;
  margin: 45px 0 72px;
  padding-inline: 25px;
  overflow: hidden;
  color: white;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 100%, rgba(140, 186, 105, 0.18), transparent 37%),
    linear-gradient(130deg, #0d2f20, #174a32);
}

.download-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 700px;
  margin: auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.app-icon-large {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 42px rgba(2, 20, 12, 0.25);
}

.app-icon-large img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow.light {
  color: #cce4b7;
}

.eyebrow.light .eyebrow-icon {
  background: rgba(220, 238, 202, 0.13);
  color: #d8efbe;
}

.download h2 {
  font-size: clamp(45px, 5.5vw, 68px);
}

.download h2 span {
  color: #b5d58f;
  font-weight: 500;
}

.download-content > p {
  max-width: 550px;
  margin: 24px 0 29px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.play-badge-light {
  color: var(--ink);
  border-color: white;
  background: white;
}

.android-only {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.download::before,
.download::after {
  position: absolute;
  border: 1px solid rgba(198, 226, 172, 0.12);
  border-radius: 50%;
  content: "";
}

.download::before {
  top: -300px;
  left: -130px;
  width: 650px;
  height: 650px;
}

.download::after {
  right: -220px;
  bottom: -390px;
  width: 770px;
  height: 770px;
}

.leaf {
  position: absolute;
  color: rgba(169, 207, 136, 0.18);
  font-size: 190px;
}

.leaf-a {
  right: -5px;
  bottom: -48px;
  transform: rotate(-38deg);
}

.leaf-b {
  right: 85px;
  bottom: -84px;
  transform: rotate(-84deg) scale(0.75);
}

.leaf-c {
  top: -62px;
  left: -30px;
  transform: rotate(145deg) scale(0.7);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 52px;
  color: #7b867d;
  font-size: 11px;
}

.footer-brand {
  color: var(--ink);
  font-size: 17px;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  font-weight: 600;
  transition: color 180ms ease;
}

footer > a:last-child:hover {
  color: var(--forest);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
    text-align: center;
  }

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

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

  .hero-actions,
  .trust-note {
    justify-content: center;
  }

  .hero-visual {
    min-height: 670px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    max-width: 520px;
    margin: 24px 0 0;
  }

  .how {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 680px) {
  .site-header,
  main,
  footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    height: 78px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 3px;
    background: var(--forest);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 28px;
    visibility: hidden;
    background: rgba(244, 247, 241, 0.98);
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 70px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -2.8px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    min-height: 540px;
    margin-top: 25px;
    transform: scale(0.84);
  }

  .hero-visual::before {
    width: 470px;
    height: 470px;
  }

  .orbit-one {
    width: 510px;
    height: 510px;
  }

  .orbit-two {
    width: 580px;
    height: 580px;
  }

  .scan-card {
    right: -50px;
  }

  .health-card {
    left: -50px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .how h2,
  .download h2 {
    font-size: 42px;
    letter-spacing: -2.5px;
  }

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

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

  .card-large {
    grid-column: auto;
    display: block;
  }

  .card-large .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 24px;
  }

  .card-large h3 {
    margin-top: 33px;
  }

  .specimen {
    margin-top: 30px;
  }

  .feature-card {
    min-height: 305px;
    padding: 27px;
  }

  .card-number {
    top: 29px;
    right: 29px;
  }

  .card-large .card-number {
    top: 30px;
    right: 28px;
    left: auto;
  }

  .how {
    gap: 40px;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }

  .download {
    min-height: 620px;
    margin-top: 20px;
    padding: 82px 20px;
    border-radius: 28px;
  }

  .download h2 br {
    display: none;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 35px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
