@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --paper: #efe8d5;
  --paper-deep: #ded3b9;
  --paper-light: #f7f2e5;
  --ink: #111a0d;
  --ink-soft: #34402e;
  --muted: #66705e;
  --line: rgba(17, 26, 13, 0.15);
  --line-strong: rgba(17, 26, 13, 0.28);
  --green: #315d3b;
  --green-deep: #163a24;
  --green-light: #8eaa78;
  --amber: #c39045;
  --white: #fffdf7;
  --shadow: 0 28px 80px rgba(17, 26, 13, 0.13);
  --radius-sm: 0.85rem;
  --radius-md: 1.35rem;
  --radius-lg: 2.4rem;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(142, 170, 120, 0.24), transparent 28rem),
    radial-gradient(circle at 8% 44%, rgba(195, 144, 69, 0.12), transparent 24rem),
    var(--paper);
  font-family: "Onest", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 6.2vw, 6.7rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

::selection {
  color: var(--white);
  background: var(--green);
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.75rem;
  transform: translateY(-150%);
}

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

.eyebrow {
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 2rem), var(--container));
  min-height: 64px;
  margin: 1rem auto 0;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  background: rgba(247, 242, 229, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 45px rgba(17, 26, 13, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: var(--paper-light);
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
}

.brand-name {
  display: grid;
  gap: 0.15rem;
}

.brand-name small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 550;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 0.15rem;
}

