:root {
  --black: #0A0A0A;
  --surface: #0E0E0E;
  --surface-2: #131313;
  --surface-3: #191919;
  --green: #00C896;
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.74);
  --dim: rgba(255, 255, 255, 0.52);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(0, 200, 150, 0.42);
  --danger: #FF5A5F;
  --warning: #E8B44A;
  --display: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  animation: gridDrift 18s linear infinite;
  z-index: -2;
}

@keyframes gridDrift {
  to {
    background-position: 56px 56px;
  }
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

main,
section,
article,
aside,
header,
footer,
nav,
div,
form {
  min-width: 0;
}

h1,
h2,
h3,
h4,
p,
li,
a,
span,
strong,
small,
label {
  overflow-wrap: break-word;
}

[hidden] {
  display: none !important;
}

[data-lang="en"] {
  display: none;
}

body.lang-en [data-lang="fr"] {
  display: none;
}

body.lang-en [data-lang="en"] {
  display: inline;
}

body.lang-en p[data-lang="en"],
body.lang-en div[data-lang="en"],
body.lang-en section[data-lang="en"],
body.lang-en article[data-lang="en"] {
  display: block;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--green);
  color: var(--black);
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 40px;
  background: rgba(10, 10, 10, 0.68);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 10, 0.88);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 164px;
}

.brand img {
  width: 164px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255,255,255,0.03);
}

.desktop-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
}

.language-switch button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.language-switch button.active {
  background: var(--green);
  color: var(--black);
}

.header-actions,
.hero-actions,
.app-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 16px 44px rgba(0,200,150,0.28), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.button-primary:hover {
  background: #16D3A4;
  box-shadow: 0 22px 58px rgba(0,200,150,0.38), 0 0 0 1px rgba(255,255,255,0.12) inset;
}

.button-ghost,
.button-glass {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-color: var(--line);
}

.button-ghost:hover,
.button-glass:hover {
  border-color: rgba(0,200,150,0.58);
  background: rgba(0,200,150,0.09);
}

.button-large {
  min-height: 54px;
  padding: 15px 22px;
  font-size: 15px;
}

.cta-short {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px 40px 86px;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.94;
  transform: translateX(20%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.86) 31%, rgba(10,10,10,0.38) 58%, rgba(10,10,10,0.76) 100%),
    linear-gradient(0deg, var(--black) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0.8) 100%);
  z-index: 3;
}

.hero-orbit {
  position: relative;
  width: min(56vw, 720px);
  aspect-ratio: 1;
  border-radius: 48px;
  border: 1px solid rgba(0,200,150,0.42);
  background:
    linear-gradient(90deg, rgba(0,200,150,0.18) 1px, transparent 1px),
    linear-gradient(rgba(0,200,150,0.14) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0,200,150,0.22), rgba(255,255,255,0.035) 40%, transparent 72%);
  background-size: 46px 46px, 46px 46px, auto;
  box-shadow: 0 0 90px rgba(0,200,150,0.22), 0 28px 90px rgba(0,0,0,0.52);
  animation: circuitShift 7s ease-in-out infinite;
}

.hero-ring,
.hero-core,
.rail,
.signal {
  position: absolute;
  z-index: 2;
}

.hero-ring {
  inset: 12%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 42px;
  animation: orbitSpin 22s linear infinite;
}

.hero-ring-two {
  inset: 28%;
  border-color: rgba(0,200,150,0.32);
  animation-duration: 14s;
  animation-direction: reverse;
}

.hero-core {
  inset: 50%;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,200,150,0.46);
  border-radius: 32px;
  background: rgba(10,10,10,0.86);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48), 0 0 36px rgba(0,200,150,0.22);
}

.hero-core span {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
}

.hero-core strong {
  color: var(--green);
  font-family: var(--mono);
  font-size: 13px;
}

.rail {
  min-width: 148px;
  padding: 12px 14px;
  border: 1px solid rgba(0,200,150,0.32);
  border-radius: 999px;
  background: rgba(12,12,12,0.82);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.rail::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0,200,150,0.8);
}

.rail-momo {
  left: 3%;
  top: 26%;
  animation: floatY 4.4s ease-in-out infinite;
}

.rail-wallet {
  right: 4%;
  top: 44%;
  animation: floatY 4.8s ease-in-out infinite 400ms;
}

.rail-global {
  left: 28%;
  bottom: 9%;
  animation: floatY 5.2s ease-in-out infinite 800ms;
}

.signal {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(0,200,150,0.9);
  animation: signalMove 4.8s linear infinite;
}

.signal-one {
  left: 20%;
  top: 48%;
}

.signal-two {
  left: 51%;
  top: 28%;
  animation-delay: 1.1s;
}

.signal-three {
  left: 62%;
  top: 66%;
  animation-delay: 2.2s;
}

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

@keyframes orbitBreath {
  0%,
  100% {
    transform: scale(0.97);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes circuitShift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.98);
    background-position: 0 0, 0 0, 0 0;
  }
  50% {
    transform: translate3d(-8px, -6px, 0) scale(1.015);
    background-position: 46px 0, 0 46px, 0 0;
  }
}

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

@keyframes panelPulse {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  50% {
    background-position: 32px 0, 0 32px, 0 0, 0 0;
  }
}

@keyframes scanLine {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(128px);
    opacity: 1;
  }
}

@keyframes scanLineVertical {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(148px);
    opacity: 1;
  }
}

@keyframes signalMove {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.7);
  }
  18%,
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(130px, -80px) scale(1.1);
  }
}

@keyframes pulseCore {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.72;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing:0;
}

.section-kicker > span:first-child {
  width: 26px;
  height: 1px;
  background: var(--green);
}

.section-kicker > span:not(:first-child) {
  width: auto;
  height: auto;
  background: transparent;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: 76px;
  line-height: 0.98;
  letter-spacing:0;
}

.hero-arrow {
  display: inline-block;
  color: var(--white);
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing:0;
}

h3 {
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing:0;
}

p {
  color: var(--muted);
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.77);
  font-size: 20px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(16,16,16,0.82);
}

.hero-metrics dt {
  font-family: var(--mono);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--dim);
  font-size: 13px;
  font-weight: 700;
}

.trust-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: #0D0D0D;
}

