/* AXIOM World — Design System */

/* ─── Tokens ─── */
:root {
  --bg: #06060a;
  --bg-2: #0a0a10;
  --bg-3: #0e0e15;
  --bg-4: #12121a;
  --bg-5: #181822;

  --surface: rgba(255, 255, 255, .025);
  --surface-h: rgba(255, 255, 255, .045);

  --border: rgba(255, 255, 255, .05);
  --border-2: rgba(255, 255, 255, .08);
  --border-3: rgba(255, 255, 255, .14);
  --border-4: rgba(255, 255, 255, .24);

  --ink: #f2f2f4;
  --ink-2: rgba(242, 242, 244, .68);
  --ink-3: rgba(242, 242, 244, .42);
  --ink-4: rgba(242, 242, 244, .22);
  --ink-5: rgba(242, 242, 244, .10);

  --white: #fff;
  --accent: #fff;
  --accent-2: rgba(255, 255, 255, .10);
  --accent-3: rgba(255, 255, 255, .05);
  --accent-glow: rgba(255, 255, 255, .25);

  --ff: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'SF Mono', ui-monospace, 'Cascadia Code', 'Fira Code', monospace;

  --ease: cubic-bezier(.25, .1, .25, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.55, .06, .68, .19);
  --ease-smooth: cubic-bezier(.22, 1, .36, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);

  --duration: .5s;
  --duration-slow: .8s;

  --w: 1160px;
  --nav: 56px;
  --r: 16px;
  --r-s: 12px;
  --r-l: 22px;
  --r-xl: 28px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga', 'calt'
}

body {
  font-family: var(--ff);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -.008em
}

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

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

button {
  font-family: inherit;
  cursor: pointer
}

::selection {
  background: var(--accent-2);
  color: var(--white)
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: transparent
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .06);
  border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, .12)
}

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px
}

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

.dim {
  color: var(--ink-4)
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav);
  display: flex;
  align-items: center;
  background: rgba(6, 6, 10, .4);
  backdrop-filter: saturate(180%) blur(32px);
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  border-bottom: 1px solid transparent;
  transition: background .6s var(--ease), border-color .6s var(--ease), box-shadow .6s var(--ease)
}

.nav.scrolled {
  background: rgba(6, 6, 10, .85);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border), 0 4px 32px rgba(0, 0, 0, .4)
}

.nav-container {
  max-width: var(--w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-mark {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--ink-2);
  padding: 4px 7px;
  border: 1.5px solid var(--border-3);
  border-radius: 6px;
  line-height: 1;
  transition: all .4s var(--ease)
}

.logo-word {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-2);
  transition: color .4s var(--ease)
}

.nav-logo:hover .logo-mark {
  border-color: var(--ink-3);
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 0 16px rgba(255, 255, 255, .04)
}

.nav-logo:hover .logo-word {
  color: var(--ink)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: .01em;
  transition: color .3s var(--ease);
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s var(--ease-out);
  border-radius: 1px
}

.nav-links a:hover {
  color: var(--ink-2)
}

.nav-links a:hover::after {
  transform: scaleX(1)
}

.nav-cta {
  padding: 7px 22px !important;
  border: 1px solid var(--border-2) !important;
  border-radius: 980px;
  background: rgba(255, 255, 255, .03) !important;
  transition: all .4s var(--ease) !important
}

.nav-cta::after {
  display: none !important
}

.nav-cta:hover {
  background: var(--white) !important;
  color: #000 !important;
  border-color: var(--white) !important;
  box-shadow: 0 0 28px rgba(255, 255, 255, .1), 0 2px 12px rgba(0, 0, 0, .4)
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: all .35s var(--ease);
  transform-origin: center
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg)
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 55% 55% at 50% 45%, #000 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 55% 55% at 50% 45%, #000 25%, transparent 70%)
}

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

.hero-orb--1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, .04), transparent 65%);
  top: -250px;
  right: -150px;
  animation: orbFloat 18s var(--ease) infinite alternate
}