.primary-nav a {
  padding: 0.55rem 0.75rem;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 560;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--ink);
  background: rgba(17, 26, 13, 0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-link {
  min-width: 42px;
  padding: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 720;
  text-align: center;
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

main,
#main-content {
  display: block;
}

.home-hero,
.page-hero,
.audience-section,
.content-stack,
.related-section,
.faq-section,
.download-panel,
.partner-panel {
  width: min(calc(100% - 2rem), var(--container));
  margin-right: auto;
  margin-left: auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  align-items: center;
  min-height: calc(100svh - 96px);
  padding: 6rem 0 5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.audience-section,
.related-section,
.faq-section {
  padding: 7rem 0;
}

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

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.content-stack {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.content-block {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 2.5rem;
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--line-strong);
}

.section-copy {
  max-width: 700px;
}

.section-copy p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-index {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

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

.page-hero {
  padding: 6.5rem 0 5rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.7fr);
  gap: 5rem;
  align-items: end;
  padding-top: 5rem;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.page-summary {
  padding: 0 0 1.6rem 1.5rem;
  border-left: 1px solid var(--line-strong);
}

.page-summary > p {
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin: 6rem auto 1rem;
  padding: 4rem;
  color: var(--paper-light);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.footer-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-footer {
  color: var(--paper-light);
  font-size: 1.6rem;
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--paper);
}

.footer-lead p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.footer-links h2 {
  margin-bottom: 1.2rem;
  color: var(--green-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 0.7rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.4;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 54px;
  padding: 0.88rem 1.15rem 0.88rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 680;
  text-decoration: none;
  transition: transform 240ms var(--ease), background 240ms var(--ease), color 240ms var(--ease);
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(49, 93, 59, 0.22);
}

.button-primary:hover {
  background: var(--green-deep);
}

.button-dark {
  color: var(--paper-light);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--paper-light);
}

.button-quiet {
  color: var(--ink);
  border-color: var(--line-strong);
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  font-size: 0.76rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-tags li {
  padding: 0.42rem 0.68rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.object-visual {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}

.object-visual::before {
  position: absolute;
  z-index: -3;
  top: 50%;
  left: 50%;
  width: 470px;
  height: 470px;
  content: "";
  background: rgba(49, 93, 59, 0.12);
  border-radius: 50%;
  filter: blur(2px);
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(17, 26, 13, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-two {
  width: 400px;
  height: 400px;
  border-style: dashed;
}

.phone {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 268px;
  transform: translate(-50%, -50%) rotate(1.5deg);
  animation: phone-float 7s ease-in-out infinite;
}

.phone img {
  width: 100%;
  height: auto;
}

.phone-shadow {
  position: absolute;
  z-index: -1;
  right: 10%;
  bottom: 0;
  left: 10%;
  height: 70px;
  background: rgba(17, 26, 13, 0.28);
  border-radius: 50%;
  filter: blur(30px);
}

.object {
  position: absolute;
  z-index: 2;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(17, 26, 13, 0.16));
  animation: object-float 6s ease-in-out infinite;
}

.object-camera {
  top: 10%;
  left: 4%;
  height: 118px;
  transform: rotate(-10deg);
}

.object-mower {
  right: -3%;
  bottom: 10%;
  height: 170px;
  animation-delay: -2.4s;
}

.object-laptop {
  top: 11%;
  right: -3%;
  height: 142px;
  transform: rotate(7deg);
  animation-delay: -4s;
}

@keyframes phone-float {
  50% { transform: translate(-50%, calc(-50% - 10px)) rotate(-0.5deg); }
}

@keyframes object-float {
  50% { translate: 0 -12px; }
}

.audience-card {
  position: relative;
  min-height: 420px;
  padding: 3rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.audience-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.audience-owner {
  background: var(--paper-light);
}

.audience-service {
  color: var(--paper-light);
  background: var(--green-deep);
}

.audience-service .eyebrow,
.audience-service p {
  color: rgba(255, 255, 255, 0.7);
}

.audience-card h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.audience-card > p:not(.eyebrow) {
  max-width: 520px;
}

.audience-card strong {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  left: 3rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}

.card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.72rem;
  font-weight: 720;
}

.check-list {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.7rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.check-list li::before {
  position: absolute;
  top: 0.95rem;
  left: 0;
  color: var(--green);
  content: "↳";
  font-weight: 800;
}

.related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 2rem;
  background: rgba(247, 242, 229, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 280ms var(--ease), transform 280ms var(--ease);
}

.related-card:hover {
  background: var(--paper-light);
  transform: translateY(-4px);
}

.related-card > span {
  margin-bottom: 2.5rem;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.related-card strong {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.related-card p {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.related-card i {
  position: absolute;
  right: 1.5rem;
  bottom: 1.2rem;
  font-style: normal;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.6rem 0;
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary span {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  padding: 0 3rem 1.6rem 0;
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 2rem;
  font-weight: 680;
  text-underline-offset: 0.25rem;
}

.download-panel,
.partner-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 4rem;
  align-items: center;
  padding: 4rem;
  color: var(--paper-light);
  background: var(--green-deep);
  border-radius: var(--radius-lg);
}

.download-panel p,
.partner-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.download-panel .eyebrow,
.partner-panel .eyebrow {
  color: var(--green-light);
}

.download-links {
  display: grid;
  gap: 0.65rem;
}

.download-links a {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1rem 1.2rem;
  color: var(--paper-light);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  text-decoration: none;
}

.download-links a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.download-links span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.partner-panel {
  margin-top: 7rem;
}

.lead-form {
  padding: 2rem;
  color: var(--ink);
  background: var(--paper-light);
  border-radius: var(--radius-md);
}

.lead-form label:not(.checkbox) {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.lead-form label > span {
  font-size: 0.78rem;
  font-weight: 650;
}

.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form input[type="text"],
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 0.9rem;
}

.lead-form textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 1rem 0 1.5rem;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}

.checkbox span,
.form-note {
  color: var(--muted) !important;
  font-size: 0.72rem !important;
}

.lead-form .button {
  width: 100%;
  color: var(--white);
  background: var(--green);
  border: 0;
  cursor: pointer;
}

.lead-form .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  margin: 1rem 0 0;
}

.legal-page {
  background: var(--paper-light);
}

.legal-page main {
  width: min(calc(100% - 2rem), 860px);
  margin: 0 auto;
  padding: 3rem 0 6rem;
}

.legal-page .back {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.legal-page h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.legal-page h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.legal-page p,
.legal-page li {
  max-width: 760px;
  line-height: 1.75;
}

.legal-page small {
  color: var(--muted);
}

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

  .nav-toggle {
    display: grid;
    grid-column: 2;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: transparent;
    border: 0;
    place-content: center;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 2px 0;
    background: var(--ink);
    border-radius: 2px;
  }

  .primary-nav.is-open {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: grid;
    padding: 1rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open a {
    padding: 0.85rem 1rem;
  }

  .home-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  }

  .object-visual {
    min-height: 570px;
  }

  .object-camera {
    left: -4%;
  }

  .content-block {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .check-list {
    grid-column: 2;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    top: 0.5rem;
    width: min(calc(100% - 1rem), var(--container));
    margin-top: 0.5rem;
  }

  .header-actions .button {
    display: none;
  }

  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  .object-visual {
    min-height: 560px;
    margin-top: 1rem;
  }

  .audience-grid,
  .download-panel,
  .partner-panel,
  .footer-lead,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    gap: 2rem;
    padding-top: 3rem;
  }

  .page-summary {
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .download-panel,
  .partner-panel {
    gap: 2rem;
    padding: 2.5rem;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .brand-name {
    font-size: 0.78rem;
  }

  .brand-name small {
    display: none;
  }

  .language-link {
    min-width: 34px;
  }

  .home-hero,
  .page-hero,
  .audience-section,
  .content-stack,
  .related-section,
  .faq-section,
  .download-panel,
  .partner-panel {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .home-hero {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .object-visual {
    min-height: 430px;
  }

  .object-visual::before {
    width: 330px;
    height: 330px;
  }

  .orbit {
    width: 390px;
    height: 390px;
  }

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

  .phone {
    width: 205px;
  }

  .object-camera {
    top: 8%;
    left: -7%;
    height: 76px;
  }

  .object-laptop {
    top: 5%;
    right: -11%;
    height: 92px;
  }

  .object-mower {
    right: -12%;
    bottom: 8%;
    height: 115px;
  }

  .audience-section,
  .related-section,
  .faq-section {
    padding: 5rem 0;
  }

  .audience-card {
    min-height: 380px;
    padding: 2rem;
  }

  .audience-card strong {
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding: 4rem 0;
  }

  .check-list {
    grid-column: auto;
  }

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

  .related-card {
    min-height: 270px;
  }

  .download-panel,
  .partner-panel {
    padding: 2rem 1.25rem;
    border-radius: 1.7rem;
  }

  .download-links a {
    grid-template-columns: 62px 1fr;
  }

  .site-footer {
    width: min(calc(100% - 1rem), var(--container));
    padding: 2rem 1.25rem;
    border-radius: 1.7rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@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;
  }

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