.trust-band span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 40px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.section-narrow {
  max-width: 1080px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.75fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p {
  margin: 0;
  font-size: 16px;
}

.flow-rail,
.product-grid,
.use-case-grid,
.security-grid,
.operator-grid,
.gallery-grid,
.state-grid {
  display: grid;
  gap: 12px;
}

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

.flow-rail article,
.feature-card,
.use-case-grid article,
.security-grid article,
.operator-grid span,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.flow-rail article,
.use-case-grid article,
.security-grid article {
  padding: 24px;
}

.flow-rail strong {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 13px;
}

.flow-rail p,
.use-case-grid p,
.security-grid p,
.feature-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.product-section {
  max-width: 1260px;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease, border-color 180ms ease, background 180ms ease;
}

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

.feature-card:hover {
  border-color: rgba(0,200,150,0.4);
  background: rgba(0,200,150,0.055);
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(0,200,150,0.34);
  border-radius: 8px;
  background: rgba(0,200,150,0.1);
  color: var(--green);
}

.feature-motion {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(68%, 240px);
  aspect-ratio: 1.12;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(0,200,150,0.18) 1px, transparent 1px),
    linear-gradient(rgba(0,200,150,0.13) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0,200,150,0.22), transparent 54%),
    rgba(255,255,255,0.035);
  background-size: 32px 32px, 32px 32px, auto, auto;
  box-shadow: 0 20px 70px rgba(0,0,0,0.38), 0 0 42px rgba(0,200,150,0.12);
  overflow: hidden;
  animation: panelPulse 5s ease-in-out infinite;
}

.feature-card-wide .feature-motion {
  right: 28px;
  width: min(46%, 320px);
}

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

.feature-motion::before {
  inset: 18px;
  border: 1px solid rgba(0,200,150,0.34);
}

.feature-motion::after {
  width: 86px;
  height: 5px;
  left: 18px;
  top: 52%;
  background: var(--green);
  box-shadow: 0 0 44px rgba(0,200,150,0.8);
  animation: scanLine 2.4s ease-in-out infinite;
}

.motion-card {
  aspect-ratio: 1.58;
}

.motion-card::before {
  inset: 24px;
  border-radius: 18px;
}

.motion-card::after {
  width: 58px;
  height: 6px;
  left: 24px;
  top: 34px;
  transform: none;
  border-radius: 999px;
}

.motion-qr {
  background-image:
    linear-gradient(90deg, rgba(0,200,150,0.2) 12px, transparent 12px),
    linear-gradient(rgba(0,200,150,0.2) 12px, transparent 12px);
  background-size: 44px 44px;
}

.motion-transfer::before {
  inset: 28px 44px;
  border-radius: 24px;
  transform: rotate(-14deg);
}

.motion-checkout::before {
  inset: 26px 18px;
  border-radius: 18px;
  box-shadow: 0 36px 0 rgba(255,255,255,0.08), 0 72px 0 rgba(255,255,255,0.05);
}

.app-section {
  max-width: 1260px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.app-copy p {
  font-size: 17px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255,255,255,0.04);
}

.platform-link:hover {
  border-color: rgba(0,200,150,0.45);
}

.phone-stack {
  min-height: 620px;
  position: relative;
}

.phone-stack figure {
  position: absolute;
  width: 32%;
  min-width: 210px;
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: var(--black);
}

.native-phone {
  min-height: 430px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(0,200,150,0.12), transparent 45%),
    #0D0D0D;
}

.native-phone figcaption {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-balance {
  margin-top: 42px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 42px;
  line-height: 1;
}

.phone-balance span {
  color: var(--muted);
  font-size: 14px;
}

.phone-bar {
  height: 8px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 62%, rgba(255,255,255,0.1) 62%);
}

.phone-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.phone-action-grid span {
  aspect-ratio: 1.15;
  border: 1px solid rgba(0,200,150,0.26);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}

.phone-status {
  width: fit-content;
  margin-top: 54px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--black);
  background: var(--green);
  font-weight: 900;
}

.phone-receipt {
  height: 84px;
  margin-top: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 9px, transparent 9px 18px);
}

.phone-receipt.short {
  height: 52px;
}

.phone-lock {
  width: 96px;
  height: 96px;
  margin: 58px auto 34px;
  border: 2px solid var(--green);
  border-radius: 28px;
  box-shadow: 0 0 46px rgba(0,200,150,0.22);
}

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

.phone-list span {
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
}

.phone-stack figure:nth-child(1) {
  left: 4%;
  top: 20px;
  z-index: 3;
}

.phone-stack figure:nth-child(2) {
  left: 35%;
  top: 92px;
  z-index: 2;
}

.phone-stack figure:nth-child(3) {
  right: 2%;
  top: 0;
  z-index: 1;
}

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

.security-section {
  max-width: 1120px;
}

.security-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.security-grid article {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.security-grid article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.security-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green);
}

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

.operator-grid span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: var(--white);
  font-weight: 900;
}

.operator-grid span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 99px;
  background: var(--green);
}

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

.state-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.state-grid strong {
  display: block;
  margin: 18px 0 8px;
  font-family: var(--display);
  font-size: 20px;
}

.state-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0,200,150,0.65);
}

.state-dot.pending {
  background: var(--warning);
  box-shadow: 0 0 18px rgba(232,180,74,0.55);
}

.state-dot.failed {
  background: var(--danger);
  box-shadow: 0 0 18px rgba(255,90,95,0.55);
}

.state-dot.secure {
  border: 2px solid var(--green);
  background: transparent;
}

.faq-section {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--white);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  max-width: 1180px;
  margin: 24px auto 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 40px;
  border: 1px solid rgba(0,200,150,0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,200,150,0.12), rgba(255,255,255,0.035));
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 32px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr auto;
  gap: 34px;
  padding: 46px 40px;
  border-top: 1px solid var(--line);
  background: #080808;
}

.site-footer img {
  width: 132px;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 280px;
  margin-bottom: 0;
  font-size: 14px;
}

.site-footer nav {
  display: grid;
  gap: 9px;
  align-content: start;
}

.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--green);
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
}

/* Web app pages */
.app-body {
  min-height: 100vh;
  background: var(--black);
}

.webapp-body {
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    var(--black);
  background-size: 46px 46px, 46px 46px, auto;
}

.webapp-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 70;
  width: 292px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
  background: rgba(8,8,8,0.94);
  box-shadow: 18px 0 60px rgba(0,0,0,0.34);
  backdrop-filter: blur(22px);
}

.webapp-brand {
  display: inline-flex;
  width: 100%;
  padding: 0 8px 6px;
}

.webapp-brand img {
  width: 176px;
  height: auto;
}

.webapp-account {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(0,200,150,0.28);
  border-radius: 14px;
  background: rgba(0,200,150,0.07);
}

.webapp-account-dot,
.webapp-session-pill span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0,200,150,0.84);
  flex: 0 0 auto;
}

.webapp-account strong,
.webapp-nav strong,
.webapp-session-pill strong {
  display: block;
  color: var(--white);
  font-weight: 900;
}

.webapp-account small,
.webapp-nav small {
  display: block;
  margin-top: 2px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
}

.webapp-nav {
  display: grid;
  gap: 6px;
}

