
:root {
  --bg: #09090B;
  --bg-2: #0C0C0F;
  --card: #111114;
  --card-2: #16161B;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --primary: #6C5CE7;
  --primary-600: #5b4bd6;
  --accent: #5DE2FF;
  --success: #36D399;
  --logo-a: #FFC56E;
  --logo-b: #FF8A5C;
  --logo-c: #8C5CFF;
  --logo-d: #4B6BFF;
  --text: #FFFFFF;
  --muted: #B8B8C5;
  --muted-2: #8A8A99;
  --grad: linear-gradient(120deg, #6C5CE7 0%, #5DE2FF 100%);
  --grad-soft: linear-gradient(120deg, rgba(108, 92, 231, 0.18), rgba(93, 226, 255, 0.18));
  --grad-text: linear-gradient(100deg, #C9C2FF 0%, #6C5CE7 38%, #5DE2FF 100%);
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 50px -12px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, 0.75);
  --glow-primary: 0 0 0 1px rgba(108, 92, 231, 0.35), 0 24px 70px -20px rgba(108, 92, 231, 0.55);
  --glow-accent: 0 0 0 1px rgba(93, 226, 255, 0.3), 0 24px 70px -20px rgba(93, 226, 255, 0.4);
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01";
  letter-spacing: -0.011em;
  overflow-x: hidden;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
}
input {
  font-family: inherit;
}
::selection {
  background: rgba(108, 92, 231, 0.4);
  color: #fff;
}
::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #26262e;
  border-radius: 999px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: #34343f;
}
h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
}
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
section {
  position: relative;
  padding-block: clamp(72px, 10vw, 136px);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.logo-mark {
  width: 30px;
  height: 30px;
  flex: none;
  filter: drop-shadow(0 3px 10px rgba(140, 92, 255, 0.45));
}
.logo-word {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
}
.logo--sm .logo-mark {
  width: 26px;
  height: 26px;
}
.logo--sm .logo-word {
  font-size: 19px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.01em;
  padding: 0 22px;
  height: 48px;
  border-radius: var(--r-md);
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn--primary {
  background: var(--grad);
  color: #0b0712;
  font-weight: 600;
  box-shadow: 0 10px 30px -8px rgba(108, 92, 231, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, #7d6dff, #6ee9ff);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -10px rgba(108, 92, 231, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--primary:hover::after {
  opacity: 1;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.btn--lg {
  height: 56px;
  padding: 0 30px;
  font-size: 16px;
  border-radius: var(--r-lg);
}
.btn--block {
  width: 100%;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.45);
  animation: ripple 0.6s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}
@keyframes ripple {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-weight: 500;
  transition: gap 0.25s var(--ease);
}
.link-arrow:hover {
  gap: 11px;
}
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 450;
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover {
  color: #fff;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__mobile-cta {
  display: none;
}
.nav__cta-login {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 450;
  padding: 0 6px;
  transition: color 0.2s;
}
.nav__cta-login:hover {
  color: #fff;
}
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}
.nav.open .nav__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.open .nav__burger span:nth-child(2) {
  opacity: 0;
}
.nav.open .nav__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.bg-fx .mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}
.mesh--1 {
  width: 620px;
  height: 620px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.55), transparent 70%);
  animation: drift1 22s var(--ease) infinite alternate;
}
.mesh--2 {
  width: 560px;
  height: 560px;
  top: -60px;
  right: -140px;
  background: radial-gradient(circle, rgba(93, 226, 255, 0.4), transparent 70%);
  animation: drift2 26s var(--ease) infinite alternate;
}
.mesh--3 {
  width: 520px;
  height: 520px;
  top: 38%;
  left: 40%;
  background: radial-gradient(circle, rgba(140, 92, 255, 0.28), transparent 70%);
  animation: drift3 30s var(--ease) infinite alternate;
}
.bg-fx .grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg-fx .grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.5;
}
@keyframes drift1 {
  to {
    transform: translate(120px, 80px) scale(1.15);
  }
}
@keyframes drift2 {
  to {
    transform: translate(-100px, 120px) scale(1.1);
  }
}
@keyframes drift3 {
  to {
    transform: translate(-140px, -60px) scale(1.2);
  }
}
.particles {
  position: absolute;
  inset: 0;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-120px);
    opacity: 0;
  }
}
.hero {
  padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 90px));
  padding-bottom: clamp(60px, 9vw, 120px);
  overflow: visible;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero__copy {
  max-width: 620px;
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  letter-spacing: -0.04em;
  margin: 22px 0 22px;
  font-weight: 600;
}
.hero h1 .gradient-text {
  display: inline;
}
.hero__sub {
  font-size: clamp(16px, 2.1vw, 20px);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 13.5px;
}
.hero__trust .sep {
  width: 1px;
  height: 16px;
  background: var(--line-strong);
}
.hero__trust strong {
  color: #fff;
  font-weight: 600;
}
.dash {
  position: relative;
  perspective: 1600px;
}
.dash__stage {
  position: relative;
  transform: rotateY(-16deg) rotateX(7deg) rotateZ(1deg);
  transform-style: preserve-3d;
  animation: dashFloat 8s ease-in-out infinite alternate;
}
@keyframes dashFloat {
  to {
    transform: rotateY(-12deg) rotateX(5deg) translateY(-14px);
  }
}
.panel {
  background: linear-gradient(160deg, rgba(22, 22, 27, 0.92), rgba(13, 13, 16, 0.92));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}
