:root {
  --bg: #090b0a;
  --panel: #111412;
  --panel2: #151916;
  --paper: #f4f3ef;
  --ink: #111311;
  --text: #f4f5f1;
  --muted: #a7aaa4;
  --line: rgba(239, 243, 234, 0.16);
  --lime: #a0ff15;
  --shell: min(1280px, calc(100% - 64px));
  --radius: 18px;
  --header: 76px;
  --section-space: 60px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.shell {
  width: var(--shell);
  margin: 0 auto;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--lime);
  color: #112200;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 10, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
  color: #d7d9d4;
  font-size: 14px;
  font-weight: 650;
}
.main-nav a {
  transition: color 0.18s ease;
}
.main-nav a:hover {
  color: var(--lime);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}
.header-login {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  color: #eff1ec;
  font-size: 14px;
  font-weight: 750;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}
.header-login span {
  color: var(--lime);
  font-size: 22px;
  line-height: 0;
}
.header-login:hover {
  color: var(--lime);
  transform: translateX(2px);
}
.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.button-primary {
  color: #071000;
  background: var(--lime);
  box-shadow: 0 10px 28px rgba(112, 203, 0, 0.14);
}
.button-primary:hover {
  transform: translateY(-2px);
  background: #b3ff4c;
  box-shadow: 0 15px 32px rgba(112, 203, 0, 0.25);
}
.button:active {
  transform: translateY(0);
  box-shadow: none;
}
.button[aria-disabled="true"],
.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  pointer-events: none;
}
.button.is-loading {
  cursor: wait;
  color: transparent;
  pointer-events: none;
}
.button.is-loading::after {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--ink);
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: button-spin 0.8s linear infinite;
}
.button:focus-visible,
.header-login:focus-visible,
.main-nav a:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}
.icon {
  width: 18px;
  height: 18px;
  flex: none;
}
@keyframes button-spin {
  to {
    transform: rotate(1turn);
  }
}
.hero {
  padding: calc(var(--header) + 36px) 0 30px;
  background:
    radial-gradient(
      circle at 76% 32%,
      rgba(119, 255, 12, 0.09),
      transparent 23%
    ),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 32px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(160, 255, 21, 0.1);
}
.eyebrow-dark {
  color: #4d8140;
}
.eyebrow-dark i {
  background: #568e45;
  box-shadow: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.25vw, 82px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.99;
}
.hero-lead {
  max-width: 550px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.text-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid rgba(245, 247, 244, 0.75);
  font-size: 14px;
  font-weight: 800;
  transition:
    color 0.18s ease,
    border 0.18s ease;
}
.text-action:hover {
  color: var(--lime);
  border-color: var(--lime);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  margin: 27px 0 0;
  padding: 0;
  color: #c6c9c2;
  list-style: none;
  font-size: 12px;
  line-height: 1.4;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.hero-points .icon {
  width: 15px;
  height: 15px;
  color: var(--lime);
}
.editor-window {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(190, 208, 180, 0.25);
  border-radius: var(--radius);
  background: #0d100f;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(124, 255, 0, 0.06);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transform-origin: center right;
}
.editor-window__bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #d6d9d4;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 750;
}
.editor-window__logo {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 5px;
  color: #0a1104;
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
}
.editor-window__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: #bbc0b5;
}
.editor-window__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.editor-window__body {
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 0;
}
.editor-window__rail {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 18px 13px;
  border-right: 1px solid var(--line);
  background: #0a0d0b;
}
.editor-window__rail span {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #596059;
  border-radius: 4px;
}
.editor-window__rail span:first-child {
  background: var(--lime);
  border-color: var(--lime);
}
.editor-window__canvas {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #0a0c0b;
}
.editor-window__canvas:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.22), transparent 35%),
    linear-gradient(0deg, rgba(4, 6, 5, 0.36), transparent 34%);
  pointer-events: none;
}
.editor-window__canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.editor-window__caption {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #eef0ed;
}
.editor-window__caption span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.editor-window__caption b {
  max-width: 220px;
  font-size: 15px;
  line-height: 1.15;
}
.editor-window__timeline {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr) 20px;
  gap: 6px;
  align-items: center;
  padding: 13px 14px;
  border-top: 1px solid var(--line);
}
.editor-window__timeline i,
.editor-window__timeline b {
  display: block;
  height: 8px;
  border-radius: 2px;
  background: #353a35;
}
.editor-window__timeline i {
  background: var(--lime);
}
.editor-window__timeline span {
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid var(--lime);
  border-radius: 50%;
}
.editor-window__prompt {
  display: grid;
  grid-template-columns: 80px 1fr 36px;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-top: 1px solid var(--line);
  background: #101411;
}
.editor-window__prompt span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.editor-window__prompt span .icon {
  width: 14px;
  height: 14px;
}
.editor-window__prompt p {
  margin: 0;
  color: #c8cbc5;
  font-size: 11px;
  line-height: 1.35;
}
.editor-window__prompt button {
  display: grid;
  width: 36px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #112200;
  background: var(--lime);
}
.editor-window__prompt button .icon {
  width: 17px;
  height: 17px;
}
.section {
  padding: var(--section-space) 0;
}
.solutions {
  color: var(--ink);
  background: var(--paper);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head h2,
.route-layout h2,
.faq h2 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1;
}
.section-head > p,
.route-layout > p,
.faq-layout > div > p {
  max-width: 440px;
  margin: 0;
  color: #656a64;
  font-size: 16px;
  line-height: 1.55;
}
.section-head--compact {
  align-items: center;
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.scenario-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid #dedfd9;
  border-radius: 12px;
  background: #fff;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(19, 24, 18, 0.12);
}
.scenario-card figure {
  position: relative;
  aspect-ratio: 1/0.95;
  margin: 0;
  overflow: hidden;
  background: #161917;
}
.scenario-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.scenario-card:hover img {
  transform: scale(1.04);
}
.scenario-card figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scenario-card > div {
  position: relative;
  min-height: 164px;
  padding: 16px 46px 18px 16px;
}
.scenario-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.scenario-card p {
  margin: 0;
  color: #686c68;
  font-size: 12px;
  line-height: 1.45;
}
.scenario-card b {
  position: absolute;
  right: 15px;
  bottom: 18px;
  color: #578c3d;
}
.scenario-card b .icon {
  width: 19px;
  height: 19px;
}
.proof-section {
  padding: 0;
  background: var(--bg);
}
.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #111612, #0c0e0d);
}
.proof-panel__head {
  padding: 42px;
  border-right: 1px solid var(--line);
}
.proof-panel__head h2 {
  margin: 0 0 17px;
  font-size: clamp(29px, 3.6vw, 49px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.proof-panel__head > p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.proof-panel__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.proof-panel__list article {
  min-width: 0;
  padding: 36px 26px;
  border-right: 1px solid var(--line);
}
.proof-panel__list article:last-child {
  border: 0;
}
.proof-panel__list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 10px;
  color: var(--lime);
  background: rgba(160, 255, 21, 0.1);
}
.proof-panel__list h3 {
  margin-bottom: 9px;
  font-size: 17px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.proof-panel__list p {
  min-height: 70px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.proof-panel__list b {
  color: #dce1da;
  font-size: 11px;
  line-height: 1.45;
}
.process {
  background: #101310;
}
.process-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 64px;
  align-items: start;
}
.process-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}
.process-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.process-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.process-step {
  align-self: start;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #151916;
}
.process-step > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  margin-bottom: 17px;
  border: 1px solid rgba(160, 255, 21, 0.65);
  border-radius: 50%;
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
}
.process-step h3 {
  margin-bottom: 9px;
  font-size: 17px;
  line-height: 1.1;
}
.process-step p {
  min-height: 58px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.process-step__media {
  aspect-ratio: 1.35;
  overflow: hidden;
  border-radius: 8px;
  background: #080a09;
}
.process-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase {
  padding-bottom: 32px;
  color: var(--ink);
  background: var(--paper);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.showcase-card {
  overflow: hidden;
  border: 1px solid #dcddd7;
  border-radius: 12px;
  background: #fff;
}
.showcase-card figure {
  position: relative;
  aspect-ratio: 1.35;
  margin: 0;
  overflow: hidden;
  background: #151815;
}
.showcase-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.showcase-card:hover figure img {
  transform: scale(1.045);
}
.showcase-card figure span {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.showcase-card figure .icon {
  width: 13px;
  height: 13px;
}
.showcase-card > div {
  padding: 16px;
}
.showcase-card em {
  color: #5d963f;
  font-size: 10px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.1em;
}
.showcase-card h3 {
  margin: 9px 0 4px;
  font-size: 18px;
  letter-spacing: -0.035em;
}
.showcase-card p {
  margin: 0;
  color: #696e69;
  font-size: 12px;
  line-height: 1.45;
}
.routes {
  padding-top: 32px;
  color: var(--ink);
  background: #eeece6;
}
.route-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 25px 70px;
}
.route-list {
  grid-column: 1/-1;
  border-top: 1px solid #d3d5cd;
}
.route-list a {
  display: grid;
  grid-template-columns: 42px minmax(150px, 0.7fr) minmax(260px, 1.45fr) 28px;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 14px 10px;
  border-bottom: 1px solid #d3d5cd;
  transition:
    padding 0.18s ease,
    background 0.18s ease;
}
.route-list a:hover {
  padding-left: 18px;
  background: rgba(160, 255, 21, 0.08);
}
.route-list span {
  color: #5a9443;
  font-size: 11px;
  font-weight: 850;
}
.route-list strong {
  font-size: 16px;
}
.route-list small {
  color: #6c706b;
  font-size: 12px;
  line-height: 1.35;
}
.route-list .icon {
  margin-left: auto;
  color: #5a9443;
}
.faq {
  color: var(--ink);
  background: #fff;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 70px;
  align-items: start;
}
.faq-layout h2 {
  margin-bottom: 18px;
}
.faq-list {
  display: grid;
  gap: 9px;
}
.faq-item {
  border: 1px solid #dedfd9;
  border-radius: 10px;
  background: #fff;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 780;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item .icon {
  color: #4d813b;
  transition: transform 0.2s ease;
}
.faq-item[open] .icon {
  transform: rotate(45deg);
}
.faq-item p {
  max-width: 700px;
  margin: 0;
  padding: 0 18px 18px;
  color: #666b66;
  font-size: 13px;
  line-height: 1.55;
}
.final-cta {
  padding: var(--section-space) 0;
  background: #0c0f0d;
}
.final-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  min-height: 395px;
  border: 1px solid rgba(160, 255, 21, 0.47);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 22% 50%,
      rgba(160, 255, 21, 0.16),
      transparent 32%
    ),
    #0e120e;
}
.final-cta__panel > div:first-child {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 48px;
}
.final-cta h2 {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  letter-spacing: -0.06em;
  line-height: 1;
}
.final-cta p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.final-cta__visual {
  position: relative;
  min-height: 310px;
}
.final-cta__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0e120e, transparent 45%),
    linear-gradient(0deg, rgba(10, 13, 11, 0.3), transparent);
}
.final-cta__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta__play {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(5, 6, 5, 0.56);
}
.final-cta__play .icon {
  width: 21px;
  height: 21px;
}
.site-footer {
  padding: 45px 0 20px;
  border-top: 1px solid var(--line);
  background: #090b0a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.footer-grid p {
  max-width: 270px;
  margin: 18px 0 0;
  color: #81867e;
  font-size: 12px;
  line-height: 1.55;
}
.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px 30px;
}
.footer-grid nav a {
  color: #b7bbb4;
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.18s ease;
}
.footer-grid nav a:hover {
  color: var(--lime);
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #747970;
  font-size: 11px;
}
.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  text-align: center;
}
.not-found h1 {
  font-size: clamp(40px, 7vw, 84px);
}
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.is-revealed {
  opacity: 1;
  transform: none;
}
@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 44px, 1280px);
    --section-space: 52px;
  }
  .main-nav {
    gap: 19px;
  }
  .hero-grid {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 28px;
  }
  .process-layout {
    grid-template-columns: 275px 1fr;
    gap: 42px;
  }
  .proof-panel__head {
    padding: 32px;
  }
  .proof-panel__list article {
    padding: 28px 18px;
  }
  .footer-grid {
    gap: 44px;
  }
}
@media (max-width: 800px) {
  :root {
    --header: 70px;
    --shell: calc(100% - 32px);
    --section-space: 44px;
  }
  .main-nav {
    display: none;
  }
  .header-inner {
    gap: 12px;
  }
  .brand span {
    font-size: 16px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .header-actions {
    margin-left: auto;
    gap: 14px;
  }
  .header-login {
    display: inline-flex;
    min-height: 42px;
  }
  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
  .hero {
    padding: calc(var(--header) + 24px) 0 24px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero-copy {
    order: 1;
    padding: 0 0 5px;
  }
  .editor-window {
    order: 2;
    transform: none;
  }
  .editor-window__canvas {
    min-height: 260px;
  }
  h1 {
    max-width: 650px;
    font-size: clamp(43px, 9vw, 64px);
  }
  .hero-lead {
    max-width: 620px;
    font-size: 16px;
  }
  .proof-panel {
    grid-template-columns: 1fr;
  }
  .proof-panel__head {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-panel__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .section-head,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-copy {
    position: static;
  }
  .route-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .final-cta__panel {
    grid-template-columns: 1fr;
  }
  .final-cta__visual {
    min-height: 260px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
    --section-space: 36px;
  }
  .brand span {
    display: none;
  }
  .header-actions {
    gap: 10px;
  }
  .header-login {
    gap: 5px;
  }
  .header-login span {
    font-size: 18px;
  }
  .header-cta {
    padding: 0 13px;
  }
  .hero {
    padding: calc(var(--header) + 20px) 0 20px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .text-action {
    justify-content: center;
    width: max-content;
  }
  .hero-points {
    display: none;
  }
  .editor-window__body {
    grid-template-columns: 1fr;
  }
  .editor-window__rail {
    display: none;
  }
  .editor-window__canvas {
    min-height: 212px;
  }
  .editor-window__prompt {
    grid-template-columns: 58px 1fr 32px;
    gap: 8px;
    padding: 11px;
  }
  .editor-window__prompt p {
    font-size: 10px;
  }
  .editor-window__caption b {
    font-size: 13px;
  }
  .proof-panel__head {
    padding: 26px 20px;
  }
  .proof-panel__list {
    grid-template-columns: 1fr;
  }
  .proof-panel__list article {
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-panel__list article:last-child {
    border-bottom: 0;
  }
  .proof-panel__list span {
    margin-bottom: 13px;
  }
  .proof-panel__list p {
    min-height: 0;
    margin-bottom: 12px;
  }
  .scenario-grid,
  .showcase-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .scenario-card > div {
    min-height: 126px;
  }
  .section {
    padding: var(--section-space) 0;
  }
  .showcase {
    padding-bottom: 24px;
  }
  .routes {
    padding-top: 24px;
  }
  .section-head h2,
  .route-layout h2,
  .faq h2,
  .process-copy h2,
  .final-cta h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .process-step p {
    min-height: 0;
  }
  .route-list a {
    grid-template-columns: 30px 1fr 20px;
    gap: 9px;
    min-height: unset;
    padding: 16px 0;
  }
  .route-list small {
    grid-column: 2/3;
  }
  .route-list .icon {
    grid-column: 3;
    grid-row: 1/3;
  }
  .faq-item summary {
    min-height: 58px;
    padding: 14px;
    font-size: 13px;
  }
  .faq-item p {
    padding: 0 14px 16px;
  }
  .final-cta {
    padding: var(--section-space) 0;
  }
  .final-cta__panel > div:first-child {
    padding: 30px 20px;
  }
  .final-cta__visual {
    min-height: 220px;
  }
  .footer-grid nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }
  .not-found {
    padding: 24px;
  }
}
.editor-window__prompt-arrow {
  display: grid;
  width: 36px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: #112200;
  background: var(--lime);
}
.editor-window__prompt-arrow .icon {
  width: 17px;
  height: 17px;
}
@media (max-width: 560px) {
  .editor-window__prompt-arrow {
    width: 32px;
    height: 30px;
  }
}
@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;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