.webapp-nav a,
.webapp-logout {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--muted);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.webapp-nav a svg,
.webapp-logout svg,
.webapp-menu-button svg {
  width: 22px;
  height: 22px;
  color: currentColor;
}

.webapp-nav a:hover,
.webapp-nav a.active {
  color: var(--white);
  border-color: rgba(0,200,150,0.28);
  background: rgba(0,200,150,0.08);
  transform: translateX(2px);
}

.webapp-nav a.active svg {
  color: var(--green);
  filter: drop-shadow(0 0 10px rgba(0,200,150,0.65));
}

.webapp-sidebar-foot {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.webapp-logout {
  grid-template-columns: 26px minmax(0, 1fr);
  color: rgba(255,90,95,0.92);
  border-color: rgba(255,90,95,0.22);
  background: rgba(255,90,95,0.06);
  font-weight: 900;
}

.webapp-menu-button,
.webapp-backdrop {
  display: none;
}

.webapp-session-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(0,200,150,0.26);
  border-radius: 999px;
  background: rgba(0,200,150,0.07);
  white-space: nowrap;
}

.webapp-body .app-topbar {
  left: auto;
  margin-left: 292px;
  width: calc(100% - 292px);
  padding-inline: clamp(20px, 3vw, 38px);
}

.webapp-body .app-topbar .app-logo,
.webapp-body .app-topbar .app-nav {
  display: none;
}

.webapp-body .app-shell {
  width: auto;
  max-width: none;
  margin-left: 292px;
  padding: 34px clamp(20px, 3vw, 42px) 84px;
}

.webapp-body .app-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(18px);
}

.app-logo {
  display: inline-flex;
  align-items: center;
}

.app-logo img {
  width: 132px;
  height: auto;
}

.app-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.app-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.app-nav a[aria-current="page"],
.app-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.app-shell {
  width: min(1180px, calc(100% - 40px));
  max-width: 100%;
  margin: 0 auto;
  padding: 34px 0 84px;
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.app-panel,
.auth-panel,
.data-card,
.state-card,
.mini-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16,16,16,0.92);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  min-width: 0;
}

.app-panel {
  padding: clamp(24px, 4vw, 40px);
}

.app-panel h1,
.app-panel h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: 56px;
  line-height: 1;
}

.app-panel p {
  max-width: 660px;
  font-size: 17px;
  overflow-wrap: break-word;
}

.app-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0,200,150,0.28);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(0,200,150,0.12) 1px, transparent 1px),
    linear-gradient(rgba(0,200,150,0.08) 1px, transparent 1px),
    rgba(0,200,150,0.06);
  background-size: 38px 38px;
  min-width: 0;
}

.native-visual {
  position: relative;
  width: min(86%, 360px);
  min-height: 330px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(0,200,150,0.13) 1px, transparent 1px),
    linear-gradient(rgba(0,200,150,0.10) 1px, transparent 1px),
    linear-gradient(155deg, rgba(0,200,150,0.12), rgba(255,255,255,0.035) 48%, transparent),
    #0D0D0D;
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 22px;
}

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

.native-visual::before {
  width: 72%;
  height: 3px;
  right: 14%;
  top: 88px;
  border: 1px solid rgba(0,200,150,0.28);
  background: var(--green);
  box-shadow: 0 0 24px rgba(0,200,150,0.62);
  animation: scanLineVertical 3.2s ease-in-out infinite;
}

.native-visual::after {
  left: 24px;
  right: 24px;
  bottom: 30px;
  height: 6px;
  background: linear-gradient(90deg, var(--green) 0 64%, rgba(255,255,255,0.1) 64%);
}

.visual-kicker {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-big {
  margin-top: 40px;
  color: var(--white);
  font-family: var(--mono);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.visual-big span {
  color: var(--muted);
  font-size: 16px;
}

.visual-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.visual-lines span {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
}

.visual-lines span:nth-child(2) {
  width: 78%;
}

.visual-lines span:nth-child(3) {
  width: 58%;
}

.visual-chip-row,
.native-strip {
  display: grid;
  gap: 12px;
}

.visual-chip-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.visual-chip-row span,
.native-strip article {
  min-height: 80px;
  border: 1px solid rgba(0,200,150,0.24);
  border-radius: 18px;
  background: rgba(0,200,150,0.07);
}

.native-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.native-strip article {
  padding: 18px;
}

.native-strip strong {
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.native-strip p {
  margin: 0;
  font-size: 13px;
}

.visual-auth .visual-chip-row span:nth-child(1)::before,
.visual-auth .visual-chip-row span:nth-child(2)::before,
.visual-auth .visual-chip-row span:nth-child(3)::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin: 18px auto;
  border-radius: 50%;
  border: 2px solid var(--green);
}

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

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

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

.mini-card,
.data-card,
.state-card {
  padding: 20px;
}

.mini-card svg,
.data-card svg,
.state-card svg {
  width: 30px;
  height: 30px;
  color: var(--green);
  margin-bottom: 16px;
}

.mini-card h3,
.data-card h3,
.state-card h3 {
  margin-bottom: 8px;
}

.mono-value {
  color: var(--white);
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 700;
  letter-spacing:0;
}

.green {
  color: var(--green);
}

.app-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  max-width: 100%;
}

.table-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.8fr;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  min-width: 0;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row strong {
  color: var(--white);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  width: fit-content;
  border: 1px solid rgba(0,200,150,0.34);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green);
  background: rgba(0,200,150,0.09);
  font-size: 12px;
  font-weight: 900;
  white-space: normal;
}

.status-pill.warning {
  border-color: rgba(232,180,74,0.42);
  color: var(--warning);
  background: rgba(232,180,74,0.09);
}

.status-pill.danger {
  border-color: rgba(255,90,95,0.42);
  color: var(--danger);
  background: rgba(255,90,95,0.09);
}

.auth-layout {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
}

.auth-panel {
  padding: clamp(24px, 4vw, 36px);
}

.auth-tabs,
.segmented {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.auth-tabs button,
.segmented span,
.segmented button {
  flex: 1;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.auth-tabs button.active,
.segmented span.active,
.segmented button.active {
  background: var(--green);
  color: var(--black);
}

.form-stack {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  background: var(--surface-2);
  color: var(--white);
}

.password-control {
  position: relative;
  display: flex;
  align-items: center;
}

.password-control input {
  padding-right: 96px;
}

.password-toggle {
  position: absolute;
  right: 8px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.auth-error {
  margin-top: 16px;
  color: var(--danger);
  font-weight: 800;
}

.field textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

.flow-list {
  display: grid;
  gap: 12px;
  counter-reset: flow;
}

.flow-step {
  position: relative;
  padding: 18px 18px 18px 62px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.flow-step::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--green);
  font-family: var(--mono);
  font-weight: 700;
}

.notice-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,200,150,0.07);
}

