@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f3f9ff;
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #0b1f3a;
  --text-muted: rgba(11, 31, 58, 0.64);
  --muted: #435a78;
  --border: rgba(0, 96, 194, 0.12);
  --divider: rgba(0, 96, 194, 0.08);
  --primary: #0078f0;
  --primary-dark: #0b2a4f;
  --primary-soft: #69b3ff;
  --accent: #0078f0;
  --accent-strong: #005fcc;
  --accent-soft: #dcebff;
  --shadow: 0 24px 60px rgba(19, 52, 86, 0.12);
  --shadow-soft: 0 20px 44px rgba(19, 52, 86, 0.08);
  --shadow-strong: 0 30px 80px rgba(19, 52, 86, 0.16);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-xl: 28px;
  --max-width: 1200px;
  --section-pad: 96px;
}

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

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 120, 240, 0.09), transparent 20%),
    radial-gradient(circle at 100% 12%, rgba(105, 179, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 46%, #f8fbff 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 18px;
  line-height: 30px;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0, 120, 240, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 120, 240, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.6), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.32;
  background: radial-gradient(circle, rgba(0, 120, 240, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-left {
  top: -220px;
  left: -180px;
}

.bg-glow-right {
  bottom: -220px;
  right: -140px;
}

.container {
  width: min(var(--max-width), 100% - 112px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--divider);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(12, 32, 54, 0.04);
}

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

.brand {
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(0, 120, 240, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav a:hover {
  color: var(--primary-dark);
  background: rgba(0, 120, 240, 0.06);
}

.nav a[aria-current="page"] {
  color: var(--primary-dark);
  background: rgba(0, 120, 240, 0.08);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 720px;
  padding-top: calc(var(--section-pad) - 28px);
  padding-bottom: 36px;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78) 22%, transparent 48%),
    radial-gradient(circle at 82% 28%, rgba(0, 120, 240, 0.12), transparent 26%),
    radial-gradient(circle at 66% 72%, rgba(105, 179, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.96), rgba(239, 248, 255, 0.78));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 48%, rgba(255, 255, 255, 0.36), transparent 20%),
    radial-gradient(circle at 16% 68%, rgba(255, 255, 255, 0.22), transparent 18%);
  z-index: 1;
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.95;
  pointer-events: auto;
}

.hero-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-main-grid {
  grid-template-columns: minmax(360px, 0.92fr) minmax(400px, 1.08fr);
  align-items: center;
  gap: 24px;
}

.hero-main-copy {
  padding-top: 0;
  max-width: 35rem;
  position: relative;
  z-index: 3;
}

.hero-copy h1,
.hero-copy h2,
.section-head h2,
.cta-banner h2 {
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  margin: 0 0 16px;
  font-size: 58px;
  line-height: 66px;
  letter-spacing: -0.04em;
}

.section-head h2 {
  font-size: 40px;
  line-height: 48px;
}

.hero-main-copy h1 {
  max-width: 9.4ch;
  font-size: 64px;
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-strap {
  max-width: 31rem;
  margin: 0 0 22px;
  font-size: 1.03rem;
  line-height: 1.58;
  color: rgba(27, 59, 96, 0.78);
}

h3,
h4 {
  font-family: "Sora", "Manrope", sans-serif;
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.03em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 120, 240, 0.14);
  background: rgba(255, 255, 255, 0.96);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 28px;
  margin: 0 0 24px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-actions {
  margin-top: 0;
  margin-bottom: 0;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #2591ff);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(0, 120, 240, 0.26);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(0, 120, 240, 0.16);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(19, 52, 86, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 120, 240, 0.24);
}

.btn-tertiary {
  color: var(--primary-dark);
  background: transparent;
  border-color: transparent;
}

.header-cta {
  min-height: 60px;
  padding-inline: 30px;
}

.hero-stage {
  position: relative;
  min-height: 560px;
}

.hero-stage-shell {
  position: relative;
  min-height: 560px;
  z-index: 2;
}

.hero-stage-orb {
  position: absolute;
  inset: 0 0 2% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.16) 34%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(0, 120, 240, 0.2), transparent 68%);
  filter: blur(10px);
}

.hero-brand-tree {
  position: absolute;
  top: 2%;
  left: 19%;
  width: min(420px, 58vw);
  opacity: 0.16;
  filter:
    drop-shadow(0 0 18px rgba(0, 120, 240, 0.18))
    drop-shadow(0 0 42px rgba(105, 179, 255, 0.16));
  transform: translateZ(0);
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-core {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 244px;
  height: 244px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 3;
}

.hero-core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
  box-shadow: 0 0 80px rgba(0, 120, 240, 0.16);
}

.hero-core-ring-outer {
  inset: 0;
  animation: pulseHalo 8s ease-in-out infinite;
}

.hero-core-ring-inner {
  inset: 26px;
  animation: pulseHalo 6s ease-in-out infinite reverse;
}

.hero-core-center {
  position: relative;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--primary-dark);
  text-align: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.94), rgba(225, 240, 255, 0.9) 68%, rgba(206, 231, 255, 0.7));
  border: 1px solid rgba(0, 120, 240, 0.18);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.28),
    0 24px 80px rgba(0, 120, 240, 0.22);
}