.hero-orb--2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, .025), transparent 65%);
  bottom: -200px;
  left: -150px;
  animation: orbFloat 22s var(--ease) infinite alternate-reverse
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(25px, -18px)
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: calc(var(--nav) + 56px);
  padding-bottom: 88px
}

.hero-text {
  max-width: 520px
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(transparent, var(--bg));
  z-index: 3;
  pointer-events: none
}

/* Badge with rotating conic shimmer */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--ink-4);
  padding: 7px 16px 7px 12px;
  border: none;
  border-radius: 980px;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .03);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, .02);
  position: relative;
  overflow: hidden
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 255, 255, .14) 10%, transparent 20%, transparent 40%, rgba(255, 255, 255, .1) 50%, transparent 60%, transparent 80%, rgba(255, 255, 255, .08) 90%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: badgeRotate 8s linear infinite;
  pointer-events: none
}

@keyframes badgeRotate {
  to {
    transform: rotate(360deg)
  }
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 10px var(--accent-glow), 0 0 4px rgba(255, 255, 255, .2);
  animation: pulse 2.5s var(--ease) infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(.75)
  }
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.05em;
  margin-bottom: 24px;
  background: linear-gradient(105deg, #fff 0%, rgba(255, 255, 255, .92) 20%, rgba(255, 255, 255, .5) 40%, rgba(255, 255, 255, .92) 60%, #fff 80%, rgba(255, 255, 255, .5) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 6s var(--ease) infinite
}

@keyframes textShimmer {
  0% { background-position: 200% 50% }
  100% { background-position: -200% 50% }
}

.hero-sub {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 440px;
  font-weight: 400
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.trust-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--ink-5)
}

.trust-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3)
}

.trust-dot {
  color: var(--ink-5);
  font-size: 8px
}

/* ─── Dashboard ─── */
.dash {
  background: linear-gradient(180deg, var(--bg-4) 0%, var(--bg-3) 30%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .02), 0 2px 4px rgba(0, 0, 0, .25), 0 8px 16px rgba(0, 0, 0, .25), 0 32px 64px rgba(0, 0, 0, .4), 0 64px 120px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .08), inset 0 40px 60px -30px rgba(255, 255, 255, .015);
  transition: transform .8s var(--ease-out), box-shadow .8s var(--ease-out);
  will-change: transform
}

.dash:hover {
  transform: translateY(-10px) scale(1.005);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04), 0 4px 8px rgba(0, 0, 0, .3), 0 16px 32px rgba(0, 0, 0, .35), 0 48px 96px rgba(0, 0, 0, .5), 0 72px 140px rgba(0, 0, 0, .3), 0 0 80px rgba(74, 222, 128, .015), inset 0 1px 0 rgba(255, 255, 255, .07)
}

.dash-chrome {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .01)
}

.dc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  margin-right: 6px
}

.dc-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-4);
  margin-left: auto;
  letter-spacing: .04em
}

.dc-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent)
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 8px var(--accent-glow), 0 0 3px rgba(255, 255, 255, .4);
  animation: pulse 2.5s var(--ease) infinite
}

.dash-body {
  padding: 20px
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px
}

.dash-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  padding: 16px 10px;
  text-align: center;
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .5s var(--ease-out)
}

.dash-stat:hover {
  border-color: var(--border-2);
  background: var(--surface-h);
  transform: translateY(-2px)
}

.ds-icon {
  color: var(--ink-4);
  margin-bottom: 6px;
  display: flex;
  justify-content: center
}

.ds-val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em
}

.ds-unit {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-3)
}

.ds-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ink-4);
  margin-top: 3px
}

.dash-chart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  padding: 14px;
  margin-bottom: 12px
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px
}

.chart-title {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink-4)
}

.chart-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent)
}

.chart-svg {
  width: 100%;
  height: 48px;
  display: block
}

