:root {
  --bg: #f4f8ff;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #13233f;
  --muted: #5f6f8b;
  --line: rgba(19, 35, 63, 0.08);
  --primary: #0f68ff;
  --primary-dark: #094fc5;
  --secondary: #dfeeff;
  --accent: #6fd5b4;
  --shadow: 0 30px 80px rgba(22, 66, 140, 0.15);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.anchor-section {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(15, 104, 255, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(111, 213, 180, 0.14), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 32px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  margin: 14px auto 0;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 46, 92, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow:
    0 14px 36px rgba(37, 73, 133, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  aspect-ratio: 1 / 1;
  flex: 0 0 58px;
  overflow: hidden;
  border-radius: 50%;
}

.brand-mark img {
  display: block;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
  font-size: 0.9rem;
}

.brand-copy strong {
  letter-spacing: 0.02em;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 800;
  color: var(--text);
}

.brand-copy span:last-child {
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.1;
  font-weight: 500;
  opacity: 0.86;
}

.main-nav,
.header-actions,
.hero-actions,
.hero-pills,
.platform-points,
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-nav a,
.lang-btn,
.button-small {
  font-size: 0.95rem;
}

.main-nav {
  flex: 1;
  justify-content: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  padding: 10px 12px;
  color: rgba(19, 35, 63, 0.88);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.22s ease, transform 0.22s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav a:nth-child(1):hover,
.main-nav a:nth-child(1):focus-visible {
  color: #0f68ff;
}

.main-nav a:nth-child(2):hover,
.main-nav a:nth-child(2):focus-visible {
  color: #194eb7;
}

.main-nav a:nth-child(3):hover,
.main-nav a:nth-child(3):focus-visible {
  color: #1496b5;
}

.main-nav a:nth-child(4):hover,
.main-nav a:nth-child(4):focus-visible {
  color: #1f9661;
}

.main-nav a:nth-child(5):hover,
.main-nav a:nth-child(5):focus-visible {
  color: #314768;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(18, 47, 98, 0.05);
  border: 1px solid rgba(20, 46, 92, 0.06);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  min-width: 44px;
  font-weight: 600;
  transition: color 0.22s ease, background-color 0.22s ease;
}

.lang-btn.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 6px 14px rgba(20, 51, 104, 0.1);
}

.header-actions {
  gap: 12px;
}

.button-small {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.94rem;
}

.header-actions .button-primary {
  box-shadow: 0 12px 26px rgba(15, 104, 255, 0.18);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 0;
}

.section-tight-top {
  padding-top: 52px;
}

.section-tight-bottom {
  padding-bottom: 52px;
}

.challenge.section-soft {
  padding-top: 58px;
  padding-bottom: 34px;
}

.ecosystem.section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.capabilities.section-soft {
  padding-top: 42px;
  padding-bottom: 34px;
}

.trust.section-soft {
  padding-top: 44px;
  padding-bottom: 26px;
}

.technology.section {
  padding-top: 34px;
  padding-bottom: 42px;
}

.use-cases.section-soft {
  padding-top: 40px;
  padding-bottom: 28px;
}

.faq.section {
  padding-top: 32px;
}

.section-soft {
  padding: 72px 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(235, 244, 255, 0.9));
  border-radius: 40px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.section-accent {
  padding: 72px 40px;
  border-radius: 40px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 56px;
  min-height: 92vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero h1,
.section-heading h2 {
  margin: 18px 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  max-width: 10ch;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 14ch;
}

.hero-text,
.section-heading p,
.challenge-closing,
.cta-copy p,
.faq-item p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #4490ff);
  box-shadow: 0 18px 34px rgba(15, 104, 255, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.hero-pills {
  flex-wrap: wrap;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.hero-pills li,
.platform-points span,
.tech-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 104, 255, 0.08);
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-orbit {
  position: absolute;
  inset: 40px;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(232, 242, 255, 0.3));
  border: 1px solid rgba(15, 104, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-photo {
  position: absolute;
  inset: 52px 18px 52px 122px;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 26px 64px rgba(24, 56, 112, 0.16);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 245, 255, 0.62) 0%, rgba(238, 245, 255, 0.24) 26%, rgba(238, 245, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(15, 104, 255, 0.05));
  z-index: 1;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 34%, rgba(111, 213, 180, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(7, 38, 91, 0), rgba(7, 38, 91, 0.08));
  z-index: 2;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.98) contrast(1.04) brightness(0.94);
}

.dashboard-card,
.floating-card,
.info-card,
.capability-card,
.trust-card,
.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px rgba(31, 66, 126, 0.09);
  backdrop-filter: blur(12px);
}

.dashboard-main {
  position: absolute;
  top: 120px;
  left: 68px;
  right: 68px;
  padding: 24px;
  border-radius: 28px;
  z-index: 3;
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.status-line {
  height: 10px;
  width: 88px;
  border-radius: 999px;
  background: rgba(19, 35, 63, 0.08);
}

.status-line.short {
  width: 34px;
}

.dashboard-grid,
.challenge-grid,
.capability-grid,
.trust-grid,
.technology-grid,
.use-case-grid {
  display: grid;
  gap: 20px;
}

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

.metric-card {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(15, 104, 255, 0.08);
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}

.metric-card span {
  color: var(--muted);
}

.floating-card {
  position: absolute;
  width: 240px;
  padding: 18px;
  border-radius: 24px;
  z-index: 3;
}

.floating-card-left {
  left: 0;
  bottom: 96px;
}

.floating-card-right {
  right: 0;
  top: 84px;
}

.chip {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 104, 255, 0.1);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.ecosystem .section-heading,
.capabilities .section-heading,
.technology .section-heading,
.use-cases .section-heading,
.faq .section-heading {
  margin-bottom: 28px;
}

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

.section-heading.centered h2,
.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

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

.info-card,
.capability-card,
.use-case-card {
  position: relative;
  padding: 30px 28px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.96));
  border: 1px solid rgba(15, 104, 255, 0.1);
  box-shadow: 0 20px 48px rgba(31, 66, 126, 0.08);
  overflow: hidden;
}

.use-case-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.use-case-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 104, 255, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.use-case-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.use-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.challenge-closing {
  margin: 20px 0 0;
  text-align: center;
}

.ecosystem-map {
  position: relative;
  min-height: 0;
  padding: 52px 40px 28px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 34%, rgba(15, 104, 255, 0.1), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(111, 213, 180, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.95));
  border: 1px solid rgba(15, 104, 255, 0.08);
  overflow: hidden;
}

.ecosystem-grid,
.ecosystem-glow,
.ecosystem-architecture,
.ecosystem-column,
.ecosystem-core-wrap,
.ecosystem-core,
.domain-card,
.ecosystem-compliance {
  position: relative;
}

.ecosystem-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 104, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 104, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 78%);
  opacity: 0.22;
}

