:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --text: #10151f;
  --muted: #5b6472;
  --line: #dde4ec;
  --panel: #ffffff;
  --accent: #b8f952;
  --accent-dark: #315600;
  --amber: #f1a43c;
  --ink: #101620;
  --space: #080d16;
  --soft: #e7f3f5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar.is-open {
  background: rgba(255, 255, 255, .98);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav > a,
.nav-group > button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.nav > a:hover,
.nav-group > button:hover {
  background: #eef3f5;
  color: var(--text);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-group > button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-group > button::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 6px;
  min-width: 460px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 70px rgba(21, 33, 48, .14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 14px;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu,
.nav-group.is-open .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.nav-menu a:hover {
  background: var(--soft);
}

.nav-cta {
  background: var(--accent);
  color: #102000;
}

.nav-cta:hover {
  color: #102000;
  background: #a9ef40;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 45vw);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  position: relative;
  background:
    linear-gradient(115deg, rgba(8,13,22,.98), rgba(13,34,44,.9) 48%, rgba(55,42,32,.78)),
    #0f1b2d;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.28) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 28%, rgba(117,207,220,.28) 0 1px, transparent 1.5px),
    radial-gradient(circle at 58% 72%, rgba(241,164,60,.22) 0 1px, transparent 1.5px);
  background-size: 180px 180px, 240px 240px, 300px 300px;
  opacity: .46;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 800px;
  padding: clamp(48px, 8vw, 110px) clamp(22px, 6vw, 82px);
}

.hero__media {
  position: relative;
  z-index: 1;
  order: 2;
  min-height: 420px;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.08);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 10vw, 116px);
  line-height: .88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
}

.button--primary { background: var(--accent); color: #102000; }
.button--ghost { border: 1px solid rgba(255,255,255,.28); color: #fff; }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 42px;
  align-items: center;
}

.intro p,
.section__head + p,
.agent-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.metrics div {
  min-height: 132px;
  padding: 20px;
  background: var(--panel);
}

.metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 28px;
}

.orbit {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.orbit__copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.orbit__map {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(145deg, rgba(12,18,29,.98), rgba(17,53,62,.9)),
    var(--space);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(10, 18, 30, .18);
}

.orbit__map::before {
  content: "";
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(117,215,227,.24);
  border-radius: 50%;
}

.orbit__map::after {
  content: "";
  position: absolute;
  inset: 94px;
  border: 1px dashed rgba(241,164,60,.28);
  border-radius: 50%;
}

.orbit__node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.orbit__node--main {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: #071923;
}

.orbit__node:nth-child(2) { left: 12%; top: 18%; }
.orbit__node:nth-child(3) { right: 12%; top: 20%; }
.orbit__node:nth-child(4) { right: 14%; bottom: 18%; }
.orbit__node:nth-child(5) { left: 10%; bottom: 20%; }

.metrics span { color: var(--muted); line-height: 1.35; }

.section__head {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.solution {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.solution:hover,
.solution:focus-visible {
  border-color: rgba(184, 249, 82, .72);
  box-shadow: 0 18px 42px rgba(8, 14, 23, .12);
  transform: translateY(-2px);
  outline: none;
}

.solution img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.solution div { padding: 22px; }
.solution p { color: var(--muted); line-height: 1.45; }
.service-cover img { min-height: 320px; }

.process {
  width: 100%;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(16,22,32,.98), rgba(12,58,68,.92)),
    var(--ink);
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  overflow: hidden;
}

.steps li {
  min-height: 220px;
  padding: 24px;
  background: rgba(255,255,255,.055);
}

.steps span {
  display: block;
  margin-bottom: 38px;
  color: var(--accent);
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.steps p { color: rgba(255,255,255,.72); line-height: 1.45; }

.agent-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 42px;
  align-items: center;
}

.agent-panel {
  padding: 20px;
  border: 1px solid #cbdce0;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(21, 33, 48, .12);
}

.agent-panel__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.agent-panel__top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #19a974;
}

.chat-bubble {
  width: fit-content;
  max-width: 92%;
  margin-bottom: 12px;
  padding: 13px 14px;
  border-radius: 8px;
  line-height: 1.35;
}

.chat-bubble--bot { background: var(--soft); }
.chat-bubble--user { margin-left: auto; background: #17253a; color: #fff; }

.agent-button {
  width: 100%;
  min-height: 46px;
  margin-top: 4px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.audit-lab {
  width: 100%;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 18% 20%, rgba(117, 215, 227, .16), transparent 34%),
    linear-gradient(180deg, #f4f6f8, #eaf1f4);
}

.audit-lab .section__head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.audit-form,
.audit-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(21, 33, 48, .08);
}

.audit-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.audit-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.audit-form select,
.audit-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #cbd7df;
  border-radius: 6px;
  background: #f8fafb;
  color: var(--text);
  font: inherit;
}

.audit-form select:focus,
.audit-form input:focus {
  outline: 2px solid rgba(13, 138, 154, .22);
  border-color: var(--accent);
}

.audit-result {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(16, 22, 32, .98), rgba(8, 74, 88, .92)),
    var(--space);
  color: #fff;
}

.audit-result::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(117, 215, 227, .28);
  border-radius: 50%;
}

.audit-result h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.audit-result p,
.audit-result ul {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.55;
}

.audit-result ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.audit-result li {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.site-agent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  font-family: inherit;
}

.site-agent__launcher {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #062230;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(8, 18, 30, .22);
  cursor: pointer;
}