.notice-card.danger {
  border-color: rgba(255,90,95,0.38);
  background: rgba(255,90,95,0.08);
}

.otp-code-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.otp-code-grid input {
  min-height: 54px;
  padding: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 20px;
}

.link-card {
  display: block;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.link-card:hover,
.transaction-row:hover {
  transform: translateY(-1px);
  border-color: rgba(0,200,150,0.42);
  background: rgba(0,200,150,0.06);
}

button.table-row,
.settings-action {
  width: 100%;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.live-profile-grid,
.live-kyc-grid {
  margin-top: 18px;
}

.live-profile-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.live-avatar {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,200,150,0.34);
  background: rgba(0,200,150,0.10);
  color: var(--green);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(0,200,150,0.16);
}

.live-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-upload {
  cursor: pointer;
}

.subtle-copy {
  color: var(--dim);
  font-size: 13px;
}

.live-empty {
  min-height: 180px;
}

.settings-action {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: inherit;
  background: rgba(16,16,16,0.92);
}

.settings-action svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.screen-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.screen-strip img {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 240px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.24);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  padding: 28px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

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

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-media {
    opacity: 0.36;
    transform: translateX(24%);
  }

  .flow-rail,
  .use-case-grid,
  .operator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-card-wide {
    grid-column: span 1;
  }

  .app-section,
  .section-heading,
  .site-footer,
  .app-hero,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    min-height: 560px;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
    gap: 10px;
  }

  .brand img {
    width: 106px;
  }

  .header-actions {
    margin-left: auto;
    flex: 0 1 auto;
    min-width: 0;
    justify-content: flex-end;
  }

  .header-actions .button-ghost {
    display: none;
  }

  .header-actions .button-primary {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .site-header .cta-wide {
    display: none;
  }

  .site-header .cta-short {
    display: inline;
  }

  .hero {
    min-height: 88vh;
    align-items: start;
    padding: 156px 20px 64px;
  }

  .hero-media {
    transform: translateX(12%);
    opacity: 0.25;
  }

  .hero-orbit {
    width: min(94vw, 420px);
  }

  h1 {
    font-size: 40px;
    max-width: 100%;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-copy {
    font-size: 17px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-content {
    width: min(100%, 350px);
    max-width: 350px;
    min-width: 0;
  }

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

  .section {
    padding: 72px 20px;
  }

  .flow-rail,
  .product-grid,
  .use-case-grid,
  .security-grid,
  .operator-grid,
  .gallery-grid,
  .state-grid,
  .app-grid,
  .app-grid.two,
  .app-grid.four,
  .screen-strip,
  .native-strip {
    grid-template-columns: 1fr;
  }

  .app-topbar {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 16px 20px;
  }

  .app-nav {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .app-nav::-webkit-scrollbar {
    display: none;
  }

  .app-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .app-shell,
  .auth-layout {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .app-panel,
  .auth-panel {
    padding: 22px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .app-panel h1,
  .app-panel h2 {
    font-size: 30px;
    line-height: 1.06;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .app-panel p,
  .auth-panel p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .app-visual {
    min-height: auto;
    padding: 24px 0;
  }

  .native-visual {
    min-height: 280px;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px 16px;
  }

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

  .feature-motion,
  .feature-card-wide .feature-motion {
    width: 70%;
    right: 18px;
    bottom: 18px;
  }

  .app-section {
    gap: 24px;
  }

  .phone-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .phone-stack figure {
    position: relative;
    inset: auto !important;
    width: min(100%, 330px);
    min-width: 0;
    margin: 0 auto;
  }

  .final-cta {
    margin: 0 20px 72px;
    padding: 26px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta h2 {
    font-size: 25px;
  }

  .site-footer {
    padding: 38px 20px;
  }
}

@media (max-width: 480px) {
  .site-header {
    max-width: 100vw;
    overflow: hidden;
  }

  .site-header .header-actions {
    display: none;
  }

  .hero-copy,
  .hero-metrics,
  .hero-actions {
    width: min(100%, 350px);
    max-width: 350px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .app-topbar {
    padding-inline: 16px;
  }

  .app-shell,
  .auth-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .app-panel,
  .auth-panel,
  .data-card,
  .mini-card,
  .state-card {
    border-radius: 16px;
  }
}

@media (max-width: 980px) {
  .webapp-sidebar {
    transform: translateX(-104%);
    transition: transform 220ms ease;
  }

  .webapp-sidebar-open .webapp-sidebar {
    transform: translateX(0);
  }

  .webapp-backdrop {
    position: fixed;
    inset: 0;
    z-index: 65;
    border: 0;
    background: rgba(0,0,0,0.58);
    backdrop-filter: blur(4px);
  }

  .webapp-sidebar-open .webapp-backdrop {
    display: block;
  }

  .webapp-menu-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    color: var(--white);
    cursor: pointer;
    flex: 0 0 auto;
  }

  .webapp-body .app-topbar {
    left: auto;
    margin-left: 0;
    width: 100%;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .webapp-body .app-topbar .app-logo {
    display: inline-flex;
  }

  .webapp-body .app-topbar .app-logo img {
    width: 142px;
  }

  .webapp-body .app-shell {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .webapp-body .app-topbar {
    gap: 10px;
  }

  .webapp-session-pill {
    max-width: 42vw;
    overflow: hidden;
  }

  .webapp-session-pill strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .webapp-body .app-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .webapp-body .app-hero,
  .webapp-body .app-grid,
  .webapp-body .app-grid.two,
  .webapp-body .app-grid.four,
  .webapp-body .native-strip {
    grid-template-columns: 1fr;
  }
}

/* Radical landing pass: geometric fintech stage, no decorative photos. */
.cashflow-landing {
  background:
    linear-gradient(115deg, rgba(0,200,150,0.12), transparent 32%),
    linear-gradient(180deg, #0A0A0A 0%, #060606 100%);
}

.cashflow-landing::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(0,200,150,0.08) 120px),
    repeating-linear-gradient(0deg, transparent 0 119px, rgba(255,255,255,0.035) 120px);
  opacity: 0.42;
  mask-image: linear-gradient(to bottom, black 0%, black 52%, transparent 100%);
}

.cashflow-landing .site-header {
  min-height: 86px;
  padding-inline: clamp(18px, 4vw, 58px);
  background: rgba(7,7,7,0.78);
}

.cashflow-landing .brand {
  min-width: clamp(166px, 16vw, 228px);
}

.cashflow-landing .brand img {
  width: clamp(166px, 15vw, 228px);
}

.cashflow-landing .hero {
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: center;
  padding: 130px clamp(20px, 5vw, 72px) 72px;
  overflow: clip;
}

.cashflow-landing .hero::before {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,150,0.86), transparent);
  animation: routeSweep 3.6s ease-in-out infinite;
}

.cashflow-landing .hero::after {
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.76) 54%, #0A0A0A 100%);
}

.cashflow-landing .hero-content {
  grid-column: 1;
  grid-row: 1;
  max-width: 720px;
}

.cashflow-landing .hero-media {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  height: min(72svh, 720px);
  display: grid;
  place-items: center;
  opacity: 1;
  transform: none;
  z-index: 2;
}

.cashflow-landing .hero-media::before {
  display: none;
}

.cashflow-landing h1 {
  max-width: 780px;
  font-size: clamp(58px, 7.8vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
}

.cashflow-landing .hero-copy {
  max-width: 620px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.42;
}

.cashflow-landing .hero-actions .button {
  border-radius: 999px;
}

.cashflow-landing .hero-metrics {
  max-width: 600px;
  border-radius: 0;
  border-color: rgba(0,200,150,0.26);
  background: rgba(0,200,150,0.28);
}

.cashflow-landing .hero-metrics div {
  background: rgba(9,9,9,0.78);
}

.cashflow-landing .hero-metrics dt {
  color: var(--green);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.cashflow-landing .hero-orbit {
  width: min(100%, 760px);
  aspect-ratio: 1.04;
  border-radius: 36px;
  border-color: rgba(0,200,150,0.48);
  background:
    linear-gradient(90deg, rgba(0,200,150,0.20) 1px, transparent 1px),
    linear-gradient(rgba(0,200,150,0.16) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0,200,150,0.22), rgba(255,255,255,0.035) 44%, rgba(0,0,0,0.18) 100%);
  background-size: 54px 54px, 54px 54px, auto;
  box-shadow:
    0 36px 120px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.07) inset,
    0 0 80px rgba(0,200,150,0.24);
  animation: circuitShift 8s ease-in-out infinite;
}

.cashflow-landing .hero-ring {
  inset: 9%;
  border-radius: 28px;
  border-style: dashed;
  border-color: rgba(255,255,255,0.14);
}

.cashflow-landing .hero-ring-two {
  inset: 26%;
  border-color: rgba(0,200,150,0.42);
}

.cashflow-landing .hero-core {
  width: min(38%, 220px);
  height: min(38%, 220px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent),
    rgba(5,5,5,0.92);
}

.cashflow-landing .hero-core span {
  font-size: clamp(28px, 4vw, 52px);
}

.cashflow-landing .hero-core strong {
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.34em;
}

.cashflow-landing .rail {
  min-width: 170px;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cashflow-landing .signal {
  width: 42px;
  height: 4px;
}

.cashflow-landing .trust-band {
  position: relative;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow: hidden;
  padding: 20px clamp(20px, 5vw, 72px);
  background: #050505;
}

.cashflow-landing .trust-band span {
  flex: 0 0 auto;
  min-width: 180px;
  border-radius: 0;
  text-align: center;
  animation: trustSlide 18s linear infinite;
}

.cashflow-landing .section {
  max-width: 1320px;
}

.cashflow-landing .section-heading {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  align-items: start;
}

.cashflow-landing h2 {
  font-size: clamp(34px, 5.2vw, 74px);
  line-height: 0.96;
}

.cashflow-landing .flow-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.07);
}

.cashflow-landing .flow-rail article {
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0,200,150,0.08), transparent),
    rgba(10,10,10,0.9);
  transition: transform 180ms ease, background 180ms ease;
}

.cashflow-landing .flow-rail article:last-child {
  border-right: 0;
}

.cashflow-landing .flow-rail article:hover {
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(0,200,150,0.16), transparent),
    rgba(10,10,10,0.98);
}

.cashflow-landing .product-grid {
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  align-items: stretch;
}

.cashflow-landing .feature-card {
  min-height: 410px;
  border-radius: 0;
  border-color: rgba(255,255,255,0.14);
  background:
    linear-gradient(145deg, rgba(0,200,150,0.11), transparent 45%),
    #080808;
}

.cashflow-landing .feature-card-wide {
  grid-row: span 2;
  grid-column: span 1;
  min-height: 832px;
}

.cashflow-landing .feature-card:hover {
  border-color: rgba(0,200,150,0.62);
  background:
    linear-gradient(145deg, rgba(0,200,150,0.18), transparent 48%),
    #090909;
}

.cashflow-landing .feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.cashflow-landing .feature-card h3 {
  font-size: clamp(23px, 2vw, 34px);
}

.cashflow-landing .feature-motion,
.cashflow-landing .feature-card-wide .feature-motion {
  width: min(74%, 360px);
  right: 22px;
  bottom: 22px;
  border-radius: 28px;
  opacity: 0.92;
}

.cashflow-landing .app-section {
  max-width: none;
  width: 100%;
  padding-inline: clamp(20px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  background:
    linear-gradient(90deg, rgba(0,200,150,0.09), transparent 42%),
    #070707;
}

.cashflow-landing .phone-stack figure {
  border-radius: 36px;
  border-color: rgba(0,200,150,0.42);
}

.cashflow-landing .native-phone {
  background:
    linear-gradient(180deg, rgba(0,200,150,0.16), transparent 42%),
    #0A0A0A;
}

.cashflow-landing .use-case-grid,
.cashflow-landing .security-grid,
.cashflow-landing .state-grid {
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.07);
}

.cashflow-landing .use-case-grid article,
.cashflow-landing .security-grid article,
.cashflow-landing .state-grid article {
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--line);
  background: #090909;
}