.chart-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawLine 2.4s var(--ease-out) 1s forwards
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0
  }
}

.dash-foot {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.df-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-s)
}

.df-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink-4);
  min-width: 90px
}

.df-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, .04);
  border-radius: 2px;
  overflow: hidden
}

.df-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .6), rgba(255, 255, 255, .3));
  border-radius: 2px;
  transition: width 2s var(--ease-out)
}

.df-fill.animate {
  width: 100%
}

.df-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink)
}

.df-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 980px;
  background: var(--accent-3);
  color: var(--ink-2);
  border: 1px solid var(--border-2)
}

.df-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ink-4);
  padding: 6px 14px
}

.df-time {
  margin-left: auto;
  font-size: 10px
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 12px 28px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease-smooth);
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden
}

.btn svg {
  transition: transform .4s var(--ease-out)
}

.btn:hover svg {
  transform: translateX(3px)
}

.btn-w {
  background: var(--white);
  color: #000;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15), 0 4px 16px rgba(0, 0, 0, .12), 0 0 0 1px rgba(255, 255, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .25)
}

.btn-w:hover {
  background: rgba(255, 255, 255, .93);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25), 0 12px 40px rgba(0, 0, 0, .15), 0 0 0 1px rgba(255, 255, 255, .15), 0 0 48px rgba(255, 255, 255, .06)
}

.btn-w:active {
  transform: translateY(0) scale(.98);
  transition-duration: .1s
}

/* White button shimmer */
.btn-w::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  animation: shimmer 5s var(--ease) infinite
}

@keyframes shimmer {
  0% {
    left: -100%
  }

  30%,
  100% {
    left: 150%
  }
}

.btn-o {
  background: var(--surface);
  color: var(--ink-3);
  box-shadow: inset 0 0 0 1px var(--border-3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px)
}

.btn-o:hover {
  color: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--border-4), 0 4px 16px rgba(0, 0, 0, .15);
  background: var(--surface-h);
  transform: translateY(-3px)
}

.btn-o:active {
  transform: translateY(0) scale(.98);
  transition-duration: .1s
}

.btn--full {
  width: 100%
}

/* ─── Sections ─── */
.section {
  padding: 140px 0
}

.section--alt {
  background: var(--bg-2)
}

.section-header {
  margin-bottom: 56px
}

.section-header--center {
  text-align: center
}

.section-header--center .section-sub {
  margin: 0 auto
}

.label-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--ink-4);
  padding: 6px 16px;
  border: 1px solid var(--border-2);
  border-radius: 980px;
  margin-bottom: 20px;
  background: var(--surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04)
}

.label-pill--center {
  display: block;
  width: fit-content;
  margin: 0 auto 44px
}

.section-title {
  font-size: clamp(30px, 4.8vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.045em;
  background: linear-gradient(180deg, #fff 0%, var(--ink-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.section-sub {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.8;
  max-width: 520px;
  margin-top: 18px;
  font-weight: 400
}

/* ─── About ─── */
.about {
  padding: 140px 0;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 255, 255, .008), transparent 70%)
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-3) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: dividerShimmer 4s var(--ease) infinite
}

@keyframes dividerShimmer {
  0% { background-position: 200% 0 }
  100% { background-position: -200% 0 }
}

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

.about-text .label-pill {
  margin-bottom: 16px
}

.about-text .section-title {
  margin-bottom: 28px;
  font-size: clamp(28px, 4.2vw, 44px)
}

.about-text p {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.8;
  margin-bottom: 16px
}

.network-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, .02))
}

.network-svg {
  width: 100%;
  max-width: 400px
}

.node--pulse {
  animation: nodePulse 3.5s var(--ease) infinite
}

.ring {
  animation: ringPulse 5s var(--ease) infinite
}

.ring--2 {
  animation-delay: .6s
}

.ring--3 {
  animation-delay: 1.2s
}

@keyframes nodePulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