.dash__main {
  padding: 22px;
}
.dash__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash__top .label {
  font-size: 13px;
  color: var(--muted);
}
.dash__top .value {
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -0.03em;
  margin-top: 2px;
}
.dash__pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  background: rgba(54, 211, 153, 0.12);
  padding: 6px 11px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dash__pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.chart {
  height: 116px;
  position: relative;
  margin-bottom: 6px;
}
.chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.chart .area {
  fill: url(#chartFill);
}
.chart .line {
  fill: none;
  stroke: url(#chartStroke);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 6px 14px rgba(93, 226, 255, 0.45));
}
.chart .dot {
  fill: #fff;
  filter: drop-shadow(0 0 8px var(--accent));
}
.chart__labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted-2);
}
.float-card {
  position: absolute;
  padding: 14px 16px;
  border-radius: var(--r-lg);
}
.fc--pay {
  width: 230px;
  bottom: -34px;
  left: -48px;
  transform: translateZ(70px);
  background: linear-gradient(150deg, rgba(108, 92, 231, 0.95), rgba(74, 68, 140, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 60px -20px rgba(108, 92, 231, 0.7);
  animation: bob 5.5s ease-in-out infinite;
}
.fc--pay .fc__icon {
  background: rgba(255, 255, 255, 0.2);
}
.fc--credit {
  width: 200px;
  top: -30px;
  right: -44px;
  transform: translateZ(90px);
  background: linear-gradient(150deg, #1a1a22, #0e0e12);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  animation: bob 6.5s ease-in-out infinite 0.6s;
}
.fc__row {
  display: flex;
  align-items: center;
  gap: 11px;
}
.fc__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  flex: none;
}
.fc__icon svg {
  width: 19px;
  height: 19px;
}
.fc__t {
  font-size: 13px;
  font-weight: 600;
}
.fc__s {
  font-size: 11.5px;
  color: var(--muted);
}
.fc--credit .fc__chip {
  width: 30px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, #f4c97a, #c98f3a);
  margin-bottom: 14px;
}
.fc--credit .fc__num {
  font-size: 13px;
  color: #d9d9e2;
}
.fc--credit .fc__brand {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fc--pay .fc__amt {
  font-size: 22px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: -0.02em;
}
@keyframes bob {
  50% {
    transform: translateZ(70px) translateY(-16px);
  }
}
.fc--credit {
  animation-name: bobC;
}
@keyframes bobC {
  0%,
  100% {
    transform: translateZ(90px) translateY(0);
  }
  50% {
    transform: translateZ(90px) translateY(-18px);
  }
}
.dash__methods {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.dash__methods .m {
  flex: 1;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.dash__methods .m svg {
  width: 22px;
  height: 16px;
}
.marquee {
  padding-block: 40px;
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.marquee__label {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 26px;
}
.marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scrollX 32s linear infinite;
  opacity: 0.7;
}
.marquee__track span {
  font-size: 21px;
  font-weight: 600;
  color: #6b6b78;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@keyframes scrollX {
  to {
    transform: translateX(-50%);
  }
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  position: relative;
  padding: 32px;
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(108, 92, 231, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.feature:hover::before {
  opacity: 1;
}
.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--grad-soft);
  border: 1px solid var(--line-strong);
  position: relative;
}
.feature__icon svg {
  width: 26px;
  height: 26px;
}
.feature__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad);
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.4s;
  z-index: -1;
}
.feature:hover .feature__icon::after {
  opacity: 0.55;
}
.feature h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.feature p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}
.feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
}
.stats {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 16px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 18%;
  height: 64%;
  width: 1px;
  background: var(--line);
}
.stat__num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 650;
  letter-spacing: -0.04em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  color: var(--muted);
  font-size: 15px;
  margin-top: 4px;
}
.security__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.security__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sec-card {
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.sec-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--card-2);
}
.sec-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(54, 211, 153, 0.1);
  border: 1px solid rgba(54, 211, 153, 0.2);
}
.sec-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--success);
}
.sec-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.sec-card p {
  font-size: 13.5px;
  color: var(--muted);
}
.security__copy .eyebrow {
  margin-bottom: 22px;
}
.security__copy h2 {
  font-size: clamp(28px, 4.2vw, 44px);
  margin-bottom: 18px;
}
.security__copy p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 26px;
}
.security__list {
  display: grid;
  gap: 14px;
}
.security__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}
.security__list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(54, 211, 153, 0.15);
  display: grid;
  place-items: center;
  flex: none;
}
.security__list .check svg {
  width: 13px;
  height: 13px;
  color: var(--success);
}
.integration__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.code-window {
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #0d0d11, #0a0a0d);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.code-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.code-window__dots {
  display: flex;
  gap: 7px;
}
.code-window__dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}
.code-window__dots i:nth-child(1) {
  background: #ff5f57;
}
.code-window__dots i:nth-child(2) {
  background: #febc2e;
}
.code-window__dots i:nth-child(3) {
  background: #28c840;
}
.code-window__file {
  font-size: 12.5px;
  color: var(--muted-2);
  margin-left: 8px;
  font-family: "SFMono-Regular", "JetBrains Mono", Menlo, Consolas, monospace;
}
.code-window__copy {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: 0.2s;
}
.code-window__copy:hover {
  color: #fff;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}
.code-window pre {
  margin: 0;
  padding: 22px 24px;
  overflow-x: auto;
  font-family: "SFMono-Regular", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.8;
  letter-spacing: 0;
}
.code-window code {
  white-space: pre;
}
.tok-kw {
  color: #c792ff;
}
.tok-fn {
  color: #5DE2FF;
}
.tok-str {
  color: #36D399;
}
.tok-num {
  color: #ffb86c;
}
.tok-com {
  color: #5a5a66;
  font-style: italic;
}
.tok-prop {
  color: #b8b8c5;
}
.tok-punc {
  color: #6b6b78;
}
.integration__copy .eyebrow {
  margin-bottom: 22px;
}
.integration__copy h2 {
  font-size: clamp(28px, 4.2vw, 44px);
  margin-bottom: 18px;
}
.integration__copy p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 28px;
}
.integration__features {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}
.integration__features li {
  display: flex;
  gap: 14px;
}
.integration__features .ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex: none;
}
.integration__features .ic svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.integration__features h4 {
  font-size: 15.5px;
  margin-bottom: 2px;
}
.integration__features p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
.cta__card {
  position: relative;
  text-align: center;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 64px);
  border-radius: var(--r-2xl);
  background: linear-gradient(155deg, rgba(108, 92, 231, 0.16), rgba(93, 226, 255, 0.08) 60%, rgba(17, 17, 20, 0.4));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: var(--glow-primary);
}
.cta__card::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.45), transparent 70%);
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
}
.cta__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 75%);
}
.cta__card>* {
  position: relative;
  z-index: 1;
}
.cta__card h2 {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 16px;
}
.cta__card p {
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  max-width: 520px;
  margin: 0 auto 34px;
}
.cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted-2);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.footer {
  border-top: 1px solid var(--line);
  padding-block: 64px 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 18px 0 22px;
  max-width: 300px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: 0.25s var(--ease);
}
.footer__social a:hover {
  color: #fff;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}
.footer__social svg {
  width: 18px;
  height: 18px;
}
.footer__col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__col a {
  display: block;
  color: var(--muted);
  font-size: 14.5px;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer__col a:hover {
  color: #fff;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__bottom p {
  color: var(--muted-2);
  font-size: 13.5px;
}
.footer__badges {
  display: flex;
  gap: 18px;
  color: var(--muted-2);
  font-size: 13px;
}
.footer__badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer__badges svg {
  width: 15px;
  height: 15px;
  color: var(--success);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1020px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .dash {
    max-width: 460px;
    margin: 0 auto;
  }
  .security__grid,
  .integration__grid {
    grid-template-columns: 1fr;
  }
  .integration__grid .code-window {
    order: 2;
  }
  .features__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .nav__links,
  .nav__actions .nav__cta-login {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    z-index: 99;
    background: rgba(9, 9, 11, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px var(--gutter) 26px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s var(--ease);
    display: flex;
  }
  .nav.open .nav__menu {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav__menu a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    color: #fff;
  }
  .nav__mobile-cta {
    display: flex !important;
    margin-top: 18px;
  }
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat:nth-child(2)::after {
    display: none;
  }
  .stat::after {
    display: none !important;
  }
  .security__cards {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__trust .sep {
    display: none;
  }
  .dash__stage {
    transform: rotateY(-10deg) rotateX(6deg);
  }
  .fc--pay {
    left: -14px;
    bottom: -24px;
    width: 200px;
  }
  .fc--credit {
    right: -10px;
    width: 170px;
  }
}
@media (min-width: 761px) {
  .nav__menu {
    display: contents;
  }
}