.cashflow-landing .use-case-grid article:last-child,
.cashflow-landing .security-grid article:last-child,
.cashflow-landing .state-grid article:last-child {
  border-right: 0;
}

.cashflow-landing .operator-grid {
  gap: 8px;
}

.cashflow-landing .operator-grid span {
  border-radius: 999px;
  justify-content: center;
  background: rgba(255,255,255,0.045);
}

.cashflow-landing .faq-list details {
  border-radius: 0;
  background: rgba(255,255,255,0.035);
}

.cashflow-landing .final-cta {
  max-width: 1320px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(0,200,150,0.22), transparent 54%),
    #080808;
}

@keyframes routeSweep {
  0%,
  100% {
    opacity: 0.22;
    transform: scaleX(0.52);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes trustSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-58px);
  }
}

@media (max-width: 1040px) {
  .cashflow-landing .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .cashflow-landing .hero-content,
  .cashflow-landing .hero-media {
    grid-column: 1;
    grid-row: auto;
  }

  .cashflow-landing .hero-media {
    height: min(62vw, 560px);
  }

  .cashflow-landing .section-heading,
  .cashflow-landing .app-section {
    grid-template-columns: 1fr;
  }

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

  .cashflow-landing .feature-card-wide {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 480px;
  }

  .cashflow-landing .flow-rail,
  .cashflow-landing .use-case-grid,
  .cashflow-landing .security-grid,
  .cashflow-landing .state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .cashflow-landing .site-header {
    min-height: 74px;
    padding: 12px 16px;
    gap: 10px;
  }

  .cashflow-landing .brand,
  .cashflow-landing .brand img {
    min-width: 132px;
    width: 132px;
  }

  .cashflow-landing .language-switch {
    order: 3;
  }

  .cashflow-landing .hero {
    width: 100%;
    max-width: 100vw;
    padding: 104px 16px 54px;
  }

  .cashflow-landing h1 {
    font-size: clamp(44px, 15vw, 66px);
  }

  .cashflow-landing .hero-copy,
  .cashflow-landing .hero-actions,
  .cashflow-landing .hero-metrics {
    width: 100%;
    max-width: 100%;
  }

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

  .cashflow-landing .hero-media {
    height: min(96vw, 430px);
    overflow: hidden;
  }

  .cashflow-landing .hero-orbit {
    width: 100%;
    border-radius: 24px;
  }

  .cashflow-landing .rail {
    min-width: 126px;
    max-width: 156px;
    padding: 9px 10px;
    font-size: 11px;
  }

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

  .cashflow-landing .hero-metrics {
    grid-template-columns: 1fr;
  }

  .cashflow-landing .section,
  .cashflow-landing .app-section {
    padding: 70px 16px;
  }

  .cashflow-landing .flow-rail,
  .cashflow-landing .product-grid,
  .cashflow-landing .use-case-grid,
  .cashflow-landing .security-grid,
  .cashflow-landing .state-grid {
    grid-template-columns: 1fr;
  }

  .cashflow-landing .feature-card-wide {
    grid-column: span 1;
    min-height: 430px;
  }

  .cashflow-landing .flow-rail article,
  .cashflow-landing .use-case-grid article,
  .cashflow-landing .security-grid article,
  .cashflow-landing .state-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cashflow-landing .flow-rail article:last-child,
  .cashflow-landing .use-case-grid article:last-child,
  .cashflow-landing .security-grid article:last-child,
  .cashflow-landing .state-grid article:last-child {
    border-bottom: 0;
  }
}

