:root {
  --black: #000000;
  --ink: #0d0f04;
  --lime: #ddf716;
  --lime-soft: #ebff66;
  --lime-deep: #a9ce13;
  --green: #2ed17c;
  --orange: #ff6426;
  --blue: #168cff;
  --pink: #ef318b;
  --cyan: #19d8c0;
  --surface: #14171c;
  --surface-2: #1e2227;
  --input: #272a2f;
  --white: #f7f7f5;
  --muted: #8a8f98;
  --radius: 28px;
  --shell: min(1340px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(22,140,255,.09), transparent 24%),
    radial-gradient(circle at 92% 48%, rgba(239,49,139,.075), transparent 26%),
    var(--black);
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}
main, header, footer, section, nav { max-width: 100%; }
main { width: 100%; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: var(--shell); max-width: 100%; margin-inline: auto; }
.hero > *, .bento-grid > *, .reach-layout > *, .technology-heading > *,
.tech-stage > *, .trust-architecture > *, .company-story > *,
.cta-section > *, .steps-section > *, .pricing-grid > * { min-width: 0; }
.ambient {
  position: fixed; z-index: -1; width: 520px; height: 520px; border-radius: 50%;
  filter: blur(110px); opacity: .11; pointer-events: none;
}
.ambient-one { top: 3%; left: -240px; background: var(--lime); animation: ambientFloat 12s ease-in-out infinite; }
.ambient-two { top: 48%; right: -260px; background: #ff3767; animation: ambientFloat 15s ease-in-out -4s infinite reverse; }
.cursor-glow {
  position: fixed; z-index: 0; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,247,22,.08), transparent 68%);
  transform: translate(-50%, -50%); pointer-events: none; opacity: 0;
  transition: opacity .25s ease;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  padding: 12px 18px; border-radius: 12px; background: var(--lime);
  color: var(--ink); transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 20; padding: 18px 0;
  transition: background .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(9,9,9,.72); backdrop-filter: blur(22px) saturate(140%); border-bottom: 1px solid rgba(255,255,255,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { display: inline-flex; align-items: center; width: 132px; height: 46px; overflow: hidden; border-radius: 10px; }
.wordmark img { display: block; width: 142px; height: 62px; object-fit: cover; object-position: center; }
.nav-links { display: flex; gap: 34px; color: #cfceca; font-size: 15px; }
.nav-links a:hover { color: var(--lime); }
.nav-actions { display: flex; gap: 10px; }
.mobile-auth-actions { display: none; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border: 0; border-radius: 999px;
  font-weight: 700; cursor: pointer; transition: transform .28s cubic-bezier(.2,.8,.2,1), filter .2s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-3px) scale(1.02); filter: brightness(.98); box-shadow: 0 12px 32px rgba(221,247,22,.12); }
.button-ghost { border: 1px solid #333; }
.button-light { background: var(--white); color: var(--ink); }
.button-lime { background: var(--lime); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.button-large { min-height: 60px; padding-inline: 31px; }
.button-ghost { background: rgba(255,255,255,.035); backdrop-filter: blur(16px); }
.button-light { background: rgba(255,255,255,.93); box-shadow: inset 0 1px 0 white; }
.hero .button-lime { background: linear-gradient(105deg, var(--lime), #8bf25f 55%, var(--cyan)); box-shadow: 0 18px 50px rgba(126,230,78,.18); }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid #333; border-radius: 50%; background: transparent; }
.menu-button span { display: block; width: 18px; height: 2px; margin: 5px auto; background: white; }

.hero {
  min-height: 960px; padding: 145px 0 80px; display: grid;
  grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(30px, 4vw, 75px);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 22px; color: var(--lime); font-size: 13px; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase;
}
h1, h2, h3 { font-family: "Space Grotesk", "Manrope", sans-serif; letter-spacing: -.055em; margin: 0; }
h1 { max-width: 760px; font-size: clamp(72px, 8.1vw, 134px); line-height: .82; font-weight: 700; }
h1 span {
  color: transparent; background: linear-gradient(90deg, var(--lime-soft), var(--lime), var(--green));
  background-clip: text; -webkit-background-clip: text; background-size: 180% auto;
  animation: textShimmer 6s ease-in-out infinite;
}
.hero-text { max-width: 535px; margin: 38px 0 0; color: #b9b8b4; font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.text-link span { color: var(--lime); font-size: 22px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }

.hero-visual {
  position: relative; min-height: 740px; display: grid; place-items: center;
  border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.72), transparent 21%),
    radial-gradient(circle at 82% 76%, rgba(25,216,192,.64), transparent 28%),
    linear-gradient(145deg, #39b8ff 0%, #168cff 38%, #3833a8 72%, #ed3188 120%);
  isolation: isolate; perspective: 1200px; transform-style: preserve-3d;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 45px 100px rgba(121,146,0,.18);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .22;
  background-image: radial-gradient(rgba(13,15,4,.5) .7px, transparent .7px);
  background-size: 12px 12px;
}
.orbit { position: absolute; border: 1px solid rgba(9,9,9,.18); border-radius: 50%; }
.orbit-one { width: 620px; height: 620px; }
.orbit-two { width: 430px; height: 430px; }
.phone {
  position: relative; z-index: 3; width: 300px; min-height: 600px; padding: 24px 20px;
  border: 8px solid #202124; border-radius: 48px; background: #000;
  box-shadow: 0 55px 100px rgba(0,0,0,.42), -20px 20px 50px rgba(0,0,0,.16);
  transform: rotate(4deg) rotateY(-7deg) translateZ(50px);
  animation: phoneFloat 6s ease-in-out infinite; transform-style: preserve-3d;
}
.phone-top { display: flex; justify-content: space-between; color: #a8a8a8; font-size: 10px; }
.phone-brand { display: flex; align-items: center; gap: 7px; margin-top: 27px; font-family: "Space Grotesk", "Manrope"; font-weight: 800; }
.mini-mark { display: grid; place-items: center; width: 22px; height: 22px; background: var(--lime); color: #111; border-radius: 6px; font-size: 10px; }
.balance-label { display: flex; gap: 5px; margin: 35px 0 5px; color: #7b8089; font-size: 12px; font-weight: 600; }
.balance { margin: 0; font: 700 37px/1 "Space Grotesk", "Manrope"; letter-spacing: -.06em; }
.balance small { color: #7b8089; font-size: 11px; letter-spacing: 0; }
.balance-change { margin: 8px 0 24px; color: var(--green); font-size: 11px; }
.quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; font-size: 10px; text-align: center; }
.quick-actions div { padding: 12px 4px; background: var(--surface-2); border-radius: 13px; }
.quick-actions span { display: grid; place-items: center; width: 28px; height: 28px; margin: 0 auto 7px; background: var(--lime); color: #111; border-radius: 50%; font-size: 14px; }
.activity { margin-top: 30px; }
.activity > div:first-child { display: flex; justify-content: space-between; font-size: 11px; }
.activity small { color: #747474; }
.activity-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding: 12px; background: var(--surface); border-radius: 14px; }
.activity-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--lime); color: #111; font-weight: 800; }
.activity-icon.dark { background: #292a2d; color: var(--lime); }
.activity-icon.mpesa-icon { overflow: hidden; background: #fff; }
.activity-icon.mpesa-icon img { width: 100%; height: 100%; object-fit: contain; }
.activity-row p { display: grid; flex: 1; gap: 3px; margin: 0; font-size: 10px; }
.activity-row strong { font-size: 10px; color: var(--lime); }
.float-card {
  position: absolute; z-index: 5; display: grid; gap: 5px; padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.55); border-radius: 20px;
  background: rgba(255,255,255,.66); color: #111; backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 20px 55px rgba(0,0,0,.2);
  animation: cardFloat 5.5s ease-in-out infinite;
}
.float-card span, .float-card small { color: #5e5e5e; font-size: 11px; }
.float-card-one { left: 25px; top: 150px; }
.float-card-two { right: 20px; bottom: 115px; }
.float-card-two { animation-delay: -2.2s; }
.float-pill {
  position: absolute; z-index: 6; padding: 10px 15px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45); background: rgba(10,10,10,.8);
  color: white; font-size: 11px; font-weight: 800; backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0,0,0,.2); animation: cardFloat 4.5s ease-in-out infinite;
}
.float-pill-one { right: 55px; top: 105px; }
.float-pill-two { left: 38px; bottom: 90px; animation-delay: -1.8s; }
.spark { position: absolute; z-index: 2; color: #0d0f04; animation: sparkle 3.8s ease-in-out infinite; }
.spark-one { top: 60px; left: 75px; font-size: 30px; }
.spark-two { right: 55px; bottom: 60px; font-size: 22px; animation-delay: -1.5s; }
.spark-three { right: 135px; top: 55px; font-size: 11px; animation-delay: -2.4s; }

.motion-ticker {
  overflow: hidden; padding: 28px 0; border-block: 1px solid #252525;
  background: #0b0c0d; transform: rotate(-1.2deg) scale(1.02);
}
.ticker-track {
  display: flex; align-items: center; gap: 28px; width: max-content;
  animation: ticker 24s linear infinite; color: #d9d9d5;
  font-family: "Space Grotesk"; font-size: clamp(18px, 2vw, 28px); font-weight: 700; letter-spacing: .03em;
}
.ticker-track i { color: var(--lime); font-style: normal; }
.ticker-track i:nth-of-type(4n+1) { color: var(--orange); }
.ticker-track i:nth-of-type(4n+2) { color: var(--green); }
.ticker-track i:nth-of-type(4n+3) { color: var(--blue); }
.ticker-track i:nth-of-type(4n) { color: var(--pink); }

.trust-bar { border-block: 1px solid #252525; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid p { margin: 0; padding: 26px 18px; border-right: 1px solid #252525; color: #bbb; }
.trust-grid p:first-child { border-left: 1px solid #252525; }
.trust-grid span { margin-right: 14px; color: #5f5f5f; font-size: 11px; }

.brand-statement {
  position: relative; padding: 145px 0 115px; overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(255,100,38,.92), transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(22,140,255,.85), transparent 27%),
    linear-gradient(135deg, #db2e60 0%, #8a276e 38%, #252687 68%, #0e1116 100%);
  color: white;
}
.brand-statement::before {
  content: ""; position: absolute; width: 44vw; height: 44vw; right: -13vw; top: -22vw;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(255,255,255,.035), 0 0 0 12vw rgba(255,255,255,.02);
}
.statement-top { width: var(--shell); margin: 0 auto 38px; font-size: 11px; font-weight: 800; letter-spacing: .17em; }
.statement-word {
  position: relative; z-index: 1; display: flex; align-items: center; gap: 3vw;
  width: max-content; margin-left: -1vw; font: 800 clamp(110px, 21vw, 330px)/.72 "Space Grotesk";
  letter-spacing: -.095em; white-space: nowrap;
}
.statement-word span { color: var(--lime); font-size: .27em; letter-spacing: 0; animation: sparkle 3.8s ease-in-out infinite; filter: drop-shadow(0 0 28px rgba(221,247,22,.55)); }
.statement-word-right { margin: 4vw -1vw 0 auto; }
.statement-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 95px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.28); }
.statement-foot p { max-width: 520px; margin: 0; font-size: clamp(16px, 1.45vw, 21px); line-height: 1.45; font-weight: 650; }
.statement-foot p:last-child { justify-self: end; }

.category-proof {
  display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 44px;
  border: 1px solid #25282d; border-radius: 24px; overflow: hidden;
  background: rgba(19,22,27,.58); backdrop-filter: blur(22px) saturate(145%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 35px 90px rgba(0,0,0,.28);
}
.category-proof article { min-height: 155px; padding: 28px; border-right: 1px solid #25282d; display: flex; flex-direction: column; justify-content: space-between; }
.category-proof article:last-child { border-right: 0; }
.category-proof strong { font: 700 clamp(34px, 3.4vw, 54px)/1 "Space Grotesk"; letter-spacing: -.06em; }
.category-proof article:nth-child(1) strong { color: var(--orange); }
.category-proof article:nth-child(2) strong { color: var(--green); }
.category-proof article:nth-child(3) strong { color: var(--blue); }
.category-proof article:nth-child(4) strong { color: var(--pink); }
.category-proof span { max-width: 175px; color: #9ca0a8; font-size: 13px; line-height: 1.4; }

.manifesto { display: grid; grid-template-columns: .42fr 1.58fr; gap: 70px; padding-block: 165px; }
.manifesto-kicker { display: flex; flex-direction: column; justify-content: space-between; padding-right: 32px; border-right: 1px solid #292c30; color: #70757d; font: 700 11px/1 "Space Grotesk"; letter-spacing: .13em; }
.manifesto-kicker i { color: var(--lime); font-size: 72px; font-style: normal; letter-spacing: -.08em; opacity: .75; }
.manifesto-copy h2 { max-width: 990px; }
.manifesto-copy > p:not(.eyebrow) { max-width: 780px; margin: 35px 0 50px; color: #9da0a6; font-size: 20px; line-height: 1.55; }
.friction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.friction-grid div { min-height: 150px; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)); backdrop-filter: blur(18px); display: flex; flex-direction: column; justify-content: space-between; }
.friction-grid div:nth-child(1) span { color: var(--orange); }
.friction-grid div:nth-child(2) span { color: var(--green); }
.friction-grid div:nth-child(3) span { color: var(--blue); }
.friction-grid span { font: 700 11px/1 "Space Grotesk"; }
.friction-grid strong { max-width: 190px; font: 600 18px/1.25 "Space Grotesk"; }

.feature-section { padding-block: 175px; }
.section-heading { display: grid; grid-template-columns: .6fr 1.4fr; align-items: end; gap: 40px; margin-bottom: 62px; }
.section-heading .eyebrow { margin: 0; }
h2 { font-size: clamp(58px, 7vw, 104px); line-height: .9; font-weight: 650; }
.bento-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 20px; }
.feature-card { position: relative; min-height: 650px; padding: clamp(38px, 4vw, 62px); border-radius: var(--radius); overflow: hidden; color: var(--ink); border: 1px solid transparent; }
.feature-card {
  transform-style: preserve-3d; transition: transform .2s ease, border-color .25s ease, box-shadow .3s ease;
  box-shadow: 0 24px 55px rgba(0,0,0,.2);
}
.feature-card > *:not(.card-orb) { position: relative; z-index: 2; transform: translateZ(28px); }
.feature-card:hover { border-color: rgba(221,247,22,.34); box-shadow: 0 35px 80px rgba(0,0,0,.35); }
.feature-card.wide { grid-column: 1 / -1; min-height: 570px; display: flex; justify-content: space-between; gap: 50px; }
.card-lime {
  background:
    radial-gradient(circle at 86% 8%, rgba(255,255,255,.44), transparent 24%),
    linear-gradient(145deg, #67dba9 0%, #25a56d 48%, #08604e 100%);
}
.card-surface {
  background:
    radial-gradient(circle at 85% 8%, rgba(255,255,255,.14), transparent 26%),
    linear-gradient(155deg, rgba(45,121,175,.95), rgba(20,67,114,.96) 54%, rgba(12,27,48,.98));
  color: var(--white); border-color: rgba(255,255,255,.16);
}
.feature-card:nth-child(3) {
  background:
    radial-gradient(circle at 75% 10%, rgba(255,255,255,.15), transparent 25%),
    linear-gradient(155deg, #b33c74, #711541 56%, #330a2b);
}
.card-glow { border-color: rgba(221,247,22,.5); box-shadow: 0 14px 38px rgba(221,247,22,.08); }
.card-dark {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,100,38,.24), transparent 27%),
    radial-gradient(circle at 90% 80%, rgba(22,140,255,.18), transparent 30%),
    rgba(19,21,25,.86);
  color: white; border-color: rgba(255,255,255,.11); backdrop-filter: blur(22px);
}
.card-orb { position: absolute; z-index: 0; width: 310px; height: 310px; border-radius: 50%; filter: blur(45px); opacity: .22; }
.orb-lime { right: -100px; top: -110px; background: white; }
.orb-green { right: -90px; bottom: -100px; background: var(--green); }
.orb-pink { right: -100px; top: -100px; background: #ff3767; }
.card-number { display: block; margin-bottom: 60px; font-size: 12px; font-weight: 800; letter-spacing: .14em; opacity: .55; }
.feature-card h3 { max-width: 760px; font-size: clamp(48px, 5.8vw, 86px); line-height: .9; }
.feature-card p { max-width: 550px; font-size: 18px; line-height: 1.55; }
.rail-cloud { align-self: center; display: flex; flex-wrap: wrap; justify-content: end; align-content: center; gap: 11px; max-width: 480px; }
.rail-cloud span { padding: 16px 23px; border: 1px solid rgba(0,0,0,.25); border-radius: 999px; background: rgba(255,255,255,.23); font-weight: 700; }
.coin-stack { position: absolute; right: 35px; bottom: 40px; display: flex; }
.coin-stack span { display: grid; place-items: center; width: 95px; height: 95px; margin-left: -20px; border: 3px solid var(--surface); border-radius: 50%; background: var(--surface-2); color: var(--lime); font-size: 35px; box-shadow: 0 15px 30px rgba(0,0,0,.35); }
.coin-stack span { animation: coinBob 4.8s ease-in-out infinite; }
.coin-stack span:nth-child(2) { animation-delay: -.8s; }
.coin-stack span:nth-child(3) { animation-delay: -1.6s; }
.wayaki-card {
  position: absolute; right: 36px; bottom: 35px; width: min(390px, calc(100% - 72px));
  aspect-ratio: 1.586; padding: 25px; overflow: hidden; border: 1px solid rgba(255,255,255,.34);
  border-radius: 26px; background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.36), transparent 25%),
    radial-gradient(circle at 88% 88%, rgba(22,140,255,.46), transparent 31%),
    linear-gradient(135deg, rgba(255,100,38,.96), rgba(221,45,107,.94) 42%, rgba(82,39,157,.96) 75%, rgba(12,25,66,.98));
  color: white; box-shadow: 0 28px 65px rgba(22,8,45,.45), inset 0 1px 0 rgba(255,255,255,.42);
  transform: rotate(-4deg); transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.wayaki-card:hover { transform: rotate(-1deg) translateY(-7px); }
.wayaki-card::after { content: ""; position: absolute; width: 230px; height: 230px; right: -110px; top: -120px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.035), 0 0 0 58px rgba(255,255,255,.02); }
.wayaki-card-top, .wayaki-card-bottom { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.card-brand { display: flex; align-items: center; gap: 8px; font: 700 18px/1 "Space Grotesk"; }
.card-brand b { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 8px; background: var(--lime); color: #080a03; font-size: 12px; }
.contactless { transform: rotate(90deg); font-weight: 700; letter-spacing: -3px; opacity: .85; }
.card-chip { width: 44px; height: 33px; margin-top: 34px; border-radius: 8px; background: linear-gradient(135deg, #f6e8a3, #c59c37); box-shadow: inset 0 0 0 1px rgba(0,0,0,.16); }
.card-digits { margin-top: 20px; font: 600 18px/1 "Space Grotesk"; letter-spacing: .12em; }
.wayaki-card-bottom { margin-top: 18px; }
.wayaki-card-bottom > span { display: grid; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.wayaki-card-bottom small { color: rgba(255,255,255,.55); font-size: 7px; }
.wayaki-card-bottom strong { font: 800 12px/1 "Space Grotesk"; letter-spacing: .12em; }
.security-list { align-self: center; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-width: 420px; }
.security-list p { margin: 0; padding: 17px; border: 1px solid #333; border-radius: 16px; color: #ddd; }
.security-list span { color: var(--lime); }
.remittance-stack span { font-size: 22px; }

.steps-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; padding-block: 150px; align-items: start; }
.steps-copy h2 { max-width: 480px; }
.steps-copy p { max-width: 420px; margin: 26px 0 0; color: #9da0a6; font-size: 19px; line-height: 1.55; }
.steps-copy .button { margin-top: 38px; }
.steps-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.steps-list li { display: flex; gap: 26px; align-items: flex-start; padding: 32px 6px; border-top: 1px solid #232629; }
.steps-list li:last-child { border-bottom: 1px solid #232629; }
.step-num { flex-shrink: 0; width: 50px; font: 700 38px/1 "Space Grotesk"; letter-spacing: -.03em; }
.step-num.n1 { color: var(--orange); }
.step-num.n2 { color: var(--green); }
.step-num.n3 { color: var(--blue); }
.steps-list strong { display: block; margin-bottom: 8px; font: 650 22px/1.2 "Space Grotesk"; letter-spacing: -.02em; color: var(--white); }
.steps-list p { margin: 0; max-width: 460px; color: #9da0a6; font-size: 15.5px; line-height: 1.55; }

.pricing-section { padding-block: 30px 165px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.price-card { position: relative; padding: 50px; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.price-free {
  background: radial-gradient(circle at 10% 10%, rgba(255,100,38,.16), transparent 27%), radial-gradient(circle at 90% 85%, rgba(22,140,255,.14), transparent 30%), var(--surface);
  border: 1px solid rgba(255,255,255,.1); color: var(--white);
}
.price-premium {
  background: radial-gradient(circle at 86% 10%, rgba(255,255,255,.4), transparent 22%), linear-gradient(150deg, #77e6ae 0%, #29c996 34%, #21b8d6 67%, #168cff 100%);
  color: #071311; box-shadow: 0 30px 85px rgba(25,216,192,.18);
}
.price-icon {
  display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 28px;
  border-radius: 15px; font-size: 23px; background: rgba(221,247,22,.14); color: var(--lime);
}
.price-premium .price-icon { background: rgba(7,19,17,.14); color: #071311; }
.price-card h3 { font-size: 25px; margin-bottom: 14px; }
.price-amount { margin: 0 0 14px; font: 700 48px/1 "Space Grotesk"; letter-spacing: -.03em; }
.price-amount span { margin-left: 4px; font: 600 16px/1 "Manrope"; opacity: .6; }
.price-desc { max-width: 380px; margin: 0 0 28px; font-size: 15.5px; line-height: 1.5; opacity: .82; }
.price-features { list-style: none; margin: 0 0 34px; padding: 0; display: grid; gap: 13px; flex: 1; }
.price-features li { position: relative; padding-left: 26px; font-size: 15px; }
.price-features li::before { content: "✓"; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--lime); }
.price-premium .price-features li::before { color: #071311; }
.price-card .button { align-self: flex-start; }

.technology-section { position: relative; padding: 145px 0 165px; overflow: hidden; background: radial-gradient(circle at 18% 24%, rgba(22,140,255,.16), transparent 30%), radial-gradient(circle at 82% 70%, rgba(239,49,139,.11), transparent 28%), #0b0d0f; border-block: 1px solid #23262a; }
.technology-section::before { content: ""; position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent); }
.technology-heading { position: relative; z-index: 1; display: grid; grid-template-columns: .5fr 1.05fr .55fr; gap: 45px; align-items: end; }
.technology-heading > p:last-child { margin: 0; color: #92979f; font-size: 16px; line-height: 1.6; }
.tech-stage { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: center; margin-top: 85px; padding-bottom: 370px; }
.tech-stage > i { color: var(--lime); font-style: normal; font-size: 24px; }
.tech-rail { min-height: 190px; padding: 24px; border: 1px solid #34383d; border-radius: 22px; background: rgba(18,21,24,.84); backdrop-filter: blur(15px); display: flex; flex-direction: column; }
.tech-rail.active { color: white; background: linear-gradient(145deg, rgba(36,174,255,.92), rgba(74,57,197,.92) 55%, rgba(225,42,132,.92)); border-color: rgba(255,255,255,.35); transform: translateY(-14px); box-shadow: 0 28px 80px rgba(22,140,255,.22), inset 0 1px 0 rgba(255,255,255,.35); }
.tech-rail span { color: #747a83; font: 700 11px/1 "Space Grotesk"; }
.tech-rail.active span { color: rgba(255,255,255,.65); }
.tech-rail strong { margin: auto 0 8px; font: 650 clamp(27px, 2.6vw, 40px)/1 "Space Grotesk"; letter-spacing: -.05em; }
.tech-rail small { color: #858a92; }
.tech-rail.active small { color: rgba(255,255,255,.72); }
.system-console { position: absolute; left: 50%; bottom: 0; width: min(710px, 82%); transform: translateX(-50%) perspective(1200px) rotateX(8deg); border: 1px solid #383d44; border-radius: 24px; overflow: hidden; background: rgba(14,16,19,.94); box-shadow: 0 38px 100px rgba(0,0,0,.6), 0 0 75px rgba(221,247,22,.07); }
.console-top { display: flex; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid #2a2e33; color: #777d86; font: 700 10px/1 "Space Grotesk"; letter-spacing: .12em; }
.live-dot { color: var(--lime); }
.console-flow { display: grid; grid-template-columns: repeat(4, 1fr); }
.console-flow p { display: grid; gap: 22px; margin: 0; padding: 24px; border-right: 1px solid #292d32; }
.console-flow p:last-child { border: 0; }
.console-flow span { color: #686e77; font-size: 9px; letter-spacing: .09em; }
.console-flow b { font: 600 16px/1 "Space Grotesk"; }
.console-flow b::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.console-total { display: flex; align-items: center; justify-content: space-between; padding: 24px; background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue)); color: #061016; }
.console-total span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.console-total strong { font: 700 25px/1 "Space Grotesk"; letter-spacing: -.04em; }

.reach-section { padding: 170px 0; background: linear-gradient(135deg, #171a10 0%, #0d0f0b 45%, #202900 100%); color: var(--white); }
.reach-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(55px, 8vw, 120px); align-items: center; }
.reach-copy .eyebrow { color: var(--lime); opacity: 1; }
.reach-copy > p:not(.eyebrow) { max-width: 550px; font-size: 19px; line-height: 1.55; }
.text-link.light span { color: var(--lime); }
.map-card { position: relative; min-height: 670px; overflow: hidden; border-radius: var(--radius); background: #111214; color: white; }
.map-card { box-shadow: 0 35px 80px rgba(0,0,0,.35); transform: rotate(1.4deg); }
.map-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px); background-size: 48px 48px; }
.city { position: absolute; z-index: 2; padding: 10px 14px; border-radius: 999px; background: white; color: #111; font-size: 12px; font-weight: 700; }
.city i { display: inline-block; width: 8px; height: 8px; margin-left: 8px; border-radius: 50%; background: var(--lime); }
.city i { box-shadow: 0 0 0 0 rgba(221,247,22,.6); animation: ping 2s ease-out infinite; }
.city-one { left: 55%; top: 54%; }.city-two { left: 70%; top: 44%; }.city-three { left: 63%; top: 33%; }.city-four { left: 25%; top: 18%; }
.route { position: absolute; height: 2px; transform-origin: left; background: var(--lime); box-shadow: 0 0 15px var(--lime); }
.route-one { left: 29%; top: 25%; width: 340px; transform: rotate(29deg); }
.route-two { left: 60%; top: 56%; width: 150px; transform: rotate(-39deg); }

.trust-architecture { display: grid; grid-template-columns: .78fr 1.22fr; gap: 85px; padding-block: 150px; }
.trust-heading { position: sticky; top: 125px; align-self: start; }
.trust-heading p:last-child { max-width: 570px; color: #92979f; font-size: 17px; line-height: 1.6; }
.trust-stack { display: grid; gap: 14px; }
.trust-stack article { min-height: 205px; padding: 30px; border: 1px solid rgba(255,255,255,.11); border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.018)); backdrop-filter: blur(22px) saturate(140%); transition: transform .25s ease, border-color .25s ease; box-shadow: inset 0 1px 0 rgba(255,255,255,.055); }
.trust-stack article:nth-child(1) span { color: var(--orange); }
.trust-stack article:nth-child(2) span { color: var(--green); }
.trust-stack article:nth-child(3) span { color: var(--blue); }
.trust-stack article:nth-child(4) span { color: var(--pink); }
.trust-stack article:hover { transform: translateX(-8px); border-color: rgba(221,247,22,.5); }
.trust-stack span { color: var(--lime); font: 700 11px/1 "Space Grotesk"; }
.trust-stack h3 { margin-top: 48px; font-size: clamp(27px, 2.8vw, 42px); }
.trust-stack p { max-width: 570px; margin-bottom: 0; color: #8f949c; line-height: 1.5; }

.company-section { padding-block: 70px 155px; }
.company-quote { position: relative; min-height: 530px; padding: 70px; border-radius: var(--radius); overflow: hidden; background: radial-gradient(circle at 15% 15%, rgba(255,255,255,.33), transparent 24%), linear-gradient(135deg, var(--orange), #d82f67 38%, #6b35b8 70%, var(--blue)); color: white; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 40px 110px rgba(103,43,157,.2); }
.company-quote::after { content: ""; position: absolute; width: 570px; height: 570px; right: -170px; top: -230px; border: 1px solid rgba(13,15,4,.18); border-radius: 50%; box-shadow: 0 0 0 55px rgba(13,15,4,.04), 0 0 0 110px rgba(13,15,4,.025); }
.quote-mark { position: relative; z-index: 1; font: 700 100px/.6 Georgia, serif; }
.company-quote blockquote { position: relative; z-index: 1; max-width: 970px; margin: 0; font: 650 clamp(42px, 5.2vw, 76px)/1 "Space Grotesk"; letter-spacing: -.055em; }
.company-quote p { position: relative; z-index: 1; margin: 0; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.company-story { display: grid; grid-template-columns: .42fr 1.08fr .5fr; gap: 50px; align-items: start; padding-top: 105px; }
.company-story > p:not(.eyebrow) { margin: 5px 0 0; color: #92979f; line-height: 1.6; }
.roadmap-row { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 25px; border-top: 1px solid #2c3034; }
.roadmap-row div { min-height: 150px; padding: 22px 18px; border-right: 1px solid #2c3034; display: flex; flex-direction: column; justify-content: space-between; }
.roadmap-row div:last-child { border: 0; }
.roadmap-row span { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .11em; }
.roadmap-row strong { max-width: 145px; font: 600 15px/1.3 "Space Grotesk"; }

.cta-section { margin-block: 90px; padding: 70px; border-radius: var(--radius); background: radial-gradient(circle at 86% 12%, rgba(255,255,255,.48), transparent 22%), linear-gradient(135deg, #77e6ae 0%, #29c996 34%, #21b8d6 67%, #168cff 100%); color: #071311; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; box-shadow: 0 28px 90px rgba(25,216,192,.16); }
.cta-section { position: relative; overflow: hidden; }
.cta-section::after {
  content: ""; position: absolute; width: 420px; height: 420px; right: -130px; top: -250px;
  border: 1px solid rgba(13,15,4,.2); border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(13,15,4,.04), 0 0 0 90px rgba(13,15,4,.025);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-copy .eyebrow { color: #111; opacity: .6; }
.cta-copy p:last-child { font-size: 18px; }
.signup-form label { display: block; margin-bottom: 11px; font-weight: 700; }
.form-row { display: flex; gap: 8px; padding: 7px; border-radius: 999px; background: white; }
.form-row input { min-width: 0; flex: 1; padding: 0 16px; border: 0; outline: 0; background: transparent; }
.form-note { margin: 10px 0 0 13px; font-size: 12px; color: #4d4d4d; }

.footer { padding: 75px 0 25px; border-top: 1px solid #242424; }
.footer-top { display: flex; align-items: center; gap: 60px; }
.footer-mark { min-width: 154px; width: 154px; height: 68px; border-radius: 12px; }
.footer-mark img { width: 164px; height: 72px; }
.footer-top > p { flex: 1; color: #888; }
.footer-links { display: flex; gap: 25px; color: #aaa; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 36px; padding-top: 28px; border-top: 1px solid #1e1e1e; color: #777; font-size: 13px; }
.footer-legal a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 30px; padding-top: 22px; border-top: 1px solid #222; color: #555; font-size: 12px; }

.reveal {
  opacity: 0; transform: translateY(44px) scale(.985);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

@keyframes ambientFloat { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(55px,-30px,0) scale(1.12); } }
@keyframes textShimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes phoneFloat { 0%,100% { transform: rotate(4deg) rotateY(-7deg) translateY(0) translateZ(50px); } 50% { transform: rotate(2.5deg) rotateY(-4deg) translateY(-16px) translateZ(60px); } }
@keyframes cardFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes sparkle { 0%,100% { transform: rotate(0) scale(.75); opacity: .45; } 50% { transform: rotate(90deg) scale(1.15); opacity: 1; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes coinBob { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-13px) rotate(3deg); } }
@keyframes ping { 70%,100% { box-shadow: 0 0 0 10px rgba(221,247,22,0); } }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); --radius: 30px; }
  .nav-links, .nav-actions { display: none; }
  .mobile-auth-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
  .mobile-auth-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 16px; border-radius: 999px; font-size: 13px; font-weight: 800; white-space: nowrap; }
  .mobile-login { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.055); color: white; backdrop-filter: blur(16px); }
  .mobile-signup { border: 1px solid rgba(255,255,255,.2); background: linear-gradient(105deg, var(--lime), #8bf25f 56%, var(--cyan)); color: #080b04; box-shadow: 0 10px 28px rgba(126,230,78,.17), inset 0 1px 0 rgba(255,255,255,.7); }
  .menu-button { display: block; }
  .menu-open .nav-links { position: absolute; top: 70px; left: 16px; right: 16px; display: grid; gap: 0; padding: 14px; border: 1px solid #2b2b2b; border-radius: 20px; background: #111; }
  .menu-open .nav-links a { padding: 14px; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .statement-word { font-size: clamp(92px, 22vw, 210px); }
  .statement-foot { margin-top: 70px; }
  .category-proof { grid-template-columns: 1fr 1fr; }
  .category-proof article:nth-child(2) { border-right: 0; }
  .category-proof article:nth-child(-n+2) { border-bottom: 1px solid #25282d; }
  .manifesto { grid-template-columns: 1fr; gap: 45px; }
  .manifesto-kicker { min-height: auto; flex-direction: row; border: 0; border-bottom: 1px solid #292c30; padding: 0 0 22px; }
  .manifesto-kicker i { font-size: 32px; }
  .section-heading { grid-template-columns: 1fr; }
  .feature-card.wide { display: block; }
  .rail-cloud { margin-top: 40px; justify-content: start; }
  .security-list { min-width: 0; margin-top: 45px; }
  .reach-layout, .cta-section { grid-template-columns: 1fr; }
  .steps-section { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .technology-heading { grid-template-columns: 1fr; }
  .technology-heading > p:last-child { max-width: 590px; }
  .tech-stage { grid-template-columns: 1fr; padding-bottom: 360px; }
  .tech-stage > i { transform: rotate(90deg); justify-self: center; }
  .tech-rail.active { transform: none; }
  .trust-architecture { grid-template-columns: 1fr; }
  .trust-heading { position: static; }
  .company-story { grid-template-columns: 1fr; }
  .roadmap-row { grid-column: 1; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 24px); --radius: 24px; }
  .motion-ticker { transform: none; width: 100%; }
  .site-header { padding: 12px 0; }
  .nav { gap: 7px; }
  .wordmark { width: 88px; min-width: 88px; height: 40px; }
  .wordmark img { width: 96px; height: 54px; }
  .mobile-auth-actions { gap: 6px; }
  .mobile-auth-actions a { min-height: 38px; padding: 0 11px; font-size: 11px; }
  .menu-button { display: none; }
  .hero { min-height: auto; gap: 45px; padding: 120px 0 50px; }
  h1 { font-size: clamp(45px, 14.4vw, 56px); overflow-wrap: anywhere; }
  .hero-text { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-visual { width: 100%; min-height: 575px; }
  .phone { width: min(260px, calc(100% - 36px)); transform: rotate(2deg) scale(.88); }
  .float-card { max-width: calc(100% - 20px); }
  .float-card-one { left: 10px; top: 60px; }
  .float-card-two { right: 10px; bottom: 35px; }
  .float-pill { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .brand-statement { padding: 95px 0 75px; }
  .statement-top { margin-bottom: 28px; }
  .statement-word { width: 100%; margin-left: 0; font-size: min(25vw, 108px); line-height: .78; }
  .statement-word-right { justify-content: flex-end; margin: 9vw 0 0; }
  .statement-foot { grid-template-columns: 1fr; margin-top: 60px; }
  .statement-foot p:last-child { justify-self: start; }
  .category-proof { grid-template-columns: 1fr; }
  .category-proof article, .category-proof article:nth-child(2) { min-height: 130px; border-right: 0; border-bottom: 1px solid #25282d; }
  .category-proof article:last-child { border-bottom: 0; }
  .manifesto { padding-block: 95px; }
  .friction-grid { grid-template-columns: 1fr; }
  .friction-grid div { min-height: 120px; }
  .trust-grid p, .trust-grid p:first-child { border: 0; border-bottom: 1px solid #252525; }
  .feature-section { padding-block: 90px; }
  h2 { font-size: 48px; }
  .bento-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card.wide { grid-column: auto; min-height: 510px; padding: 30px; }
  .feature-card h3 { font-size: 43px; }
  .card-number { margin-bottom: 42px; }
  .wayaki-card { right: 24px; bottom: 27px; width: calc(100% - 48px); padding: 21px; }
  .card-chip { margin-top: 24px; }
  .security-list { grid-template-columns: 1fr; }
  .reach-section { padding: 80px 0; }
  .technology-section { padding: 95px 0 110px; }
  .tech-stage { margin-top: 55px; padding-bottom: 375px; }
  .tech-rail { min-height: 150px; }
  .system-console { width: 100%; transform: translateX(-50%); }
  .console-flow { grid-template-columns: 1fr 1fr; }
  .console-flow p:nth-child(2) { border-right: 0; }
  .console-flow p:nth-child(-n+2) { border-bottom: 1px solid #292d32; }
  .console-flow p { padding: 18px; }
  .console-total { align-items: flex-start; flex-direction: column; gap: 9px; }
  .trust-architecture { gap: 48px; padding-block: 95px; }
  .trust-stack article { min-height: 180px; padding: 25px; }
  .company-section { padding-block: 30px 95px; }
  .company-quote { min-height: 470px; padding: 38px 28px; }
  .roadmap-row { grid-template-columns: 1fr 1fr; }
  .roadmap-row div:nth-child(2) { border-right: 0; }
  .roadmap-row div:nth-child(-n+2) { border-bottom: 1px solid #2c3034; }
  .map-card { min-height: 420px; }
  .city { font-size: 10px; }
  .city-four { left: 9%; }
  .route-one { left: 15%; width: min(290px, 72vw); }
  .cta-section { margin-block: 45px; padding: 35px 24px; gap: 35px; }
  .form-row { flex-direction: column; border-radius: 22px; }
  .form-row input { min-height: 48px; }
  .steps-section { padding-block: 90px; }
  .steps-list li { padding: 22px 0; gap: 18px; }
  .step-num { width: 34px; font-size: 26px; }
  .pricing-section { padding-block: 10px 95px; }
  .price-card { padding: 32px 26px; }
  .price-amount { font-size: 38px; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 22px; }
  .footer-links { flex-wrap: wrap; }
  .footer-legal { gap: 14px 22px; margin-top: 28px; padding-top: 22px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .phone, .float-card, .float-pill, .spark, .ticker-track, .coin-stack span, .ambient, .city i { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