.ecosystem-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.ecosystem-glow-a {
  width: 420px;
  height: 420px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%);
  background: radial-gradient(circle, rgba(15, 104, 255, 0.18), transparent 64%);
}

.ecosystem-glow-b {
  width: 260px;
  height: 260px;
  right: 12%;
  top: 20%;
  background: radial-gradient(circle, rgba(111, 213, 180, 0.16), transparent 60%);
}

.ecosystem-architecture {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.ecosystem-architecture::before,
.ecosystem-architecture::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.ecosystem-architecture::before {
  left: 16%;
  right: 16%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(15, 104, 255, 0.12), rgba(15, 104, 255, 0.5), rgba(15, 104, 255, 0.12));
}

.ecosystem-architecture::after {
  top: 18%;
  bottom: 18%;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(15, 104, 255, 0.1), rgba(15, 104, 255, 0.42), rgba(15, 104, 255, 0.1));
}

.ecosystem-column {
  display: grid;
  gap: 18px;
}

.ecosystem-core-wrap {
  z-index: 2;
  display: grid;
  gap: 18px;
}

.core-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 104, 255, 0.08);
  box-shadow: 0 14px 28px rgba(28, 62, 122, 0.06);
  backdrop-filter: blur(10px);
}

.core-rail-label {
  color: rgba(19, 35, 63, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.core-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ecosystem-core {
  z-index: 2;
  padding: 28px 28px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.95));
  border: 1px solid rgba(15, 104, 255, 0.1);
  box-shadow:
    0 24px 58px rgba(28, 62, 122, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  text-align: center;
}

.core-kicker,
.compliance-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.core-kicker {
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 104, 255, 0.08);
  color: var(--primary);
}

.ecosystem-core strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.85rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.core-copy {
  display: block;
  max-width: 28ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.core-capabilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.core-capabilities span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 104, 255, 0.12);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(28, 62, 122, 0.08);
}

