:root {
  --ink: #111827;
  --muted: #65758b;
  --soft: #eef4ff;
  --line: #d8e2ef;
  --paper: #f6f8fc;
  --white: #ffffff;
  --teal: #2f80ed;
  --teal-deep: #123a7a;
  --amber: #bc7c32;
  --blue: #2d5bff;
  --night: #071225;
  --night-2: #0d1f46;
  --mint: #62d7ff;
  --violet: #7c5cff;
  --mist: #eaf1ff;
  --shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(45, 91, 255, 0.09), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, var(--paper) 42%, #edf3ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(98, 215, 255, 0.16);
  background: rgba(7, 18, 37, 0.9);
  backdrop-filter: blur(22px) saturate(1.05);
}

.nav {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  isolation: isolate;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 44%),
    linear-gradient(135deg, #173b88, #2d5bff 58%, #7c5cff);
  box-shadow: 0 14px 30px rgba(45, 91, 255, 0.28);
  font-size: 13px;
  letter-spacing: 0;
  overflow: hidden;
}

.brand-mark::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  content: "";
}

.brand-mark::after {
  position: absolute;
  width: 54px;
  height: 2px;
  background: rgba(98, 215, 255, 0.58);
  transform: rotate(-38deg);
  content: "";
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-text > span:first-child,
.brand-text {
  text-shadow: 0 10px 24px rgba(45, 91, 255, 0.18);
}

.brand-text span {
  color: rgba(226, 239, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(226, 239, 255, 0.76);
  font-size: 14px;
}

.nav-links a {
  min-height: 36px;
  border-radius: 8px;
  padding: 8px 9px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 8px;
  padding: 8px 28px 8px 9px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  content: "";
}

.nav-menu[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-menu summary:hover,
.nav-menu summary[aria-current="page"] {
  color: var(--white);
  background: rgba(98, 215, 255, 0.13);
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  display: grid;
  width: 240px;
  gap: 4px;
  border: 1px solid rgba(98, 215, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
  background: rgba(7, 18, 37, 0.96);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.nav-menu-panel a {
  justify-content: flex-start;
  width: 100%;
  color: rgba(226, 239, 255, 0.78);
}

.nav-menu-panel a:hover {
  color: var(--white);
  background: rgba(98, 215, 255, 0.13);
}

.nav-cta {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px !important;
  color: var(--white) !important;
  background: linear-gradient(135deg, #e0a24a, var(--amber));
  box-shadow: 0 14px 28px rgba(188, 124, 50, 0.24);
  font-weight: 760;
  overflow: hidden;
}

.nav-cta::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.28) 48%, transparent 66% 100%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
  content: "";
}

.nav-cta:hover::after {
  transform: translateX(120%);
}

.lang-switch {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(98, 215, 255, 0.26);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 820;
}

.lang-switch:hover {
  border-color: rgba(98, 215, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding: 56px 0;
}

.agent-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(98, 215, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 215, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 76% 20%, rgba(98, 215, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 12% 78%, rgba(124, 92, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, #071225, #0b1733);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.agent-section .item:not([id^="ai-"]) {
  border-color: rgba(98, 215, 255, 0.2);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(10, 23, 48, 0.9);
}

.agent-section .item:not([id^="ai-"]) h3 {
  color: var(--white);
}

.agent-section .item:not([id^="ai-"]) p {
  color: rgba(226, 239, 255, 0.76);
}

.case-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(47, 128, 237, 0.1), transparent 24rem),
    linear-gradient(180deg, #f8fbff, #eef4ff);
}

.case-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(47, 128, 237, 0.18);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.case-card h3 {
  max-width: 680px;
  font-size: clamp(24px, 3vw, 34px);
}

.case-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.case-card dl div {
  border-left: 3px solid rgba(47, 128, 237, 0.42);
  padding-left: 16px;
}

.case-card dt {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.case-conclusion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  border: 1px solid rgba(98, 215, 255, 0.18);
  border-radius: 8px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(98, 215, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, #0a1730, #111d3d);
  box-shadow: var(--shadow);
}

.case-conclusion h2 {
  color: var(--white);
}

.case-conclusion .body-copy {
  margin-top: 14px;
  color: rgba(226, 239, 255, 0.76);
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  padding: 66px 0 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 18, 37, 0.98) 0%, rgba(7, 18, 37, 0.92) 48%, rgba(7, 18, 37, 0.72) 100%),
    radial-gradient(circle at 72% 26%, rgba(98, 215, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 18% 68%, rgba(124, 92, 255, 0.22), transparent 24rem),
    linear-gradient(135deg, var(--night), var(--night-2));
}

.hero::before {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(98, 215, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 215, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 88%);
  opacity: 0.72;
  content: "";
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -280px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(98, 215, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(98, 215, 255, 0.18), transparent 38%),
    repeating-conic-gradient(from 12deg, rgba(98, 215, 255, 0.12) 0 8deg, rgba(124, 92, 255, 0.07) 8deg 18deg);
  opacity: 0.6;
  content: "";
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(46px, 5.7vw, 66px);
  letter-spacing: -0.03em;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

h2 {
  max-width: 760px;
  font-size: clamp(30px, 5vw, 48px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  max-width: 740px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.hero .lead {
  max-width: 700px;
  color: rgba(235, 250, 244, 0.78);
  font-size: 19px;
}

.body-copy {
  color: var(--muted);
  font-size: 17px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 790;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #2f80ed, #1d4ed8);
  box-shadow: 0 18px 34px rgba(45, 91, 255, 0.28);
}

.button.secondary {
  border-color: rgba(45, 91, 255, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.hero .button.primary {
  background: linear-gradient(135deg, #e1a34d, #bc7c32);
  box-shadow: 0 18px 36px rgba(188, 124, 50, 0.3);
}

.hero .button.secondary {
  border-color: rgba(98, 215, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.proof-panel,
.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 221, 0.94);
  border-radius: 8px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 247, 0.92)),
    var(--white);
  box-shadow: var(--shadow);
}

.hero .proof-panel {
  border-color: rgba(98, 215, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(6, 14, 31, 0.78);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.hero .proof-panel h2 {
  color: var(--white);
  font-size: clamp(30px, 3.3vw, 40px);
  letter-spacing: -0.02em;
}

.hero .proof-panel::before {
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--amber));
}

.hero .proof-panel::after {
  position: absolute;
  inset: 16px 16px auto auto;
  width: 86px;
  height: 28px;
  border: 1px solid rgba(98, 215, 255, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18px center, var(--mint) 0 4px, transparent 5px),
    rgba(98, 215, 255, 0.08);
  content: "";
}

.hero .proof-list {
  gap: 12px;
}

.hero .proof-list li {
  border: 1px solid rgba(98, 215, 255, 0.16);
  border-left: 3px solid var(--mint);
  border-radius: 8px;
  padding: 14px 14px 14px 18px;
  background: rgba(255, 255, 255, 0.07);
}

.hero .proof-list strong {
  color: var(--white);
}

.hero .proof-list span {
  color: rgba(235, 250, 244, 0.72);
}

.proof-panel::before,
.contact-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal), var(--violet));
  content: "";
}

.proof-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li,
.check-list li {
  display: grid;
  gap: 4px;
  border-left: 3px solid rgba(47, 128, 237, 0.46);
  padding: 2px 0 2px 18px;
}

.proof-list strong,
.check-list strong {
  color: var(--ink);
}

.proof-list span,
.check-list span {
  color: var(--muted);
}

.band {
  border-top: 1px solid rgba(216, 226, 239, 0.92);
  border-bottom: 1px solid rgba(216, 226, 239, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.96));
}

.section-head {
  display: grid;
  max-width: 840px;
  gap: 18px;
  margin-bottom: 34px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

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

.item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 226, 239, 0.96);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.item::before {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
  content: "";
}

.item:hover {
  border-color: rgba(47, 128, 237, 0.32);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.13);
  transform: translateY(-2px);
}

.item.accent {
  border-color: rgba(47, 128, 237, 0.28);
  background:
    linear-gradient(180deg, #ffffff, #eef5ff);
}

.item p {
  margin-top: 12px;
  color: var(--muted);
}

.item ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.item[id^="ai-"] {
  border-color: rgba(98, 215, 255, 0.24);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 100% 0%, rgba(98, 215, 255, 0.18), transparent 16rem),
    linear-gradient(135deg, #0a1730, #111d3d);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.2);
}

.item[id^="ai-"]::before {
  background: linear-gradient(90deg, var(--mint), var(--violet));
}

.item[id^="ai-"] h3 {
  color: var(--white);
}

.item[id^="ai-"] p,
.item[id^="ai-"] ul {
  color: rgba(226, 239, 255, 0.76);
}

.item[id^="ai-"]:target {
  border-color: rgba(98, 215, 255, 0.58);
  box-shadow:
    0 0 0 1px rgba(98, 215, 255, 0.18),
    0 28px 70px rgba(45, 91, 255, 0.22);
}

.roi-panel {
  display: grid;
  gap: 28px;
  margin-top: 42px;
  border: 1px solid rgba(47, 128, 237, 0.18);
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(105deg, rgba(47, 128, 237, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 255, 0.94)),
    var(--white);
  box-shadow: var(--shadow);
}

.roi-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 26px;
  align-items: start;
}

.roi-head h3 {
  max-width: 740px;
  font-size: clamp(28px, 4vw, 44px);
}

.roi-note {
  border-left: 4px solid var(--amber);
  padding-left: 18px;
  color: var(--muted);
  font-size: 17px;
}

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

.roi-metric {
  border: 1px solid rgba(216, 226, 239, 0.95);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.roi-metric strong {
  display: block;
  margin-bottom: 14px;
  color: var(--teal-deep);
  font-size: clamp(46px, 8vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.roi-metric.highlight strong {
  color: var(--amber);
}

.roi-metric h4 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.roi-metric p {
  margin-top: 10px;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(47, 128, 237, 0.24);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--teal-deep);
  background: #edf4ff;
  font-size: 12px;
  font-weight: 780;
}

.demo-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-deep);
  font-weight: 800;
  text-decoration: none;
}

.demo-link:hover {
  text-decoration: underline;
}

.agent-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.agent-card-head h3 {
  padding-top: 4px;
}

.demo-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 58, 122, 0.24);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: var(--teal-deep);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.demo-button:hover {
  background: var(--teal);
}

.path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.step {
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.step span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step p {
  margin-top: 8px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 66px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 18, 37, 0.98), rgba(9, 25, 58, 0.9)),
    radial-gradient(circle at 74% 12%, rgba(98, 215, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 18% 88%, rgba(124, 92, 255, 0.2), transparent 24rem),
    linear-gradient(135deg, var(--night), var(--night-2));
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(98, 215, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 215, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent 82%);
  content: "";
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--mint);
}

.page-hero h1 {
  max-width: 920px;
  color: var(--white);
  letter-spacing: -0.03em;
}

.page-hero .lead {
  max-width: 840px;
  color: rgba(226, 239, 255, 0.78);
}

.callout {
  border-left: 5px solid var(--amber);
  padding: 22px 24px;
  background: #fff8ec;
}

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

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.access-form {
  display: grid;
  gap: 16px;
}

.access-form .field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.access-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.field-hint {
  color: #7a8a80;
  font-size: 12px;
  font-weight: 560;
}

.access-form input,
.access-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.access-form input[readonly] {
  color: var(--teal-deep);
  background: #edf4ff;
  font-weight: 760;
}

.demo-consent {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(216, 222, 217, 0.95);
  border-radius: 8px;
  padding: 16px;
  color: var(--muted);
  background: #f8fbf8;
  font-size: 14px;
  line-height: 1.55;
}

.demo-consent p {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.demo-consent ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.demo-consent a {
  color: var(--teal-deep);
  font-weight: 780;
}

.demo-consent .consent-fineprint {
  margin: 2px 0 0;
  color: #66756c;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 560;
}

.checkbox-label {
  display: flex !important;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted);
  font-weight: 650 !important;
}

.checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.form-error {
  display: none;
  border-left: 4px solid #b94b42;
  padding: 10px 12px;
  color: #7a2923;
  background: #fff2f0;
  font-weight: 720;
}

.form-error.is-visible {
  display: block;
}

.unlock-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.locked-demo {
  opacity: 0.62;
}

.demo-preview {
  display: none;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.demo-preview.is-unlocked {
  display: grid;
  gap: 12px;
}

.demo-preview strong {
  color: var(--ink);
}

.demo-preview p {
  margin-top: 0;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.demo-modal.is-open {
  display: flex;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 32, 28, 0.48);
}

.demo-modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(23, 32, 28, 0.24);
}

.demo-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.modal-close {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
  background: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0 14px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-menu {
    position: relative;
  }

  .nav-menu-panel {
    position: fixed;
    top: 124px;
    right: 14px;
    left: 14px;
    width: auto;
    max-height: min(420px, calc(100vh - 150px));
    overflow: auto;
  }

  .hero-grid,
  .two-col,
  .grid-3,
  .grid-2,
  .path,
  .form-grid,
  .roi-head,
  .roi-metrics,
  .case-conclusion,
  .access-form .field-row {
    grid-template-columns: 1fr;
  }

  .case-conclusion {
    align-items: stretch;
  }

  .case-conclusion .section-actions {
    margin-top: 0;
  }

  .hero {
    padding: 64px 0 66px;
  }

  .hero::before {
    top: -220px;
    right: -320px;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .wrap,
  .nav {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 41px;
  }

  .lead {
    font-size: 18px;
  }

  .proof-panel,
  .contact-panel,
  .item,
  .case-card,
  .case-conclusion {
    padding: 20px;
  }

  .case-card {
    gap: 15px;
  }

  .case-card h3 {
    font-size: 25px;
  }

  .case-card dl div {
    padding-left: 13px;
  }

  .case-conclusion {
    gap: 20px;
  }

  .hero .proof-panel h2,
  h2 {
    font-size: 30px;
  }

  .button {
    width: 100%;
  }

  .agent-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .demo-button {
    width: 100%;
  }

  .demo-modal {
    padding: 14px;
  }

  .demo-modal-panel {
    padding: 20px;
  }

  .demo-modal-head {
    flex-direction: column;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
