:root {
  --ink: #07101f;
  --ink-soft: #142033;
  --muted: #667085;
  --line: #e6eaf0;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --blue: #1489db;
  --blue-bright: #20adff;
  --blue-dark: #0863b2;
  --cyan: #79ddff;
  --mint: #80efd1;
  --radius: 22px;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
}

body,
button,
a {
  font-family: inherit;
}

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

button {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

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

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

.section {
  padding: 128px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  color: white;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(7, 16, 31, 0.88);
  border-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 48px));
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  flex: 0 0 auto;
}

.brand img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

.brand > span {
  font-size: 19px;
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: 0.035em;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: #8b9bb2;
  font-size: 6px;
  letter-spacing: 0.28em;
}

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

.desktop-nav a {
  color: #bfc9d8;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-large {
  min-height: 56px;
  padding: 0 26px;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #22aaff, #0b75ca);
  box-shadow: 0 10px 30px rgba(20, 137, 219, 0.3);
}

.button-primary:hover {
  box-shadow: 0 15px 36px rgba(20, 137, 219, 0.42);
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-white {
  background: white;
  color: #0c1b31;
}

.button-dark {
  min-height: 50px;
  padding: 0 22px;
  color: white;
  background: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: 1180px;
  padding: 174px 0 120px;
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% -20%, rgba(31, 166, 255, 0.19), transparent 38%),
    linear-gradient(180deg, #07101f 0%, #071120 74%, #0b1626 100%);
}

.hero-grid-bg,
.world-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.orb-one {
  width: 520px;
  height: 520px;
  left: -340px;
  top: 190px;
  background: rgba(14, 117, 199, 0.16);
  box-shadow: 0 0 120px rgba(14, 117, 199, 0.15);
}

.orb-two {
  width: 420px;
  height: 420px;
  right: -280px;
  top: 110px;
  background: rgba(59, 199, 255, 0.09);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto 76px;
  text-align: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(120, 211, 255, 0.2);
  border-radius: 999px;
  background: rgba(25, 145, 223, 0.09);
  color: #b8e9ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.hero h1 {
  margin-bottom: 25px;
  font-size: clamp(50px, 6.4vw, 82px);
  line-height: 1.06;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.hero h1 span {
  display: block;
  padding-bottom: 0.08em;
  color: transparent;
  background: linear-gradient(105deg, #fff 0%, #79ddff 36%, #1da8ff 85%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  max-width: 680px;
  margin: 0 auto;
  color: #aeb9ca;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
  color: #8e9bae;
  font-size: 11px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  color: var(--blue-bright);
}

.dashboard-wrap {
  width: min(1080px, 100%);
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
}

.dashboard-glow {
  position: absolute;
  inset: 10% 10% -8%;
  background: rgba(20, 142, 222, 0.28);
  filter: blur(90px);
}

.dashboard-window {
  min-height: 720px;
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: #f5f7fb;
  color: var(--ink);
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.48), 0 0 0 8px rgba(255, 255, 255, 0.025);
}

.dash-sidebar {
  padding: 20px 14px 16px;
  display: flex;
  flex-direction: column;
  background: #0a1527;
}

.dash-sidebar .brand img {
  width: 28px;
  height: 28px;
}

.dash-menu {
  display: grid;
  gap: 3px;
  margin-top: 18px;
}

.dash-menu > small {
  margin: 13px 10px 5px;
  color: #4c5d74;
  font-family: 'DM Mono', monospace;
  font-size: 6px;
  letter-spacing: 0.13em;
}

.dash-menu span {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 11px;
  border-radius: 8px;
  color: #718199;
}

.dash-menu b {
  font-size: 8px;
  font-weight: 600;
}

.dash-menu em {
  min-width: 17px;
  margin-left: auto;
  padding: 2px 4px;
  border-radius: 999px;
  color: #7ed8ff;
  background: rgba(41, 171, 237, 0.12);
  font-size: 6px;
  font-style: normal;
  text-align: center;
}

.dash-menu .active {
  color: #d9f3ff;
  background: rgba(25, 161, 241, 0.13);
}

.dash-workspace {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
}

.dash-workspace > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: white;
  background: linear-gradient(145deg, #1da8ed, #126cb7);
  font-size: 7px;
  font-weight: 800;
}

.dash-workspace > div,
.dash-user-card > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-workspace b {
  color: #d4dfed;
  font-size: 7px;
}

.dash-workspace small,
.dash-user-card small {
  color: #63758e;
  font-size: 6px;
}

.dash-workspace i,
.dash-user-card > i {
  margin-left: auto;
  color: #607189;
  font-size: 7px;
  font-style: normal;
}

.dash-user {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #76d4ff;
  background: #10223a;
  font-size: 9px;
  font-weight: 800;
}

.dash-user-card {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 11px 7px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dash-user-card b {
  color: #c6d2e0;
  font-size: 7px;
}

.dash-main {
  min-width: 0;
  padding: 24px;
}

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

.demo-label {
  display: block;
  margin-bottom: 7px;
  color: #8a96a7;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.dash-top h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.dash-top-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dash-search {
  min-width: 105px;
  padding: 7px 9px;
  border: 1px solid #e2e7ed;
  border-radius: 7px;
  color: #9aa4b1;
  background: white;
  font-size: 7px;
}

.dash-top-actions button,
.currency-mix-panel .panel-head button {
  padding: 7px 9px;
  border: 1px solid #e2e7ed;
  border-radius: 7px;
  color: #627084;
  background: white;
  font-size: 7px;
}

.dash-alert {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #e2e7ed;
  border-radius: 7px;
  color: #ee8b55;
  background: white;
  font-size: 6px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid #dce7e2;
  border-radius: 999px;
  color: #367965;
  background: #f3fbf7;
  font-size: 8px;
  font-style: normal;
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38c999;
  box-shadow: 0 0 0 3px rgba(56, 201, 153, 0.13);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 9px;
  margin-top: 20px;
}

.metric-card {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  padding: 13px;
  border: 1px solid #e2e7ee;
  border-radius: 12px;
  background: white;
}

.metric-card > span {
  color: #6e7a8c;
  font-size: 9px;
}

.metric-card strong {
  margin: 8px 0 7px;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.metric-card .trend-up {
  color: #219b77;
  font-size: 7px;
}

.metric-card small {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #8490a0;
  font-size: 8px;
}

.metric-card small svg {
  color: #1dae7b;
}

.metric-primary {
  color: white;
  border: 0;
  background: linear-gradient(130deg, #0b65b7, #13a2e8);
  box-shadow: 0 12px 26px rgba(17, 137, 211, 0.24);
}

.metric-primary > span,
.metric-primary small {
  color: #ccefff;
}

.metric-primary small svg {
  color: white;
}

.chart-panel,
.transaction-panel {
  padding: 17px 18px;
  border: 1px solid #e2e7ee;
  border-radius: 12px;
  background: white;
}

.chart-panel {
  margin-top: 12px;
}

.dash-analytics-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.72fr;
  gap: 9px;
  margin-top: 9px;
}

.dash-analytics-grid .chart-panel {
  margin-top: 0;
}

.chart-panel-large {
  padding-bottom: 10px;
}

.chart-legend {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
}

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

.chart-legend i {
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: #1da8ed;
}

.chart-legend span:last-child i {
  background: #8b6fdb;
}

.chart-total {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
}

.chart-total strong {
  font-size: 14px;
}

.chart-total span {
  padding: 3px 5px;
  border-radius: 999px;
  color: #228468;
  background: #eaf8f3;
  font-size: 6px;
}

.panel-head > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.panel-head strong {
  font-size: 10px;
}

.panel-head span {
  color: #929baa;
  font-size: 7px;
}

.panel-head button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border: 1px solid #e2e7ee;
  border-radius: 6px;
  background: white;
  color: #5f6c7e;
  font-size: 7px;
}

.chart-area {
  height: 105px;
  margin-top: 5px;
  position: relative;
}

.chart-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#eff2f6 1px, transparent 1px);
  background-size: 100% 32px;
}

.chart-area svg {
  width: 100%;
  height: 100%;
  position: relative;
}

.chart-days {
  display: flex;
  justify-content: space-between;
  color: #a0a9b5;
  font-size: 6px;
}

.currency-mix-panel,
.processor-panel {
  padding: 14px;
  border: 1px solid #e2e7ee;
  border-radius: 12px;
  background: white;
}

.currency-donut {
  width: 90px;
  height: 90px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 13px auto 10px;
  border-radius: 50%;
  background: conic-gradient(#168fdc 0 48.2%, #7765d5 48.2% 69.8%, #24b49b 69.8% 84.6%, #ef9b51 84.6% 94%, #d65d92 94% 100%);
}

.currency-donut::before {
  content: '';
  width: 62px;
  height: 62px;
  position: absolute;
  border-radius: 50%;
  background: white;
}

.currency-donut > div {
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.currency-donut strong {
  font-size: 10px;
}

.currency-donut span {
  color: #8d98a7;
  font-size: 7px;
}

.currency-breakdown {
  display: grid;
  gap: 6px;
}

.currency-breakdown > div {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 5px;
  color: #7c8999;
  font-size: 7px;
}

.currency-breakdown i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #168fdc;
}

.currency-breakdown i.idr { background: #7765d5; }
.currency-breakdown i.php { background: #24b49b; }
.currency-breakdown i.vnd { background: #ef9b51; }
.currency-breakdown i.khr { background: #d65d92; }

.currency-breakdown b {
  color: #364458;
  font-size: 7px;
}

.transaction-panel {
  margin-top: 12px;
}

.dash-bottom-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr;
  gap: 9px;
  margin-top: 9px;
}

.dash-bottom-grid .transaction-panel {
  margin-top: 0;
  padding: 13px 14px 9px;
}

.transaction-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr 0.8fr;
  gap: 7px;
  margin: 10px 0 0 33px;
  padding: 7px 0;
  color: #a0a9b4;
  font-size: 6px;
  text-transform: uppercase;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #128bda !important;
}

.transaction-row {
  display: grid;
  grid-template-columns: 23px 1fr 1.1fr 1fr 0.8fr;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid #eff2f5;
  color: #7d8998;
  font-size: 8px;
}

.transaction-row:first-of-type {
  margin-top: 11px;
}

.transaction-row b,
.transaction-row strong {
  color: #283447;
  font-size: 8px;
}

.payment-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #158cdb;
  background: #ebf7ff;
}

.processor-panel .panel-head .status-pill {
  padding: 4px 6px;
  font-size: 6px;
}

.processor-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f3;
  color: #687689;
  font-size: 7px;
}

.processor-row span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.processor-row i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2dc091;
  box-shadow: 0 0 0 3px #eaf8f3;
}

.processor-row b {
  color: #2d3a4e;
  font-size: 7px;
}

.processor-row em {
  color: #9aa4b1;
  font-size: 6px;
  font-style: normal;
}

.processor-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 11px;
  color: #8e99a8;
  font-size: 6px;
}

.processor-footer b {
  color: #1489d5;
}

.transaction-row em,
.mini-table-row em {
  justify-self: start;
  padding: 4px 6px;
  border-radius: 999px;
  color: #2f846c;
  background: #ebf8f3;
  font-size: 7px;
  font-style: normal;
}

.transaction-row em.processing,
.mini-table-row em.processing {
  color: #956c28;
  background: #fff7e8;
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 12px;
  color: #172236;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.float-card > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #29bd8d;
}

.float-card > svg {
  color: #1597e6;
}

.float-card div {
  display: flex;
  flex-direction: column;
}

.float-card strong {
  font-size: 9px;
}

.float-card small {
  margin-top: 3px;
  color: #8b95a4;
  font-size: 7px;
}

.float-approved {
  left: -52px;
  bottom: 72px;
}

.float-rate {
  right: -40px;
  top: 72px;
}

.trust-strip {
  position: relative;
  padding: 37px 0;
  color: #9ca8b8;
  background: #0b1626;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 54px;
}

.trust-label {
  flex: 0 0 auto;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.industry-logos {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.industry-logos span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c3cad4;
  font-size: 13px;
  font-weight: 700;
}

.industry-logos svg {
  width: 18px;
  color: #688098;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 19px;
  color: #168dda;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.section-heading h2,
.dev-copy h2,
.network-copy h2,
.security-copy h2,
.faq-grid h2,
.contact-content h2 {
  margin-bottom: 21px;
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-heading > p,
.security-copy > p {
  max-width: 650px;
  margin: 0 auto;
  color: #697587;
  font-size: 16px;
  line-height: 1.75;
}

.platform {
  background: #fff;
}

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

.feature-card {
  min-height: 326px;
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e8ecf1;
  border-radius: 18px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::after {
  content: '';
  width: 160px;
  height: 160px;
  position: absolute;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: var(--feature-bg);
  filter: blur(10px);
  opacity: 0.65;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #dce5ed;
  box-shadow: 0 24px 50px rgba(11, 31, 53, 0.08);
}

.feature-card.blue { --feature: #168fdd; --feature-bg: #d8f1ff; }
.feature-card.violet { --feature: #795bd8; --feature-bg: #e8e0ff; }
.feature-card.cyan { --feature: #03a3b3; --feature-bg: #d8f8f8; }
.feature-card.mint { --feature: #159875; --feature-bg: #ddf7ef; }
.feature-card.orange { --feature: #d4812d; --feature-bg: #fff0dd; }
.feature-card.pink { --feature: #d6568c; --feature-bg: #ffe0ed; }

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border-radius: 12px;
  color: var(--feature);
  background: color-mix(in srgb, var(--feature) 10%, white);
}

.feature-card > span {
  color: var(--feature);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 10px 0 13px;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin-bottom: 18px;
  color: #748092;
  font-size: 12px;
  line-height: 1.7;
}

.feature-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #26354a;
  font-size: 11px;
  font-weight: 700;
}

.product-showcase {
  padding-top: 104px;
  background: #f5f7fa;
  border-top: 1px solid #edf0f3;
}

.showcase-shell {
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 24px;
  background: white;
  box-shadow: 0 35px 80px rgba(16, 40, 69, 0.09);
}

.tab-list {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 1px solid #e9edf1;
  background: #fbfcfd;
}

.tab-list button {
  min-width: 128px;
  padding: 10px 18px;
  border: 0;
  border-radius: 9px;
  color: #7a8697;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.tab-list button.active {
  color: #0d6fb8;
  background: #eaf6fd;
}

.showcase-content {
  min-height: 550px;
  display: grid;
  grid-template-columns: 0.78fr 1.45fr;
}

.showcase-copy {
  padding: 78px 52px;
}

.number-label {
  color: #1594e0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
}

.showcase-copy h3 {
  margin: 22px 0 17px;
  font-size: 31px;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.showcase-copy > p {
  color: #718093;
  font-size: 13px;
  line-height: 1.75;
}

.showcase-copy ul {
  padding: 0;
  margin: 27px 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.showcase-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3f4e61;
  font-size: 12px;
  font-weight: 600;
}

.showcase-copy li svg {
  padding: 3px;
  border-radius: 50%;
  color: white;
  background: #1a9fe8;
}

.showcase-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #0876c5;
  font-size: 12px;
  font-weight: 700;
}

.product-panel {
  padding: 46px 0 46px 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(96, 215, 255, 0.22), transparent 38%),
    linear-gradient(140deg, #0c76bd, #063d7a);
}

.product-performance {
  background:
    radial-gradient(circle at 80% 25%, rgba(171, 133, 255, 0.25), transparent 38%),
    linear-gradient(140deg, #3651aa, #17256c);
}

.product-control {
  background:
    radial-gradient(circle at 80% 25%, rgba(82, 238, 194, 0.22), transparent 38%),
    linear-gradient(140deg, #0c807c, #074557);
}

.mini-browser {
  width: 760px;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 15px 0 0 15px;
  background: #f7f9fc;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.24);
}

.mini-browser-top {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #e4e8ee;
  background: white;
  color: #8a96a7;
  font-size: 8px;
}

.mini-browser-top > div,
.code-top > div {
  display: flex;
  gap: 5px;
}

.mini-browser-top i,
.code-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9dee5;
}

.mini-browser-top .status-pill {
  justify-self: end;
}

.mini-browser-body {
  padding: 26px 24px;
}

.mini-filter-row {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.fake-search {
  width: 250px;
  height: 33px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  color: #9aa3b0;
  background: white;
  font-size: 8px;
}

.mini-filter-row button {
  height: 33px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  color: #637084;
  background: white;
  font-size: 8px;
}

.mini-table-head,
.mini-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.7fr 0.8fr 0.9fr;
  align-items: center;
  gap: 12px;
}

.mini-table-head {
  padding: 0 13px 10px;
  color: #98a2b0;
  font-size: 7px;
  text-transform: uppercase;
}

.mini-table-row {
  min-height: 54px;
  padding: 0 13px;
  border-top: 1px solid #ebeff3;
  background: white;
  color: #69778a;
  font-size: 8px;
}

.mini-table-row > span:first-child {
  display: flex;
  align-items: center;
  color: #2e3b4f;
  font-weight: 700;
}

.mini-table-row strong {
  color: #26344a;
}

.method-dot {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #1497e2;
  box-shadow: 0 0 0 4px #e6f5fd;
}

.method-dot.d1 { background: #765bd6; box-shadow: 0 0 0 4px #eeeafd; }
.method-dot.d2 { background: #ec9a3e; box-shadow: 0 0 0 4px #fff3e5; }
.method-dot.d3 { background: #1db88a; box-shadow: 0 0 0 4px #e8f9f4; }
.method-dot.d4 { background: #df5e96; box-shadow: 0 0 0 4px #feeaf2; }

.screens-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(31, 166, 255, 0.08), transparent 24%),
    #f5f7fa;
  border-top: 1px solid #e7ebef;
}

.screens-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 18px;
}

.screen-card,
.screen-insight-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe5eb;
  border-radius: 20px;
  background: white;
  box-shadow: 0 24px 55px rgba(17, 43, 72, 0.07);
}

.screen-card-wide {
  grid-column: 1 / -1;
}

.screen-frame {
  margin: 14px 14px 0;
  overflow: hidden;
  border: 1px solid #dfe4ea;
  border-radius: 12px;
  background: #f6f7f9;
}

.screen-frame-top {
  height: 31px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid #e2e6eb;
  background: #fafbfc;
}

.screen-frame-top > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5dae1;
}

.screen-frame-top b {
  margin-left: 7px;
  color: #8b96a5;
  font-family: 'DM Mono', monospace;
  font-size: 7px;
  font-weight: 500;
}

.screen-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}

.screen-card-wide .screen-frame img {
  aspect-ratio: 3 / 2;
}

.screen-card figcaption {
  padding: 25px 27px 29px;
}

.screen-card figcaption > div:first-child {
  display: flex;
  align-items: center;
  gap: 11px;
}

.screen-number {
  color: #168dda;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
}

.screen-card h3,
.screen-insight-card h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.screen-card figcaption > p {
  max-width: 760px;
  margin: 13px 0 0;
  color: #748092;
  font-size: 11px;
  line-height: 1.75;
}

.screen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.screen-tags span {
  padding: 6px 9px;
  border: 1px solid #dce9f1;
  border-radius: 999px;
  color: #32769e;
  background: #f0f9fe;
  font-size: 7px;
  font-weight: 700;
}

.screen-insight-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  color: white;
  border-color: #0c63a5;
  background:
    radial-gradient(circle at 100% 0, rgba(90, 217, 255, 0.24), transparent 32%),
    linear-gradient(145deg, #0a6eb9, #083b75);
}

.screen-insight-card .section-label {
  color: #aee9ff;
}

.screen-insight-card h3 {
  max-width: 430px;
  font-size: 29px;
  line-height: 1.2;
}

.screen-insight-card > p {
  margin: 17px 0 24px;
  color: #b8d8eb;
  font-size: 11px;
  line-height: 1.75;
}

.screen-insight-card ul {
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.screen-insight-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d9edf8;
  font-size: 10px;
  font-weight: 600;
}

.screen-insight-card li span {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0a689e;
  background: #91e8d0;
  font-size: 9px;
}

.screen-insight-card > a {
  color: white;
  font-size: 10px;
  font-weight: 700;
}

.screens-note {
  margin: 20px 0 0;
  color: #909aa8;
  font-size: 8px;
  text-align: center;
}

.solutions {
  color: white;
  background: #081321;
}

.solutions-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.solutions-heading .section-heading {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.section-heading.light h2 {
  color: white;
}

.section-heading.light > p {
  margin-left: 0;
  color: #95a4b8;
}

.text-link-light {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 8px;
  color: #87dcff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 16px;
}

.solution-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
}

.solution-large {
  grid-row: 1 / 3;
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.solution-card:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 12, 24, 0.94), rgba(3, 12, 24, 0.06) 70%);
}

.solution-large .image-overlay {
  background: linear-gradient(to top, rgba(3, 12, 24, 0.94), rgba(3, 12, 24, 0.03) 72%);
}

.solution-content {
  position: absolute;
  inset: auto 30px 28px;
}

.solution-content > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #86ddff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.solution-content h3 {
  max-width: 460px;
  margin-bottom: 12px;
  color: white;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.solution-large .solution-content h3 {
  font-size: 34px;
}

.solution-content p {
  max-width: 430px;
  margin-bottom: 19px;
  color: #c3ccda;
  font-size: 12px;
  line-height: 1.65;
}

.solution-content a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.developers {
  position: relative;
  overflow: hidden;
  color: white;
  background: #091a31;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dev-glow {
  width: 600px;
  height: 600px;
  position: absolute;
  right: -250px;
  top: -250px;
  border-radius: 50%;
  background: rgba(18, 151, 229, 0.14);
  filter: blur(50px);
}

.dev-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.dev-copy h2 {
  color: white;
}

.dev-copy > p {
  color: #9cacc0;
  font-size: 14px;
  line-height: 1.8;
}

.dev-benefits {
  display: grid;
  gap: 18px;
  margin: 34px 0;
}

.dev-benefits > div,
.security-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dev-benefits svg {
  width: 19px;
  color: #51c7ff;
}

.simple-icon {
  width: 24px;
  flex: 0 0 24px;
  color: #168fdd;
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  text-align: center;
}

.dev-benefits .simple-icon {
  color: #51c7ff;
}

.dev-benefits span,
.security-list span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dev-benefits b,
.security-list b {
  font-size: 12px;
}

.dev-benefits small {
  color: #71849c;
  font-size: 9px;
}

.dev-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.dev-actions .button {
  min-height: 49px;
  padding: 0 21px;
}

.dev-actions > a:not(.button) {
  color: #7ccfff;
  font-size: 11px;
  font-weight: 700;
}

.code-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #07111f;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.28);
}

.code-top {
  height: 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #6f8095;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
}

.code-top button {
  justify-self: end;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #91a0b4;
  background: rgba(255, 255, 255, 0.04);
  font-size: 8px;
  cursor: pointer;
}

.code-window pre {
  margin: 0;
  white-space: pre-wrap;
}

.code-window > pre {
  min-height: 220px;
  padding: 37px 34px;
}

.code-window code {
  color: #d6dfeb;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  line-height: 2;
}

.code-purple { color: #ca87f4; }
.code-blue { color: #63c8ff; }
.code-orange { color: #f0b163; }
.code-green { color: #79dfb8; }

.code-response {
  margin: 0 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(75, 200, 157, 0.15);
  border-radius: 11px;
  background: #0a1724;
}

.response-head {
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #6cd9ad;
  font-family: 'DM Mono', monospace;
  font-size: 7px;
}

.response-head span {
  margin-left: auto;
  color: #69798d;
}

.code-response pre {
  padding: 13px 15px;
}

.code-response code {
  font-size: 9px;
  line-height: 1.8;
}

.code-footer {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #75869b;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
}

.code-footer span {
  margin-left: auto;
}

.network-section {
  background: #f5f7fa;
}

.network-card {
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  overflow: hidden;
  border: 1px solid #dfe5eb;
  border-radius: 24px;
  background: white;
  box-shadow: 0 30px 70px rgba(13, 38, 68, 0.07);
}

.network-copy {
  padding: 80px 60px;
}

.network-copy h2 {
  font-size: clamp(36px, 4vw, 50px);
}

.network-copy > p {
  color: #728093;
  font-size: 13px;
  line-height: 1.8;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 36px 0;
  padding: 22px 0;
  border-top: 1px solid #e7ebef;
  border-bottom: 1px solid #e7ebef;
}

.network-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.network-stats strong {
  font-size: 20px;
}

.network-stats span {
  color: #8792a1;
  font-size: 7px;
}

.network-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b7dc7;
  font-size: 11px;
  font-weight: 700;
}

.network-visual {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(26, 168, 239, 0.18), transparent 30%),
    linear-gradient(145deg, #071426, #0b2138);
}

.network-visual .world-grid {
  opacity: 0.13;
  mask-image: radial-gradient(circle, black 20%, transparent 75%);
}

.network-core {
  width: 92px;
  height: 92px;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(80, 201, 255, 0.35);
  border-radius: 50%;
  background: #0a2540;
  box-shadow: 0 0 50px rgba(23, 164, 233, 0.35);
}

.network-core img {
  width: 50px;
}

.pulse-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(68, 186, 243, 0.18);
  border-radius: 50%;
}

.pulse-ring.r1 { width: 220px; height: 220px; }
.pulse-ring.r2 { width: 390px; height: 390px; }

.currency-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: #b9c9db;
  background: rgba(12, 36, 59, 0.82);
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  backdrop-filter: blur(8px);
}

.currency-node i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #24c895;
  box-shadow: 0 0 0 3px rgba(36, 200, 149, 0.14);
}

.currency-node.n1 { left: 10%; top: 18%; }
.currency-node.n2 { right: 10%; top: 19%; }
.currency-node.n3 { left: 6%; top: 59%; }
.currency-node.n4 { right: 7%; top: 58%; }
.currency-node.n5 { left: 22%; bottom: 9%; }
.currency-node.n6 { right: 20%; bottom: 10%; }

.network-visual svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.network-visual path {
  fill: none;
  stroke: rgba(64, 188, 244, 0.32);
  stroke-width: 1;
  stroke-dasharray: 4 5;
}

.security {
  background: white;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px;
}

.security-visual {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 48%, #dff4ff, transparent 27%),
    linear-gradient(145deg, #f7fbfd, #eef3f7);
}

.security-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(#a8bbca 0.7px, transparent 0.7px);
  background-size: 20px 20px;
}

.security-shield {
  width: 120px;
  height: 120px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 48%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  color: white;
  background: linear-gradient(145deg, #1dadf5, #086fc2);
  box-shadow: 0 28px 50px rgba(12, 126, 197, 0.28), inset 0 1px rgba(255, 255, 255, 0.35);
  font-size: 36px;
}

.shield-halo {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(28, 145, 209, 0.12);
  border-radius: 40px;
}

.halo-a { width: 240px; height: 240px; }
.halo-b { width: 380px; height: 380px; }

.security-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  padding: 11px 13px;
  border: 1px solid #e3e8ed;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 15px 34px rgba(18, 47, 77, 0.12);
}

.security-badge > svg {
  width: 18px;
  color: #0e91dc;
}

.security-badge span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.security-badge b {
  font-size: 9px;
}

.security-badge small {
  color: #8b96a5;
  font-size: 7px;
}

.badge-a { left: 8%; top: 18%; }
.badge-b { right: 6%; top: 35%; }
.badge-c { left: 12%; bottom: 15%; }

.security-copy > p {
  margin-left: 0;
}

.security-list {
  display: grid;
  gap: 21px;
  margin: 35px 0;
}

.security-list > div > svg {
  width: 20px;
  color: #128eda;
}

.security-list small {
  color: #85909f;
  font-size: 9px;
}

.compliance-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 72px;
}

.compliance-row span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #e2e7ec;
  border-radius: 12px;
  color: #526175;
  background: #f9fbfc;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.compliance-row svg {
  color: #138ed9;
}

.operating-model {
  background: #f5f7fa;
  border-top: 1px solid #e9edf1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e0e5eb;
  border-radius: 20px;
  background: #e0e5eb;
}

.team-grid article {
  min-height: 320px;
  position: relative;
  padding: 30px 27px;
  background: white;
}

.team-grid article::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #168dda, #68d5ff);
  transition: transform 0.3s ease;
}

.team-grid article:hover::after {
  transform: scaleX(1);
}

.team-number {
  position: absolute;
  right: 25px;
  top: 26px;
  color: #b1bbc7;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
}

.team-grid article > svg {
  width: 25px;
  height: 25px;
  margin: 65px 0 30px;
  color: #168dda;
}

.team-symbol {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin: 65px 0 30px;
  color: #168dda;
  font-family: 'DM Mono', monospace;
  font-size: 20px;
}

.team-grid h3 {
  margin-bottom: 14px;
  font-size: 16px;
  letter-spacing: -0.025em;
}

.team-grid p {
  color: #7b8797;
  font-size: 11px;
  line-height: 1.75;
}

.contact-section {
  padding-bottom: 90px;
  background: white;
}

.contact-card {
  min-height: 620px;
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 64px;
  padding: 64px;
  overflow: hidden;
  border-radius: 25px;
  color: white;
  background:
    radial-gradient(circle at 84% 10%, rgba(82, 210, 255, 0.22), transparent 31%),
    linear-gradient(135deg, #0a69b7, #0b3d7d);
}

.contact-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.shape-a { width: 430px; height: 430px; right: -150px; top: -160px; }
.shape-b { width: 640px; height: 640px; right: -230px; top: -260px; }

.contact-content,
.contact-form {
  position: relative;
  z-index: 2;
}

.contact-content .section-label {
  color: #a9e7ff;
}

.contact-content h2 {
  max-width: 650px;
  color: white;
  font-size: clamp(43px, 5vw, 64px);
}

.contact-content > p {
  max-width: 620px;
  color: #c6e3f4;
  font-size: 14px;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.contact-actions > a:not(.button) {
  color: #d8f3ff;
  font-size: 11px;
  font-weight: 700;
}

.contact-form {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 65px rgba(0, 24, 58, 0.27);
}

.contact-form-heading {
  margin-bottom: 23px;
}

.contact-form-heading > span {
  display: block;
  margin-bottom: 8px;
  color: #087fc4;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.contact-form-heading h3 {
  margin-bottom: 5px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.contact-form-heading p,
.contact-form-note {
  color: #68778a;
  font-size: 11px;
  line-height: 1.55;
}

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

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

.contact-form label > span {
  color: #344256;
  font-size: 10px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce3eb;
  border-radius: 9px;
  outline: none;
  color: var(--ink);
  background: #f9fbfd;
  font: inherit;
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 44px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 105px;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1596dc;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(21, 150, 220, 0.12);
}

.contact-form label > small {
  color: #b42318;
  font-size: 9px;
}

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.contact-form-note {
  margin: 11px 0 0;
  text-align: center;
}

.form-notice {
  margin-bottom: 18px;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 10px;
  line-height: 1.5;
}

.form-notice-success {
  border: 1px solid #a7e2cf;
  color: #0b6b4d;
  background: #eafaf4;
}

.form-notice-error {
  border: 1px solid #f0b8b3;
  color: #9a291f;
  background: #fff1f0;
}

.contact-honeypot {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -10000px;
  overflow: hidden;
}

.faq {
  padding-top: 90px;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.faq-grid h2 {
  font-size: 44px;
}

.faq-grid > div:first-child > p {
  color: #7a8696;
  font-size: 12px;
}

.faq-grid > div:first-child > p a {
  color: #1083cf;
  font-weight: 700;
}

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

.faq-item {
  border-bottom: 1px solid #dfe4e9;
}

.faq-item button {
  width: 100%;
  min-height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: 14px;
  font-weight: 700;
}

.faq-item button svg {
  width: 18px;
  color: #778496;
  transition: transform 0.25s ease;
}

.faq-item button > b {
  color: #778496;
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.25s ease;
}

.faq-item.open button svg {
  transform: rotate(180deg);
}

.faq-item.open button > b {
  transform: rotate(180deg);
}

.faq-item > div {
  overflow: hidden;
}

.faq-item p {
  max-width: 630px;
  margin: -5px 40px 25px 0;
  color: #748092;
  font-size: 12px;
  line-height: 1.8;
}

footer {
  padding: 75px 0 28px;
  color: #9ca9ba;
  background: #07101f;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 90px;
  padding-bottom: 60px;
}

.footer-brand > p {
  margin-top: 20px;
  color: #6f7f93;
  font-size: 11px;
}

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

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

.footer-links b {
  margin-bottom: 7px;
  color: #e0e6ee;
  font-size: 11px;
}

.footer-links a {
  color: #78889d;
  font-size: 10px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  min-height: 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #627287;
  font-size: 8px;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28c491;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .dashboard-window {
    grid-template-columns: 178px 1fr;
  }

  .dev-grid,
  .security-grid {
    gap: 55px;
  }

  .contact-card {
    padding: 60px 50px;
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-nav {
    width: min(100% - 32px, 500px);
    position: absolute;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 3px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background: rgba(7, 16, 31, 0.98);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  }

  .mobile-nav > a:not(.button) {
    padding: 12px;
    border-radius: 9px;
    color: #b8c4d4;
    font-size: 13px;
  }

  .mobile-nav .button {
    min-height: 47px;
    margin-top: 6px;
  }

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

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

  .dash-sidebar {
    min-height: 62px;
    flex-direction: row;
    align-items: center;
    padding: 12px 18px;
  }

  .dash-menu {
    display: flex;
    margin: 0 0 0 30px;
  }

  .dash-menu > small,
  .dash-menu span:not(.active),
  .dash-workspace,
  .dash-user-card > span,
  .dash-user-card > i {
    display: none;
  }

  .dash-user-card {
    margin: 0 0 0 auto;
    padding: 0;
    border: 0;
  }

  .dash-user {
    margin: 0;
  }

  .showcase-content {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .showcase-copy {
    padding: 55px 32px;
  }

  .solutions-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .dev-grid,
  .security-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .dev-grid {
    gap: 60px;
  }

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

  .network-visual {
    min-height: 520px;
  }

  .security-grid {
    gap: 60px;
  }

  .security-visual {
    order: 2;
  }

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

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

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

  .contact-form {
    width: 100%;
    max-width: 620px;
  }

  .faq-grid {
    gap: 55px;
  }

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

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

  .section {
    padding: 90px 0;
  }

  .hero {
    min-height: auto;
    padding: 135px 0 85px;
  }

  .hero-copy {
    margin-bottom: 55px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .dashboard-window {
    min-height: 420px;
    border-radius: 13px;
  }

  .dash-sidebar {
    min-height: 55px;
  }

  .dash-menu span {
    min-height: 32px;
    padding: 0 8px;
  }

  .dash-menu span:not(.active) {
    display: none;
  }

  .dash-main {
    padding: 18px;
  }

  .dash-top h3 {
    font-size: 17px;
  }

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

  .metric-card:nth-child(n + 3) {
    display: none;
  }

  .metric-card strong {
    font-size: 17px;
  }

  .chart-area {
    height: 95px;
  }

  .dash-top-actions .dash-search,
  .dash-top-actions .dash-alert {
    display: none;
  }

  .dash-analytics-grid {
    grid-template-columns: 1fr;
  }

  .currency-mix-panel,
  .processor-panel {
    display: none;
  }

  .dash-bottom-grid {
    display: block;
  }

  .transaction-panel {
    display: none;
  }

  .float-card {
    display: none;
  }

  .trust-strip .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .industry-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .industry-logos span {
    min-width: 120px;
    font-size: 11px;
  }

  .section-heading {
    margin-bottom: 44px;
    text-align: left;
  }

  .section-heading h2,
  .dev-copy h2,
  .network-copy h2,
  .security-copy h2,
  .faq-grid h2 {
    font-size: 37px;
  }

  .section-heading > p {
    margin-left: 0;
  }

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

  .feature-card {
    min-height: 295px;
  }

  .tab-list {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 12px;
  }

  .tab-list button {
    min-width: 105px;
  }

  .showcase-content {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    padding: 44px 28px;
  }

  .product-panel {
    padding: 30px 0 30px 24px;
  }

  .mini-browser {
    width: 640px;
    min-height: 370px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 310px 310px;
  }

  .screen-frame {
    margin: 8px 8px 0;
  }

  .screen-card figcaption {
    padding: 22px 20px 25px;
  }

  .screen-insight-card {
    padding: 34px 25px;
  }

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

  .solution-large {
    grid-row: auto;
  }

  .solution-large .solution-content h3 {
    font-size: 28px;
  }

  .dev-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .code-window code {
    font-size: 9px;
  }

  .code-window > pre {
    padding: 25px 20px;
  }

  .network-copy {
    padding: 48px 28px;
  }

  .network-visual {
    min-height: 430px;
  }

  .network-stats {
    gap: 14px;
  }

  .network-core {
    width: 78px;
    height: 78px;
  }

  .network-core img {
    width: 41px;
  }

  .pulse-ring.r1 { width: 180px; height: 180px; }
  .pulse-ring.r2 { width: 310px; height: 310px; }

  .currency-node.n1 { left: 5%; }
  .currency-node.n2 { right: 5%; }
  .currency-node.n3 { left: 3%; }
  .currency-node.n4 { right: 3%; }

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

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

  .compliance-row {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
  }

  .compliance-row span:last-child {
    grid-column: 1 / -1;
  }

  .team-grid article {
    min-height: 260px;
  }

  .team-grid article > svg {
    margin-top: 35px;
  }

  .team-symbol {
    margin-top: 35px;
  }

  .contact-card {
    min-height: auto;
    padding: 48px 27px;
  }

  .contact-content h2 {
    font-size: 42px;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-form {
    padding: 24px 20px;
  }

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

  .contact-message-field {
    grid-column: auto;
  }

  .faq {
    padding-top: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 13px;
  }

  .footer-status {
    justify-self: start;
  }
}

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

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