:root {
  --green-950: #0b211d;
  --green-900: #102d27;
  --green-850: #173b33;
  --green-800: #1d493f;
  --green-700: #286657;
  --lime: #d8f24a;
  --cream: #f7f6f0;
  --white: #fff;
  --ink: #17211e;
  --muted: #5c6864;
  --line: #d9ded9;
  --success: #197451;
  --success-soft: #eaf6ef;
  --warning: #9d6800;
  --warning-soft: #fff4d6;
  --shadow-sm: 0 6px 18px rgba(11, 33, 29, 0.07);
  --shadow-lg: 0 28px 70px rgba(11, 33, 29, 0.16);
  --radius: 18px;
  --shell: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #547c00;
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
p,
li,
strong,
small {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 8vw, 116px);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(247, 246, 240, 0.94);
  border-bottom: 1px solid rgba(16, 45, 39, 0.09);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.site-brand__logo,
.site-brand__custom-logo {
  width: auto;
  height: 43px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav__list,
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__list a {
  position: relative;
  display: block;
  padding-block: 12px;
  color: #34413d;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav__list a:hover::after,
.primary-nav__list a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green-950);
  background: transparent;
  border: 1px solid rgba(16, 45, 39, 0.2);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle__icon {
  display: grid;
  width: 20px;
  gap: 4px;
}

.menu-toggle__icon span {
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 3px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 13px;
}

.button--accent {
  color: var(--green-950);
  background: var(--lime);
  box-shadow: 0 8px 24px rgba(104, 126, 0, 0.16);
}

.button--accent:hover {
  background: #e4fb68;
  box-shadow: 0 12px 30px rgba(104, 126, 0, 0.2);
}

.kicker {
  margin-bottom: 13px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker--light {
  color: var(--lime);
}

.section-intro {
  max-width: 760px;
  margin-bottom: clamp(38px, 5vw, 58px);
}

.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.section-intro h2,
.workcard-section__content h2,
.versioning__content h2,
.pilot__content h2 {
  margin-bottom: 19px;
  color: var(--green-950);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-intro h2 span,
.workcard-section__content h2 span {
  color: var(--green-700);
}

.section-intro > p:last-child,
.workcard-section__content > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(66px, 7vw, 100px);
  background:
    radial-gradient(circle at 78% 36%, rgba(216, 242, 74, 0.16), transparent 22%),
    linear-gradient(180deg, #fbfaf5 0%, var(--cream) 100%);
}

.hero::before {
  position: absolute;
  top: 40px;
  right: max(-280px, calc((100vw - var(--shell)) / 2 - 360px));
  width: 620px;
  height: 620px;
  border: 1px solid rgba(16, 45, 39, 0.05);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(16, 45, 39, 0.018), 0 0 0 140px rgba(16, 45, 39, 0.014);
  content: "";
}

.hero__grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.8fr);
  gap: clamp(48px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 9px;
  height: 9px;
  background: var(--lime);
  border: 2px solid var(--green-700);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(216, 242, 74, 0.35);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--green-950);
  font-size: clamp(48px, 6.1vw, 76px);
  font-weight: 880;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 span {
  color: var(--green-700);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: #4f5d59;
  font-size: clamp(18px, 1.75vw, 21px);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 29px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 820;
  text-decoration-thickness: 1px;
}

.hero__promise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  color: var(--green-900);
  font-size: 13px;
}

.hero__promise strong {
  position: relative;
}

.hero__promise strong:not(:last-child)::after {
  position: absolute;
  top: 0.62em;
  right: -12px;
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 670px;
  place-items: center;
}

.device {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 320px);
  aspect-ratio: 390 / 760;
  flex-direction: column;
  padding: 11px;
  color: var(--ink);
  background: var(--green-950);
  border: 1px solid #324b45;
  border-radius: 31px;
  box-shadow: var(--shadow-lg), 0 0 0 9px rgba(255, 255, 255, 0.66);
  transform: rotate(1.3deg);
}

.device__bar {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 8px;
  color: #d6e1dd;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.device__bar span {
  width: 46px;
  height: 5px;
  margin-left: calc(50% - 23px);
  background: #445b55;
  border-radius: 99px;
}

.device__bar i {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
}

.device__screen {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px 20px;
  background: #fff;
  border-radius: 20px;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.card-topline > small {
  color: #77817e;
  font-size: 9px;
  font-weight: 800;
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  color: #12623d;
  background: var(--success-soft);
  border: 1px solid #b9dfc8;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.3;
}

.device__screen h2,
.device__screen h3 {
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.device__location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
  color: #6c7773;
  font-size: 10px;
}

.device__location svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.device__goal {
  margin-bottom: 12px;
  padding: 12px;
  background: #f4f7f5;
  border-left: 3px solid var(--green-700);
  border-radius: 6px;
}

.device__goal small,
.device__checklist small {
  display: block;
  color: #73807b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.device__goal p {
  margin: 3px 0 0;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.45;
}

.device__checklist {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.device__checklist li {
  display: grid;
  align-items: center;
  padding-block: 10px;
  border-bottom: 1px solid #e7e9e7;
  grid-template-columns: 25px minmax(0, 1fr) 15px;
  gap: 8px;
}

.device__checklist li > span {
  display: grid;
  width: 24px;
  height: 24px;
  color: var(--green-700);
  background: #edf4f1;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
  place-items: center;
}

.device__checklist li p {
  min-width: 0;
  margin: 0;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.4;
}

.device__checklist li > b {
  color: var(--success);
  font-size: 14px;
}

.device__checklist .device__stop > span {
  color: var(--warning);
  background: var(--warning-soft);
}

.device__screen > button {
  width: 100%;
  margin-top: auto;
  padding: 10px;
  color: var(--green-950);
  background: var(--lime);
  border: 0;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 900;
}

.signal-card {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 206px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(16, 45, 39, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.signal-card svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  padding: 5px;
  color: var(--green-700);
  background: #edf5f2;
  border-radius: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.signal-card span {
  display: grid;
  min-width: 0;
}

.signal-card strong {
  color: var(--green-950);
  font-size: 11px;
}

.signal-card small {
  color: var(--muted);
  font-size: 9px;
}

.signal-card--verified {
  top: 82px;
  left: -18px;
}

.signal-card--method {
  right: -28px;
  bottom: 70px;
}

.proof-strip {
  background: var(--green-900);
}

.proof-strip__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip__items > p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 26px clamp(20px, 3vw, 42px);
  color: #f6fbf8;
}

.proof-strip__items > p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip svg {
  flex: 0 0 32px;
  width: 32px;
  color: var(--lime);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.proof-strip span {
  display: grid;
}

.proof-strip strong {
  font-size: 14px;
}

.proof-strip small {
  color: #aebfb9;
  font-size: 11px;
}

.workflow {
  color: #fff;
  background: var(--green-900);
}

.workflow .section-intro h2,
.workflow .section-intro > p:last-child {
  color: #fff;
}

.workflow .section-intro h2 span {
  color: var(--lime);
}

.workflow .section-intro > p:last-child {
  color: #b9c9c4;
}

.workflow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.workflow-card {
  position: relative;
  padding: 31px;
  background: var(--green-850);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.workflow-card--accent {
  background: #204f44;
  border-color: rgba(216, 242, 74, 0.5);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.workflow-card__number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
}

.workflow-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  color: var(--lime);
  background: rgba(216, 242, 74, 0.1);
  border: 1px solid rgba(216, 242, 74, 0.18);
  border-radius: 14px;
  place-items: center;
}

.workflow-card__icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.workflow-card h3 {
  margin-bottom: 9px;
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
}

.workflow-card p {
  margin: 0;
  color: #c0cec9;
  font-size: 15px;
  line-height: 1.65;
}

.workflow__note {
  display: flex;
  max-width: 790px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
  color: #d9e4df;
  font-size: 13px;
  text-align: center;
}

.workflow__note > span {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 50%;
  font-weight: 900;
  place-items: center;
}

.workcard-section {
  background: #fff;
}

.workcard-section__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.84fr) minmax(470px, 1.1fr);
  gap: clamp(48px, 7vw, 88px);
}

.workcard-section__content h2 {
  font-size: clamp(36px, 4.4vw, 53px);
}

.feature-list {
  display: grid;
  gap: 15px;
  margin: 29px 0 25px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.feature-list svg {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  margin-top: 2px;
  padding: 5px;
  color: var(--green-900);
  background: var(--lime);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.feature-list span {
  display: grid;
}

.feature-list strong {
  color: var(--green-950);
  font-size: 15px;
}

.feature-list small {
  color: var(--muted);
  font-size: 13px;
}

.example-disclaimer {
  padding: 13px 16px;
  color: #68736f !important;
  background: #f5f6f3;
  border-radius: 8px;
  font-size: 11px !important;
}

.hero__visual--example {
  min-height: 660px;
}

.delivery {
  background: var(--cream);
}

.delivery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.delivery-card {
  display: grid;
  padding: clamp(28px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 62px 1fr;
  gap: 22px;
}

.delivery-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  color: var(--green-700);
  background: #edf5f2;
  border-radius: 15px;
  place-items: center;
}

.delivery-card__icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.delivery-card .kicker {
  margin-bottom: 5px;
  font-size: 10px;
}

.delivery-card h3 {
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 24px;
  line-height: 1.25;
}

.delivery-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.delivery__note {
  margin-top: 22px;
  padding: 18px 22px;
  color: #3f4b47;
  background: #eef0eb;
  border-radius: 11px;
  font-size: 13px;
  text-align: center;
}

.versioning {
  color: #fff;
  background: var(--green-950);
}

.versioning__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(48px, 7vw, 90px);
}

.versioning__content h2 {
  color: #fff;
}

.versioning__content h2 span {
  color: var(--lime);
}

.versioning__content > p {
  margin-bottom: 27px;
  color: #b7c8c2;
  font-size: 17px;
}

.versioning__princip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(216, 242, 74, 0.08);
  border: 1px solid rgba(216, 242, 74, 0.24);
  border-radius: 12px;
}

.versioning__princip svg {
  flex: 0 0 37px;
  width: 37px;
  color: var(--lime);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.versioning__princip p {
  margin: 0;
  color: #eff5f2;
  font-size: 13px;
}

.versioning__steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.versioning__steps li {
  display: grid;
  align-items: center;
  padding: 21px;
  color: var(--ink);
  background: #fff;
  border-left: 4px solid var(--lime);
  border-radius: 12px;
  grid-template-columns: 44px 1fr;
  gap: 15px;
}

.versioning__steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  place-items: center;
}

.versioning__steps div {
  display: grid;
}

.versioning__steps strong {
  color: var(--green-950);
  font-size: 15px;
}

.versioning__steps small {
  color: var(--muted);
  font-size: 12px;
}

.versioning__receipt {
  margin-top: 24px;
  margin-bottom: 0;
  padding: 17px 20px;
  color: #dbe6e2;
  background: var(--green-850);
  border-radius: 11px;
  font-size: 13px;
  text-align: center;
}

.method {
  background: #fff;
}

.method__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.method-card {
  display: grid;
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: 70px 1fr;
  gap: 22px;
}

.method-card > span {
  display: grid;
  width: 70px;
  height: 70px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 17px;
  font-size: 18px;
  font-weight: 900;
  place-items: center;
}

.method-card--method > span {
  color: #fff;
  background: var(--green-700);
}

.method-card h3 {
  margin-bottom: 7px;
  color: var(--green-950);
  font-size: 25px;
}

.method-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.detail-levels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 18px 23px;
  background: #edf1ed;
  border-radius: 11px;
}

.detail-levels > p {
  margin: 0;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 850;
}

.detail-levels > div {
  display: flex;
  gap: 8px;
}

.detail-levels span {
  display: grid;
  min-width: 145px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 7px;
}

.detail-levels b {
  color: var(--green-950);
  font-size: 11px;
}

.detail-levels small {
  color: var(--muted);
  font-size: 9px;
}

.pilot {
  padding-top: 0;
  background: #fff;
}

.pilot__card {
  display: grid;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  color: #fff;
  background: linear-gradient(120deg, var(--green-900), #143c33);
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  grid-template-columns: 132px 1fr auto;
  gap: 32px;
}

.pilot__portrait {
  width: 132px;
  margin: 0;
}

.pilot__portrait img {
  width: 132px;
  height: 132px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid rgba(216, 242, 74, 0.55);
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.pilot__content h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(30px, 3.7vw, 43px);
}

.pilot__content > p {
  max-width: 700px;
  margin: 0;
  color: #b9c9c4;
  font-size: 14px;
}

.voice-player {
  max-width: 650px;
  margin-top: 20px;
}

.voice-player audio {
  width: 100%;
}

.has-js .voice-player audio,
.no-js .voice-player__custom {
  display: none;
}

.voice-player__custom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px 128px;
  align-items: stretch;
  gap: 10px;
}

.voice-player__play {
  display: flex;
  min-width: 0;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--green-950);
  background: var(--lime);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
}

.voice-player__play:hover {
  background: #e3f76d;
  transform: translateY(-1px);
}

.voice-player__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: var(--lime);
  background: var(--green-950);
  border-radius: 50%;
  place-items: center;
}