.hero-core-center img {
  display: block;
  width: 100%;
  max-width: 104px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 120, 240, 0.14));
}

.hero-panel {
  position: absolute;
  width: min(250px, 42vw);
  padding: 20px 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    0 18px 48px rgba(8, 44, 84, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 3;
}

.hero-panel-label {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11, 42, 79, 0.72);
  font-weight: 800;
}

.hero-panel-title {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.hero-panel-copy {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-panel-bars {
  margin-top: 18px;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 52px;
}

.hero-panel-bars span {
  display: block;
  width: 14px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(105, 179, 255, 0.48), rgba(0, 120, 240, 0.9));
  box-shadow: 0 0 24px rgba(0, 120, 240, 0.18);
}

.hero-panel-bars span:nth-child(1) { height: 18px; }
.hero-panel-bars span:nth-child(2) { height: 28px; }
.hero-panel-bars span:nth-child(3) { height: 39px; }
.hero-panel-bars span:nth-child(4) { height: 50px; }

.hero-panel-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel-list li {
  position: relative;
  padding-left: 18px;
}

.hero-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(0, 120, 240, 0.28);
}

.hero-panel-top {
  top: 2%;
  left: 4%;
  width: min(338px, 54vw);
  animation: floatSoft 9s ease-in-out infinite;
}

.hero-panel-right {
  top: 10%;
  right: 1%;
  width: min(268px, 42vw);
  animation: floatSoft 11s ease-in-out infinite;
}

.hero-panel-bottom-left {
  left: 8%;
  bottom: 7%;
  width: min(212px, 32vw);
  animation: floatSoft 10s ease-in-out infinite reverse;
}

.hero-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 42px rgba(10, 41, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: rgba(12, 48, 89, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-chip-top {
  top: 3%;
  right: 5%;
  animation: floatSoft 8s ease-in-out infinite;
}

.hero-chip-bottom {
  right: 10%;
  bottom: 8%;
  animation: floatSoft 10s ease-in-out infinite reverse;
}

.hero-trust-band {
  position: relative;
  z-index: 2;
  margin-top: -6px;
  padding: 18px 0 14px;
}

.hero-trust-inner {
  display: grid;
  gap: 16px;
}

.hero-trust-inner p {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.hero-logo-row {
  margin-top: 0;
}

.hero-logo-row li {
  min-width: 154px;
  min-height: 108px;
  padding: 18px 18px 14px;
}

.logo-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 16px 0 0;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(16, 35, 61, 0.64);
}

.logo-row li {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(19, 52, 86, 0.06);
}

.logo-row-images li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 118px;
  min-width: 168px;
  padding: 22px 22px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 1);
}

.logo-row-images img {
  width: auto;
  max-width: 132px;
  max-height: 48px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.02);
}

.logo-row-images span {
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--primary-dark);
}

.hero-visual .mock {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 1), rgba(247, 251, 255, 0.98));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-strong);
  animation: floatSoft 10s ease-in-out infinite;
  overflow: hidden;
}

.hero-visual .mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 120, 240, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 42%);
  pointer-events: none;
}

