:root {
  --ink: #071a2b;
  --ink-2: #0b2b46;
  --ink-3: #123c5d;
  --blue: #155f87;
  --blue-bright: #1b82b2;
  --mint: #88e3bf;
  --mint-dark: #2a8e73;
  --paper: #f4f3ee;
  --paper-warm: #eceae2;
  --white: #fff;
  --line: #d7dcd9;
  --muted: #63717c;
  --danger: #b65e52;
  --shadow-sm: 0 10px 35px rgba(7, 26, 43, .08);
  --shadow-lg: 0 28px 80px rgba(7, 26, 43, .18);
  --radius: 4px;
  --radius-lg: 18px;
  --container: 1240px;
  --header-height: 78px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

svg {
  display: block;
}

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

h1,
h2,
h3 {
  letter-spacing: -.035em;
  line-height: 1.06;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.7rem);
  margin-bottom: 24px;
}

h3 {
  font-size: 1.45rem;
  font-weight: 620;
}

::selection {
  color: var(--ink);
  background: var(--mint);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  transform: translateY(-160%);
  color: var(--ink);
  background: var(--mint);
  border-radius: 4px;
  font-weight: 700;
  transition: transform .2s ease;
}

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

.utility-bar {
  position: relative;
  z-index: 30;
  color: #cfdae2;
  background: #04121f;
  font-size: .74rem;
  letter-spacing: .02em;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(136, 227, 191, .08);
}

.utility-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  transition: color .2s;
}

.utility-inner a:hover {
  color: var(--mint);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(244, 243, 238, .9);
  border-bottom: 1px solid rgba(7, 26, 43, .08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 40px rgba(7, 26, 43, .08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 750;
  letter-spacing: -.04em;
}

.brand em {
  color: var(--blue);
  font-style: normal;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.brand-mark rect {
  fill: var(--ink-2);
  stroke: var(--ink-2);
}

.brand-mark path {
  fill: none;
  stroke: var(--mint);
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.site-nav a {
  position: relative;
  color: #263c4d;
  font-size: .86rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue);
  transition: transform .25s var(--ease);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  position: relative;
}

.language-button {
  min-width: 61px;
  height: 39px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ink);
  background: transparent;
  border: 1px solid #cbd1d0;
  border-radius: 3px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 750;
}

.language-button svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform .2s ease;
}

.language-switcher.open .language-button svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  padding: 8px;
  visibility: hidden;
  transform: translateY(-7px);
  opacity: 0;
  background: var(--white);
  border: 1px solid #d6dcdd;
  box-shadow: var(--shadow-sm);
  transition: .2s ease;
}

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

.language-menu button {
  width: 100%;
  padding: 10px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #354a5a;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: .86rem;
}

.language-menu button:hover,
.language-menu button[aria-selected="true"] {
  color: var(--ink);
  background: #edf4f2;
}

.language-menu button span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 750;
}

.menu-toggle {
  width: 44px;
  height: 42px;
  margin-left: auto;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid #ccd3d5;
  border-radius: 4px;
}

.menu-toggle > span:not(.sr-only) {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: .2s ease;
}

.button {
  min-height: 51px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 720;
  letter-spacing: -.01em;
  line-height: 1.15;
  transition: transform .2s var(--ease), color .2s, background .2s, border-color .2s, box-shadow .2s;
}

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

.button-small {
  min-height: 39px;
  padding-inline: 16px;
  font-size: .77rem;
}

.button-primary {
  color: var(--white);
  background: var(--ink-2);
  border-color: var(--ink-2);
  box-shadow: 0 10px 30px rgba(11, 43, 70, .12);
}

.button-primary:hover {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
  box-shadow: 0 12px 35px rgba(42, 142, 115, .2);
}

.button-ghost {
  min-height: 49px;
  color: var(--ink);
  background: transparent;
  border-color: #acb7ba;
}