.voice-player__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.3;
}

.voice-player__icon-pause,
.voice-player__play.is-playing .voice-player__icon-play {
  display: none;
}

.voice-player__play.is-playing .voice-player__icon-pause {
  display: block;
}

.voice-player__label {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.voice-player__label strong {
  font-size: 13px;
}

.voice-player__label small {
  margin-top: 2px;
  color: #385348;
  font-size: 10px;
}

.voice-player__restart {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 11px;
  color: #f2f7f5;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.voice-player__restart:hover {
  background: rgba(255, 255, 255, 0.14);
}

.voice-player__restart svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.voice-player__volume {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  padding: 8px 12px;
  color: #e8f1ed;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
}

.voice-player__volume span {
  font-size: 10px;
  font-weight: 800;
}

.voice-player__volume input {
  width: 100%;
  min-width: 0;
  margin: 0;
  accent-color: var(--lime);
  cursor: pointer;
}

.voice-player__transcript {
  margin-top: 10px;
  color: #dbe6e2;
  font-size: 12px;
}

.voice-player__transcript summary {
  width: fit-content;
  color: #f2f7f5;
  cursor: pointer;
  font-weight: 750;
}

.voice-player__transcript > div {
  max-width: 620px;
  margin-top: 10px;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.14);
  border-radius: 10px;
}

