:root {
  --ink: #071827;
  --navy: #08243a;
  --navy-2: #0d304b;
  --navy-3: #16435f;
  --lime: #9bc32d;
  --lime-bright: #c9f252;
  --lime-dark: #668f00;
  --pink: #3d7188;
  --pink-soft: #7fa6b6;
  --paper: #f5f7f3;
  --white: #ffffff;
  --muted: #667582;
  --line: #dbe2dd;
  --line-dark: rgba(255, 255, 255, 0.14);
  --success: #77ad0c;
  --shadow: 0 24px 70px rgba(7, 24, 39, 0.12);
  --shadow-small: 0 14px 36px rgba(7, 24, 39, 0.09);
  --radius: 26px;
  --radius-small: 16px;
  --shell: min(1180px, calc(100vw - 48px));
  --font: "Segoe UI Variable", "Segoe UI", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 24, 39, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.announcement {
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #061724;
  color: #d9e6ec;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.announcement-inner {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-bright);
  box-shadow: 0 0 18px rgba(201, 242, 82, 0.75);
}

.nav-shell {
  width: var(--shell);
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: 142px;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown > button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #dce6eb;
  font-size: 0.9rem;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover,
.desktop-nav > a[aria-current="page"],
.nav-dropdown.is-current > button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  transform: translateY(-2px) rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transition: transform 0.2s ease;
}

.nav-dropdown:focus-within .nav-chevron,
.nav-dropdown:hover .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: -170px;
  width: 520px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  visibility: hidden;
  opacity: 0;
  background: #0c263b;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

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

.dropdown-item {
  display: block;
  padding: 13px;
  border-radius: 13px;
  transition: background 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item[aria-current="page"] {
  background: rgba(255, 255, 255, 0.075);
}

.dropdown-item strong,
.dropdown-item span {
  display: block;
}

.dropdown-item strong {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.9rem;
}

.dropdown-item span {
  color: #9eb0bd;
  font-size: 0.76rem;
  line-height: 1.4;
}

.nav-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  margin-left: auto;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: transparent;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-open .menu-lines {
  background: transparent;
}

.menu-open .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  z-index: 999;
  top: 104px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 24px 40px;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  background: #061827;
  color: var(--white);
  transform: translateY(-12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.menu-open .mobile-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-panel nav {
  display: grid;
  gap: 7px;
}

.mobile-panel a {
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #dfe8ec;
  font-size: 1.05rem;
  font-weight: 650;
}

.mobile-panel .mobile-label {
  padding: 16px 4px 5px;
  border: 0;
  color: var(--lime-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-panel .button {
  margin-top: 16px;
  border-bottom: 0;
  justify-content: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--lime);
  border-radius: 13px;
  background: var(--lime);
  color: #102300;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 9px 26px rgba(155, 195, 45, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: var(--lime-bright);
  border-color: var(--lime-bright);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 0.82rem;
}

.button-dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--navy-3);
  background: var(--navy-3);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-quiet {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.button-quiet:hover {
  border-color: var(--lime);
  background: #fbfff4;
}

.arrow {
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.button:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(4px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lime-dark);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  display: block;
  background: var(--lime);
  content: "";
}

.eyebrow-light {
  color: var(--lime-bright);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before,
.page-hero::before,
.cta-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  content: "";
}

.hero::after {
  position: absolute;
  width: 720px;
  height: 720px;
  top: -350px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 113, 136, 0.2), rgba(61, 113, 136, 0) 68%);
  pointer-events: none;
  content: "";
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 30px;
  padding: 72px 0 58px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 24px;
  max-width: 820px;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  font-weight: 730;
  letter-spacing: -0.067em;
  line-height: 0.96;
}

.hero h1 .accent,
.page-hero h1 .accent {
  color: var(--lime-bright);
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #c7d4db;
  font-size: clamp(1.05rem, 1.7vw, 1.23rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-line {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  color: #9fb0bb;
  font-size: 0.79rem;
  font-weight: 650;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-line span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  width: 82%;
  height: 76%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 44px;
  background:
    radial-gradient(circle at 72% 30%, rgba(61, 113, 136, 0.24), transparent 40%),
    linear-gradient(145deg, rgba(18, 53, 77, 0.88), rgba(9, 31, 49, 0.38));
  transform: rotate(-2deg);
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 120%;
  max-width: none;
  filter: drop-shadow(0 34px 36px rgba(0, 0, 0, 0.38));
  transform: translateX(-3%);
}

.floating-note {
  position: absolute;
  z-index: 4;
  right: -4px;
  bottom: 38px;
  width: 220px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(8, 31, 48, 0.86);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  color: var(--lime-bright);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 0.86rem;
  line-height: 1.35;
}

.capability-rail {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.rail-shell {
  width: var(--shell);
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.rail-shell a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: #334854;
  font-size: 0.82rem;
  font-weight: 730;
  transition: color 0.2s ease, background 0.2s ease;
}

.rail-shell a:first-child {
  border-left: 1px solid var(--line);
}

.rail-shell a:hover {
  background: #f8fbed;
  color: var(--lime-dark);
}

.rail-index {
  color: var(--lime-dark);
  font-size: 0.7rem;
}

.section {
  width: var(--shell);
  margin: 0 auto;
  padding: 112px 0;
}

.section-tight {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head h2,
.split-copy h2,
.cta-panel h2 {
  margin: 14px 0 18px;
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
  font-weight: 720;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.section-head p,
.split-copy > p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.problem-statement {
  position: sticky;
  top: 136px;
}

.problem-statement h2 {
  margin: 15px 0 20px;
  font-size: clamp(2.5rem, 4.7vw, 4.8rem);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.problem-statement p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.outcome-stack {
  display: grid;
  gap: 13px;
}

.outcome-card {
  position: relative;
  min-height: 150px;
  padding: 26px 26px 24px 90px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.outcome-card::before {
  position: absolute;
  width: 1px;
  top: 28px;
  bottom: 28px;
  left: 66px;
  background: var(--line);
  content: "";
}

.outcome-number {
  position: absolute;
  top: 27px;
  left: 22px;
  color: var(--lime-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.outcome-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dark-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.dark-band::after {
  position: absolute;
  width: 580px;
  height: 580px;
  right: -260px;
  bottom: -340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 195, 45, 0.24), transparent 68%);
  content: "";
}

.dark-band .section-head p {
  color: #aebdc6;
}

.workspace-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.workspace-card {
  min-height: 255px;
  padding: 24px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.workspace-card:hover {
  border-color: rgba(201, 242, 82, 0.5);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-5px);
}

.card-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border: 1px solid rgba(201, 242, 82, 0.35);
  border-radius: 13px;
  background: rgba(155, 195, 45, 0.12);
  color: var(--lime-bright);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.workspace-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.workspace-card p {
  margin: 0;
  color: #a9bac5;
  font-size: 0.84rem;
  line-height: 1.55;
}

.connector-marquee {
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.connector-list {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.connector-pill {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfcfa;
  color: #42545e;
  font-size: 0.78rem;
  font-weight: 720;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 72px;
}

.split-copy ul,
.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.split-copy li,
.feature-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--line);
  color: #334752;
  font-size: 0.93rem;
}

.split-copy li::before,
.feature-list li::before {
  position: absolute;
  top: 14px;
  left: 2px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f4c6;
  color: var(--lime-dark);
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

.product-frame {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  background: var(--pink);
  box-shadow: var(--shadow);
  transform: rotate(1.3deg);
}

.product-frame::before {
  position: absolute;
  width: 90px;
  height: 20px;
  top: -10px;
  left: calc(50% - 45px);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.75);
  content: "";
}

.product-frame img {
  border-radius: 18px;
}

.agent-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid #27445a;
  border-radius: 26px;
  background: #0a1f31;
  color: var(--white);
  box-shadow: var(--shadow);
}

.agent-chat,
.agent-answer {
  min-height: 390px;
  padding: 24px;
  border-radius: 18px;
}

.agent-chat {
  display: flex;
  flex-direction: column;
  background: #101a26;
}

.agent-answer {
  background: var(--white);
  color: var(--ink);
}

.agent-label {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--lime-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.agent-label::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 13px rgba(201, 242, 82, 0.72);
  content: "";
}

.agent-message {
  margin: auto 0 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: #d7e0e6;
  font-size: 0.85rem;
}

.agent-input {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #8496a2;
  font-size: 0.82rem;
}

.agent-answer small {
  color: var(--lime-dark);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-answer h3 {
  margin: 10px 0 22px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.driver {
  margin: 15px 0;
}

.driver-head {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  color: #324550;
  font-size: 0.78rem;
  font-weight: 720;
}

.driver-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8ece9;
}

.driver-bar i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime-dark), var(--lime-bright));
}

.agent-foot {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.persona-tabs {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 24px;
}

.persona-buttons {
  display: grid;
  align-content: start;
  gap: 7px;
}

.persona-button {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: #445660;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 760;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.persona-button[aria-selected="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.persona-panel {
  min-height: 380px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.persona-panel[hidden] {
  display: none;
}

.persona-panel h3 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.persona-panel > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.persona-metrics {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.persona-metrics div {
  min-height: 120px;
  padding: 18px;
  border-radius: 14px;
  background: #f2f5f0;
}

.persona-metrics strong,
.persona-metrics span {
  display: block;
}

.persona-metrics strong {
  margin-bottom: 8px;
  color: var(--lime-dark);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.persona-metrics span {
  color: #324651;
  font-size: 0.86rem;
  line-height: 1.45;
}

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

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

.feature-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.feature-card.tall {
  min-height: 320px;
}

.feature-card.dark {
  border-color: #233f54;
  background: var(--navy);
  color: var(--white);
}

.feature-card .card-mark {
  margin-bottom: 30px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-card.dark p {
  color: #aebdc6;
}

.feature-card .text-link {
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime-dark);
  font-size: 0.84rem;
  font-weight: 820;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.metric-strip div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metric-strip div:last-child {
  border-right: 0;
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  margin-bottom: 8px;
  color: var(--lime-dark);
  font-size: 1.02rem;
}

.metric-strip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 0%, rgba(61, 113, 136, 0.2), transparent 31%),
    var(--ink);
  color: var(--white);
}

.page-hero-shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: 540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  align-items: center;
  gap: 70px;
  padding: 74px 0;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: #bdcbd3;
  font-size: 1.08rem;
}

.page-hero-aside {
  padding: 27px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.page-hero-aside small {
  color: var(--lime-bright);
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero-aside ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.page-hero-aside li {
  padding: 10px 0;
  border-top: 1px solid var(--line-dark);
  color: #d7e1e7;
  font-size: 0.86rem;
}

.breadcrumb {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: max(24px, calc((100vw - 1180px) / 2));
  color: #8da0ad;
  font-size: 0.74rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--white);
}

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

.journey::before {
  position: absolute;
  z-index: 0;
  top: 34px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: var(--line);
  content: "";
}

.journey-step {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  text-align: center;
}

.journey-number {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--lime-dark);
  font-size: 0.76rem;
  font-weight: 860;
  box-shadow: var(--shadow-small);
}

.journey-step h3 {
  margin: 0 0 7px;
  font-size: 0.98rem;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.architecture {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.architecture-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.architecture-row:last-child {
  border-bottom: 0;
}

.architecture-label {
  display: flex;
  align-items: center;
  color: var(--lime-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.architecture-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.architecture-items span {
  padding: 8px 11px;
  border-radius: 9px;
  background: #eff3ed;
  color: #3b4e58;
  font-size: 0.76rem;
  font-weight: 670;
}

.architecture-row.highlight .architecture-items span {
  background: var(--navy);
  color: var(--white);
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.logo-chip {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: #29404e;
  font-size: 0.82rem;
  font-weight: 760;
  text-align: center;
  box-shadow: 0 8px 22px rgba(7, 24, 39, 0.04);
}

.code-surface {
  position: relative;
  padding: 25px;
  overflow: hidden;
  border: 1px solid #25445a;
  border-radius: 24px;
  background: #081b2a;
  color: var(--white);
  box-shadow: var(--shadow);
}

.code-header {
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9fb1bc;
  font-size: 0.72rem;
}

.code-header i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: var(--pink);
}

.code-header i:nth-child(2) {
  background: #f4c96d;
}

.code-header i:nth-child(3) {
  background: var(--lime);
}

.code-line {
  margin: 9px 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  color: #adbdc7;
  font-family: Consolas, "Cascadia Code", monospace;
  font-size: 0.76rem;
}

.code-line b {
  color: #546d7c;
  font-weight: 500;
}

.code-line em {
  color: var(--lime-bright);
  font-style: normal;
}

.code-line strong {
  color: #89b2c4;
  font-weight: 600;
}

.comparison {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.comparison th,
.comparison td {
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.84rem;
}

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

.comparison th:last-child,
.comparison td:last-child {
  border-right: 0;
}

.comparison thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison tbody th {
  color: var(--ink);
  font-weight: 760;
}

.comparison td {
  color: var(--muted);
}

.comparison .yes {
  color: var(--lime-dark);
  font-weight: 780;
}

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

.security-card {
  min-height: 260px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.security-card:first-child {
  grid-row: span 2;
  min-height: 536px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(61, 113, 136, 0.2), transparent 34%),
    var(--navy);
  border-color: #294a61;
}

.security-card .card-mark {
  margin-bottom: 60px;
}

.security-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.security-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.security-card:first-child p {
  color: #afc0ca;
}

.security-card ul {
  margin-top: 28px;
}

.audit-log {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
}

.audit-row {
  display: grid;
  grid-template-columns: 74px 1fr 82px;
  gap: 10px;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #a9bbc6;
  font-family: Consolas, monospace;
  font-size: 0.68rem;
}

.audit-row:last-child {
  border-bottom: 0;
}

.audit-row strong {
  color: #dce5ea;
}

.audit-row span:last-child {
  color: var(--lime-bright);
  text-align: right;
}

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

.industry-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-small);
}

.industry-card::before,
.industry-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.industry-card::before {
  width: 250px;
  height: 250px;
  top: -115px;
  right: -70px;
}

.industry-card::after {
  width: 160px;
  height: 160px;
  top: -70px;
  right: -30px;
  background: radial-gradient(circle, rgba(201, 242, 82, 0.2), transparent 68%);
}

.industry-card:nth-child(2n) {
  background: #14334a;
}

.industry-card:nth-child(3n) {
  background: #102a3f;
}

.industry-code {
  position: relative;
  z-index: 1;
  color: var(--lime-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.industry-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 10px;
  font-size: 1.7rem;
  letter-spacing: -0.045em;
}

.industry-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #aec0cb;
  font-size: 0.88rem;
}

.industry-card ul {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.industry-card li {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 99px;
  color: #c8d4db;
  font-size: 0.67rem;
}

.pricing-hero-switch {
  display: inline-flex;
  margin-top: 30px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.pricing-hero-switch button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #aabac5;
  font-size: 0.79rem;
  font-weight: 760;
}

.pricing-hero-switch button[aria-pressed="true"] {
  background: var(--white);
  color: var(--ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.price-card {
  position: relative;
  min-height: 540px;
  padding: 23px 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.price-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-9px);
}

.price-badge {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 5px 8px;
  border-radius: 99px;
  background: var(--lime-bright);
  color: #243600;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-card > small {
  color: var(--lime-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card.featured > small {
  color: var(--lime-bright);
}

.price-card h3 {
  margin: 9px 0 2px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.price-description {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.45;
}

.price-card.featured .price-description {
  color: #aebec8;
}

.price {
  margin: 20px 0;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-value strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-value span {
  color: var(--muted);
  font-size: 0.73rem;
}

.price-card.featured .price-value span {
  color: #aebec8;
}

.price-note {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.68rem;
}

.price-card.featured .price-note {
  color: #9fb2bf;
}

.price-card .button {
  width: 100%;
  min-height: 43px;
  margin-bottom: 22px;
  padding: 0 12px;
  font-size: 0.77rem;
}

.price-features {
  margin: 0 0 22px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card.featured .price-features {
  border-color: rgba(255, 255, 255, 0.13);
}

.price-features li {
  position: relative;
  margin: 10px 0;
  padding-left: 20px;
  color: #465963;
  font-size: 0.74rem;
  line-height: 1.4;
}

.price-features li::before {
  position: absolute;
  left: 0;
  color: var(--lime-dark);
  content: "✓";
  font-weight: 900;
}

.price-card.featured .price-features li {
  color: #d0dce2;
}

.price-card.featured .price-features li::before {
  color: var(--lime-bright);
}

.pricing-footnote {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.credit-explainer {
  padding: 35px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
  border: 1px solid #29465b;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
}

.credit-explainer h3 {
  margin: 10px 0 0;
  font-size: 2rem;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

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

.credit-points div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
}

.credit-points strong,
.credit-points span {
  display: block;
}

.credit-points strong {
  margin-bottom: 5px;
  color: var(--lime-bright);
  font-size: 0.74rem;
}

.credit-points span {
  color: #b6c5ce;
  font-size: 0.74rem;
  line-height: 1.45;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq-question {
  width: 100%;
  padding: 22px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 760;
}

.faq-question::after {
  width: 22px;
  height: 22px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-weight: 500;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 50px 22px 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-answer[hidden] {
  display: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-detail {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.contact-detail span,
.contact-detail strong {
  display: block;
}

.contact-detail span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail strong {
  margin-top: 4px;
  font-size: 0.92rem;
}

.contact-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-head {
  margin-bottom: 26px;
}

.form-head h2 {
  margin: 7px 0 0;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: #42545f;
  font-size: 0.76rem;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfcfa;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--lime-dark);
  outline: 2px solid rgba(155, 195, 45, 0.18);
}

.form-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-note {
  color: var(--muted);
  font-size: 0.7rem;
}

.cta-wrap {
  width: var(--shell);
  margin: 0 auto;
  padding: 28px 0 100px;
}

.cta-panel {
  position: relative;
  padding: 66px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(61, 113, 136, 0.2), transparent 34%),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.cta-panel p {
  max-width: 650px;
  color: #b8c6cf;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  background: #051520;
  color: var(--white);
}

.footer-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.65fr);
  gap: 48px;
  padding: 68px 0 48px;
}

.footer-brand img {
  width: 155px;
}

.footer-brand p {
  max-width: 350px;
  margin: 18px 0 0;
  color: #94a7b3;
  font-size: 0.84rem;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #7f929e;
  font-size: 0.69rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  margin: 9px 0;
  display: block;
  color: #d5e0e5;
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: var(--lime-bright);
}

.footer-bottom {
  width: var(--shell);
  margin: 0 auto;
  padding: 22px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #778b97;
  font-size: 0.71rem;
}

.note {
  padding: 17px 18px;
  border-left: 3px solid var(--lime);
  border-radius: 0 12px 12px 0;
  background: #eef5dc;
  color: #3d510e;
  font-size: 0.84rem;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual img {
    width: min(100%, 900px);
    transform: none;
  }

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

  .workspace-card:nth-child(4),
  .workspace-card:nth-child(5) {
    grid-column: span 1;
  }

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

  .price-card.featured {
    transform: none;
  }

  .footer-shell {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 840px) {
  .section {
    padding: 82px 0;
  }

  .section-tight {
    padding-top: 56px;
    padding-bottom: 56px;
  }

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

  .rail-shell a:nth-child(5) {
    grid-column: 1 / -1;
  }

  .problem-grid,
  .split,
  .contact-layout,
  .credit-explainer {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .problem-statement {
    position: static;
  }

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

  .page-hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 86px 0 68px;
  }

  .journey {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .journey::before {
    top: 20px;
    bottom: 20px;
    left: 31px;
    width: 1px;
    height: auto;
  }

  .journey-step {
    min-height: 70px;
    padding: 0 0 0 88px;
    text-align: left;
  }

  .journey-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .persona-tabs {
    grid-template-columns: 1fr;
  }

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

  .persona-button {
    text-align: center;
  }

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

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

  .metric-strip div:nth-child(2) {
    border-right: 0;
  }

  .metric-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .cta-panel {
    padding: 46px;
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .announcement {
    font-size: 0.64rem;
  }

  .nav-shell {
    min-height: 64px;
  }

  .mobile-panel {
    top: 98px;
  }

  .brand,
  .brand img {
    width: 125px;
  }

  .hero-shell {
    padding: 58px 0 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual::before {
    width: 95%;
    height: 74%;
    border-radius: 28px;
  }

  .floating-note {
    right: 0;
    bottom: -1px;
    width: 190px;
  }

  .rail-shell,
  .workspace-grid,
  .card-grid,
  .card-grid.two,
  .industry-grid,
  .security-grid,
  .pricing-grid,
  .logo-cloud,
  .persona-metrics,
  .credit-points,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .rail-shell a,
  .rail-shell a:first-child {
    min-height: 58px;
    justify-content: flex-start;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .rail-shell a:nth-child(5) {
    grid-column: auto;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2,
  .split-copy h2,
  .cta-panel h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .workspace-card {
    min-height: 220px;
  }

  .workspace-card:nth-child(4),
  .workspace-card:nth-child(5) {
    grid-column: auto;
  }

  .product-frame {
    padding: 10px;
    border-radius: 20px;
  }

  .agent-shell {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .agent-chat,
  .agent-answer {
    min-height: 310px;
    padding: 20px;
  }

  .persona-buttons {
    grid-template-columns: 1fr;
  }

  .persona-panel {
    min-height: auto;
    padding: 28px 22px;
  }

  .persona-metrics div {
    min-height: auto;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .metric-strip div,
  .metric-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip div:last-child {
    border-bottom: 0;
  }

  .architecture-row {
    grid-template-columns: 1fr;
  }

  .comparison-wrap {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 14px 12px;
    overflow-x: auto;
  }

  .comparison {
    min-width: 690px;
  }

  .security-card:first-child {
    grid-row: auto;
    min-height: 510px;
  }

  .price-card {
    min-height: auto;
  }

  .contact-form {
    padding: 25px 19px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-wrap {
    padding-bottom: 66px;
  }

  .cta-panel {
    padding: 38px 24px;
  }

  .footer-shell {
    gap: 24px;
    padding-top: 52px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* Security trust-centre page */
.security-page {
  background: #f2f5f6;
}

.security-page .site-header {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.security-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f2f5f6;
}

.security-hero::before,
.security-hero::after {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(8, 36, 58, 0.08);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.security-hero::before {
  top: -305px;
  left: -160px;
  box-shadow:
    0 0 0 80px rgba(8, 36, 58, 0.018),
    0 0 0 160px rgba(8, 36, 58, 0.012);
}

.security-hero::after {
  right: -210px;
  bottom: -320px;
  background: radial-gradient(circle, rgba(155, 195, 45, 0.14), transparent 67%);
  box-shadow: 0 0 0 95px rgba(155, 195, 45, 0.025);
}

.security-hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100vw - 40px));
  padding: 86px 0 68px;
  text-align: center;
}

.security-hero .eyebrow {
  justify-content: center;
}

.security-hero h1 {
  margin: 22px 0 24px;
  color: #030303;
  font-size: clamp(4.5rem, 8.2vw, 6.9rem);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.security-hero h1 span {
  color: var(--lime-dark);
}

.security-hero-lead {
  max-width: 760px;
  margin: 0 auto;
  color: #4f595e;
  font-size: clamp(1.06rem, 1.9vw, 1.28rem);
  line-height: 1.55;
}

.security-hero .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.security-hero .button-outline {
  border-color: #b7b8b1;
  color: var(--ink);
}

.security-hero .button-outline:hover {
  border-color: var(--ink);
  background: rgba(8, 36, 58, 0.05);
}

.security-assurance-rail {
  max-width: 850px;
  margin: 40px auto 0;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid #d9d5cc;
}

.security-assurance-rail span {
  padding: 8px 12px;
  border: 1px solid #d9d5cc;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: #465159;
  font-size: 0.72rem;
  font-weight: 720;
}

.security-trust-note {
  min-height: 96px;
  display: grid;
  place-items: center;
  border-top: 1px solid #dedad1;
  border-bottom: 1px solid #dedad1;
  background: #fbfaf6;
}

.security-trust-note p {
  width: var(--shell);
  margin: 0;
  color: #4c575d;
  font-size: 0.88rem;
  font-weight: 670;
  letter-spacing: 0.01em;
  text-align: center;
}

.security-trust-note strong {
  color: var(--ink);
}

.security-content {
  width: var(--shell);
  margin: 0 auto;
  padding: 116px 0;
}

.security-content + .security-content {
  padding-top: 12px;
}

.security-section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.security-section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.security-section-heading.center .eyebrow {
  justify-content: center;
}

.security-section-heading h2 {
  margin: 13px 0 16px;
  color: #050505;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 710;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.security-section-heading p {
  max-width: 720px;
  margin: 0;
  color: #626b70;
  font-size: 1rem;
}

.security-section-heading.center p {
  margin-right: auto;
  margin-left: auto;
}

.security-control-stack {
  display: grid;
  gap: 10px;
}

.security-feature-wide {
  min-height: 400px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  border: 1px solid #ebe7dd;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(25, 34, 39, 0.045);
}

.security-feature-wide.reverse .security-feature-copy {
  order: 2;
}

.security-feature-wide.reverse .security-visual {
  order: 1;
}

.security-feature-copy {
  min-height: 360px;
  padding: 38px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.security-feature-copy small,
.security-pair-card small {
  color: var(--lime-dark);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.security-feature-copy h3 {
  margin: 13px 0 13px;
  color: #080808;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.security-feature-copy p {
  margin: 0;
  color: #646d72;
  font-size: 0.91rem;
  line-height: 1.65;
}

.security-feature-points {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.security-feature-points li {
  position: relative;
  padding-left: 21px;
  color: #34434b;
  font-size: 0.8rem;
  font-weight: 650;
}

.security-feature-points li::before {
  position: absolute;
  top: 0.52em;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.security-visual {
  min-height: 368px;
  padding: 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 19px;
  background:
    radial-gradient(circle at 80% 15%, rgba(61, 113, 136, 0.18), transparent 33%),
    #0b2438;
  color: var(--white);
}

.security-ui {
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(4, 18, 28, 0.7);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.security-ui-header {
  min-height: 49px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #a9bbc7;
  font-size: 0.68rem;
  font-weight: 750;
}

.security-ui-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lime-bright);
}

.security-ui-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(201, 242, 82, 0.65);
  content: "";
}

.identity-list {
  padding: 12px;
  display: grid;
  gap: 7px;
}

.identity-row {
  padding: 12px;
  display: grid;
  grid-template-columns: 35px 1fr auto;
  gap: 11px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.identity-avatar {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(155, 195, 45, 0.15);
  color: var(--lime-bright);
  font-size: 0.66rem;
  font-weight: 850;
}

.identity-row strong,
.identity-row span {
  display: block;
}

.identity-row strong {
  color: #ecf2f5;
  font-size: 0.73rem;
}

.identity-row span {
  color: #8498a5;
  font-size: 0.62rem;
}

.identity-role {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  color: #bfccd3;
  font-size: 0.58rem;
  font-weight: 760;
}

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

.security-pair-card {
  min-height: 235px;
  padding: 32px;
  border: 1px solid #ebe7dd;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(25, 34, 39, 0.035);
}

.security-pair-mark {
  width: 40px;
  height: 40px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #dce7c0;
  border-radius: 13px;
  background: #f0f7df;
  color: var(--lime-dark);
  font-size: 0.69rem;
  font-weight: 850;
}

.security-pair-card h3 {
  margin: 10px 0 9px;
  color: #090909;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.security-pair-card p {
  margin: 0;
  color: #687176;
  font-size: 0.86rem;
  line-height: 1.6;
}

.deployment-options {
  width: min(100%, 430px);
  display: grid;
  gap: 9px;
}

.deployment-option {
  min-height: 78px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(3, 15, 24, 0.52);
}

.deployment-option.is-selected {
  border-color: rgba(201, 242, 82, 0.55);
  background: rgba(155, 195, 45, 0.09);
}

.deployment-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lime-bright);
  font-size: 0.65rem;
  font-weight: 850;
}

.deployment-option strong,
.deployment-option span {
  display: block;
}

.deployment-option strong {
  color: #eef3f6;
  font-size: 0.76rem;
}

.deployment-option span {
  color: #8599a6;
  font-size: 0.62rem;
}

.deployment-option b {
  color: var(--lime-bright);
  font-size: 0.61rem;
  font-weight: 780;
}

.security-audit-visual {
  width: min(100%, 440px);
}

.security-audit-visual .audit-log {
  margin: 0;
  border-radius: 17px;
  background: rgba(3, 15, 24, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.security-audit-visual .audit-row {
  min-height: 53px;
  align-items: center;
}

.security-boundary {
  position: relative;
  width: min(360px, 88%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.security-boundary::before,
.security-boundary::after {
  position: absolute;
  border: 1px solid rgba(201, 242, 82, 0.2);
  border-radius: 50%;
  content: "";
}

.security-boundary::before {
  inset: 0;
  box-shadow:
    0 0 0 28px rgba(155, 195, 45, 0.025),
    0 0 0 56px rgba(155, 195, 45, 0.015);
}

.security-boundary::after {
  inset: 22%;
  background: radial-gradient(circle, rgba(155, 195, 45, 0.18), rgba(155, 195, 45, 0.03));
}

.security-boundary-core {
  position: relative;
  z-index: 2;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 242, 82, 0.48);
  border-radius: 28px;
  background: #102d42;
  color: var(--lime-bright);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.boundary-chip {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(4, 18, 28, 0.8);
  color: #b9c8d0;
  font-size: 0.58rem;
  font-weight: 720;
}

.boundary-chip:nth-child(2) {
  top: 6%;
  left: 39%;
}

.boundary-chip:nth-child(3) {
  top: 43%;
  right: -3%;
}

.boundary-chip:nth-child(4) {
  right: 23%;
  bottom: 3%;
}

.boundary-chip:nth-child(5) {
  top: 44%;
  left: -3%;
}

.security-frameworks {
  padding: 54px;
  border: 1px solid #e3dfd6;
  border-radius: 28px;
  background: #ffffff;
}

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

.security-framework-card {
  min-height: 190px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e7e3da;
  border-radius: 18px;
  background: #f2f5f6;
}

.security-framework-code {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--lime-bright);
  font-size: 0.67rem;
  font-weight: 850;
}

.security-framework-card strong {
  margin-top: auto;
  color: #1a252b;
  font-size: 0.92rem;
}

.security-framework-card span {
  margin-top: 5px;
  color: #6f777a;
  font-size: 0.7rem;
  line-height: 1.4;
}

.security-framework-note {
  margin: 24px 0 0;
  color: #687176;
  font-size: 0.77rem;
  text-align: center;
}

.security-faq-wrap {
  max-width: 690px;
  margin: 0 auto;
}

.security-faq-wrap .faq-list {
  max-width: none;
  display: grid;
  gap: 8px;
  border-top: 0;
}

.security-faq-wrap .faq-item {
  overflow: hidden;
  border: 1px solid #e4e0d7;
  border-radius: 16px;
  background: #ffffff;
}

.security-faq-wrap .faq-question {
  padding: 17px 18px;
  border: 0;
  font-size: 0.9rem;
}

.security-faq-wrap .faq-answer {
  padding: 0 54px 18px 18px;
}

.security-review-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 0%, rgba(61, 113, 136, 0.2), transparent 32%),
    var(--ink);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.security-review-card .eyebrow {
  justify-content: center;
}

.security-review-card h2 {
  margin: 16px 0;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.security-review-card p {
  max-width: 650px;
  margin: 0 auto;
  color: #adbec8;
}

.security-review-card .hero-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .security-feature-wide {
    grid-template-columns: 1fr;
  }

  .security-feature-wide.reverse .security-feature-copy,
  .security-feature-wide.reverse .security-visual {
    order: initial;
  }

  .security-feature-copy {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .security-hero {
    min-height: 620px;
  }

  .security-hero-inner {
    padding-top: 68px;
  }

  .security-hero h1 {
    font-size: clamp(3.7rem, 19vw, 5.3rem);
  }

  .security-content {
    padding: 82px 0;
  }

  .security-content + .security-content {
    padding-top: 0;
  }

  .security-section-heading h2 {
    font-size: clamp(2.7rem, 14vw, 3.8rem);
  }

  .security-feature-wide {
    padding: 9px;
    gap: 9px;
  }

  .security-feature-copy {
    min-height: auto;
    padding: 31px 23px;
  }

  .security-visual {
    min-height: 330px;
    padding: 17px;
  }

  .security-pair-grid,
  .security-framework-grid {
    grid-template-columns: 1fr;
  }

  .security-pair-card {
    min-height: auto;
  }

  .security-pair-mark {
    margin-bottom: 30px;
  }

  .security-frameworks {
    padding: 28px 18px;
  }

  .security-framework-card {
    min-height: 165px;
  }

  .security-review-card {
    padding: 44px 24px;
  }
}

/* Editorial image system */
.brand {
  aspect-ratio: 1800 / 512;
}

.brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 1800 / 512;
  object-fit: contain;
}

.footer-brand img {
  width: 155px;
  height: auto;
  aspect-ratio: 860 / 256;
  object-fit: contain;
}

.home-page .hero {
  min-height: 750px;
}

.home-page .hero-shell {
  min-height: 750px;
}

.hero-visual-editorial {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  min-height: 0;
  pointer-events: none;
}

.hero-visual-editorial::before {
  display: none;
}

.hero-visual-editorial::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, #091c2c 0%, rgba(9, 28, 44, 0.96) 28%, rgba(9, 28, 44, 0.42) 52%, rgba(9, 28, 44, 0) 76%);
  content: "";
}

.hero-visual-editorial img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1821 / 864;
  object-fit: cover;
  object-position: 55% center;
  filter: none;
}

.home-page .hero-copy {
  z-index: 4;
  align-self: center;
}

.product-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1.52fr);
  gap: 78px;
  align-items: center;
}

.product-proof-head {
  max-width: 410px;
}

.product-proof-head h2 {
  margin: 16px 0 20px;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.5vw, 3.45rem);
  font-weight: 620;
  letter-spacing: -0.048em;
  line-height: 1.04;
}

.product-proof-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.product-proof-media {
  margin: 0;
  padding: 14px 14px 0;
  overflow: hidden;
  border: 1px solid #233f52;
  border-radius: 10px;
  background: #0a2437;
  box-shadow: 0 28px 70px rgba(10, 34, 51, 0.18);
}

.product-proof-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1656 / 950;
  object-fit: contain;
  border-radius: 5px 5px 0 0;
}

.product-proof-media figcaption {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  color: #b7c5cc;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;
}

.product-proof-media figcaption span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.editorial-stage {
  position: relative;
  width: min(1520px, calc(100vw - 48px));
  aspect-ratio: 1707 / 920;
  margin: 92px auto;
  overflow: hidden;
  border: 1px solid #d6dde0;
  border-radius: 10px;
  background: #f3f1ed;
}

.editorial-stage-dark {
  border-color: #263b49;
  background: #111416;
}

.editorial-stage-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.editorial-stage-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1707 / 920;
  object-fit: cover;
}

.editorial-stage-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 7.5%;
  width: min(470px, 36%);
  transform: translateY(-50%);
}

.editorial-stage-copy-right .editorial-stage-copy {
  right: 7.5%;
  left: auto;
}

.editorial-stage-copy-top {
  top: 9%;
  transform: none;
}

.editorial-stage-copy h2 {
  margin: 15px 0 17px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.2vw, 3.65rem);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.editorial-stage-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.editorial-stage-dark .editorial-stage-copy h2 {
  color: var(--white);
}

.editorial-stage-dark .editorial-stage-copy p {
  color: #adbdc6;
}

.source-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.source-ledger span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #344852;
  font-size: 0.84rem;
  font-weight: 710;
}

.source-ledger span:nth-child(odd) {
  padding-right: 18px;
}

.source-ledger span:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.source-ledger span::before {
  width: 5px;
  height: 5px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.industry-grid-visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.industry-grid-visual .industry-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.industry-grid-visual .industry-card:nth-child(2n),
.industry-grid-visual .industry-card:nth-child(3n) {
  background: #ffffff;
}

.industry-media {
  position: relative;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: #e8ecee;
}

.industry-media::after {
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(10, 34, 51, 0.12);
  box-shadow: inset 0 -70px 70px -80px rgba(10, 34, 51, 0.42);
  content: "";
}

.industry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-body {
  padding: 32px 34px 35px;
}

.industry-grid-visual .industry-code {
  color: var(--lime-dark);
}

.industry-grid-visual .industry-card h3 {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 620;
  line-height: 1.12;
}

.industry-grid-visual .industry-card p,
.industry-grid-visual .industry-card li {
  color: var(--muted);
}

.industry-grid-visual .industry-card ul {
  border-top-color: var(--line);
}

.industry-grid-visual .industry-card li::before {
  background: var(--lime);
}

.industry-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
}

.industry-card-wide .industry-media {
  min-height: 430px;
  aspect-ratio: auto;
}

.industry-card-wide .industry-body {
  align-self: center;
  padding: 46px;
}

@media (max-width: 1080px) {
  .product-proof {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-proof-head {
    max-width: 720px;
  }

  .editorial-stage {
    width: calc(100vw - 56px);
  }

  .editorial-stage-copy {
    width: min(430px, 42%);
  }

  .industry-card-wide {
    grid-template-columns: 1fr;
  }

  .industry-card-wide .industry-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 840px) {
  .home-page .hero,
  .home-page .hero-shell {
    min-height: auto;
  }

  .hero-visual-editorial {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .hero-visual-editorial::after {
    background: linear-gradient(180deg, #091c2c 0%, rgba(9, 28, 44, 0.08) 38%, rgba(9, 28, 44, 0) 100%);
  }

  .hero-visual-editorial img {
    width: 100%;
    height: 100%;
    object-position: 70% center;
  }

  .editorial-stage {
    width: calc(100vw - 36px);
    aspect-ratio: auto;
    margin: 64px auto;
  }

  .editorial-stage-media {
    position: relative;
    aspect-ratio: 4 / 3;
  }

  .editorial-stage-media img {
    aspect-ratio: 4 / 3;
  }

  .editorial-stage-copy,
  .editorial-stage-copy-right .editorial-stage-copy,
  .editorial-stage-copy-top {
    position: relative;
    inset: auto;
    width: auto;
    padding: 36px 30px 39px;
    transform: none;
  }

  .editorial-stage-dark .editorial-stage-copy {
    background: #111416;
  }

  .industry-grid-visual {
    grid-template-columns: 1fr;
  }

  .industry-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .brand,
  .brand img {
    width: 125px;
  }

  .product-proof-media figcaption {
    min-height: 0;
    padding: 18px 0;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .product-proof-media figcaption span + span {
    border-left: 0;
  }

  .source-ledger {
    grid-template-columns: 1fr;
  }

  .source-ledger span:nth-child(odd),
  .source-ledger span:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .industry-body,
  .industry-card-wide .industry-body {
    padding: 26px 24px 29px;
  }
}

/* OptiFI enterprise visual system */
:root {
  --ink: #0a2233;
  --navy: #0b2b40;
  --navy-2: #12384d;
  --navy-3: #1c4a61;
  --lime: #88a91f;
  --lime-bright: #a7c43a;
  --lime-dark: #607c0a;
  --pink: #3d7188;
  --pink-soft: #7fa6b6;
  --paper: #f3f6f7;
  --muted: #5e6c75;
  --line: #d7dfe3;
  --shadow: 0 20px 50px rgba(10, 34, 51, 0.1);
  --shadow-small: 0 8px 24px rgba(10, 34, 51, 0.065);
  --radius: 14px;
  --radius-small: 7px;
  --shell: min(1360px, calc(100vw - 96px));
}

body {
  background: var(--paper);
}

.site-header {
  border-bottom: 1px solid #d9e0e4;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(10, 34, 51, 0.035);
}

.nav-shell {
  min-height: 82px;
  gap: 34px;
}

.brand,
.brand img {
  width: 154px;
}

.desktop-nav > a,
.nav-dropdown > button {
  border-radius: 4px;
  color: #344853;
  font-size: 0.86rem;
  font-weight: 680;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover,
.desktop-nav > a[aria-current="page"],
.nav-dropdown.is-current > button {
  background: #eef2f3;
  color: var(--ink);
}

.dropdown-panel {
  border-color: #d8e0e4;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(10, 34, 51, 0.15);
}

.dropdown-item {
  border-radius: 5px;
}

.dropdown-item:hover,
.dropdown-item[aria-current="page"] {
  background: #eef3f4;
}

.dropdown-item strong {
  color: var(--ink);
}

.dropdown-item span {
  color: #667780;
}

.menu-toggle {
  border-color: #cbd5da;
  border-radius: 4px;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  background: var(--ink);
}

.mobile-panel {
  top: 82px;
  background: #ffffff;
  color: var(--ink);
}

.mobile-panel a {
  border-bottom-color: #dfe5e8;
  color: #344852;
}

.mobile-panel .mobile-label {
  color: var(--lime-dark);
}

.button {
  min-height: 49px;
  padding: 0 21px;
  border-color: var(--navy);
  border-radius: 5px;
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
  font-size: 0.85rem;
  font-weight: 760;
}

.button:hover {
  border-color: var(--navy-3);
  background: var(--navy-3);
  color: var(--white);
  transform: none;
}

.button-small {
  min-height: 42px;
  border-radius: 4px;
}

.nav-cta {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button-quiet {
  border-color: #cbd5da;
  background: #ffffff;
  color: var(--ink);
}

.button-quiet:hover {
  border-color: var(--navy);
  background: #ffffff;
  color: var(--ink);
}

.eyebrow {
  color: var(--lime-dark);
  font-size: 0.71rem;
  letter-spacing: 0.1em;
}

.eyebrow::before {
  width: 28px;
  background: var(--lime);
}

.hero {
  background: #091c2c;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 96px 100%;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.hero::after {
  width: 820px;
  height: 820px;
  top: -390px;
  right: -250px;
  background: radial-gradient(circle, rgba(61, 113, 136, 0.25), rgba(61, 113, 136, 0) 68%);
}

.hero-shell {
  min-height: 720px;
  grid-template-columns: minmax(470px, 0.9fr) minmax(620px, 1.1fr);
  gap: 70px;
  padding: 82px 0 76px;
}

.hero h1 {
  max-width: 720px;
  margin: 19px 0 25px;
  font-size: clamp(3.35rem, 4.1vw, 4.1rem);
  font-weight: 610;
  letter-spacing: -0.052em;
  line-height: 1.01;
}

.hero h1 .accent {
  color: var(--lime-bright);
}

.hero-lead {
  max-width: 680px;
  color: #c1ced5;
  font-size: clamp(1.04rem, 1.45vw, 1.18rem);
}

.hero .button:not(.button-outline),
.page-hero .button:not(.button-outline),
.cta-panel .button:not(.button-outline),
.security-review-card .button:not(.button-outline) {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.hero .button:not(.button-outline):hover,
.page-hero .button:not(.button-outline):hover,
.cta-panel .button:not(.button-outline):hover,
.security-review-card .button:not(.button-outline):hover {
  border-color: #e8edef;
  background: #e8edef;
  color: var(--ink);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.48);
  border-radius: 5px;
}

.hero-visual {
  min-height: 545px;
}

.hero-visual::before {
  width: 95%;
  height: 88%;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(32, 69, 92, 0.72), rgba(9, 28, 44, 0.16));
  transform: none;
}

.hero-visual img {
  width: 112%;
  max-width: none;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.28));
  transform: none;
}

.floating-note {
  display: none;
}

.trust-line {
  margin-top: 31px;
  gap: 8px 22px;
  color: #a6b7c0;
  font-size: 0.75rem;
}

.trust-line span::before {
  width: 4px;
  height: 4px;
  background: #90aa44;
}

.capability-rail {
  background: #ffffff;
}

.rail-shell {
  min-height: 88px;
}

.rail-shell a {
  color: #384c57;
  font-size: 0.8rem;
}

.rail-shell a:hover {
  background: #f1f5f6;
  color: var(--ink);
}

.section {
  padding: 126px 0;
}

.section-tight {
  padding-top: 82px;
  padding-bottom: 82px;
}

.section-head {
  max-width: 850px;
  margin-bottom: 52px;
}

.section-head h2,
.split-copy h2,
.cta-panel h2 {
  font-size: clamp(2.45rem, 4vw, 3.85rem);
  font-weight: 620;
  letter-spacing: -0.048em;
  line-height: 1.04;
}

.problem-grid {
  grid-template-columns: 0.88fr 1.12fr;
  gap: 105px;
}

.problem-statement h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.25rem);
  font-weight: 620;
  line-height: 1.02;
}

.outcome-stack {
  gap: 16px;
}

.outcome-card {
  min-height: 154px;
  padding: 28px 30px 27px 94px;
  border-radius: 8px;
  box-shadow: none;
}

.workspace-grid {
  gap: 15px;
}

.workspace-card {
  min-height: 270px;
  padding: 28px 23px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.workspace-card:hover {
  border-color: rgba(167, 196, 58, 0.36);
  background: rgba(255, 255, 255, 0.055);
  transform: none;
}

.card-mark {
  border-radius: 5px;
  background: rgba(136, 169, 31, 0.11);
  color: #b8cd6a;
}

.dark-band::after {
  display: none;
}

.connector-pill {
  border-radius: 4px;
  background: #ffffff;
}

.split {
  gap: 96px;
}

.product-frame {
  padding: 10px;
  border: 1px solid #24445a;
  border-radius: 9px;
  background: #0b2b40;
  transform: none;
}

.product-frame::before {
  display: none;
}

.product-frame img {
  border-radius: 5px;
}

.agent-shell {
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: #0a2437;
}

.agent-chat,
.agent-answer {
  border-radius: 6px;
}

.persona-button,
.persona-panel,
.feature-card,
.metric-strip,
.architecture,
.code-surface,
.comparison,
.industry-card,
.price-card,
.contact-form,
.contact-detail {
  border-radius: 8px;
}

.feature-card,
.persona-panel,
.metric-strip,
.contact-form {
  box-shadow: none;
}

.feature-card {
  padding: 31px;
}

.persona-button[aria-selected="true"] {
  background: var(--navy);
}

.persona-metrics div {
  border-radius: 5px;
  background: #edf2f3;
}

.metric-strip {
  border-radius: 8px;
}

.page-hero {
  background: #0a2437;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 108px 100%;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.page-hero-shell {
  min-height: 580px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
  gap: 110px;
  padding: 88px 0;
}

.page-hero h1 {
  font-size: clamp(3.15rem, 4.35vw, 4.25rem);
  font-weight: 610;
  letter-spacing: -0.052em;
  line-height: 1.01;
}

.page-hero h1 .accent {
  color: var(--lime-bright);
}

.page-hero-aside {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.journey-number {
  border-radius: 5px;
  box-shadow: none;
}

.logo-chip {
  border-radius: 6px;
  box-shadow: none;
}

.code-line strong {
  color: #89b2c4;
}

.security-card,
.audit-log {
  border-radius: 8px;
}

.industry-card::before,
.industry-card::after {
  display: none;
}

.price-card.featured {
  box-shadow: 0 14px 34px rgba(10, 34, 51, 0.12);
  transform: none;
}

.price-badge {
  border-radius: 3px;
}

.pricing-hero-switch {
  border-radius: 5px;
}

.pricing-hero-switch button {
  border-radius: 3px;
}

.credit-explainer,
.cta-panel {
  border-radius: 9px;
}

.cta-panel {
  background: var(--ink);
}

.cta-panel::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 110px 100%;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 5px;
}

/* Security page: enterprise trust centre */
.security-page {
  background: #f2f5f6;
}

.security-hero {
  min-height: 640px;
  border-bottom: 1px solid #dce3e6;
  background: #ffffff;
}

.security-hero::before,
.security-hero::after {
  display: none;
}

.security-hero-inner {
  width: min(1060px, calc(100vw - 64px));
  padding: 98px 0 88px;
}

.security-hero h1 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-size: clamp(3.7rem, 6vw, 5.35rem);
  font-weight: 610;
  letter-spacing: -0.058em;
  line-height: 1;
}

.security-hero h1 span {
  color: var(--ink);
}

.security-hero-lead {
  max-width: 830px;
  color: #53636c;
}

.security-hero .button-outline {
  border-color: #b8c4ca;
  color: var(--ink);
}

.security-assurance-rail {
  max-width: 980px;
  border-top-color: #d7e0e4;
}

.security-assurance-rail span {
  border-color: #cfd9de;
  border-radius: 4px;
  background: #f6f8f9;
}

.security-trust-note {
  min-height: 102px;
  border-color: #d7e0e4;
  background: #eaf0f2;
}

.security-content {
  padding: 132px 0;
}

.security-content + .security-content {
  padding-top: 16px;
}

.security-section-heading {
  max-width: 980px;
  margin-bottom: 52px;
}

.security-section-heading h2 {
  color: var(--ink);
  font-size: clamp(3rem, 4.6vw, 4.45rem);
  font-weight: 610;
  letter-spacing: -0.052em;
  line-height: 1.01;
}

.security-control-stack {
  gap: 16px;
}

.security-feature-wide {
  min-height: 440px;
  padding: 12px;
  gap: 46px;
  border-color: #dce3e6;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: none;
}

.security-feature-copy {
  min-height: 414px;
  padding: 48px 50px;
}

.security-feature-copy small,
.security-pair-card small {
  color: var(--lime-dark);
}

.security-feature-copy h3,
.security-pair-card h3 {
  color: var(--ink);
}

.security-visual {
  min-height: 414px;
  border-radius: 6px;
  background: linear-gradient(145deg, #0f3349, #081f31);
}

.security-ui,
.security-audit-visual .audit-log {
  border-radius: 7px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.17);
}

.identity-row,
.deployment-option {
  border-radius: 5px;
}

.identity-avatar,
.deployment-icon {
  border-radius: 4px;
}

.identity-role {
  border-radius: 3px;
}

.security-pair-grid {
  gap: 16px;
}

.security-pair-card {
  min-height: 255px;
  padding: 38px;
  border-color: #dce3e6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.security-pair-mark {
  border-color: #d6e0b8;
  border-radius: 4px;
  background: #eff4df;
}

.security-boundary-core {
  border-radius: 7px;
}

.boundary-chip {
  border-radius: 3px;
}

.security-frameworks {
  padding: 60px;
  border-color: #d8e1e5;
  border-radius: 9px;
  background: #ffffff;
}

.security-framework-card {
  min-height: 205px;
  border-color: #dce3e6;
  border-radius: 6px;
  background: #f2f5f6;
}

.security-framework-code {
  border-radius: 4px;
}

.security-faq-wrap .faq-item {
  border-color: #d8e1e5;
  border-radius: 6px;
  background: #ffffff;
}

.security-review-card {
  max-width: 1040px;
  padding: 72px;
  border-radius: 9px;
  background: var(--ink);
}

.security-review-card h2 {
  font-weight: 610;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 56px, 1100px);
  }

  .hero-shell {
    grid-template-columns: minmax(370px, 0.9fr) minmax(500px, 1.1fr);
    gap: 48px;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 48px, 980px);
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual img {
    width: min(100%, 940px);
  }
}

@media (max-width: 840px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  .section {
    padding: 92px 0;
  }

  .page-hero-shell {
    gap: 44px;
  }

  .security-content {
    padding: 96px 0;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand,
  .brand img {
    width: 136px;
  }

  .mobile-panel {
    top: 72px;
  }

  .hero-shell {
    padding: 64px 0 50px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.75rem);
    letter-spacing: -0.05em;
  }

  .hero-visual {
    min-height: 340px;
  }

  .security-hero {
    min-height: 590px;
  }

  .security-hero-inner {
    width: calc(100vw - 32px);
    padding: 76px 0 66px;
  }

  .security-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.3rem);
  }

  .security-feature-wide {
    gap: 10px;
  }

  .security-feature-copy {
    min-height: auto;
    padding: 34px 25px;
  }

  .security-visual {
    min-height: 340px;
  }

  .security-frameworks,
  .security-review-card {
    padding: 38px 22px;
  }
}

/* Homepage launch hero: authoritative full-bleed rules. */
.home-page .hero {
  min-height: 750px;
}

.home-page .hero-shell {
  min-height: 750px;
}

.home-page .hero-visual-editorial {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 50%;
  display: block;
  width: 100vw;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

.home-page .hero-visual-editorial::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #091c2c 0%, rgba(9, 28, 44, 0.97) 27%, rgba(9, 28, 44, 0.46) 51%, rgba(9, 28, 44, 0.02) 74%),
    linear-gradient(180deg, rgba(9, 28, 44, 0.08), transparent 32%, rgba(9, 28, 44, 0.1));
  content: "";
}

.home-page .hero-visual-editorial img {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  filter: none;
  transform: none;
}

@media (max-width: 840px) {
  .home-page .hero,
  .home-page .hero-shell {
    min-height: 760px;
  }

  .home-page .hero-visual-editorial {
    position: absolute;
    inset: 0 auto 0 50%;
    width: 100vw;
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
    transform: translateX(-50%);
  }

  .home-page .hero-visual-editorial::after {
    background:
      linear-gradient(90deg, rgba(9, 28, 44, 0.98) 0%, rgba(9, 28, 44, 0.91) 58%, rgba(9, 28, 44, 0.52) 100%),
      linear-gradient(180deg, rgba(9, 28, 44, 0.18), transparent 45%, rgba(9, 28, 44, 0.46));
  }

  .home-page .hero-visual-editorial img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-position: 72% center;
  }
}