.button-ghost:hover,
.button-outline:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.button-dark:hover {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: #aeb8ba;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  padding: 94px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 35%, rgba(27, 130, 178, .12), transparent 33%),
    linear-gradient(125deg, #f7f7f3 0%, #efeee8 52%, #e7eef0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -57%;
  width: 730px;
  height: 730px;
  border: 1px solid rgba(21, 95, 135, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(21, 95, 135, .025), 0 0 0 170px rgba(21, 95, 135, .02);
}

.hero-grid-bg,
.contact-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .36;
  background-image:
    linear-gradient(rgba(11, 43, 70, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 43, 70, .06) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to right, black, transparent 70%);
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(460px, .82fr);
  align-items: center;
  gap: 6.5%;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: .7rem;
  font-weight: 780;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

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

.hero h1 {
  max-width: 720px;
  margin-bottom: 27px;
  font-size: clamp(3.4rem, 5.65vw, 6.15rem);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 35px;
  color: #465a68;
  font-size: clamp(1.04rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.play-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #aab7ba;
  border-radius: 50%;
  font-size: .8rem;
}

.hero-proof {
  margin-top: 54px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border-top: 1px solid #cfd6d5;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  color: var(--ink);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.hero-proof span {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  padding: 35px 0 38px 24px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  width: 78%;
  height: 92%;
  border: 1px solid rgba(11, 43, 70, .14);
  border-radius: 180px 0 0 0;
}

.hero-image-wrap {
  position: relative;
  height: min(64vh, 650px);
  min-height: 510px;
  overflow: hidden;
  border-radius: 200px 4px 4px 4px;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(.78) contrast(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 31, .08), rgba(4, 18, 31, .68));
}

.image-label {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 28px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .35);
}

.image-label .pulse {
  position: relative;
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
}

.image-label .pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { transform: scale(1.35); opacity: 0; }
}

.image-label div {
  display: flex;
  flex-direction: column;
}

.image-label small {
  color: #c7d6df;
  font-size: .67rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.image-label strong {
  font-size: .85rem;
  font-weight: 620;
}

.security-card {
  position: absolute;
  z-index: 3;
  min-width: 207px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.security-card-top {
  top: 9%;
  left: -22px;
}

.security-card-bottom {
  right: -38px;
  bottom: 13%;
}

.security-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: var(--mint-dark);
  background: #e6f5ef;
  border-radius: 50%;
}

.security-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.security-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.security-card strong {
  color: var(--ink);
  font-size: .78rem;
}

.security-card span {
  color: var(--muted);
  font-size: .67rem;
}

.mini-chart {
  height: 33px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.mini-chart i {
  width: 4px;
  height: 34%;
  background: var(--blue-bright);
  border-radius: 2px 2px 0 0;
}

.mini-chart i:nth-child(2) { height: 60%; }
.mini-chart i:nth-child(3) { height: 43%; }
.mini-chart i:nth-child(4) { height: 82%; }
.mini-chart i:nth-child(5) { height: 96%; background: var(--mint-dark); }

.trust-band {
  color: #d7e2e9;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.trust-grid {
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-grid > div {
  min-height: 47px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  font-size: .78rem;
  line-height: 1.35;
}

.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { padding-right: 0; border-right: 0; }

.trust-grid svg {
  width: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.45;
}

.challenge-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 62px;
}

.section-heading h2 {
  max-width: 840px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .62fr);
  gap: 9%;
  align-items: end;
}

.section-heading-split h2 {
  margin-bottom: 0;
}

.section-heading-split > div:last-child > p {
  color: var(--muted);
}

.centered {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 730;
}

.text-link span:first-child {
  border-bottom: 1px solid #9caaad;
}

.text-link span:last-child {
  color: var(--blue);
  transition: transform .2s ease;
}

.text-link:hover span:last-child {
  transform: translateX(4px);
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.challenge-card {
  position: relative;
  min-height: 340px;
  padding: 32px 29px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.challenge-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.challenge-card .number {
  align-self: flex-end;
  color: #9ba8ac;
  font-family: Georgia, serif;
  font-size: .72rem;
}

.line-icon {
  width: 48px;
  height: 48px;
  margin: 38px 0 28px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf4f6;
  border-radius: 50%;
}

.line-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.challenge-card h3 {
  margin-bottom: 13px;
  font-size: 1.25rem;
}

.challenge-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .86rem;
}

.challenge-card-dark {
  color: var(--white);
  background: var(--ink-2);
  border-color: var(--ink-2);
}

.challenge-card-dark .number {
  color: #8ba0ad;
}

.challenge-card-dark .line-icon {
  color: var(--ink);
  background: var(--mint);
}

.challenge-card-dark p {
  color: #b9c8d1;
}

.platform-section {
  overflow: hidden;
  background: var(--paper);
}

.platform-section::before {
  content: "SECURE";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(7, 26, 43, .025);
  font-family: Georgia, serif;
  font-size: min(20vw, 280px);
  line-height: 1;
}

.product-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 650px;
  padding: 34px 32px 29px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #d9ddda;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-top {
  margin-bottom: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-index {
  color: #96a2a7;
  font-family: Georgia, serif;
  font-size: .75rem;
}

.product-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf4f6;
  border-radius: 50%;
}

.product-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.product-kicker {
  margin-bottom: 13px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 84px;
  margin-bottom: 18px;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.product-card > p:not(.product-kicker) {
  color: var(--muted);
  font-size: .9rem;
}

.check-list {
  margin: 23px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  color: #40515e;
  border-bottom: 1px solid #e5e8e5;
  font-size: .8rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 9px;
  left: 1px;
  color: var(--mint-dark);
  font-weight: 800;
}

.card-link {
  margin-top: auto;
  padding-top: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  font-size: .79rem;
  font-weight: 720;
}

.card-link span:last-child {
  transition: transform .2s ease;
}

.card-link:hover span:last-child {
  transform: translate(3px, -3px);
}

.product-archive {
  color: var(--white);
  background: var(--ink-2);
  border-color: var(--ink-2);
}

.product-archive .product-icon {
  color: var(--ink);
  background: var(--mint);
}

.product-archive .product-kicker,
.product-archive .check-list li::before {
  color: var(--mint);
}

.product-archive > p:not(.product-kicker),
.product-archive .check-list li {
  color: #bfcbd3;
}

.product-archive .check-list li,
.product-archive .card-link {
  border-color: rgba(255, 255, 255, .14);
}

.product-vault .product-icon {
  color: #6f4e23;
  background: #f0e5d3;
}

.architecture-section {
  padding-bottom: 0;
  color: var(--white);
  overflow: hidden;
  background: #061725;
}

.architecture-section::before {
  content: "";
  position: absolute;
  top: -280px;
  left: -200px;
  width: 700px;
  height: 700px;
  opacity: .3;
  background: radial-gradient(circle, rgba(27, 130, 178, .35), transparent 67%);
}

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(500px, 1.15fr);
  gap: 7%;
  align-items: center;
}

.architecture-copy h2 {
  max-width: 550px;
}

.architecture-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: #aebdc8;
}