.hero-main-grid .hero-visual {
  padding-top: 8px;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.mock-status {
  background: var(--accent-soft);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.mock-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 32px rgba(19, 52, 86, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mock-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(19, 52, 86, 0.12);
}

.mock-title {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.mock-value {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 600;
}

.mock-meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mock-list {
  border-top: 1px solid var(--divider);
  padding-top: 16px;
  display: grid;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.mock-list div {
  display: flex;
  justify-content: space-between;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 38px;
  max-width: 48rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 44rem;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(251, 253, 255, 0.98));
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(37, 145, 255, 0.18));
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 99, 178, 0.24);
  box-shadow: 0 24px 44px rgba(19, 52, 86, 0.12);
}

.feature {
  background:
    radial-gradient(circle at 84% 24%, rgba(0, 120, 240, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(245, 250, 255, 0.9), rgba(255, 255, 255, 0));
}

.product-hero-grid {
  align-items: start;
  gap: 56px;
  margin-bottom: 104px;
}

.product-hero-copy .lead {
  margin-bottom: 28px;
}

.product-hero-grid .bullet-list {
  margin-bottom: 36px;
}

.product-hero-grid .actions {
  margin-top: 0;
  gap: 16px;
}

.product-actions {
  padding-bottom: 10px;
}

.product-benefits-head {
  margin-bottom: 44px;
}

.product-benefits-head h3 {
  margin-bottom: 14px;
}

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

.mini-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(19, 52, 86, 0.07);
}

.mini-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.bullet-list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
}

.diagram {
  position: relative;
  min-height: 320px;
  --orbit-outer: 128px;
  --orbit-inner: 96px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ecosystem-diagram {
  min-height: 380px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78) 26%, transparent 48%),
    radial-gradient(circle at 18% 20%, rgba(105, 179, 255, 0.16), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(0, 120, 240, 0.1), transparent 22%),
    linear-gradient(180deg, #ffffff, #f6fbff);
}

.ecosystem-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.95;
  pointer-events: auto;
}

.node {
  position: absolute;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.ecosystem-diagram .node {
  max-width: 148px;
  min-width: 126px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.3;
  z-index: 2;
  box-shadow: 0 16px 34px rgba(19, 52, 86, 0.09);
}

.node-main {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 156px;
  min-height: 156px;
  padding: 18px 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(222, 239, 255, 0.88));
  border-color: rgba(0, 120, 240, 0.3);
  color: var(--text);
  font-weight: 600;
  text-align: center;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.46),
    0 26px 60px rgba(0, 120, 240, 0.16);
}

.node-main::before {
  content: "";
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 120, 240, 0.12), transparent 68%);
  z-index: -1;
}

.node span {
  display: block;
}

.ecosystem-diagram .node span {
  font-weight: 800;
  color: var(--primary-dark);
}

.ecosystem-diagram .node small {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(27, 59, 96, 0.74);
}

.node-main-kicker {
  margin-bottom: 6px;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27, 59, 96, 0.74);
}

.node-main strong {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.28rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
}

.orbit-group {
  position: absolute;
  inset: 40px;
  animation: orbitSpin 60s linear infinite;
  z-index: 2;
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--angle)) translateX(var(--radius));
  transform-origin: center;
}

.orbit-keep {
  position: absolute;
  transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle)));
  transform-origin: center;
}

.orbit-spin {
  animation: orbitSpin 60s linear infinite reverse;
  transform-origin: center;
}

.orbit-top {
  --angle: 12deg;
  --radius: 132px;
}

.orbit-right {
  --angle: 96deg;
  --radius: 136px;
}

.orbit-bottom {
  --angle: 214deg;
  --radius: 138px;
}

.orbit-left {
  --angle: 148deg;
  --radius: 136px;
}

.orbit-center-right {
  --angle: 320deg;
  --radius: 102px;
}

.ecosystem-footer {
  margin-top: 24px;
}

.ecosystem-footer p {
  max-width: 52rem;
  margin: 0;
  color: var(--muted);
}

.orbit-item .node {
  position: static;
  animation: nodeFloat 7s ease-in-out infinite;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.step-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 22px;
  transition: transform 0.35s ease, border-color 0.35s ease;
  box-shadow: var(--shadow-soft);
}

.step-card span {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 99, 178, 0.24);
}

.steps-grid .step-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.steps-grid .step-card p {
  font-size: 16px;
  line-height: 1.4;
}

.cta-banner {
  background: linear-gradient(120deg, rgba(13, 99, 178, 0.12), rgba(255, 255, 255, 0.35));
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

.logo-wall {
  margin-top: 40px;
}

.trust-strip {
  margin-top: 36px;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(249, 252, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.trust-strip p {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 600;
}

.cta-inline {
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 252, 255, 0.98));
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.cta-inline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 120, 240, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.cta-inline:hover::after {
  opacity: 1;
}

.card-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.narrative-split {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.narrative-split-reverse {
  margin-top: 32px;
  margin-bottom: 8px;
}

.narrative-copy p {
  margin: 0;
  color: var(--muted);
}

.visual-pair {
  margin-top: 32px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-card {
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 253, 255, 0.98));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f5faff;
}

.screenshot-card img {
  aspect-ratio: 16 / 9;
}

.concept-card img {
  aspect-ratio: 16 / 10;
  object-position: 72% center;
}

.hero-concept-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 252, 255, 0.78));
  border-color: rgba(0, 120, 240, 0.14);
  box-shadow: 0 28px 60px rgba(19, 52, 86, 0.1);
}