/* Full-site production pass for every non-landing web page. */
.app-body {
  background:
    radial-gradient(circle at 16% 0%, rgba(0,200,150,0.16), transparent 28%),
    linear-gradient(180deg, #070707 0%, #0A0A0A 44%, #050505 100%);
}

.app-body:not(.webapp-body)::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,200,150,0.10) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.42;
  mask-image: linear-gradient(to bottom, black 0%, black 56%, transparent 100%);
}

.app-body:not(.webapp-body) .app-topbar {
  position: sticky;
  top: 14px;
  width: min(1240px, calc(100% - 32px));
  min-height: 78px;
  margin: 14px auto 0;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  background: rgba(7,7,7,0.82);
  box-shadow: 0 18px 70px rgba(0,0,0,0.42);
}

.app-body:not(.webapp-body) .app-logo img {
  width: clamp(148px, 14vw, 202px);
}

.app-body:not(.webapp-body) .app-nav {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255,255,255,0.035);
}

.app-body:not(.webapp-body) .app-nav a {
  border-radius: 999px;
}

.app-body:not(.webapp-body) .app-nav a[aria-current="page"],
.app-body:not(.webapp-body) .app-nav a:hover {
  color: var(--black);
  background: var(--green);
}

.app-body:not(.webapp-body) .app-shell,
.app-body:not(.webapp-body) .auth-layout {
  width: min(1240px, calc(100% - 40px));
  padding-top: clamp(28px, 5vw, 62px);
}

.app-body:not(.webapp-body) .app-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: stretch;
}

.app-body:not(.webapp-body) .app-panel,
.app-body:not(.webapp-body) .auth-panel,
.app-body:not(.webapp-body) .data-card,
.app-body:not(.webapp-body) .state-card,
.app-body:not(.webapp-body) .mini-card,
.app-body:not(.webapp-body) .fee-card,
.app-body:not(.webapp-body) .calculator-card,
.app-body:not(.webapp-body) .flow-step,
.app-body:not(.webapp-body) .rate-row {
  position: relative;
  border-color: rgba(255,255,255,0.14);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(0,200,150,0.10), transparent 42%),
    rgba(8,8,8,0.93);
  box-shadow:
    0 24px 90px rgba(0,0,0,0.42),
    0 0 0 1px rgba(255,255,255,0.025) inset;
  overflow: hidden;
}

.app-body:not(.webapp-body) .app-panel::before,
.app-body:not(.webapp-body) .auth-panel::before,
.app-body:not(.webapp-body) .data-card::before,
.app-body:not(.webapp-body) .fee-card::before,
.app-body:not(.webapp-body) .calculator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,200,150,0.13) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
  mask-image: linear-gradient(135deg, black, transparent 64%);
}

.app-body:not(.webapp-body) .app-panel > *,
.app-body:not(.webapp-body) .auth-panel > *,
.app-body:not(.webapp-body) .data-card > *,
.app-body:not(.webapp-body) .fee-card > *,
.app-body:not(.webapp-body) .calculator-card > * {
  position: relative;
  z-index: 1;
}

.app-body:not(.webapp-body) .app-panel h1,
.app-body:not(.webapp-body) .app-panel h2 {
  font-size: clamp(40px, 6.5vw, 86px);
  line-height: 0.94;
}

.app-body:not(.webapp-body) .app-panel p,
.app-body:not(.webapp-body) .auth-panel p {
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.5vw, 19px);
}

.app-body:not(.webapp-body) .app-visual {
  border-radius: 0;
  border-color: rgba(0,200,150,0.38);
  background:
    linear-gradient(90deg, rgba(0,200,150,0.18) 1px, transparent 1px),
    linear-gradient(rgba(0,200,150,0.12) 1px, transparent 1px),
    rgba(0,200,150,0.055);
  background-size: 44px 44px;
}

.app-body:not(.webapp-body) .native-visual {
  width: min(90%, 420px);
  border-radius: 30px;
  transform: rotate(-2deg);
}

.app-body:not(.webapp-body) .native-strip,
.app-body:not(.webapp-body) .app-grid,
.app-body:not(.webapp-body) .fee-duo,
.app-body:not(.webapp-body) .rate-grid,
.app-body:not(.webapp-body) .flow-list {
  gap: 10px;
}

.app-body:not(.webapp-body) .native-strip article,
.app-body:not(.webapp-body) .screen-strip article {
  border-radius: 0;
  border-color: rgba(0,200,150,0.22);
  background: rgba(0,200,150,0.065);
}