.architecture-list {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.architecture-item {
  width: 100%;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  align-items: center;
  gap: 15px;
  color: #aebdc8;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  cursor: pointer;
  text-align: left;
}

.architecture-item > span:first-child {
  color: #718794;
  font-family: Georgia, serif;
  font-size: .7rem;
}

.architecture-item > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.architecture-item strong {
  color: #d9e3e8;
  font-size: .89rem;
  transition: color .2s;
}

.architecture-item small {
  font-size: .7rem;
}

.architecture-item i {
  color: var(--mint);
  font-size: 1.15rem;
  font-style: normal;
  transition: transform .2s;
}

.architecture-item:hover strong,
.architecture-item.active strong {
  color: var(--white);
}

.architecture-item.active i {
  transform: rotate(45deg);
}

.architecture-visual {
  position: relative;
  min-height: 720px;
}

.architecture-visual > img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  filter: saturate(.65) contrast(1.05);
}

.architecture-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 23, 37, .08), rgba(6, 23, 37, .82));
}

.architecture-panel {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  padding: 29px;
  background: rgba(5, 20, 33, .84);
  border: 1px solid rgba(255, 255, 255, .15);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transition: opacity .18s ease, transform .18s ease;
}

.architecture-panel.changing {
  transform: translateY(7px);
  opacity: .15;
}

.panel-tag {
  color: var(--mint);
  font-size: .61rem;
  font-weight: 760;
  letter-spacing: .13em;
}