.hero-concept-card img {
  aspect-ratio: 16 / 10;
  object-position: 74% center;
}

.story-media img {
  aspect-ratio: 16 / 10;
}

.media-card figcaption {
  padding: 14px 16px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--muted);
}

.media-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 99, 178, 0.24);
  box-shadow: 0 22px 42px rgba(19, 52, 86, 0.12);
}

.module-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-grid .card,
.solutions-grid .card {
  min-height: 100%;
}

.module-grid ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.flow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 16px 38px rgba(19, 52, 86, 0.08);
}

.flow-card ol {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.steps-detailed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

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

.sector-card {
  min-height: 100%;
}

.sector-card .bullet-list {
  margin-bottom: 0;
}

.contact-grid {
  align-items: start;
  gap: 52px;
}

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

.contact .contact-list {
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.contact .contact-list div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(19, 52, 86, 0.05);
}

.contact dt {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.contact dd {
  margin: 0;
}

.page-hero {
  padding-top: calc(var(--section-pad) + 12px);
}

.page-hero .hero-grid {
  align-items: start;
}

.product-page-hero-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 36px;
}

.product-page-hero .hero-copy {
  max-width: 33rem;
}

.product-page-hero .hero-copy h1 {
  max-width: 10ch;
}

.product-page-hero .lead {
  max-width: 33rem;
  margin-bottom: 26px;
}

.page-media {
  display: grid;
  gap: 20px;
}

.hero-concept-media {
  align-self: stretch;
}

.hero-concept-media .hero-concept-card {
  height: 100%;
}

.hero-concept-media .hero-concept-card img {
  height: 100%;
  min-height: 420px;
}

.page-kicker {
  margin: 18px 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--primary-dark);
}

.page-summary {
  display: grid;
  gap: 16px;
}

.page-summary .mini-card {
  min-height: 100%;
}

.form-card {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(249, 252, 255, 0.98));
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
}

.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-status.success {
  color: #1f8a53;
}

