:root {
  --ink: #0b1a2b;
  --ink-2: #14293e;
  --ink-3: #1d3a55;
  --body: #44515e;
  --muted: #6b7885;
  --paper: #ffffff;
  --surface: #f5f7f9;
  --line: #e3e9ee;
  --line-strong: #c8d2db;
  --blue: #1b7fc4;
  --blue-deep: #14618f;
  --blue-soft: #eef5fb;
  --teal: #17a2a2;
  --green: #57b947;
  --grad: linear-gradient(90deg, #1b7fc4 0%, #17a2a2 52%, #57b947 100%);
  --max: 1240px;
  --gap: 28px;
  --section-y: 80px;
  --display: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --ui: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.14;
  margin: 0;
}

h2 {
  font-size: clamp(1.7rem, 2.3vw, 2.1rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

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

.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 14px;
}

.eyebrow--light {
  color: #8ecbf0;
}

.lede {
  max-width: 60ch;
  font-size: 1.06rem;
  color: var(--body);
}

.rule {
  height: 3px;
  width: 64px;
  background: var(--grad);
  margin: 0 0 22px;
}

[id] {
  scroll-margin-top: 96px;
}

/* ---------- top utility bar ---------- */

.utility {
  background: var(--ink);
  color: #a9bccd;
  font-size: 0.8rem;
}

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

.utility-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.utility a:hover {
  color: #fff;
}

.proof {
  background: var(--ink-2);
  color: #9bb0c2;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  min-height: 40px;
}

.proof span {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang {
  display: flex;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.lang button {
  border: 0;
  background: transparent;
  color: #a9bccd;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.lang button:hover {
  color: #fff;
}

.lang button.is-active {
  background: var(--blue);
  color: #fff;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease);
}

.site-header.is-stuck {
  box-shadow: 0 10px 30px rgba(10, 24, 38, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  height: 60px;
  width: auto;
  transition: height 0.25s var(--ease);
}

.site-header.is-stuck .brand img {
  height: 50px;
}

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

.nav > a,
.nav-group > a {
  position: relative;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.2s var(--ease);
}

.nav > a::after,
.nav-group > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav > a:hover::after,
.nav > a.is-active::after,
.nav-group:hover > a::after,
.nav-group > a.is-active::after {
  transform: scaleX(1);
}

.nav > a.is-active,
.nav-group > a.is-active {
  color: var(--blue);
}

.nav-group {
  position: relative;
}

.nav-drop {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 260px;
  padding: 10px 0;
  background: var(--paper);
  border: 1px solid var(--line);
  z-index: 45;
}

.nav-group:hover .nav-drop,
.nav-group:focus-within .nav-drop {
  display: grid;
}

.nav-drop a {
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-2);
}

.nav-drop a:hover,
.nav-drop a.is-active {
  color: var(--blue);
  background: var(--blue-soft);
}

.header-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  padding: 11px 14px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn--sm {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.76rem;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}

.btn--primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.btn--outline {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: transparent;
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(155deg, #081625 0%, #0b1a2b 46%, #122c42 100%);
  color: #dbe6ef;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 90% at 70% 10%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 10%, #000 20%, transparent 78%);
}

.hero::after {
  width: 640px;
  height: 640px;
  right: -180px;
  top: -240px;
  background: radial-gradient(circle, rgba(27, 127, 196, 0.24) 0%, rgba(23, 162, 162, 0.12) 45%, transparent 72%);
  filter: blur(12px);
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-60px, 50px, 0) scale(1.12);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 64px;
  align-items: center;
  padding: 80px 0 72px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.4vw, 3.85rem);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero .lede {
  color: #a9bccd;
  max-width: 54ch;
}

.hero-line {
  display: block;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8ecbf0;
  margin: -6px 0 22px;
}

.rotate-wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.2em;
  max-width: 100%;
}

.rotate {
  flex: 0 0 auto;
  font-size: calc(1em - 2pt);
  white-space: nowrap;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.35s var(--ease);
}

.rotate.is-out {
  opacity: 0;
}

.hero-caret {
  flex: 0 0 3px;
  width: 3px;
  height: 0.72em;
  position: relative;
  top: 0.06em;
  background: var(--blue);
  animation: blink 1.1s steps(2, start) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-gates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-gate {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 168px;
  padding: 24px 22px 22px;
  background: rgba(8, 22, 37, 0.72);
  color: #dbe6ef;
  transition: background 0.25s var(--ease);
}

.hero-gate:hover {
  background: rgba(27, 127, 196, 0.18);
}

.hero-gate .tile-num {
  color: #8ecbf0;
  margin-bottom: 0;
}

.hero-gate h3 {
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.hero-gate p {
  margin: 0;
  font-size: 0.9rem;
  color: #a9bccd;
  line-height: 1.5;
}

.hero-gate span:last-child {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8ecbf0;
}

.hero-card-head {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8ecbf0;
}

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

.hero-stats div {
  padding: 26px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div:nth-child(2n) {
  border-right: 0;
}

.hero-stats div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stats span {
  font-size: 0.86rem;
  color: #a9bccd;
}

/* ---------- sections ---------- */

.section {
  padding: var(--section-y) 0;
}

.section--surface {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head h2,
.page-head h1 {
  font-size: clamp(1.9rem, 3.1vw, 2.85rem);
}

.section-head .lede {
  margin-top: 16px;
}

.link-arrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}

.link-arrow span {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.link-arrow:hover span {
  transform: translateX(5px);
}

/* ---------- grids and tiles ---------- */

.grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

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

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

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  padding: 40px 34px 38px;
  min-width: 0;
  overflow: hidden;
  transition: background 0.3s var(--ease);
}

.tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.tile:hover::before {
  transform: scaleX(1);
}

.tile-visual {
  margin: -40px -34px 28px;
  background: #0b1a2b;
  border-bottom: 1px solid var(--ink-3);
  overflow: hidden;
}

.tile-visual svg {
  display: block;
  width: 100%;
  height: 148px;
}

.tile--lg .tile-visual svg {
  height: 168px;
}

.tile h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.tile p {
  color: var(--muted);
  font-size: 0.97rem;
}

.tile .link-arrow {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
}

.tile-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 0.94rem;
}

.tile-list li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: var(--muted);
}

.tile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  background: var(--blue);
}

/* ---------- metrics band ---------- */

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

.metric {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.metric strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}

.metric span {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- split / rows ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.split--form {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 60px;
}

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

.rows li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}

.rows li:hover {
  padding-left: 10px;
}

.rows .n {
  font-family: var(--mono);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--blue);
}

.rows h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.rows p {
  color: var(--muted);
  font-size: 0.97rem;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 42px;
}

.panel--flat {
  background: var(--surface);
}

.panel h2 {
  font-size: 1.46rem;
  margin-bottom: 18px;
}

.stack > * + * {
  margin-top: 18px;
}

/* ---------- sectors ---------- */

.sector {
  background: var(--paper);
  padding: 36px 32px;
  min-width: 0;
  position: relative;
  transition: background 0.3s var(--ease);
}

.sector:hover {
  background: var(--surface);
}

.sector h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

/* ---------- brands ---------- */

.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.brands span {
  border: 1px solid var(--line);
  padding: 12px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.brands span:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
}

/* ---------- cta band ---------- */

.cta-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 140% at 88% 50%, rgba(27, 127, 196, 0.3), transparent 64%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 64px 0;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

.cta-inner p {
  color: #a9bccd;
  margin-top: 14px;
}

/* ---------- page head ---------- */

.page-head {
  position: relative;
  background: var(--ink);
  color: #a9bccd;
  padding: 72px 0;
  overflow: hidden;
}

.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(110% 100% at 80% 0%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(110% 100% at 80% 0%, #000 10%, transparent 72%);
  pointer-events: none;
}

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

.page-head h1 {
  color: #fff;
}

.page-head .lede {
  color: #a9bccd;
  margin-top: 20px;
}

/* ---------- forms ---------- */

.form {
  display: grid;
  gap: 22px;
}

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

.form-hint {
  margin: 10px 0 26px;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 52ch;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-2);
}

input,
textarea,
select {
  width: 100%;
  min-height: 52px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  padding: 14px 16px;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 127, 196, 0.14);
}

input:disabled,
textarea:disabled,
select:disabled,
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input.is-error,
textarea.is-error,
select.is-error {
  border-color: #c0492f;
  box-shadow: 0 0 0 3px rgba(192, 73, 47, 0.12);
}

.check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

.check input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.form .btn {
  justify-self: start;
  padding: 0 42px;
}

.form-note {
  min-height: 1.4em;
  font-size: 0.92rem;
  color: #b4341f;
  margin: 0;
}

.form-note.is-ok {
  color: #2f8a3d;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.contact-block {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.contact-block:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-block strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-block a,
.contact-block p {
  color: var(--ink);
  font-size: 1rem;
}

.contact-block a {
  border-bottom: 1px solid var(--line-strong);
}

.contact-block a:hover {
  color: var(--blue);
  border-color: currentColor;
}

/* ---------- legal ---------- */

.legal {
  max-width: 78ch;
}

.legal h2 {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin: 2.4rem 0 0.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.legal h2:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.legal ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal li {
  margin-bottom: 0.35rem;
}

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

/* ---------- footer ---------- */

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.88fr));
  gap: 48px;
  padding-bottom: 44px;
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 22px;
}