.architecture-panel h3 {
  margin: 10px 0 8px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.architecture-panel > p {
  max-width: 570px;
  color: #afbdc7;
  font-size: .82rem;
}

.panel-metrics {
  margin-top: 23px;
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.panel-metrics span {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.panel-metrics span + span {
  padding-left: 20px;
}

.panel-metrics span:last-child {
  border-right: 0;
}

.panel-metrics b {
  color: var(--white);
  font-size: .86rem;
}

.panel-metrics small {
  color: #8fa2ae;
  font-size: .66rem;
}

.security-principles {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.security-principles article {
  min-height: 240px;
  padding: 26px 25px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.security-principles article > span {
  color: var(--mint);
  font-family: Georgia, serif;
  font-size: .75rem;
}

.security-principles h3 {
  margin: 38px 0 12px;
  font-size: 1.07rem;
}

.security-principles p {
  margin-bottom: 0;
  color: #8fa2ae;
  font-size: .75rem;
}

.operations-section {
  background: var(--white);
}

.console {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 590px;
  overflow: hidden;
  background: #f7f9fa;
  border: 1px solid #cdd6da;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(7, 26, 43, .13);
}

.console-sidebar {
  padding: 23px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  background: var(--ink);
}

.console-logo {
  width: 39px;
  height: 39px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 11px;
  font-size: .66rem;
  font-weight: 850;
}

.console-sidebar button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #7f95a4;
  background: transparent;
  border: 0;
  border-radius: 9px;
}

.console-sidebar button.active {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.console-sidebar svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.console-main {
  padding: 36px 39px;
}

.console-head,
.console-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.console-head small {
  color: var(--blue);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.console-head h3 {
  margin: 5px 0 0;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.console-status {
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #337563;
  background: #e9f6f1;
  border: 1px solid #cee9df;
  border-radius: 40px;
  font-size: .66rem;
  font-weight: 700;
}

.console-status span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38a17f;
}

.console-metrics {
  margin-top: 33px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.console-metrics > div {
  min-height: 119px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #dae1e4;
  border-radius: 5px;
}

.console-metrics span {
  color: var(--muted);
  font-size: .64rem;
}

.console-metrics strong {
  margin-top: 4px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.console-metrics small {
  margin-top: auto;
  color: #70818c;
  font-size: .6rem;
}

.console-grid {
  margin-top: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .85fr);
  gap: 13px;
}

.console-chart,
.console-events {
  min-height: 278px;
  padding: 19px;
  background: var(--white);
  border: 1px solid #dae1e4;
  border-radius: 5px;
}

.console-card-head span {
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
}

.console-card-head small {
  color: var(--muted);
  font-size: .6rem;
}

.chart-bars {
  height: 155px;
  margin: 24px 0 12px;
  padding: 0 5px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 7px;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 38px, #edf0f1 39px);
}

.chart-bars span {
  width: 100%;
  max-width: 24px;
  background: linear-gradient(to top, var(--blue), #56a7c5);
  border-radius: 2px 2px 0 0;
}

.chart-bars span:nth-child(4n) {
  background: linear-gradient(to top, #2b9277, var(--mint));
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.chart-legend span:nth-child(2) i {
  background: var(--mint-dark);
}

.chart-legend b {
  color: var(--muted);
  font-size: .55rem;
  font-weight: 600;
}

.console-events ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.console-events li {
  padding: 13px 0;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-top: 1px solid #ecf0f1;
}

.console-events li > i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: .65rem;
  font-style: normal;
  font-weight: 800;
}

.event-ok {
  color: #287a64;
  background: #e2f3ed;
}

.event-warn {
  color: #8a6a21;
  background: #f6edcf;
}

.console-events li span {
  display: flex;
  flex-direction: column;
}

.console-events li b {
  font-size: .65rem;
}

.console-events li small {
  color: var(--muted);
  font-size: .56rem;
}

.console-note {
  margin: 17px 0 0;
  color: #7a878f;
  text-align: right;
  font-size: .68rem;
  font-style: italic;
}

.dealroom-section {
  padding: 0;
  background: #dedfd9;
}

.dealroom-layout {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dealroom-image {
  position: relative;
  min-height: 880px;
}

.dealroom-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.65) contrast(1.02);
}

.dealroom-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 43, .07), rgba(7, 26, 43, .2));
}

.document-stack {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 7%;
  width: 290px;
  height: 220px;
}

.document-card {
  position: absolute;
  inset: 0;
  padding: 23px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.document-card-back {
  transform: rotate(-4deg) translate(-15px, -12px);
  opacity: .55;
}

.doc-head,
.doc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6e7e87;
  font-size: .51rem;
  letter-spacing: .1em;
}

.doc-head span {
  color: var(--danger);
  font-weight: 800;
}

.doc-head i {
  font-style: normal;
}

.doc-lines {
  margin-top: 27px;
}

.doc-lines b {
  width: 100%;
  height: 5px;
  margin: 10px 0;
  display: block;
  background: #e3e7e7;
}

.doc-lines b:nth-child(2) { width: 78%; }
.doc-lines b:nth-child(4) { width: 59%; }

.doc-watermark {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  color: rgba(21, 95, 135, .18);
  font-size: .94rem;
  font-weight: 850;
  letter-spacing: .08em;
  white-space: nowrap;
}

.doc-foot {
  position: absolute;
  right: 23px;
  bottom: 18px;
  left: 23px;
  padding-top: 11px;
  border-top: 1px solid #dfe4e4;
  letter-spacing: 0;
}

.dealroom-copy {
  padding: 115px max(7vw, 70px);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.dealroom-copy h2 {
  max-width: 660px;
}

.deal-lead {
  max-width: 660px;
  color: #52636c;
  font-size: 1rem;
}

.deal-usecases {
  margin: 24px 0 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deal-usecases span {
  padding: 7px 11px;
  color: #354a57;
  border: 1px solid #b7bfbd;
  border-radius: 30px;
  font-size: .65rem;
  font-weight: 650;
}

.deal-features {
  margin-bottom: 37px;
  border-top: 1px solid #bdc4c1;
}

.deal-features > div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  border-bottom: 1px solid #bdc4c1;
}

.deal-features > div > strong {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: .7rem;
}

.deal-features span {
  display: flex;
  flex-direction: column;
}

.deal-features b {
  font-size: .81rem;
}

.deal-features small {
  color: var(--muted);
  font-size: .71rem;
}

.dealroom-copy .button {
  align-self: flex-start;
}

.sectors-section {
  background: var(--white);
}

.sector-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid #bfc7c7;
}

.sector-tabs button {
  position: relative;
  padding: 18px 10px;
  color: #75838b;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
}

.sector-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  background: var(--blue);
  transition: transform .25s var(--ease);
}

.sector-tabs button[aria-selected="true"] {
  color: var(--ink);
}

.sector-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.sector-panel {
  min-height: 500px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  border: 1px solid #d6dcda;
  border-top: 0;
  transition: opacity .18s ease;
}

.sector-panel.changing {
  opacity: .25;
}

.sector-copy {
  padding: 55px 50px;
}

.sector-number {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: .7rem;
}

.sector-copy h3 {
  margin: 70px 0 18px;
  font-family: Georgia, serif;
  font-size: 2.55rem;
  font-weight: 400;
}

.sector-copy > p {
  color: var(--muted);
  font-size: .91rem;
}

.sector-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.sector-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.04);
}

.sector-stat {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 18px 21px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: rgba(7, 26, 43, .87);
  border: 1px solid rgba(255, 255, 255, .17);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.sector-stat strong {
  color: var(--mint);
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.sector-stat span {
  color: #bdcbd3;
  font-size: .69rem;
}

.compliance-section {
  color: var(--white);
  background: var(--ink-2);
}

.compliance-section .section-heading-split > div:last-child > p {
  color: #bac8d0;
}

.compliance-disclaimer {
  padding: 13px 15px;
  color: #b9c7ce !important;
  background: rgba(136, 227, 191, .07);
  border-left: 2px solid var(--mint);
  font-size: .72rem !important;
}

.compliance-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .15);
}

.compliance-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: left;
}

.compliance-table th {
  padding: 15px 19px;
  color: #91a6b3;
  background: rgba(255, 255, 255, .03);
  border-right: 1px solid rgba(255, 255, 255, .12);
  font-size: .61rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.compliance-table td {
  width: 26%;
  padding: 22px 19px;
  color: #bcc9d1;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-right: 1px solid rgba(255, 255, 255, .12);
  font-size: .73rem;
  vertical-align: top;
}

.compliance-table td:first-child {
  width: 19%;
}

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

.compliance-table td strong {
  display: block;
  color: var(--white);
  font-size: .82rem;
}

.compliance-table td small {
  color: var(--mint);
  font-size: .61rem;
}

.source-links {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.source-links > p,
.source-links > a {
  min-height: 88px;
  margin: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.source-links > p {
  color: var(--mint);
  font-size: .64rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.source-links > a {
  color: #c5d0d6;
  font-size: .64rem;
  line-height: 1.45;
  transition: color .2s, background .2s;
}

.source-links > a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .04);
}

.source-links i {
  color: var(--mint);
  font-style: normal;
}

.onboarding-section {
  background: var(--paper);
}

.timeline {
  position: relative;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: #b8c2c1;
}

.timeline article {
  position: relative;
  padding: 0 25px;
}

.timeline article > span {
  position: relative;
  z-index: 2;
  width: 45px;
  height: 45px;
  margin: 0 auto 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #9aa8aa;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: .7rem;
}

.timeline article:hover > span {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.timeline article > div {
  text-align: center;
}

.timeline small {
  color: var(--blue);
  font-size: .63rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline h3 {
  min-height: 47px;
  margin: 8px 0 13px;
  font-size: 1.04rem;
}

.timeline p {
  color: var(--muted);
  font-size: .75rem;
}

.onboarding-callout {
  margin-top: 68px;
  padding: 24px 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--white);
  border: 1px solid #d0d7d5;
}

.onboarding-callout > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.onboarding-callout svg {
  width: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.35;
}

.onboarding-callout span {
  display: flex;
  flex-direction: column;
}

.onboarding-callout strong {
  font-size: .85rem;
}

.onboarding-callout small {
  color: var(--muted);
  font-size: .72rem;
}

.pricing-section {
  background: var(--white);
}

.billing-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .68rem;
}

.billing-toggle button {
  position: relative;
  width: 41px;
  height: 23px;
  padding: 0;
  background: var(--ink-2);
  border: 0;
  border-radius: 30px;
  cursor: pointer;
}

.billing-toggle button i {
  position: absolute;
  top: 3px;
  left: 21px;
  width: 17px;
  height: 17px;
  background: var(--mint);
  border-radius: 50%;
  transition: left .2s;
}

.billing-toggle button[aria-pressed="false"] i {
  left: 3px;
  background: var(--white);
}

.billing-toggle span:last-child {
  color: var(--ink);
  font-weight: 700;
}

.billing-toggle b {
  margin-left: 5px;
  padding: 3px 6px;
  color: #226c58;
  background: #e3f4ed;
  border-radius: 20px;
  font-size: .56rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 14px;
}

.price-card {
  position: relative;
  padding: 33px 29px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid #d5dbd8;
}

.price-head {
  min-height: 67px;
  display: flex;
  flex-direction: column;
}

.price-head span {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 740;
}

.price-head small {
  color: var(--muted);
  font-size: .69rem;
}

.price {
  min-height: 92px;
  margin: 26px 0 18px;
  display: flex;
  align-items: flex-start;
}

.price > span {
  margin-top: 8px;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.price > strong {
  font-family: Georgia, serif;
  font-size: 4.1rem;
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .9;
}

.price > small {
  margin: 10px 0 0 11px;
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: .6rem;
}

.price > small b {
  color: #445865;
  font-weight: 650;
}

.price > small em {
  font-style: normal;
}

.price-custom {
  align-items: center;
}

.price-custom > strong {
  font-size: 2.8rem;
}

.price-card > p {
  min-height: 69px;
  color: var(--muted);
  font-size: .79rem;
}

.price-card .button {
  width: 100%;
  margin: 8px 0 25px;
  justify-content: space-between;
}

.price-card > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card > ul li {
  position: relative;
  padding: 10px 0 10px 24px;
  color: #4d5e68;
  border-top: 1px solid #d9dedb;
  font-size: .73rem;
}

.price-card > ul li::before {
  content: "✓";
  position: absolute;
  left: 1px;
  color: var(--mint-dark);
  font-weight: 800;
}

.price-card-featured {
  color: var(--white);
  background: var(--ink-2);
  border-color: var(--ink-2);
  box-shadow: var(--shadow-lg);
}

.popular {
  position: absolute;
  top: 0;
  right: 21px;
  transform: translateY(-50%);
  padding: 5px 9px;
  color: var(--ink);
  background: var(--mint);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.price-card-featured .price-head span,
.price-card-featured .price > small b {
  color: var(--white);
}

.price-card-featured .price-head small,
.price-card-featured .price > small,
.price-card-featured > p,
.price-card-featured > ul li {
  color: #b9c8d0;
}

.price-card-featured .price > span {
  color: var(--mint);
}

.price-card-featured > ul li {
  border-color: rgba(255, 255, 255, .13);
}

.price-card-featured > ul li::before {
  color: var(--mint);
}

.pricing-note {
  margin: 22px 0 0;
  color: #7a878f;
  text-align: center;
  font-size: .67rem;
}

.faq-section {
  background: var(--paper-warm);
}

.faq-layout {
  display: grid;
  grid-template-columns: .65fr 1.2fr;
  gap: 10%;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid #bfc7c4;
}

.faq-list details {
  border-bottom: 1px solid #bfc7c4;
}

.faq-list summary {
  min-height: 86px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  background: var(--blue);
  transition: transform .2s;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 740px;
  padding: 0 48px 26px 0;
  color: var(--muted);
  font-size: .84rem;
}

.contact-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(27, 130, 178, .22), transparent 35%),
    #061725;
}

.contact-grid-bg {
  opacity: .23;
  -webkit-mask-image: linear-gradient(to left, black, transparent 75%);
  mask-image: linear-gradient(to left, black, transparent 75%);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(520px, 1fr);
  gap: 9%;
  align-items: start;
}

.contact-copy {
  padding-top: 22px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: #aebdc8;
}

.contact-promises {
  margin: 46px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-promises > div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.contact-promises > div > span {
  color: var(--mint);
  font-family: Georgia, serif;
  font-size: .68rem;
}

.contact-promises p,
.contact-promises strong,
.contact-promises small {
  margin: 0;
  display: block;
}

.contact-promises strong {
  font-size: .79rem;
}

.contact-promises small {
  color: #8fa4b1;
  font-size: .7rem;
}

.direct-mail {
  max-width: 470px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: border .2s, background .2s;
}

.direct-mail:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(136, 227, 191, .55);
}

.direct-mail > span {
  display: flex;
  flex-direction: column;
}

.direct-mail small {
  color: #8fa4b1;
  font-size: .63rem;
}

.direct-mail strong {
  color: var(--white);
  font-size: .89rem;
}

.direct-mail i {
  color: var(--mint);
  font-style: normal;
}

.contact-form {
  padding: 40px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .25);
}

.form-head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dde2df;
}

.form-head > span {
  color: var(--blue);
  font-size: .63rem;
  font-weight: 760;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.form-head h3 {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.form-head p {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-grid label > span {
  color: #40515d;
  font-size: .67rem;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  color: var(--ink);
  background: #f8f9f7;
  border: 1px solid #cdd6d5;
  border-radius: 2px;
  outline: none;
  font-size: .78rem;
  transition: border .2s, box-shadow .2s, background .2s;
}

.form-grid input,
.form-grid select {
  height: 45px;
  padding: 0 12px;
}

.form-grid textarea {
  min-height: 126px;
  padding: 11px 12px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 95, 135, .1);
}

.consent {
  margin: 21px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent > span {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
}

.consent i {
  position: relative;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  border: 1px solid #aeb9b9;
  border-radius: 2px;
}

.consent input:checked + span i {
  background: var(--ink-2);
  border-color: var(--ink-2);
}

.consent input:checked + span i::after {
  content: "✓";
  position: absolute;
  top: -3px;
  left: 2px;
  color: var(--mint);
  font-size: .78rem;
  font-style: normal;
}

.consent input:focus + span i {
  box-shadow: 0 0 0 3px rgba(21, 95, 135, .15);
}

.consent b {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 500;
}

.consent a {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
}

.form-submit {
  width: 100%;
  justify-content: space-between;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--mint-dark);
  font-size: .68rem;
  text-align: center;
}

.legal-section {
  padding: 72px 0;
  background: #e7e7e1;
  border-bottom: 1px solid #ced3d0;
}

.legal-tabs {
  margin-bottom: 37px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.legal-tabs button {
  padding: 8px 13px;
  color: #66747c;
  background: transparent;
  border: 1px solid #b9c3c1;
  border-radius: 30px;
  cursor: pointer;
  font-size: .66rem;
  font-weight: 700;
}

.legal-tabs button.active {
  color: var(--white);
  background: var(--ink-2);
  border-color: var(--ink-2);
}

.legal-content h2 {
  margin-bottom: 32px;
  font-family: Georgia, serif;
  font-size: 2.4rem;
}

.legal-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.legal-columns h3 {
  font-size: .87rem;
}

.legal-columns p {
  color: var(--muted);
  font-size: .72rem;
}

.site-footer {
  padding: 80px 0 27px;
  color: var(--white);
  background: #04121f;
}

.footer-top {
  padding-bottom: 62px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10%;
}

.brand-light {
  color: var(--white);
}

.brand-light em {
  color: var(--mint);
}

.footer-brand > p {
  max-width: 420px;
  margin: 24px 0 18px;
  color: #8fa2ae;
  font-size: .78rem;
}

.footer-brand > a:last-child {
  color: var(--mint);
  font-size: .8rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 10px;
  color: #d7e2e8;
  font-size: .66rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-links a {
  color: #7f96a5;
  font-size: .72rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-middle {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-middle > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-middle i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.footer-middle b,
.footer-middle p {
  margin: 0;
  color: #8fa2ae;
  font-size: .62rem;
  font-weight: 600;
}

.footer-bottom {
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #617887;
  font-size: .57rem;
}

.footer-bottom p {
  margin: 0;
}

.photo-credits {
  max-width: 760px;
  text-align: right;
}

.photo-credits a {
  color: #839aa7;
  border-bottom: 1px dotted #586e7b;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  visibility: hidden;
  transform: translateY(12px);
  opacity: 0;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: .25s ease;
}

.back-to-top.visible {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 20px;
  color: var(--white);
  background: #892f2f;
  text-align: center;
  font-size: .75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1180px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: .78rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr);
    gap: 4%;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 5.2vw, 5.4rem);
  }

  .product-card {
    padding: 29px 25px 26px;
  }

  .dealroom-copy {
    padding: 90px 55px;
  }

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

  .source-links > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 95px 0;
  }

  .menu-toggle {
    order: 3;
    margin-left: 0;
    display: flex;
  }

  .brand {
    order: 1;
  }

  .site-nav {
    position: fixed;
    top: calc(34px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    padding: 35px 24px;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transform: translateX(100%);
    opacity: 0;
    background: var(--paper);
    transition: .3s var(--ease);
  }

  .menu-open .site-nav {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
  }

  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #cfd5d3;
    font-family: Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

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

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

  .hero-visual {
    max-width: 680px;
    margin: 35px auto 0;
  }

  .hero-image-wrap {
    height: 620px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    padding: 15px 0;
  }

  .trust-grid > div {
    min-height: 60px;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

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

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

  .product-card h3 {
    min-height: 0;
  }

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

  .architecture-copy {
    max-width: 720px;
  }

  .architecture-visual {
    min-height: 620px;
  }

  .architecture-visual > img {
    height: 620px;
  }

  .security-principles {
    grid-template-columns: 1fr 1fr;
  }

  .security-principles article {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .console-metrics {
    grid-template-columns: 1fr 1fr;
  }

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

  .dealroom-layout {
    grid-template-columns: 1fr;
  }

  .dealroom-image {
    min-height: 620px;
  }

  .sector-panel {
    grid-template-columns: 1fr;
  }

  .sector-copy h3 {
    margin-top: 40px;
  }

  .sector-visual {
    min-height: 400px;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 50px 0;
  }

  .timeline::before {
    display: none;
  }

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

  .price-card {
    padding: 38px;
  }

  .price-card > p,
  .price-head {
    min-height: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 720px;
  }

  .legal-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .utility-inner {
    min-height: 31px;
  }

  .utility-inner p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .utility-inner a {
    display: none;
  }

  .site-nav {
    top: calc(31px + var(--header-height));
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-inner {
    gap: 9px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
  }

  .language-button {
    min-width: 54px;
    height: 39px;
  }

  .hero {
    padding: 72px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3rem);
    overflow-wrap: anywhere;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

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

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

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-proof div {
    padding-bottom: 12px;
    border-bottom: 1px solid #d4d9d7;
  }

  .hero-visual {
    padding-left: 0;
  }

  .hero-image-wrap {
    height: 520px;
    min-height: 0;
    border-radius: 130px 4px 4px 4px;
  }

  .security-card-top {
    top: 7%;
    left: -8px;
  }

  .security-card-bottom {
    right: -7px;
  }

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

  .trust-grid > div,
  .trust-grid > div:nth-child(2) {
    justify-content: flex-start;
    padding: 9px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

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

  .challenge-card {
    min-height: 300px;
  }

  .product-card {
    padding: 29px 23px;
  }

  .product-card h3 {
    font-size: 1.6rem;
  }

  .architecture-visual,
  .architecture-visual > img {
    min-height: 620px;
    height: 620px;
  }

  .architecture-panel {
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 21px;
  }

  .architecture-panel h3 {
    font-size: 1.65rem;
  }

  .panel-metrics {
    gap: 8px;
  }

  .panel-metrics span + span {
    padding-left: 8px;
  }

  .security-principles {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .security-principles article {
    min-height: 190px;
  }

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

  .console-sidebar {
    padding: 12px;
    flex-direction: row;
  }

  .console-logo {
    margin: 0 20px 0 0;
  }

  .console-main {
    padding: 24px 17px;
  }

  .console-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .console-metrics {
    grid-template-columns: 1fr;
  }

  .console-chart {
    overflow: hidden;
  }

  .dealroom-image {
    min-height: 520px;
  }

  .document-stack {
    right: 6%;
    bottom: 5%;
    width: 250px;
    height: 190px;
  }

  .dealroom-copy {
    padding: 78px 20px;
  }

  .sector-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
  }

  .sector-copy {
    padding: 40px 25px;
  }

  .sector-copy h3 {
    font-size: 2rem;
  }

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

  .source-links > p {
    grid-column: auto;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline article {
    padding: 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .timeline article > span {
    margin: 0;
  }

  .timeline article > div {
    text-align: left;
  }

  .timeline h3 {
    min-height: 0;
  }

  .onboarding-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card {
    padding: 32px 23px;
  }

  .billing-toggle {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .billing-toggle span:last-child {
    display: flex;
    flex-direction: column;
  }

  .billing-toggle b {
    margin: 3px 0 0;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-form {
    padding: 29px 21px;
  }

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

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-middle,
  .footer-bottom {
    padding: 21px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-credits {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

@media print {
  .utility-bar,
  .site-header,
  .hero-actions,
  .back-to-top,
  .contact-form,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 35px 0;
    break-inside: avoid;
  }
}