.form-status.error {
  color: #bf4a4d;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

.footer {
  border-top: 1px solid var(--divider);
  padding: 64px 0 32px;
  background:
    radial-gradient(circle at 18% 20%, rgba(36, 125, 212, 0.24), transparent 22%),
    linear-gradient(180deg, #0f2f50 0%, #0b233c 100%);
  color: #ffffff;
}

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

.footer h4 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact li {
  display: grid;
  gap: 4px;
}

.footer-contact span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer a:hover {
  color: #ffffff;
}

.hero-copy,
.hero-visual,
.section-head,
.card,
.step-card,
.flow-card,
.form-card,
.cta-inline {
  animation: fadeUp 0.9s ease both;
}

.hero-visual {
  animation-delay: 0.1s;
}

.card:nth-child(2),
.step-card:nth-child(2) {
  animation-delay: 0.05s;
}

.card:nth-child(3),
.step-card:nth-child(3) {
  animation-delay: 0.1s;
}

.card:nth-child(4),
.step-card:nth-child(4) {
  animation-delay: 0.15s;
}

.card:nth-child(5),
.step-card:nth-child(5) {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseHalo {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.62;
  }
}

@keyframes pulseNode {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes counterSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

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

@media (max-width: 1100px) {
  .container {
    width: min(var(--max-width), 100% - 80px);
  }

  .hero {
    min-height: 680px;
  }

  .hero-stage,
  .hero-stage-shell {
    min-height: 520px;
  }

  .hero-brand-tree {
    left: 16%;
    width: min(390px, 54vw);
  }

  .hero-core {
    width: 214px;
    height: 214px;
  }

  .hero-panel-top {
    left: 2%;
  }

  .hero-panel-right {
    right: 0;
  }

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

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

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

  .narrative-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1400px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 72px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .section-head h2,
  .cta-banner h2 {
    font-size: 46px;
    line-height: 54px;
  }

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

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 16px 0;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .hero-main-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .product-page-hero-grid {
    gap: 28px;
  }

  .hero-main-copy {
    padding-top: 0;
    max-width: none;
  }

  .hero-main-copy h1 {
    max-width: 9ch;
    font-size: 58px;
    line-height: 0.96;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--section-pad) - 18px);
    padding-bottom: 42px;
  }

  .hero-canvas {
    opacity: 0.72;
  }

  .hero-stage,
  .hero-stage-shell {
    min-height: 500px;
  }

  .hero-brand-tree {
    top: 4%;
    left: 14%;
    width: min(360px, 66vw);
    opacity: 0.14;
  }

  .hero-core {
    width: 190px;
    height: 190px;
    left: 52%;
  }

  .hero-core-center {
    width: 132px;
    height: 132px;
  }

  .hero-core-center img {
    max-width: 98px;
  }

  .hero-panel {
    width: min(228px, 56vw);
    padding: 18px;
  }

  .hero-panel-top {
    top: 0;
    left: 0;
  }

  .hero-panel-right {
    top: 11%;
    right: 0;
  }

  .hero-panel-bottom-left {
    right: auto;
    left: 0;
    bottom: 5%;
  }

  .hero-chip-top {
    right: 2%;
  }

  .hero-chip-bottom {
    right: 6%;
    bottom: 6%;
  }

  .hero-concept-media .hero-concept-card img {
    min-height: 340px;
  }

  .product-hero-grid {
    margin-bottom: 76px;
  }

  .card-grid,
  .steps-detailed,
  .two-column,
  .sector-grid,
  .flow-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .visual-pair {
    grid-template-columns: 1fr;
  }

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

  .hero-logo-row li {
    min-width: 138px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 56px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .section-head h2,
  .cta-banner h2 {
    font-size: 36px;
    line-height: 42px;
  }

  h3,
  h4 {
    font-size: 24px;
    line-height: 32px;
  }

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

  .hero-main-copy h1 {
    max-width: 8ch;
    font-size: 44px;
    line-height: 0.98;
  }

  .hero-strap {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-stage,
  .hero-stage-shell {
    min-height: 420px;
  }

  .hero-brand-tree {
    top: 8%;
    left: 10%;
    width: min(290px, 72vw);
    opacity: 0.12;
  }

  .hero-core {
    width: 162px;
    height: 162px;
    left: 50%;
    top: 54%;
  }

  .hero-core-center {
    width: 118px;
    height: 118px;
  }

  .hero-core-center img {
    max-width: 88px;
  }

  .hero-panel {
    width: min(220px, 74vw);
    padding: 16px;
    border-radius: 22px;
  }

  .hero-panel-title {
    font-size: 1.18rem;
  }

  .hero-panel-copy,
  .hero-panel-list {
    font-size: 0.86rem;
  }

  .hero-panel-top {
    width: min(232px, 76vw);
  }

  .hero-panel-right {
    top: 8%;
  }

  .hero-panel-bottom-left {
    bottom: 0;
  }

  .hero-chip {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .hero-chip-top {
    top: 1%;
    right: 0;
  }

  .hero-chip-bottom {
    right: 2%;
    bottom: 2%;
  }

  .hero-concept-media .hero-concept-card img {
    min-height: 280px;
  }

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

  .product-hero-grid {
    margin-bottom: 56px;
    gap: 32px;
  }

  .hero-actions {
    margin-bottom: 22px;
  }

  .hero {
    padding-top: calc(var(--section-pad) - 24px);
    padding-bottom: 44px;
  }

  .hero-main-copy .lead {
    font-size: 1.08rem;
    line-height: 1.58;
  }

  .hero-stage,
  .hero-stage-shell {
    min-height: 420px;
  }

  .hero-core {
    width: 148px;
    height: 148px;
    top: 45%;
  }

  .hero-core-ring-inner {
    inset: 18px;
  }

  .hero-core-center {
    width: 112px;
    height: 112px;
    padding-top: 8px;
  }

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

  .hero-core-center strong {
    font-size: 1.45rem;
  }

  .hero-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: none;
  }

  .hero-stage-shell {
    display: grid;
    gap: 12px;
    align-items: end;
  }

  .hero-stage-orb {
    inset: 8% 6% 24% 6%;
  }

  .hero-trust-band {
    padding-top: 10px;
  }

  .hero-logo-row {
    gap: 12px;
  }

  .hero-logo-row li {
    min-width: 132px;
    min-height: 96px;
  }

  .four-cols {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 22px;
  }

  .nav {
    gap: 12px;
    font-size: 0.85rem;
  }
}