.app-body:not(.webapp-body) .field input,
.app-body:not(.webapp-body) .field select,
.app-body:not(.webapp-body) .field textarea,
.app-body:not(.webapp-body) .form-input {
  min-height: 52px;
  border-color: rgba(255,255,255,0.14);
  border-radius: 0;
  background: rgba(255,255,255,0.045);
  color: var(--white);
}

.app-body:not(.webapp-body) .field input:focus,
.app-body:not(.webapp-body) .field select:focus,
.app-body:not(.webapp-body) .field textarea:focus,
.app-body:not(.webapp-body) .form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,200,150,0.14);
}

.app-body:not(.webapp-body) .button,
.app-body:not(.webapp-body) .platform-link {
  border-radius: 999px;
}

.app-body:not(.webapp-body) .auth-layout {
  min-height: calc(100svh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 18px;
  align-items: center;
}

.app-body:not(.webapp-body) .auth-panel {
  padding: clamp(24px, 4vw, 42px);
}

.app-body:not(.webapp-body) .auth-tabs {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
}

.app-body:not(.webapp-body) .auth-tabs button {
  border-radius: 999px;
}

.app-body:not(.webapp-body) .auth-tabs button.active {
  background: var(--green);
  color: var(--black);
}

.webapp-body .webapp-sidebar {
  width: 312px;
  background:
    linear-gradient(180deg, rgba(0,200,150,0.08), transparent 30%),
    rgba(4,4,4,0.96);
}

.webapp-body .webapp-brand img {
  width: 202px;
}

.webapp-body .webapp-nav a,
.webapp-body .webapp-account,
.webapp-body .webapp-logout {
  border-radius: 0;
}

.webapp-body .webapp-nav a.active {
  background:
    linear-gradient(90deg, rgba(0,200,150,0.22), rgba(0,200,150,0.045));
}

.webapp-body .app-topbar {
  margin-left: 312px;
  width: calc(100% - 312px);
}

.webapp-body .app-shell {
  margin-left: 312px;
}

.webapp-body .app-panel,
.webapp-body .data-card,
.webapp-body .state-card,
.webapp-body .mini-card {
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(0,200,150,0.08), transparent 46%),
    rgba(10,10,10,0.94);
}

@media (max-width: 980px) {
  .app-body:not(.webapp-body) .app-topbar {
    top: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .app-body:not(.webapp-body) .app-hero,
  .app-body:not(.webapp-body) .auth-layout {
    grid-template-columns: 1fr;
  }

  .webapp-body .webapp-sidebar {
    width: 292px;
  }

  .webapp-body .app-topbar,
  .webapp-body .app-shell {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .app-body:not(.webapp-body) .app-shell,
  .app-body:not(.webapp-body) .auth-layout {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .app-body:not(.webapp-body) .app-panel,
  .app-body:not(.webapp-body) .auth-panel,
  .app-body:not(.webapp-body) .data-card,
  .app-body:not(.webapp-body) .fee-card,
  .app-body:not(.webapp-body) .calculator-card {
    padding: 22px;
  }

  .app-body:not(.webapp-body) .app-nav {
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}

/* ABWPAY signature web pass: sharper fintech motion, no generated photos. */
.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.site-loader span {
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--white), var(--green), transparent);
  filter: drop-shadow(0 0 16px rgba(0,200,150,0.8));
  animation: loaderSweep 2.2s cubic-bezier(.65,0,.35,1) infinite;
}

.cashflow-landing {
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 22%),
    linear-gradient(110deg, rgba(0,200,150,0.16), transparent 30%),
    #050505;
}

.cashflow-landing::after {
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(255,255,255,0.05) 13.1% 13.18%, transparent 13.3% 100%),
    linear-gradient(rgba(0,200,150,0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 76px 76px, 76px 76px;
  opacity: 0.52;
}

.cashflow-landing .site-header {
  left: 50%;
  right: auto;
  width: min(1320px, calc(100% - 32px));
  margin-top: 12px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  background: rgba(5,5,5,0.78);
  box-shadow: 0 18px 60px rgba(0,0,0,0.42);
}

.cashflow-landing .site-header.is-scrolled {
  border-color: rgba(0,200,150,0.30);
  background: rgba(5,5,5,0.92);
}

.cashflow-landing .desktop-nav,
.cashflow-landing .language-switch {
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
}

.cashflow-landing .desktop-nav a,
.cashflow-landing .language-switch button,
.cashflow-landing .button {
  border-radius: 8px;
}

.cashflow-landing .button-primary {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  box-shadow:
    0 20px 70px rgba(255,255,255,0.14),
    0 0 0 1px rgba(0,200,150,0.28) inset;
}

.cashflow-landing .button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(0,200,150,0.38), transparent);
  animation: buttonGlint 3.4s ease-in-out infinite;
}

.cashflow-landing .button-primary > * {
  position: relative;
  z-index: 1;
}

.cashflow-landing .button-primary:hover {
  background: var(--white);
  box-shadow:
    0 24px 86px rgba(0,200,150,0.22),
    0 0 0 1px rgba(0,200,150,0.45) inset;
}

.cashflow-landing .button-glass,
.cashflow-landing .button-ghost {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

.cashflow-landing .hero {
  min-height: 100svh;
  padding-top: 148px;
  border-bottom-color: rgba(255,255,255,0.08);
}

.cashflow-landing .hero::before {
  bottom: 28px;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.78), rgba(0,200,150,1), transparent);
}

.cashflow-landing h1 {
  text-transform: none;
  text-wrap: balance;
}

.cashflow-landing .eyebrow,
.cashflow-landing .section-kicker {
  color: var(--white);
}

.cashflow-landing .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0,200,150,0.8);
}

.cashflow-landing .hero-orbit {
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.11) 1px, transparent 1px),
    linear-gradient(rgba(0,200,150,0.16) 1px, transparent 1px),
    conic-gradient(from 90deg at 50% 50%, rgba(0,200,150,0.34), rgba(255,255,255,0.06), rgba(0,0,0,0.02), rgba(0,200,150,0.24));
  background-size: 48px 48px, 48px 48px, auto;
  box-shadow:
    0 44px 150px rgba(0,0,0,0.76),
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 120px rgba(0,200,150,0.28);
}

.cashflow-landing .hero-ring {
  border-radius: 8px;
}

.cashflow-landing .hero-core {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), transparent 42%),
    #050505;
}

.cashflow-landing .rail {
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0,200,150,0.16), rgba(255,255,255,0.06)),
    rgba(5,5,5,0.92);
}

.cashflow-landing .hero-metrics {
  border-radius: 8px;
}

.cashflow-landing .trust-band {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #030303;
}