.voice-player__transcript p {
  margin-bottom: 9px;
}

.voice-player__transcript p:last-child {
  margin-bottom: 0;
}

.pilot__action {
  display: grid;
  justify-items: start;
}

.site-footer {
  color: #fff;
  background: #081f1b;
}

.site-footer__main {
  display: flex;
  min-height: 155px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer__brand p {
  margin: 13px 0 0;
  color: #9fb2aa;
  font-size: 12px;
}

.site-footer__links a {
  color: #d4dfdb;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--lime);
  text-decoration: underline;
}

.site-footer__legal {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #82978f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.site-footer__legal p {
  margin: 0;
}

/* Generic WordPress pages. */
.content-page {
  min-height: 60vh;
  padding-block: 78px 110px;
}

.content-page__inner {
  max-width: 780px;
}

.content-page h1 {
  color: var(--green-950);
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.entry-content > * {
  max-width: 760px;
}

.entry-content a {
  color: var(--green-700);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .primary-nav__list,
  .primary-nav {
    gap: 17px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
    gap: 35px;
  }

  .signal-card--verified {
    left: 0;
  }

  .signal-card--method {
    right: -3px;
  }

  .workcard-section__grid {
    grid-template-columns: 0.85fr 1.1fr;
    gap: 42px;
  }

  .pilot__card {
    grid-template-columns: 112px 1fr;
  }

  .pilot__portrait,
  .pilot__portrait img {
    width: 112px;
    height: 112px;
  }

  .pilot__action {
    grid-column: 2;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    min-height: 72px;
    flex-wrap: wrap;
  }

  .has-js .menu-toggle {
    display: flex;
  }

  .primary-nav {
    display: grid;
    flex: 1 0 100%;
    align-content: start;
    gap: 18px;
    padding: 22px 20px 30px;
    background: var(--cream);
    border-top: 1px solid var(--line);
  }

  .has-js .primary-nav {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    box-shadow: 0 20px 45px rgba(11, 33, 29, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .has-js .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav__list {
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav__list li {
    border-bottom: 1px solid var(--line);
  }

  .primary-nav__list a {
    min-height: 50px;
    padding: 14px 4px;
    font-size: 16px;
  }

  .primary-nav__cta {
    width: 100%;
  }

  .hero__grid,
  .workcard-section__grid,
  .versioning__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
    text-align: center;
  }

  .eyebrow,
  .hero__actions,
  .hero__promise {
    justify-content: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__visual {
    max-width: 540px;
    margin-inline: auto;
  }

  .proof-strip__items > p {
    padding-inline: 20px;
  }

  .workflow-card {
    padding: 25px;
  }

  .workcard-section__content,
  .versioning__content {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding-block: 68px;
  }

  .site-brand__logo,
  .site-brand__custom-logo {
    height: 38px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(43px, 12.2vw, 60px);
  }

  .hero__visual {
    min-height: 650px;
  }

  .proof-strip__items,
  .workflow__steps,
  .delivery__grid,
  .method__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__items {
    padding-block: 8px;
  }

  .proof-strip__items > p {
    min-height: 76px;
    padding-block: 16px;
  }

  .proof-strip__items > p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .detail-levels {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-levels > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-levels span {
    min-width: 0;
  }

  .pilot__card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pilot__portrait,
  .pilot__portrait img {
    width: 112px;
    height: 112px;
  }

  .pilot__action {
    grid-column: auto;
  }

  .voice-player {
    max-width: 720px;
  }

  .site-footer__main,
  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .site-footer__main {
    padding-block: 48px;
  }

  .site-footer__links {
    flex-wrap: wrap;
  }

  .site-footer__legal {
    padding-block: 20px;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding-block: 58px;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .has-js .primary-nav {
    top: 68px;
    max-height: calc(100vh - 68px);
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .hero__content,
  .section-intro--center {
    text-align: left;
  }

  .eyebrow,
  .hero__actions,
  .hero__promise {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(40px, 11.8vw, 53px);
    letter-spacing: -0.025em;
    line-height: 1.08;
  }

  .hero__lead {
    font-size: 17px;
    line-height: 1.6;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero__promise {
    display: grid;
    gap: 4px;
  }

  .hero__promise strong::after {
    display: none;
  }

  .hero__visual,
  .hero__visual--example {
    min-height: 610px;
  }

  .device {
    width: min(88%, 300px);
  }

  .signal-card {
    min-width: 0;
    width: 178px;
    padding: 10px;
  }

  .signal-card--verified {
    top: 24px;
    left: 0;
  }

  .signal-card--method {
    right: 0;
    bottom: 22px;
  }

  .section-intro h2,
  .workcard-section__content h2,
  .versioning__content h2,
  .pilot__content h2 {
    font-size: clamp(32px, 9.2vw, 38px);
    letter-spacing: -0.02em;
    line-height: 1.12;
  }

  .section-intro > p:last-child,
  .workcard-section__content > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .workflow-card {
    padding: 24px;
  }

  .workflow__note {
    align-items: flex-start;
    text-align: left;
  }

  .delivery-card {
    padding: 24px;
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .delivery-card__icon {
    width: 50px;
    height: 50px;
  }

  .delivery-card__icon svg {
    width: 26px;
  }

  .delivery-card h3 {
    font-size: 21px;
  }

  .delivery__note {
    text-align: left;
  }

  .versioning__steps li {
    padding: 18px;
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .versioning__steps li > span {
    width: 38px;
    height: 38px;
  }

  .versioning__receipt {
    text-align: left;
  }

  .method-card {
    padding: 24px;
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .method-card > span {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .detail-levels > div {
    grid-template-columns: 1fr;
  }

  .pilot {
    padding-bottom: 52px;
  }

  .pilot__card {
    width: calc(100% - 20px);
    padding: 30px 24px;
    border-radius: 22px;
  }

  .pilot__action,
  .pilot__action .button {
    width: 100%;
  }

  .voice-player__custom {
    grid-template-columns: 1fr 1fr;
  }

  .voice-player__play {
    grid-column: 1 / -1;
  }

  .voice-player__restart,
  .voice-player__volume {
    min-height: 52px;
  }

  .site-footer__links {
    display: grid;
    gap: 13px 26px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero__actions,
  .pilot {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 28px;
    break-inside: avoid;
  }
}
