@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Ionicons";
  src: url("assets/fonts/Ionicons.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root {
  color-scheme: light;
  --ink: #17271f;
  --ink-soft: #596b61;
  --forest: #123f31;
  --forest-deep: #0b3026;
  --leaf: #247b56;
  --leaf-light: #d9ebdf;
  --sky: #287fa9;
  --sky-light: #e7f2f6;
  --sun: #e1a52f;
  --sun-light: #f8edcf;
  --signal-red: #c83d32;
  --paper: #ffffff;
  --canvas: #f5f7f4;
  --line: #d8e1da;
  --shadow: 0 24px 60px rgba(19, 45, 34, 0.16);
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

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

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

h1,
h2,
h3,
strong {
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--forest-deep);
  background: var(--paper);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.section {
  padding: 112px 24px;
}

.section-inner,
.header-inner,
.signal-strip-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--leaf);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--leaf);
}

.button-primary:hover {
  background: #1c6748;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--paper);
  background: rgba(11, 48, 38, 0.46);
}

.button-quiet:hover {
  border-color: var(--paper);
  background: rgba(11, 48, 38, 0.7);
}

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

.button-light:hover {
  background: var(--sun-light);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(19, 63, 49, 0.12);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 6px;
  object-fit: cover;
}

.site-header.is-scrolled .brand img,
.site-header.menu-visible .brand img {
  border-color: var(--line);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 600;
}

.site-navigation > a:not(.nav-action) {
  position: relative;
  padding: 8px 0;
}

.site-navigation > a:not(.nav-action)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-navigation > a:not(.nav-action):hover::after {
  transform: scaleX(1);
}

.nav-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 6px;
  background: rgba(11, 48, 38, 0.32);
}

.site-header.is-scrolled .nav-action,
.site-header.menu-visible .nav-action {
  border-color: var(--forest);
  color: var(--paper);
  background: var(--forest);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  color: inherit;
  background: rgba(11, 48, 38, 0.32);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  font-size: 23px;
  line-height: 1;
}

.site-header.is-scrolled .menu-toggle,
.site-header.menu-visible .menu-toggle {
  border-color: var(--line);
  background: var(--paper);
}

.hero {
  position: relative;
  display: flex;
  height: 88svh;
  min-height: 600px;
  max-height: 900px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/hectarix-fields-hero.jpg");
  background-position: 50% 49%;
  background-size: cover;
  transform: scale(1.015);
}

.hero-shade {
  background: rgba(7, 33, 25, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
  padding: 150px 0 84px;
}

.hero-eyebrow {
  color: #cae6d3;
}

.hero h1 {
  margin-bottom: 2px;
  font-size: 76px;
  line-height: 1;
  font-weight: 700;
}

.hero-statement {
  margin-bottom: 20px;
  color: var(--sun-light);
  font-size: 29px;
  line-height: 1.25;
  font-weight: 600;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.store-badge {
  display: inline-flex;
  min-width: 162px;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 5px 13px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 6px;
  color: var(--paper);
  background: #080b09;
  cursor: default;
  user-select: none;
  text-decoration: none;
}

.store-badge.is-active {
  cursor: pointer;
}

.store-badge.is-active:hover,
.store-badge.is-active:focus-visible {
  border-color: var(--paper);
  background: #161b18;
}

.store-badge-mark {
  width: 28px;
  flex: 0 0 28px;
  font-family: "Ionicons";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  speak: never;
}

.store-badge-mark-apple::before {
  content: "\f3d8";
}

.store-badge-mark-google::before {
  content: "\f3f6";
}

.store-badge-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.store-badge-copy small {
  margin-bottom: 2px;
  font-size: 9px;
  font-weight: 500;
  white-space: nowrap;
}

.store-badge-copy strong {
  font-size: 16px;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.hero-signals span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-signals span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100% - var(--content-width)) / 2));
  bottom: 40px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 22px;
}

.signal-strip {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.signal-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.signal-strip span {
  min-width: 0;
  padding: 2px 18px;
  border-right: 1px solid var(--line);
  color: var(--forest);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

.signal-strip span:first-child {
  padding-left: 0;
}

.signal-strip span:last-child {
  padding-right: 0;
  border-right: 0;
}

.promise-section {
  border-bottom: 1px solid var(--line);
  background: #edf4ef;
}

.promise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  gap: 100px;
  align-items: start;
}

.promise-mark {
  display: flex;
  max-width: 500px;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(18, 63, 49, 0.2);
  border-bottom: 1px solid rgba(18, 63, 49, 0.2);
}

.promise-mark > strong {
  width: 88px;
  flex: 0 0 88px;
  color: var(--leaf);
  font-size: 82px;
  line-height: 0.82;
  font-weight: 500;
}

.promise-mark > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: var(--forest);
  line-height: 1.3;
}