.net-line {
  stroke-dasharray: 4 4;
  animation: lineFlow 10s linear infinite
}

@keyframes lineFlow {
  to {
    stroke-dashoffset: -40
  }
}

.network-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--ink-4);
  background: var(--bg);
  padding: 4px 14px;
  border: 1px solid var(--border);
  border-radius: 980px
}

/* ─── Impact ─── */
.impact {
  padding: 140px 0;
  background: var(--bg-2);
  position: relative
}

.impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .008) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .008) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 10%, transparent 70%)
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative
}

.impact-card {
  background: linear-gradient(180deg, var(--bg-4) 0%, var(--bg-3) 40%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--r-l);
  padding: 48px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease-smooth), transform var(--duration-slow) var(--ease-out), box-shadow var(--duration) var(--ease-smooth);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 2px 4px rgba(0, 0, 0, .15), 0 8px 16px rgba(0, 0, 0, .1)
}

.impact-card:hover {
  border-color: var(--border-3);
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 20px 40px rgba(0, 0, 0, .3), 0 0 1px rgba(255, 255, 255, .08), 0 0 48px rgba(255, 255, 255, .015)
}

.ic-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .06), transparent 70%);
  pointer-events: none;
  transition: opacity .6s var(--ease);
  opacity: .12
}

.impact-card:hover .ic-glow {
  opacity: 1
}

.ic-val {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(160deg, #fff 10%, var(--ink-2) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ic-unit {
  font-size: .5em;
  font-weight: 400;
  -webkit-text-fill-color: var(--ink-3)
}

.ic-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--ink-4)
}

/* ─── Capabilities ─── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.cap-card {
  background: linear-gradient(180deg, var(--bg-4) 0%, var(--bg-3) 35%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--r-l);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--duration) var(--ease-smooth), transform var(--duration-slow) var(--ease-out), box-shadow var(--duration) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 2px 4px rgba(0, 0, 0, .15), 0 8px 16px rgba(0, 0, 0, .1)
}

.cap-card:hover {
  border-color: var(--border-3);
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 24px 48px rgba(0, 0, 0, .35), 0 0 1px rgba(255, 255, 255, .08), 0 0 56px rgba(255, 255, 255, .015)
}

.cap-icon-wrap {
  margin-bottom: 24px
}

.cap-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--ink-3);
  transition: all var(--duration) var(--ease-smooth)
}

.cap-card:hover .cap-icon {
  background: var(--surface-h);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
  border-color: var(--border-3)
}

.cap-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px
}

.cap-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
  flex: 1
}

.cap-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-4);
  transition: all .35s var(--ease)
}

.cap-link svg {
  transition: transform .35s var(--ease-out)
}

.cap-card:hover .cap-link {
  color: var(--ink-2)
}

.cap-card:hover .cap-link svg {
  transform: translateX(3px)
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 40px 0
}

.cta-banner-inner {
  background: linear-gradient(180deg, var(--bg-3), var(--bg));
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 88px 64px;
  text-align: center;
  position: relative;
  overflow: hidden
}

/* Gradient border shimmer */
.cta-banner-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), transparent 30%, transparent 70%, rgba(255, 255, 255, .06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0
}

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

.cta-orb--1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, .025), transparent 70%);
  top: -100px;
  right: -50px;
  animation: orbFloat 14s var(--ease) infinite alternate
}

.cta-orb--2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, .02), transparent 70%);
  bottom: -80px;
  left: -30px;
  animation: orbFloat 18s var(--ease) infinite alternate-reverse
}

.cta-content {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  z-index: 1
}

.cta-content .label-pill {
  margin-bottom: 20px
}

.cta-content h2 {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: 16px
}