.domain-card {
  display: grid;
  gap: 12px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 104, 255, 0.08);
  box-shadow: 0 18px 36px rgba(28, 62, 122, 0.08);
  z-index: 2;
}

.domain-index {
  color: rgba(15, 104, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.domain-card strong {
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.domain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.evidence-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  min-width: 54px;
  min-height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 104, 255, 0.08);
  box-shadow: 0 12px 22px rgba(28, 62, 122, 0.08);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ecosystem-signal-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.ecosystem-signal-band span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 104, 255, 0.08);
  color: rgba(19, 35, 63, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 14px 26px rgba(28, 62, 122, 0.06);
}

.ecosystem-compliance {
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 104, 255, 0.08);
  box-shadow: 0 14px 28px rgba(28, 62, 122, 0.06);
  backdrop-filter: blur(12px);
}

.compliance-label {
  flex: 0 0 250px;
  color: var(--primary);
}

.ecosystem-compliance p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.capability-icon {
  display: inline-flex;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--primary);
}

.platform-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 34px;
  align-items: start;
}

.platform-copy {
  display: grid;
  gap: 24px;
}

.platform-highlights {
  display: grid;
  gap: 18px;
}

.platform-highlight {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 104, 255, 0.08);
  box-shadow: 0 16px 40px rgba(31, 66, 126, 0.07);
}