.promise-mark b {
  font-size: 18px;
}

.promise-mark small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
}

.promise-list {
  border-top: 1px solid rgba(18, 63, 49, 0.2);
}

.promise-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(18, 63, 49, 0.2);
}

.promise-list article > span {
  padding-top: 4px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
}

.promise-list h3 {
  margin-bottom: 7px;
}

.promise-list p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.product-section {
  overflow: hidden;
  background: var(--paper);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: 96px;
  align-items: center;
}

.product-points {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.product-points li:last-child {
  border-bottom: 1px solid var(--line);
}

.product-points strong {
  color: var(--forest);
}

.product-points span {
  color: var(--ink-soft);
}

.product-visual {
  margin: 0;
  text-align: center;
}

.device-frame {
  position: relative;
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 13px 11px 14px;
  border: 1px solid rgba(18, 63, 49, 0.22);
  border-radius: 34px;
  background: #12231c;
  box-shadow: var(--shadow);
}

.device-speaker {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  width: 78px;
  height: 7px;
  border-radius: 8px;
  background: #13231d;
  transform: translateX(-50%);
}

.device-frame img {
  width: 100%;
  aspect-ratio: 900 / 1950;
  border-radius: 25px;
  object-fit: cover;
}

.product-visual figcaption {
  max-width: 390px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.capabilities-section {
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 54px;
}

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

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

.section-heading .section-lead {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: end;
  padding-bottom: 5px;
}

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

.capability-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.capability-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--leaf);
  content: "";
}

.capability-card:nth-child(2)::before,
.capability-card:nth-child(6)::before {
  background: var(--sky);
}

.capability-card:nth-child(3)::before {
  background: var(--sun);
}

.capability-card:nth-child(4)::before {
  background: var(--signal-red);
}

.capability-index {
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.capability-card p {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.capability-note {
  margin-top: auto;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

.workflow-section {
  background: var(--sun-light);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 100px;
  align-items: start;
}

.workflow-heading {
  position: sticky;
  top: 116px;
}

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

.workflow-steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(65, 66, 42, 0.18);
}

.workflow-steps li:first-child {
  padding-top: 4px;
}

.workflow-steps > li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(18, 63, 49, 0.35);
  border-radius: 50%;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

.workflow-steps h3 {
  margin-bottom: 6px;
}

.workflow-steps p {
  margin-bottom: 0;
  color: #5f6045;
}

.field-band {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest);
}

.field-band-image,
.field-band-shade {
  position: absolute;
  inset: 0;
}

.field-band-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.field-band-shade {
  background: rgba(7, 37, 28, 0.6);
}

.field-band-content {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.field-band .eyebrow {
  color: #cfe9d6;
}

.field-band h2 {
  max-width: 740px;
  font-size: 52px;
}

.field-band p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.transparency-section {
  background: var(--sky-light);
}

.transparency-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 100px;
  align-items: start;
}

.transparency-copy .eyebrow {
  color: var(--sky);
}

.transparency-list {
  border-top: 1px solid rgba(40, 127, 169, 0.25);
}

.transparency-list > div:not(.legal-actions) {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(40, 127, 169, 0.25);
}

.transparency-list strong {
  color: #1b6689;
}

.transparency-list span {
  color: #516a76;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  padding-top: 30px;
}

.legal-actions a,
.footer-links a {
  text-decoration: underline;
  text-decoration-color: rgba(18, 63, 49, 0.35);
  text-underline-offset: 4px;
}

.legal-actions a:hover,
.footer-links a:hover {
  text-decoration-color: currentColor;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: 100px;
}

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

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

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

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--forest-deep);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 5px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--leaf);
  content: "+";
  font-size: 20px;
  line-height: 1;
}

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

.faq-list details p {
  max-width: 720px;
  margin-bottom: 26px;
  padding-right: 50px;
  color: var(--ink-soft);
}

.final-cta {
  padding: 96px 24px;
  color: var(--paper);
  background: var(--forest-deep);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 60px;
  align-items: center;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  grid-column: 1;
}