.cta-content p {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: 40px
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

/* ─── Sectors ─── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.sector-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-4) 0%, var(--bg-3) 35%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--r-l);
  padding: 44px 36px;
  text-decoration: none;
  transition: border-color var(--duration) var(--ease-smooth), transform var(--duration-slow) var(--ease-out), box-shadow var(--duration) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 2px 4px rgba(0, 0, 0, .15), 0 8px 16px rgba(0, 0, 0, .1)
}

.sector-card:hover {
  border-color: var(--border-3);
  transform: translateY(-6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 24px 48px rgba(0, 0, 0, .35), 0 0 1px rgba(255, 255, 255, .08), 0 0 56px rgba(255, 255, 255, .015)
}

.sc-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--ink-4);
  margin-bottom: 20px;
  transition: all var(--duration) var(--ease-smooth)
}

.sector-card:hover .sc-icon {
  background: var(--surface-h);
  color: var(--ink-2);
  transform: translateY(-2px);
  border-color: var(--border-3)
}

.sc-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 900;
  color: var(--ink-5);
  letter-spacing: -.04em;
  line-height: 1
}

.sector-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  transition: color .4s var(--ease)
}

.sector-card:hover h3 {
  color: var(--white)
}

.sector-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
  flex: 1
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-4);
  transition: all .35s var(--ease)
}

.sc-link svg {
  transition: transform .35s var(--ease-out)
}

.sector-card:hover .sc-link {
  color: var(--ink-2)
}

.sector-card:hover .sc-link svg {
  transform: translate(2px, -2px)
}

/* ─── Platform ─── */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.platform-info .label-pill {
  margin-bottom: 16px
}

.platform-info .section-title {
  margin-bottom: 20px;
  font-size: clamp(28px, 4.2vw, 44px)
}

.platform-desc {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: 36px
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-3);
  transition: color .3s var(--ease), transform .3s var(--ease-out);
  opacity: 0;
  transform: translateX(-10px)
}

.feature-list li.visible {
  opacity: 1;
  transform: none
}

.feature-list li:hover {
  color: var(--ink);
  transform: translateX(4px)
}

.feature-list li svg {
  color: var(--ink-2);
  flex-shrink: 0
}

/* Terminal */
.terminal {
  background: linear-gradient(180deg, var(--bg-4) 0%, var(--bg-3) 25%, var(--bg) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .02), 0 2px 4px rgba(0, 0, 0, .2), 0 16px 32px rgba(0, 0, 0, .3), 0 48px 96px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .08), inset 0 40px 60px -30px rgba(255, 255, 255, .012);
  transition: transform .8s var(--ease-out), box-shadow .8s var(--ease-out)
}

.terminal:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04), 0 4px 8px rgba(0, 0, 0, .25), 0 24px 48px rgba(0, 0, 0, .4), 0 64px 120px rgba(0, 0, 0, .35), 0 0 60px rgba(74, 222, 128, .015), inset 0 1px 0 rgba(255, 255, 255, .07)
}

.term-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border)
}

.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.tc-dot.r {
  background: #ff5f57
}

.tc-dot.y {
  background: #febc2e
}

.tc-dot.g {
  background: #28c840
}

.term-title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-4);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: .04em
}

.term-body {
  padding: 22px 20px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 2
}

.tl {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out)
}

.tl.visible {
  opacity: 1;
  transform: none
}

.tp {
  color: var(--ink-4);
  font-weight: 700
}

.tc-cmd {
  color: var(--ink);
  font-weight: 600
}

.tf {
  color: var(--ink-3)
}

.to {
  color: var(--ink-4)
}

.ts {
  color: var(--ink)
}

.t-cursor {
  animation: blink 1.1s step-end infinite;
  color: var(--ink-4)
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* ─── Contact ─── */
.contact-section {
  position: relative;
  padding: 140px 0
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-3) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: dividerShimmer 4s var(--ease) infinite
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.contact-info .label-pill {
  margin-bottom: 16px
}

.contact-info .section-title {
  margin-bottom: 20px;
  font-size: clamp(28px, 4.2vw, 44px)
}

.contact-desc {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: 40px
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.cd-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--ink-3);
  flex-shrink: 0;
  transition: all var(--duration) var(--ease-smooth)
}