.site-agent__panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  display: none;
  width: min(380px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(8, 18, 30, .28);
}

.site-agent.is-open .site-agent__panel {
  display: block;
}

.site-agent__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(16,22,32,.98), rgba(8,74,88,.92)),
    var(--space);
  color: #fff;
}

.site-agent__head strong,
.site-agent__head span {
  display: block;
}

.site-agent__head span {
  margin-top: 4px;
  color: rgba(255,255,255,.64);
  font-size: 13px;
}

.site-agent__head button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.site-agent__log {
  display: grid;
  gap: 10px;
  max-height: 360px;
  padding: 14px;
  overflow: auto;
  background: #f4f7f8;
}

.site-agent-message {
  max-width: 92%;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.42;
}

.site-agent-message--bot {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}

.site-agent-message--user {
  justify-self: end;
  background: #17253a;
  color: #fff;
}

.site-agent__form {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-agent__form textarea {
  width: 100%;
  resize: vertical;
  min-height: 76px;
  max-height: 160px;
  padding: 11px 12px;
  border: 1px solid #cbd7df;
  border-radius: 6px;
  font: inherit;
  line-height: 1.35;
}

.site-agent__form textarea:focus {
  outline: 2px solid rgba(13, 138, 154, .22);
  border-color: var(--accent);
}

.site-agent__form button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer p { margin: 6px 0 0; color: var(--muted); }
.footer a { color: var(--accent-dark); font-weight: 800; }

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42vw);
  gap: 46px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0;
}

.inner-hero h1,
.page-title h1,
.article h1 {
  color: var(--text);
  font-size: clamp(42px, 7vw, 86px);
  line-height: .95;
}

.inner-hero .lead,
.page-title .lead,
.article .lead {
  color: var(--muted);
}

.inner-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(21, 33, 48, .16);
}

.button--ghost.dark {
  border-color: #b9c8d0;
  color: var(--text);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list p,
.post-row {
  margin: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.post-list.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.post-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-card a {
  display: grid;
  height: 100%;
}

.post-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card div {
  padding: 18px;
}

.post-card h3 {
  font-size: 20px;
  line-height: 1.18;
  margin-bottom: 8px;
}

.post-date {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.post-date--card {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .04em;
}

.post-card p {
  color: var(--muted);
  line-height: 1.48;
}

.post-row h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.post-row p,
.article p {
  color: var(--muted);
  line-height: 1.58;
}

.article {
  max-width: 860px;
}

.article h2 {
  margin-top: 38px;
  font-size: clamp(26px, 3vw, 38px);
}

.migrated {
  max-width: 920px;
}

.cover {
  overflow: hidden;
  margin: 0 0 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(21, 33, 48, .11);
}

.cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.migrated h1 {
  color: var(--text);
  font-size: clamp(38px, 6vw, 72px);
  line-height: .98;
  margin-bottom: 24px;
}

.migrated h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
}

.migrated h3 {
  margin-top: 28px;
  font-size: 23px;
}

.migrated p,
.migrated li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.migrated ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 28px;
  padding: 0;
  list-style: none;
}

.migrated li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.migrated li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 22px 0 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.migrated table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.45;
}

.migrated th,
.migrated td {
  padding: 16px 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.migrated th {
  background: rgba(184, 249, 82, .28);
  color: var(--ink);
  font-weight: 900;
}

.migrated tr:last-child td { border-bottom: 0; }

.agent-inline {
  margin-top: 54px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(12,18,29,.96), rgba(13,78,91,.9)),
    var(--ink);
  color: #fff;
}

.agent-inline h2 {
  margin-top: 0;
  color: #fff;
}

.agent-inline p {
  color: rgba(255,255,255,.78);
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 10px 16px;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(21, 33, 48, .08);
  }
  .nav {
    display: none;
    flex-basis: 100%;
    width: 100%;
    gap: 7px;
    padding-top: 10px;
    font-size: 15px;
  }
  .topbar.is-open .nav {
    display: grid;
  }
  .topbar:focus-within .nav {
    display: grid;
  }
  .nav > a,
  .nav-group > button,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    text-align: left;
  }
  .nav-cta {
    background: var(--accent);
    border-color: var(--accent);
    color: #102000;
  }
  .nav-group {
    width: 100%;
    display: block;
  }
  .nav-group::after {
    display: none;
  }
  .nav-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    min-width: 0;
    margin-top: 7px;
    padding: 7px;
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-menu a {
    min-height: 42px;
    padding: 12px;
    background: #f6f9fa;
  }
  .nav-group.is-open .nav-menu {
    display: grid;
  }
  .nav-group:focus-within .nav-menu {
    display: grid;
  }
  .hero {
    min-height: auto;
  }
  .hero,
  .intro,
  .agent-band,
  .audit-grid,
  .orbit,
  .inner-hero,
  .two-col {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: 2;
    min-height: 260px;
  }
  .hero__content {
    order: 1;
    align-self: start;
    padding-top: 46px;
    padding-bottom: 38px;
  }
  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }
  .metrics,
  .solution-grid,
  .steps,
  .post-list,
  .post-list.cards {
    grid-template-columns: 1fr;
  }
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-agent {
    right: 14px;
    bottom: 14px;
  }
  .site-agent__launcher {
    min-height: 44px;
    padding: 0 14px;
  }
  .site-agent__panel {
    right: -2px;
    bottom: 56px;
    width: calc(100vw - 28px);
  }
}
