:root {
  --ink: #102033;
  --muted: #607084;
  --line: #dce5ee;
  --soft: #f5f8fb;
  --panel: #ffffff;
  --navy: #07111f;
  --navy-2: #0c1c31;
  --teal: #25d7b5;
  --cyan: #58c7ff;
  --gold: #f6b94a;
  --blue: #2868ff;
  --green: #18a77b;
  --red: #e15b64;
  --shadow: 0 24px 80px rgba(20, 39, 66, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
}

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

button,
select {
  font: inherit;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 17, 31, 0.88);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 164px;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  width: 164px;
  height: 42px;
  background: transparent;
}

.brand-mark-img {
  display: block;
  width: 58px;
  height: auto;
  flex: 0 0 auto;
}

.brand-wordmark {
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 1.8px;
  text-rendering: geometricPrecision;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.main-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.main-nav > a:hover,
.nav-item:hover > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  width: min(600px, 90vw);
  padding: 10px;
  border: 1px solid rgba(210, 225, 238, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: 160ms ease;
}

.mega-menu.compact {
  width: min(520px, 90vw);
}

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

.mega-menu a {
  display: block;
  padding: 13px;
  border-radius: 7px;
}

.mega-menu a:hover {
  background: #f2f7fb;
}

.mega-menu strong {
  display: block;
  font-size: 14px;
}

.mega-menu span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.header-actions select {
  width: 96px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn.primary {
  color: #06101b;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 12px 26px rgba(37, 215, 181, 0.22);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.btn.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

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

.btn.large {
  min-height: 50px;
  padding: 0 23px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 84px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(37, 215, 181, 0.24), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(88, 199, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0a1c32 58%, #0f2b39 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 199, 255, 0.55), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-band .eyebrow {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

p {
  line-height: 1.65;
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.text-link {
  color: #d9fbff;
  font-weight: 800;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.trust-tags span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 750;
}

.dashboard-shell {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 33, 56, 0.96), rgba(8, 18, 32, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.dashboard-topbar,
.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 5px;
}

.green {
  background: var(--teal);
}

.blue {
  background: var(--cyan);
}

.orange {
  background: var(--gold);
}

.status-pill {
  padding: 5px 8px;
  border-radius: 999px;
  color: #032218;
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.metrics-grid article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.metrics-grid span,
.panel-title {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
}

.metrics-grid strong {
  display: block;
  max-width: 100%;
  min-width: 0;
  margin-top: 7px;
  overflow: hidden;
  font-size: clamp(16px, 1.55vw, 23px);
  font-variant-numeric: tabular-nums;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metrics-grid article:first-child strong {
  font-size: clamp(14px, 1.1vw, 17px);
}

.dashboard-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  margin-top: 10px;
}

.panel {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

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

.card-list li,
.transaction {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.card-chip {
  flex: 0 0 auto;
  width: 22px;
  height: 14px;
  border-radius: 4px;
}

.meta {
  background: #4677ff;
}

.google {
  background: #f7c948;
}

.tiktok {
  background: #fb4f72;
}

.ai {
  background: #25d7b5;
}

.cloud {
  background: #ff9657;
}

.transaction {
  display: grid;
  grid-template-columns: 1fr auto auto;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.transaction b {
  font-size: 11px;
}

.approved {
  color: var(--teal);
}

.pending {
  color: var(--gold);
}

.declined {
  color: #ff7880;
}

.control-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.control-bar button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.muted {
  background: var(--soft);
}

.trust-section {
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.four-grid,
.card-grid,
.api-grid,
.capability-grid,
.dashboard-features {
  display: grid;
  gap: 16px;
}

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

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

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

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.info-card,
.feature-card,
.mini-card,
.persona-card,
.region-card,
.audience-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(20, 39, 66, 0.06);
}

.feature-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
}

.case-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf2f7;
}

.case-person strong {
  display: block;
}

.case-person strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.avatar {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0);
  box-shadow: 0 12px 28px rgba(20, 39, 66, 0.14);
}

.avatar::before {
  content: "";
  position: absolute;
  top: 12px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(255, 237, 216, 0.96);
  box-shadow: inset 0 -2px 0 rgba(121, 74, 40, 0.12);
}

.avatar::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 42px;
  height: 25px;
  border-radius: 18px 18px 7px 7px;
  background: rgba(255, 255, 255, 0.82);
}

.avatar-one {
  background: linear-gradient(135deg, #2868ff 0%, #25d7b5 100%);
}

.avatar-two {
  background: linear-gradient(135deg, #e15b64 0%, #f6b94a 100%);
}

.avatar-three {
  background: linear-gradient(135deg, #07111f 0%, #58c7ff 100%);
}

.avatar-four {
  background: linear-gradient(135deg, #18a77b 0%, #9ae9d9 100%);
}

.avatar-five {
  background: linear-gradient(135deg, #6b7cff 0%, #f6b94a 100%);
}

.avatar-six {
  background: linear-gradient(135deg, #102033 0%, #e15b64 100%);
}

.avatar-photo {
  display: block;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-image: url("./assets/fictional-avatar-sheet.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  box-shadow: 0 12px 28px rgba(20, 39, 66, 0.14);
}

.avatar-photo.avatar-one {
  background-position: 0% 0%;
}

.avatar-photo.avatar-two {
  background-position: 50% 0%;
}

.avatar-photo.avatar-three {
  background-position: 100% 0%;
}

.avatar-photo.avatar-four {
  background-position: 0% 100%;
}

.avatar-photo.avatar-five {
  background-position: 50% 100%;
}

.avatar-photo.avatar-six {
  background-position: 100% 100%;
}

.info-card p,
.feature-card p,
.mini-card p,
.persona-card p,
.region-card p,
.audience-card p {
  color: var(--muted);
}

.feature-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.review-proof-section {
  background:
    linear-gradient(180deg, #fff 0%, #f6fafb 100%);
}

.review-proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.review-proof-grid h2 {
  max-width: 620px;
}

.review-proof-grid p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.review-actions span {
  max-width: 260px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.review-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.review-score-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf2f7;
}

.review-source {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-score-row strong {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(56px, 8vw, 86px);
  line-height: 0.9;
  letter-spacing: 0;
}

.review-score-row small {
  display: inline-block;
  margin-left: 7px;
  color: var(--muted);
  font-weight: 800;
}

.rating-mark {
  display: grid;
  grid-template-columns: repeat(5, 34px);
  gap: 6px;
  padding-top: 5px;
}

.rating-mark span {
  display: block;
  height: 34px;
  border-radius: 7px;
  background: var(--green);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.09);
}

.rating-mark .partial {
  background: linear-gradient(90deg, var(--green) 70%, #d9e5df 70%);
}

.review-bars {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.review-bars div {
  display: grid;
  grid-template-columns: 150px 1fr 44px;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-bars i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f7;
}

.review-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.review-bars strong {
  color: var(--ink);
  text-align: right;
}

.review-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.review-quotes article {
  min-width: 0;
  padding: 16px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.review-quotes strong {
  display: block;
  font-size: 14px;
}

.review-quotes p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.modal-visual {
  display: flex;
  gap: 12px;
}

.soft-face {
  position: relative;
  display: block;
  width: 78px;
  height: 78px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: linear-gradient(135deg, #2868ff, #25d7b5);
  filter: saturate(0.9) blur(0.15px);
}

.soft-face::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 27px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 229, 207, 0.9);
}

.soft-face::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 16px;
  width: 46px;
  height: 36px;
  border-radius: 22px 22px 8px 8px;
  background: rgba(255, 255, 255, 0.78);
}

.face-b {
  background: linear-gradient(135deg, #e15b64, #f6b94a);
}

.face-c {
  background: linear-gradient(135deg, #102033, #58c7ff);
}

.face-d {
  background: linear-gradient(135deg, #18a77b, #b7f3e7);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #06101b;
  background: #dffbf5;
  font-size: 12px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.split h2 + p,
.split p + p {
  color: var(--muted);
  font-size: 17px;
}

.process-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding-left: 22px;
  color: var(--muted);
}

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

.pill-cloud,
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill-cloud span,
.logo-cloud span,
.capability-grid span,
.api-grid span,
.dashboard-features span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.dark-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(40, 104, 255, 0.18), transparent 36%),
    linear-gradient(145deg, #06101b, #13263a);
}

.dark-band p {
  color: rgba(255, 255, 255, 0.72) !important;
}

.dark-band .logo-cloud span {
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 23px;
  color: rgba(255, 255, 255, 0.8);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.crypto-section {
  background: #fbfdff;
}

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

.capability-grid span,
.api-grid span {
  justify-content: center;
  min-height: 58px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 39, 66, 0.06);
}

.notice,
.region-note {
  padding: 13px 15px;
  border-left: 4px solid var(--gold);
  border-radius: 7px;
  background: #fff7e8;
  color: #815b19 !important;
}

.wide-dashboard {
  display: grid;
  grid-template-columns: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.wide-dashboard aside {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 370px;
  padding: 24px;
  color: #fff;
  background: var(--navy);
}

.wide-dashboard aside strong {
  margin-bottom: 18px;
}

.wide-dashboard aside span {
  padding: 11px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.wide-content {
  padding: 28px;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 18px;
  height: 210px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f5f8fb, #fff);
}

.bar-chart i {
  flex: 1;
  min-width: 20px;
  height: 8%;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--teal));
  transform-origin: bottom;
  transition: height 1500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-chart.is-visible i {
  height: var(--bar-height);
}

.bar-chart i:nth-child(2) {
  transition-delay: 90ms;
}

.bar-chart i:nth-child(3) {
  transition-delay: 180ms;
}

.bar-chart i:nth-child(4) {
  transition-delay: 270ms;
}

.bar-chart i:nth-child(5) {
  transition-delay: 360ms;
}

.bar-chart i:nth-child(6) {
  transition-delay: 450ms;
}

.dashboard-features {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
}

.dashboard-features span {
  justify-content: center;
  border-radius: 7px;
  text-align: center;
}

.api-section {
  color: #fff;
  background: linear-gradient(135deg, #0c1c31, #102b3a);
}

.api-section p {
  color: rgba(255, 255, 255, 0.74) !important;
}

.api-grid span {
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.api-actions {
  display: flex;
  margin-top: 22px;
}

.api-actions .btn {
  width: fit-content;
  max-width: 100%;
  min-width: 172px;
  padding-inline: 22px;
  text-align: center;
}

.code-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #07111f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.code-card > div {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

pre {
  margin: 0;
  padding: 22px;
  overflow: auto;
  color: #d9fbff;
  font-size: 15px;
  line-height: 1.7;
}

[data-typewriter]::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1.1em;
  margin-left: 2px;
  vertical-align: -0.18em;
  background: var(--teal);
  animation: cursor-blink 900ms steps(2, start) infinite;
}

[data-typewriter].is-complete::after {
  opacity: 0;
  animation: none;
}

@keyframes cursor-blink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bar-chart i {
    transition: none;
  }

  [data-typewriter]::after {
    display: none;
  }
}

.regions {
  background: #fff;
}

.region-card h3 {
  color: var(--blue);
}

.region-note {
  max-width: 740px;
  margin: 24px auto;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  padding: 82px 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(37, 215, 181, 0.22), transparent 40%),
    linear-gradient(145deg, #06101b, #12324c);
}

.final-cta p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

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

.contact-section {
  background: #fbfdff;
}

.contact-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-inline p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 27, 0.72);
  backdrop-filter: blur(8px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  max-height: min(88vh, 880px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-dialog-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 620px;
}

.contact-dialog-copy {
  position: relative;
  overflow: hidden;
  padding: 40px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(37, 215, 181, 0.18), transparent 40%),
    linear-gradient(145deg, #07111f, #132b3c);
}

.contact-dialog-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.response-card {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.response-card span,
.response-card small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.response-card strong {
  font-size: 26px;
}

.modal-visual {
  position: absolute;
  left: 40px;
  bottom: 40px;
  opacity: 0.88;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 40px;
}

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

.required-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.required-hint span,
.required-mark {
  color: var(--red);
  font-weight: 900;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40, 104, 255, 0.12);
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.success-state {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: 40px;
}

.success-state[hidden] {
  display: none;
}

.success-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #06101b;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  font-size: 12px;
  font-weight: 900;
}

.success-state p {
  max-width: 520px;
  color: var(--muted);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background: #06101b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 28px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  font-size: 13px;
}

.footer-legal {
  display: grid;
  gap: 14px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer-legal div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.nav-open .main-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.nav-open .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-item,
  .main-nav > a,
  .nav-item > a {
    width: 100%;
  }

  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    display: grid;
  }

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

  .hero-grid,
  .review-proof-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .four-grid,
  .card-grid.four,
  .card-grid.five {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-dialog-copy {
    min-height: 360px;
  }

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

  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .hero,
  .section,
  .final-cta {
    padding: 58px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-subtitle,
  .section-heading p:not(.eyebrow),
  .split h2 + p,
  .split p + p {
    font-size: 16px;
  }

  .hero-actions,
  .header-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .text-link,
  .header-actions .btn,
  .header-actions select {
    width: 100%;
  }

  .metrics-grid,
  .dashboard-main,
  .control-bar,
  .card-grid.three,
  .four-grid,
  .card-grid.four,
  .card-grid.five,
  .capability-grid,
  .api-grid,
  .check-list,
  .dashboard-features,
  .review-quotes,
  .mega-menu {
    grid-template-columns: 1fr;
  }

  .review-score-row {
    display: grid;
  }

  .rating-mark {
    grid-template-columns: repeat(5, 1fr);
  }

  .review-bars div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .review-bars strong {
    text-align: left;
  }

  .contact-inline {
    display: grid;
    padding: 24px;
  }

  .contact-inline .btn {
    width: 100%;
  }

  .api-actions .btn {
    width: 100%;
  }

  .contact-modal {
    padding: 12px;
  }

  .contact-dialog {
    max-height: 92vh;
  }

  .contact-dialog-copy,
  .lead-form,
  .success-state {
    padding: 26px;
  }

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

  .modal-visual {
    position: static;
    margin-top: 28px;
  }

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

  .wide-dashboard aside {
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-dashboard aside strong {
    grid-column: 1 / -1;
  }

  .bar-chart {
    gap: 8px;
    height: 180px;
    padding: 12px;
  }

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

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