.cd-item:hover .cd-icon {
  border-color: var(--border-3);
  background: var(--surface-h);
  transform: translateY(-1px)
}

.cd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ink-4);
  margin-bottom: 2px
}

.cd-val {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500
}

a.cd-val {
  transition: color .3s var(--ease)
}

a.cd-val:hover {
  color: var(--white)
}

/* Contact form */
.contact-form-wrap {
  background: linear-gradient(180deg, var(--bg-4) 0%, var(--bg-3) 30%, var(--bg) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .02), 0 16px 32px rgba(0, 0, 0, .3), 0 48px 80px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .08), inset 0 40px 50px -30px rgba(255, 255, 255, .012)
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .02em
}

.req {
  color: var(--ink-5)
}

.form-group input,
.form-group textarea {
  font-family: var(--ff);
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--duration) var(--ease-smooth), background var(--duration) var(--ease-smooth), box-shadow var(--duration) var(--ease-smooth);
  resize: none
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-4)
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--border-4);
  background: var(--surface-h);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .035)
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 0
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px
}

.ft-col--brand {
  padding-right: 40px
}

.footer-logo {
  margin-bottom: 16px
}

.ft-desc {
  font-size: 13px;
  color: var(--ink-4);
  line-height: 1.75;
  margin-bottom: 24px
}

.ft-social {
  display: flex;
  gap: 8px
}

.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  border: 1px solid var(--border-2);
  color: var(--ink-4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--duration) var(--ease-smooth)
}

.social-link:hover {
  border-color: var(--border-3);
  color: var(--ink-2);
  background: var(--surface-h);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25)
}

.ft-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ink-4);
  margin-bottom: 20px;
  text-transform: uppercase
}

.ft-link {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  padding: 4px 0;
  transition: color .25s var(--ease), transform .25s var(--ease-out)
}

.ft-link:hover {
  color: var(--ink);
  transform: translateX(3px)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border)
}

.footer-bottom small {
  font-size: 12px;
  color: var(--ink-4)
}

/* ─── Scroll Reveal ─── */
[data-reveal] {
  opacity: 0;
  transition: opacity 1.1s var(--ease-smooth), transform 1.1s var(--ease-smooth);
  will-change: opacity, transform
}

[data-reveal="up"] {
  transform: translateY(32px) scale(.98)
}

[data-reveal="left"] {
  transform: translateX(-36px) scale(.98)
}

[data-reveal="right"] {
  transform: translateX(36px) scale(.98)
}

[data-reveal="scale"] {
  transform: scale(.93)
}

[data-reveal].revealed {
  opacity: 1;
  transform: none
}

[data-reveal][data-delay="1"].revealed {
  transition-delay: .12s
}

[data-reveal][data-delay="2"].revealed {
  transition-delay: .22s
}

[data-reveal][data-delay="3"].revealed {
  transition-delay: .32s
}

[data-reveal][data-delay="4"].revealed {
  transition-delay: .42s
}

/* ─── Mobile Panel ─── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .4s var(--ease);
  cursor: pointer
}

.mobile-overlay.active {
  display: block;
  opacity: 1
}

.mobile-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9995;
  width: min(300px, 80vw);
  background: var(--bg-3);
  border-left: 1px solid var(--border-2);
  box-shadow: -16px 0 48px rgba(0, 0, 0, .5);
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out)
}

.mobile-panel.active {
  transform: translateX(0)
}

.mp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border)
}

.mp-header .nav-logo-img {
  height: 20px
}

.mp-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-3);
  padding: 4px;
  transition: color .2s
}

.mp-close:hover {
  color: var(--ink)
}

.mp-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  overflow-y: auto
}

.mp-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  transition: background .2s;
  border-left: 2px solid transparent
}

.mp-link:hover,
.mp-link:active {
  background: rgba(255, 255, 255, .03);
  border-left-color: var(--white)
}

.mp-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px
}

.mp-btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--r)
}

/* ─── Responsive ─── */
@media(max-width:1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center
  }

  .hero-text {
    max-width: 580px;
    margin: 0 auto
  }

  .hero-btns,
  .hero-trust {
    justify-content: center
  }

  .about-grid,
  .platform-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

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