.footer-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-title {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: 0.95rem;
}

.footer-list a {
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.footer-list a:hover {
  color: var(--blue);
}

.footer-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  font-size: 0.92rem;
}

.footer-meta li {
  display: grid;
  gap: 3px;
}

.footer-meta b {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-meta span,
.footer-meta a {
  color: var(--ink-2);
}

.footer-meta a:hover {
  color: var(--blue);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.footer-badges span {
  border: 1px solid var(--line);
  padding: 7px 12px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.footer-fine {
  border-top: 1px solid var(--line);
  padding: 24px 0 26px;
}

.footer-fine p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 92ch;
}

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

.footer-bar {
  background: var(--ink);
  color: #8fa5b8;
  font-size: 0.85rem;
  padding-bottom: 96px;
}

.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 0;
}

.footer-bar a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-bar a:hover {
  color: #fff;
}

/* ---------- reveal effect ---------- */

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

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- hero value points ---------- */

.hero-points {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-points li {
  position: relative;
  padding-left: 32px;
  color: #c3d5e4;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.34em;
  width: 12px;
  height: 7px;
  border: 2px solid #57b0e6;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

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

.agenda-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
  padding: 28px 26px 24px;
  min-width: 0;
  transition: background 0.3s var(--ease);
}

.agenda-card:last-child {
  grid-column: 1 / -1;
}

.agenda-card:hover {
  background: var(--blue-soft);
}

.agenda-card svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.agenda-card h3 {
  font-size: 1.06rem;
}

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

.agenda-card .link-arrow {
  margin-top: auto;
  padding-top: 6px;
}

/* ---------- trust badges ---------- */

.badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.badge-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
  padding: 34px 30px;
  transition: background 0.3s var(--ease);
}

.badge-card:hover {
  background: var(--blue-soft);
}

.badge-card svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.badge-card strong {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.badge-card span {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- quotes, process, faq ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--paper);
  padding: 36px 30px;
}

.quote-card p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.quote-card cite {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.step {
  position: relative;
  background: var(--paper);
  padding: 36px 28px 34px;
  transition: background 0.3s var(--ease);
}

.step:hover {
  background: var(--blue-soft);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid var(--line);
}

.step:hover .step-icon {
  background: var(--paper);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step .tile-num {
  margin-bottom: 0;
}

.step p {
  margin: 12px 0 0;
}

.step-arrow {
  position: absolute;
  top: 48px;
  right: -14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--blue);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.step-arrow svg {
  width: 14px;
  height: 14px;
}

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

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

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-weight: 600;
  color: var(--ink);
}

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

.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-weight: 500;
  color: var(--blue);
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 22px;
  max-width: 72ch;
  color: var(--body);
}

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.jump a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 14px;
  color: #dbe6ef;
  font-size: 0.82rem;
  font-weight: 600;
}