.platform-highlight h3 {
  margin: 10px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.platform-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.platform-highlight-kicker {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.platform-screens {
  position: relative;
  min-height: 1040px;
}

.platform-screen {
  display: grid;
  grid-template-columns: 0.24fr 0.76fr;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: #eef2f7;
  border: 1px solid rgba(19, 35, 63, 0.08);
  box-shadow: 0 28px 64px rgba(24, 53, 110, 0.12);
}

.platform-screen-main {
  position: relative;
  z-index: 1;
  width: 96%;
}

.platform-screen-float {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 54%;
  transform: rotate(-2deg);
  box-shadow: 0 36px 80px rgba(24, 53, 110, 0.22);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(180deg, #eff4fb, #ffffff);
}

.platform-screen-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #3a3f47, #343941);
  color: rgba(255, 255, 255, 0.92);
}

.screen-brand {
  font-size: 1rem;
  font-weight: 600;
}

.screen-module {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.screen-nav {
  display: grid;
  gap: 12px;
}

.screen-nav-item {
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
}

.screen-nav-item.active {
  background: #147cf2;
  color: #fff;
  box-shadow: 0 12px 26px rgba(20, 124, 242, 0.35);
}

.platform-screen-body {
  display: grid;
  grid-template-rows: auto 1fr;
}

.screen-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: #ffffff;
  border-bottom: 1px solid rgba(19, 35, 63, 0.08);
}

.screen-breadcrumb {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.screen-user {
  color: var(--muted);
  font-weight: 700;
}

.screen-content {
  padding: 18px;
}

.member-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 16px;
}

.member-profile-card,
.member-process-card,
.summary-card,
.dispense-products {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(19, 35, 63, 0.08);
  box-shadow: 0 12px 32px rgba(24, 53, 110, 0.08);
}

.member-profile-card {
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.profile-avatar {
  width: 112px;
  height: 112px;
  margin: 8px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #fefefe 0 24%, #cacfd8 25% 100%);
  border: 4px solid #aab2bf;
}

.member-profile-card strong,
.timeline-card-head strong,
.product-card strong {
  font-size: 1.05rem;
}

.profile-id,
.product-type {
  color: var(--muted);
}

.profile-meta {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(19, 35, 63, 0.08);
}

.tag-green {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #25b04b;
  color: #fff;
}

.process-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 14px 0;
}

.process-tab {
  padding: 10px 16px;
  border-radius: 10px 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.process-tab.active {
  background: #147cf2;
  color: #fff;
}

.process-panel {
  padding: 16px;
}

.process-panel h4 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.process-timeline {
  display: grid;
  gap: 14px;
}

.timeline-event {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-node {
  width: 20px;
  height: 20px;
  margin-top: 16px;
  border-radius: 50%;
  background: #25b04b;
  box-shadow: 0 0 0 6px rgba(37, 176, 75, 0.14);
}

.timeline-node.blue {
  background: #22a7c9;
  box-shadow: 0 0 0 6px rgba(34, 167, 201, 0.14);
}

.timeline-node.cyan {
  background: #1f91f2;
  box-shadow: 0 0 0 6px rgba(31, 145, 242, 0.14);
}

.timeline-card {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(19, 35, 63, 0.08);
}

.timeline-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.timeline-card-head span {
  color: var(--muted);
  font-size: 0.86rem;
}

.timeline-transition {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.summary-head,
.products-head {
  padding: 14px 16px;
  background: #1797c7;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.summary-head.blue {
  background: #1ca0c8;
}

.products-head {
  background: #25b04b;
  border-radius: 18px 18px 0 0;
}

.summary-body {
  padding: 18px 16px;
}

.summary-body p {
  margin: 0 0 14px;
  line-height: 1.6;
}

.summary-body.muted {
  color: var(--muted);
}

.checkout-pill {
  border: 0;
  padding: 12px 18px;
  border-radius: 12px;
  background: #7bc96f;
  color: #fff;
  font-weight: 800;
}

.product-card {
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(19, 35, 63, 0.06);
  box-shadow: 0 10px 26px rgba(24, 53, 110, 0.06);
  display: grid;
  gap: 8px;
  min-width: 0;
}

.product-image {
  height: 96px;
  border-radius: 14px;
  background:
    radial-gradient(circle at center, rgba(125, 150, 122, 0.22), rgba(235, 241, 232, 0.9)),
    linear-gradient(180deg, #eef4e9, #f6faf4);
  border: 1px dashed rgba(125, 150, 122, 0.45);
}

.product-card strong,
.product-card b {
  overflow-wrap: anywhere;
}

.product-card b {
  font-size: 1.1rem;
}

.dispense-focus-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.focus-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dispense-focus-head strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.dispense-focus-alert {
  padding: 14px 16px;
  border-radius: 14px;
  background: #26ad48;
  color: #fff;
  font-weight: 800;
}

.dispense-focus-body {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 16px;
  align-items: start;
}

.focus-summary-card,
.focus-products {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(19, 35, 63, 0.08);
  box-shadow: 0 12px 32px rgba(24, 53, 110, 0.08);
  overflow: hidden;
}

.focus-product-stage {
  position: relative;
  min-height: 310px;
  padding: 18px;
}

.focus-product-card {
  position: relative;
  z-index: 3;
  width: min(100%, 210px);
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(19, 35, 63, 0.06);
  box-shadow: 0 18px 36px rgba(24, 53, 110, 0.12);
  display: grid;
  gap: 8px;
}

.focus-product-card strong,
.focus-product-card b {
  overflow-wrap: anywhere;
}

.focus-product-ghost {
  position: absolute;
  top: 24px;
  width: 170px;
  height: 242px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 35, 63, 0.06);
  box-shadow: 0 12px 28px rgba(24, 53, 110, 0.08);
}

.ghost-one {
  left: 92px;
  z-index: 2;
}

.ghost-two {
  left: 138px;
  top: 36px;
  z-index: 1;
}

.add-pill {
  border: 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: #25b04b;
  color: #fff;
  font-weight: 800;
}

.platform-points {
  flex-wrap: wrap;
  margin-top: 18px;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 44px;
  align-items: start;
}

.trust-copy .section-heading {
  margin-bottom: 0;
}

.trust-list {
  display: grid;
  border-top: 1px solid rgba(19, 35, 63, 0.12);
}

.trust-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(19, 35, 63, 0.12);
}

.trust-index {
  color: rgba(19, 35, 63, 0.34);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trust-item h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}

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

.tech-pill {
  text-align: center;
  font-weight: 700;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.use-cases .use-case-grid {
  margin-bottom: 0;
}

.faq-item {
  border-radius: 24px;
  padding: 0 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  font-weight: 700;
}

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

.faq-item p {
  margin: 0 0 24px;
}

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

.contact-form {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

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

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

.contact-form span {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(19, 35, 63, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(15, 104, 255, 0.18);
  border-color: rgba(15, 104, 255, 0.35);
}

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

.recaptcha-row {
  margin-top: 4px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.form-status {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  max-width: none;
  margin: 40px -24px 0;
  padding: 46px 24px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #ffffff;
  border: 0;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at top left, rgba(15, 104, 255, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(111, 213, 180, 0.14), transparent 26%),
    linear-gradient(180deg, #eef4ff 0%, #dfeaff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.footer-copy {
  margin: 0;
  text-align: center;
  color: rgba(19, 35, 63, 0.88);
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  transition: transform 0.22s ease, filter 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
  border: 1px solid rgba(19, 35, 63, 0.06);
}

.footer-social:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-x {
  background: rgba(29, 161, 242, 0.22);
  border-color: rgba(29, 161, 242, 0.34);
}

.footer-social-linkedin {
  background: rgba(10, 102, 194, 0.24);
  border-color: rgba(10, 102, 194, 0.38);
}

.footer-social-x:hover {
  background: rgba(29, 161, 242, 0.34);
  border-color: rgba(29, 161, 242, 0.48);
}

.footer-social-linkedin:hover {
  background: rgba(10, 102, 194, 0.36);
  border-color: rgba(10, 102, 194, 0.52);
}

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

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

body.menu-open .main-nav,
body.menu-open .header-actions {
  display: flex;
}

@media (max-width: 1100px) {
  .hero,
  .platform-layout,
  .trust-layout,
  .cta,
  .challenge-grid,
  .capability-grid,
  .use-case-grid,
  .technology-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .platform-layout {
    gap: 28px;
  }

  .ecosystem-map {
    padding: 40px 24px 24px;
  }

  .ecosystem-architecture {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ecosystem-architecture::before,
  .ecosystem-architecture::after {
    display: none;
  }

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

  .ecosystem-core-wrap {
    order: -1;
  }

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

  .ecosystem-compliance {
    flex-direction: column;
    gap: 12px;
  }

  .compliance-label {
    flex: 0 0 auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    border-radius: 26px;
    padding: 16px;
    flex-wrap: wrap;
  }

  .main-nav,
  .header-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a,
  .header-actions > * {
    width: 100%;
  }

  .main-nav {
    gap: 4px;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .section {
    padding: 68px 0;
  }

  .section-tight-top {
    padding-top: 38px;
  }

  .section-tight-bottom {
    padding-bottom: 38px;
  }

  .challenge.section-soft,
  .capabilities.section-soft,
  .trust.section-soft,
  .use-cases.section-soft {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .ecosystem.section,
  .technology.section,
  .faq.section {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .section-soft,
  .section-accent {
    padding: 42px 24px;
  }

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

  .hero-photo {
    inset: 48px 14px 44px 66px;
  }

  .member-layout,
  .dispense-focus-body,
  .platform-screen {
    grid-template-columns: 1fr;
  }

  .platform-screens {
    min-height: auto;
    display: grid;
    gap: 22px;
  }

  .platform-screen-main,
  .platform-screen-float {
    position: relative;
    width: 100%;
    transform: none;
    right: auto;
    bottom: auto;
  }

  .platform-screen-sidebar {
    gap: 14px;
  }

  .dashboard-main {
    left: 24px;
    right: 24px;
    top: 76px;
  }

  .floating-card-left {
    left: 12px;
    bottom: 24px;
  }

  .floating-card-right {
    right: 12px;
    top: 16px;
  }

  .site-footer,
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 0 16px 24px;
  }

  .hero {
    gap: 24px;
    min-height: auto;
  }

  .hero-copy,
  .hero-visual {
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-visual {
    min-height: 820px;
    padding-bottom: 20px;
  }

  .hero-photo {
    inset: 56px 8px 120px 18px;
    opacity: 0.94;
  }

  .hero-orbit {
    inset: 36px 0 72px;
  }

  .dashboard-main {
    top: 92px;
    left: 18px;
    right: 18px;
  }

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

  .floating-card {
    width: auto;
    max-width: 220px;
  }

  .floating-card-left {
    left: 12px;
    right: auto;
    bottom: 164px;
  }

  .floating-card-right {
    right: 12px;
    left: auto;
    top: 24px;
  }

  .ecosystem-map {
    padding: 28px 12px 18px;
  }

  .ecosystem-core strong {
    font-size: 1.6rem;
  }

  .core-copy {
    font-size: 0.96rem;
  }

  .core-capabilities span {
    font-size: 0.82rem;
  }

  .ecosystem-column,
  .ecosystem-signal-band {
    grid-template-columns: 1fr;
  }

  .core-rail {
    flex-direction: column;
    align-items: flex-start;
  }

  .core-badges {
    width: 100%;
  }

  .ecosystem-compliance {
    padding: 16px 16px 18px;
  }

  .ecosystem-compliance p {
    font-size: 0.88rem;
  }
}