@media(max-width:768px) {
  :root {
    --nav: 52px
  }

  .nav {
    z-index: 100
  }

  .nav-links {
    display: none
  }

  .nav-toggle {
    display: flex
  }

  .mobile-panel {
    display: flex
  }

  .cap-grid,
  .sector-grid {
    grid-template-columns: 1fr
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  .hero-btns {
    flex-direction: column;
    align-items: center
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px
  }

  .section,
  .about {
    padding: 100px 0
  }

  .impact {
    padding: 80px 0
  }

  .contact-section {
    padding: 100px 0
  }

  .cta-banner-inner {
    padding: 56px 28px
  }

  .dash {
    margin: 0 -12px
  }

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

  .ft-col--brand {
    padding-right: 0
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  .contact-form-wrap {
    padding: 28px 20px
  }
}

@media(max-width:480px) {
  .impact-grid {
    grid-template-columns: 1fr 1fr
  }

  .ds-val {
    font-size: 18px
  }

  .cap-card,
  .sector-card {
    padding: 28px 22px
  }

  .cta-banner-inner {
    padding: 44px 20px
  }
}

/* ─── Motion Layer ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .5));
  z-index: 9999;
  width: 0;
  transition: width .05s linear;
  pointer-events: none
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .01), transparent 50%);
  pointer-events: none;
  z-index: 0;
  will-change: transform
}

@media(max-width:768px) {
  .cursor-glow {
    display: none
  }
}

/* Card hover glow (spotlight) */
.cap-card::before,
.sector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-smooth);
  background: radial-gradient(500px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, .045), transparent 50%);
  pointer-events: none;
  z-index: 0
}

.cap-card:hover::before,
.sector-card:hover::before {
  opacity: 1
}

.cap-card>*,
.sector-card>* {
  position: relative;
  z-index: 1
}

/* Card transition layer */
.cap-card,
.sector-card,
.impact-card {
  will-change: transform;
  transition: border-color var(--duration) var(--ease-smooth), background var(--duration), transform var(--duration-slow) var(--ease-out)
}

/* Feature list stagger */
.feature-list li {
  transition: opacity var(--duration) var(--ease-smooth), transform var(--duration) var(--ease-smooth), color .3s var(--ease)
}

html {
  scroll-behavior: smooth
}

body {
  cursor: default
}

/* ─── Visual Effects ─── */

/* ─── Aurora Gradient Backgrounds ─── */
.aurora {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: .035;
  will-change: transform
}

.aurora--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: -10%;
  left: 15%;
  animation: aurora1 12s var(--ease) infinite alternate
}

.aurora--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  top: 30%;
  right: 10%;
  animation: aurora2 15s var(--ease) infinite alternate
}

.aurora--3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: 5%;
  left: 40%;
  animation: aurora3 18s var(--ease) infinite alternate
}

@keyframes aurora1 {
  0% { transform: translate(0, 0) scale(1) }
  50% { transform: translate(60px, -40px) scale(1.2) }
  100% { transform: translate(-30px, 30px) scale(.9) }
}

@keyframes aurora2 {
  0% { transform: translate(0, 0) scale(1) }
  50% { transform: translate(-50px, 30px) scale(1.15) }
  100% { transform: translate(40px, -20px) scale(.95) }
}

@keyframes aurora3 {
  0% { transform: translate(0, 0) scale(1) }
  50% { transform: translate(35px, 25px) scale(1.1) }
  100% { transform: translate(-25px, -35px) scale(1.05) }
}

/* ─── Floating Geometric Vectors ─── */
.geo-float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: .04
}