.cashflow-landing .trust-band span {
  min-width: 210px;
  border-radius: 8px;
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.product-map-section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
}

.product-map-copy h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.96;
}

.product-map-copy p {
  max-width: 560px;
  font-size: 17px;
}

.route-console {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(0,200,150,0.12) 1px, transparent 1px),
    linear-gradient(145deg, rgba(0,200,150,0.15), transparent 44%),
    #070707;
  background-size: 44px 44px, 44px 44px, auto, auto;
  box-shadow: 0 34px 120px rgba(0,0,0,0.56);
}

.route-console::before,
.route-console::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.route-console::before {
  inset: 18px;
  border: 1px solid rgba(0,200,150,0.22);
  border-radius: 8px;
}

.route-console::after {
  left: -30%;
  top: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-16deg);
  animation: consoleSweep 5s ease-in-out infinite;
}

.route-node {
  position: absolute;
  z-index: 2;
  width: min(44%, 260px);
  min-height: 128px;
  padding: 18px;
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent 48%),
    rgba(4,4,4,0.88);
  box-shadow: 0 20px 70px rgba(0,0,0,0.44);
}

.route-node span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.route-node strong {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
}

.route-node small {
  color: var(--muted);
  font-weight: 800;
}

.node-mobile {
  left: 7%;
  top: 12%;
  animation: nodeFloat 4.6s ease-in-out infinite;
}

.node-wallet {
  right: 8%;
  top: 34%;
  animation: nodeFloat 4.8s ease-in-out infinite 280ms;
}

.node-global {
  left: 12%;
  bottom: 10%;
  animation: nodeFloat 5.1s ease-in-out infinite 520ms;
}

.node-receipt {
  right: 10%;
  bottom: 8%;
  width: min(38%, 220px);
  min-height: 112px;
  animation: nodeFloat 5.4s ease-in-out infinite 740ms;
}

.route-connector {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,200,150,0.08), var(--green), rgba(255,255,255,0.84), rgba(0,200,150,0.08));
  box-shadow: 0 0 26px rgba(0,200,150,0.75);
  transform-origin: left center;
  animation: connectorPulse 2.8s ease-in-out infinite;
}

.connector-one {
  left: 33%;
  top: 34%;
  width: 34%;
  transform: rotate(18deg);
}

.connector-two {
  left: 36%;
  bottom: 28%;
  width: 38%;
  transform: rotate(-13deg);
  animation-delay: 520ms;
}

.cashflow-landing .flow-rail,
.cashflow-landing .use-case-grid,
.cashflow-landing .security-grid,
.cashflow-landing .state-grid {
  border-radius: 8px;
  overflow: hidden;
}

.cashflow-landing .feature-card,
.cashflow-landing .flow-rail article,
.cashflow-landing .use-case-grid article,
.cashflow-landing .security-grid article,
.cashflow-landing .state-grid article,
.cashflow-landing .faq-list details,
.cashflow-landing .final-cta {
  border-radius: 8px;
}

.cashflow-landing .feature-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(180deg, rgba(0,200,150,0.10), transparent 68%),
    #050505;
}

.cashflow-landing .feature-card:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), transparent 34%),
    linear-gradient(180deg, rgba(0,200,150,0.18), transparent 70%),
    #050505;
}

.cashflow-landing .feature-motion,
.cashflow-landing .feature-card-wide .feature-motion {
  border-radius: 8px;
}

.cashflow-landing .app-section,
.cashflow-landing .operators-section,
.cashflow-landing .blueprint-section {
  border-radius: 8px;
}

.cashflow-landing .final-cta {
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.10), transparent 38%),
    linear-gradient(135deg, rgba(0,200,150,0.20), transparent 62%),
    #050505;
}

.app-body:not(.webapp-body) .app-topbar,
.app-body:not(.webapp-body) .app-panel,
.app-body:not(.webapp-body) .auth-panel,
.app-body:not(.webapp-body) .data-card,
.app-body:not(.webapp-body) .state-card,
.app-body:not(.webapp-body) .mini-card,
.app-body:not(.webapp-body) .fee-card,
.app-body:not(.webapp-body) .calculator-card,
.app-body:not(.webapp-body) .flow-step,
.app-body:not(.webapp-body) .rate-row,
.webapp-body .app-panel,
.webapp-body .data-card,
.webapp-body .state-card,
.webapp-body .mini-card {
  border-radius: 8px;
}

@keyframes loaderSweep {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(290%);
  }
}

@keyframes buttonGlint {
  0%,
  58% {
    transform: translateX(-115%);
  }
  100% {
    transform: translateX(115%);
  }
}

@keyframes consoleSweep {
  0%,
  35% {
    transform: translateX(0) skewX(-16deg);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateX(420%) skewX(-16deg);
    opacity: 0;
  }
}

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

@keyframes connectorPulse {
  0%,
  100% {
    opacity: 0.46;
    filter: saturate(0.9);
  }
  50% {
    opacity: 1;
    filter: saturate(1.4);
  }
}

@media (max-width: 1100px) {
  .product-map-section {
    grid-template-columns: 1fr;
  }

  .route-console {
    min-height: 470px;
  }
}

@media (max-width: 760px) {
  .cashflow-landing .site-header {
    width: 100%;
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    transform: none;
    left: 0;
  }

  .cashflow-landing .desktop-nav {
    display: none;
  }

  .cashflow-landing .header-actions {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  .cashflow-landing .header-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 10px;
  }

  .cashflow-landing .language-switch {
    margin-left: auto;
    order: 0;
  }

  .cashflow-landing .hero {
    padding-top: 138px;
  }

  .product-map-section {
    width: calc(100% - 32px);
    padding-top: 68px;
  }

  .route-console {
    min-height: 620px;
  }

  .route-node {
    width: calc(100% - 44px);
    min-height: 104px;
    left: 22px;
    right: auto;
  }

  .node-mobile {
    top: 24px;
  }

  .node-wallet {
    top: 174px;
  }

  .node-global {
    top: 324px;
    bottom: auto;
  }

  .node-receipt {
    top: 474px;
    bottom: auto;
  }

  .route-connector {
    left: 50%;
    width: 2px;
    height: 80px;
    transform: none;
  }

  .connector-one {
    top: 128px;
  }

  .connector-two {
    top: 282px;
  }

  .cashflow-landing .phone-stack {
    min-height: 740px;
    overflow: hidden;
  }

  .cashflow-landing .phone-stack figure {
    width: 72%;
    min-width: 0;
  }

  .cashflow-landing .phone-stack figure:nth-child(1) {
    left: 0;
  }

  .cashflow-landing .phone-stack figure:nth-child(2) {
    left: 20%;
  }

  .cashflow-landing .phone-stack figure:nth-child(3) {
    right: 0;
    top: 286px;
  }
}