.jump a:hover {
  border-color: #fff;
  color: #fff;
}

/* ---------- large service tiles ---------- */

.tile--lg {
  padding: 48px 42px 44px;
}

.tile--lg h3 {
  font-size: 1.46rem;
}

.tile-tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: 20px;
  padding: 6px 12px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- floating whatsapp ---------- */

.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: #128c7e;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 34px rgba(11, 26, 43, 0.24);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.fab:hover {
  background: #0f7568;
  transform: translateY(-3px);
}

.fab svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--ink);
  color: #c5d4e0;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie[hidden] {
  display: none !important;
}

.cookie-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 28px;
  align-items: center;
}

.cookie-title {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8ecbf0;
}

.cookie p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 68ch;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-actions a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.84rem;
  margin-left: 6px;
}

body.has-cookie .fab {
  bottom: 148px;
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    padding: 56px 0 52px;
  }

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

  .split,
  .split--form {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
  }

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

  .step:nth-child(2) .step-arrow {
    display: none;
  }

  .proof-inner {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 74px;
    gap: 12px;
  }

  .brand img {
    height: 48px;
  }

  .site-header.is-stuck .brand img {
    height: 44px;
  }

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

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

  .nav {
    order: 4;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(10, 24, 38, 0.12);
    padding: 8px 24px 20px;
    margin: 0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav > a,
  .nav-group > a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav > a::after,
  .nav-group > a::after {
    left: 0;
    right: 0;
  }

  .nav-group {
    border-bottom: 1px solid var(--line);
  }

  .nav-group > a {
    border-bottom: 0;
  }

  .nav-drop {
    display: grid;
    position: static;
    min-width: 0;
    padding: 0 0 10px;
    border: 0;
    background: transparent;
  }

  .nav-drop a {
    padding: 8px 0 8px 12px;
    font-size: 0.84rem;
    color: var(--muted);
  }

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

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

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

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

  .section-head,
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .section {
    padding: 64px 0;
  }

  .section--tight {
    padding: 48px 0;
  }

  .page-head {
    padding: 56px 0;
  }

  .cta-inner {
    padding: 52px 0;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .wrap {
    width: min(var(--max), 100% - 32px);
  }

  .section {
    padding: 52px 0;
  }

  .hero-inner {
    padding: 48px 0 44px;
  }

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

  .section--tight {
    padding: 40px 0;
  }

  .split {
    gap: 44px;
  }

  .grid--4,
  .grid--3,
  .grid--2,
  .footer-grid,
  .form-row,
  .agenda {
    grid-template-columns: minmax(0, 1fr);
  }

  .agenda-card:last-child {
    grid-column: auto;
  }

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

  .hero-stats div {
    border-right: 0;
  }

  .hero-stats div:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .tile,
  .sector,
  .panel {
    padding: 30px 24px;
  }

  .utility-list {
    gap: 14px;
    font-size: 0.75rem;
  }

  .actions {
    gap: 12px;
  }

  .actions .btn,
  .cta-inner .btn,
  .form .btn {
    width: 100%;
  }

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

  .step:nth-child(2) .step-arrow {
    display: grid;
  }

  .step-arrow {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%) rotate(90deg);
  }

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

  .hero-gate {
    min-height: 0;
  }

  .proof span:nth-child(n + 4) {
    display: none;
  }

  .tile--lg {
    padding: 30px 24px;
  }

  .fab {
    right: 16px;
    bottom: 16px;
    width: 56px;
    padding: 0;
    justify-content: center;
  }

  .cookie-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1 1 auto;
  }

  body.has-cookie .fab {
    bottom: 220px;
  }
}