.geo-float svg {
  width: 100%;
  height: 100%
}

.geo-float--1 {
  width: 120px;
  height: 120px;
  top: 18%;
  right: 8%;
  animation: geoFloat1 20s linear infinite
}

.geo-float--2 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 5%;
  animation: geoFloat2 25s linear infinite
}

.geo-float--3 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 12%;
  animation: geoFloat3 22s linear infinite
}

.geo-float--4 {
  width: 60px;
  height: 60px;
  top: 15%;
  right: 15%;
  animation: geoFloat1 18s linear infinite reverse
}

.geo-float--5 {
  width: 90px;
  height: 90px;
  bottom: 20%;
  right: 8%;
  animation: geoFloat2 20s linear infinite reverse
}

@keyframes geoFloat1 {
  0% { transform: translateY(0) rotate(0deg) }
  25% { transform: translateY(-20px) rotate(90deg) }
  50% { transform: translateY(10px) rotate(180deg) }
  75% { transform: translateY(-15px) rotate(270deg) }
  100% { transform: translateY(0) rotate(360deg) }
}

@keyframes geoFloat2 {
  0% { transform: translate(0, 0) rotate(0deg) }
  33% { transform: translate(15px, -25px) rotate(120deg) }
  66% { transform: translate(-10px, 15px) rotate(240deg) }
  100% { transform: translate(0, 0) rotate(360deg) }
}

@keyframes geoFloat3 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1) }
  50% { transform: translate(20px, -10px) rotate(180deg) scale(1.1) }
  100% { transform: translate(0, 0) rotate(360deg) scale(1) }
}

/* ─── Rotating Conic-Gradient Card Borders ─── */
.cap-card::after,
.sector-card::after,
.impact-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 255, 255, .12) 8%, transparent 16%, transparent 33%, rgba(255, 255, 255, .08) 41%, transparent 49%, transparent 66%, rgba(255, 255, 255, .06) 74%, transparent 82%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: cardBorderRotate 15s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .6s var(--ease-smooth)
}

.cap-card:hover::after,
.sector-card:hover::after,
.impact-card:hover::after {
  opacity: 1
}

@keyframes cardBorderRotate {
  to { transform: rotate(360deg) }
}


.impact-card > * {
  position: relative;
  z-index: 1
}

/* ─── Button Ripple Effect ─── */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  transform: scale(0);
  animation: rippleExpand .6s var(--ease-out) forwards;
  pointer-events: none;
  z-index: 0
}

.btn-w .btn-ripple {
  background: rgba(0, 0, 0, .08)
}

@keyframes rippleExpand {
  to {
    transform: scale(4);
    opacity: 0
  }
}

/* ─── Staggered Card Entrance ─── */
@keyframes cardEnter {
  0% {
    opacity: 0;
    transform: translateY(48px) scale(.92)
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.01)
  }
  80% {
    transform: translateY(2px) scale(.998)
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.card-enter {
  animation: cardEnter .9s var(--ease-out) both
}

.card-enter:nth-child(1) { animation-delay: 0s }
.card-enter:nth-child(2) { animation-delay: .1s }
.card-enter:nth-child(3) { animation-delay: .2s }
.card-enter:nth-child(4) { animation-delay: .3s }

/* card-enter overrides data-reveal */
[data-reveal].card-enter {
  opacity: 1;
  transform: none;
  transition: none
}

/* ─── Interactive Card Luminance ─── */
.impact-card {
  --glow-x: 50%;
  --glow-y: 50%
}

.impact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-smooth);
  background: radial-gradient(500px circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, .06), transparent 50%);
  pointer-events: none;
  z-index: 0
}

.impact-card:hover::before {
  opacity: 1
}

/* ─── Parallax Scroll Layer ─── */
.parallax-layer {
  will-change: transform;
  transition: transform .1s linear
}

@media (max-width: 768px) {
  .geo-float { display: none }
  .aurora { opacity: .02 }
}