.final-cta .eyebrow {
  margin-bottom: 0;
  color: #c8e2d0;
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.final-cta .button {
  grid-row: 1 / span 3;
  grid-column: 2;
}

.site-footer {
  padding: 52px 24px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
  background: #071f18;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 44px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  border-radius: 6px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.footer-brand strong {
  color: var(--paper);
}

.footer-brand span {
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px 24px;
  font-size: 13px;
}

.footer-note {
  grid-column: 1 / -1;
  margin-bottom: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

@media (max-width: 1050px) {
  .header-inner {
    padding: 0 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-navigation {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100svh - 94px);
    align-items: stretch;
    gap: 0;
    padding: 10px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--forest-deep);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-navigation.is-open {
    display: flex;
    flex-direction: column;
  }

  .site-navigation > a:not(.nav-action) {
    display: block;
    min-height: 48px;
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-navigation > a:not(.nav-action)::after {
    display: none;
  }

  .site-navigation .nav-action {
    justify-content: center;
    margin-top: 10px;
    color: var(--paper);
    background: var(--forest);
  }

  .product-layout,
  .promise-layout,
  .workflow-layout,
  .transparency-layout,
  .faq-layout {
    gap: 60px;
  }

  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  }

  .promise-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  }

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

@media (max-width: 820px) {
  h2 {
    font-size: 36px;
  }

  .section {
    padding: 84px 22px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .site-navigation {
    top: 68px;
    max-height: calc(100svh - 86px);
  }

  .hero {
    height: 84svh;
    min-height: 610px;
    max-height: 800px;
  }

  .hero-content {
    width: min(calc(100% - 44px), var(--content-width));
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-statement {
    font-size: 25px;
  }

  .hero-copy {
    max-width: 590px;
    font-size: 17px;
  }

  .hero-signals {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .signal-strip {
    overflow-x: auto;
  }

  .signal-strip-inner {
    display: flex;
    width: max-content;
    min-width: 100%;
  }

  .signal-strip span {
    min-width: 170px;
  }

  .product-layout,
  .promise-layout,
  .workflow-layout,
  .transparency-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .product-visual {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-bottom: 22px;
  }

  .workflow-heading,
  .faq-heading {
    position: static;
  }

  .field-band h2 {
    font-size: 44px;
  }

  .final-cta-inner {
    display: block;
  }

  .final-cta p {
    margin-bottom: 26px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  h2 {
    font-size: 31px;
  }

  .section {
    padding: 70px 18px;
  }

  .section-lead {
    font-size: 17px;
  }

  .header-inner {
    min-height: 68px;
    padding: 0 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    height: 86svh;
    min-height: 590px;
    max-height: 760px;
  }

  .hero-image {
    background-position: 53% 50%;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 112px 0 44px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-statement {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }

  .button {
    min-width: 0;
    padding: 0 12px;
    font-size: 13px;
  }

  .store-badge {
    min-width: 0;
    padding-right: 8px;
    padding-left: 9px;
  }

  .store-badge-mark {
    width: 25px;
    flex-basis: 25px;
    font-size: 25px;
  }

  .store-badge-copy strong {
    font-size: 14px;
  }

  .signal-strip {
    padding: 18px;
  }

  .signal-strip span {
    min-width: 155px;
    padding: 0 15px;
    font-size: 12px;
  }

  .product-layout,
  .promise-layout,
  .workflow-layout,
  .transparency-layout,
  .faq-layout {
    gap: 46px;
  }

  .product-points li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .promise-mark {
    margin-top: 30px;
  }

  .promise-mark > strong {
    width: 68px;
    flex-basis: 68px;
    font-size: 66px;
  }

  .promise-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 23px 0;
  }

  .device-frame {
    width: min(94%, 360px);
    border-radius: 30px;
  }

  .device-frame img {
    border-radius: 22px;
  }

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

  .capability-card {
    min-height: 245px;
    padding: 24px;
  }

  .capability-index {
    margin-bottom: 24px;
  }

  .workflow-steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .workflow-steps > li > span {
    width: 38px;
    height: 38px;
  }

  .field-band {
    min-height: 570px;
  }

  .field-band-content {
    padding: 80px 18px;
  }

  .field-band h2 {
    font-size: 36px;
  }

  .transparency-list > div:not(.legal-actions) {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .faq-list summary {
    padding-right: 44px;
    font-size: 16px;
  }

  .faq-list details p {
    padding-right: 8px;
  }

  .final-cta {
    padding: 74px 18px;
  }

  .site-footer {
    padding: 44px 18px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-note {
    grid-column: 1;
  }
}

@media (max-height: 670px) and (min-width: 700px) {
  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-copy {
    margin-bottom: 20px;
  }

  .hero-actions {
    margin-bottom: 20px;
  }
}

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

}