@media (max-width: 420px) {
  .utility-list a:nth-child(2) {
    display: none;
  }

  .brand img,
  .site-header.is-stuck .brand img {
    height: 42px;
  }

  .header-cta .btn {
    padding: 0 12px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .menu-toggle {
    padding: 11px 10px;
    letter-spacing: 0.06em;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

/* ---------- subpages, portal, breadcrumbs ---------- */

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fa5b8;
}

.crumbs a {
  color: #8ecbf0;
}

.crumbs a:hover {
  color: #fff;
}

.crumbs span[aria-hidden="true"] {
  color: #5d7386;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.page-copy h2 {
  margin: 28px 0 12px;
  font-size: 1.28rem;
}

.page-copy h2:first-child {
  margin-top: 0;
}

.page-copy .lede {
  margin-bottom: 8px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--body);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.42em;
  width: 11px;
  height: 6px;
  border: 2px solid var(--blue);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.visual-board {
  position: relative;
  min-height: 320px;
  padding: 28px;
  background: #0b1a2b;
  border: 1px solid var(--ink-3);
  overflow: hidden;
}

.visual-board svg {
  width: 100%;
  height: auto;
  display: block;
}

.visual-caption {
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.outcome-card {
  background: var(--paper);
  padding: 28px 24px;
}

.outcome-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.related a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--paper);
  padding: 24px;
  transition: background 0.25s var(--ease);
}

.related a:hover {
  background: var(--blue-soft);
}

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

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

.portal-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
  padding: 32px 28px;
}

.portal-card svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.portal-login {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 32px;
}

.portal-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

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

.status-ok {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

@media (max-width: 1080px) {
  .page-layout,
  .outcome-grid,
  .related,
  .portal-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
