:root {
  --color-primary: #00f6ff;
  --color-primary-strong: #00c6d4;
  --color-secondary: #050b16;
  --color-accent: #7c4dff;
  --color-aurora: #12b5ff;
  --color-magenta: #ff5fa2;
  --color-emerald: #42ffd2;
  --color-surface: rgba(9, 24, 51, 0.7);
  --color-surface-strong: rgba(9, 24, 51, 0.92);
  --color-background: #02060d;
  --color-text: #e5f6ff;
  --color-muted: rgba(218, 234, 255, 0.7);
  --shadow-soft: 0 25px 60px rgba(0, 10, 26, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1120px;
  --ease-out-cubic: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: radial-gradient(circle at top left, rgba(0, 246, 255, 0.2), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(124, 77, 255, 0.18), transparent 42%), var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.page-background__layer {
  position: absolute;
  inset: -20%;
  filter: blur(120px);
  opacity: 0.6;
  background: radial-gradient(circle, rgba(0, 246, 255, 0.35), transparent 60%);
  animation: drift 22s linear infinite;
}

.layer--aurora {
  background: radial-gradient(circle at 20% 20%, rgba(18, 181, 255, 0.55), transparent 62%);
  animation-duration: 32s;
}

.layer--nebula {
  background: radial-gradient(circle at 80% 40%, rgba(255, 95, 162, 0.4), transparent 60%);
  animation-duration: 38s;
  animation-direction: reverse;
}

.layer--grid {
  inset: 0;
  filter: none;
  opacity: 0.2;
  background: radial-gradient(circle at 50% 10%, rgba(0, 246, 255, 0.15), transparent 55%),
    linear-gradient(120deg, rgba(0, 246, 255, 0.08) 0%, rgba(124, 77, 255, 0.08) 100%);
  mask-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.7), transparent 80%);
  animation: pulse 12s ease-in-out infinite;
}

.page-background__glints {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-background__glints span {
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(66, 255, 210, 0.45), transparent 65%);
  filter: blur(40px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}

.page-background__glints span:nth-child(1) {
  top: 12%;
  left: -4%;
}

.page-background__glints span:nth-child(2) {
  top: 55%;
  right: -6%;
  animation-delay: 4s;
}

.page-background__glints span:nth-child(3) {
  bottom: -10%;
  left: 30%;
  animation-delay: 9s;
}

.page-background__glints span:nth-child(4) {
  top: 30%;
  right: 30%;
  animation-delay: 12s;
}

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

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

a:hover,
a:focus {
  color: var(--color-primary);
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 10, 22, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 246, 255, 0.15);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(0, 246, 255, 0.08);
  z-index: 1200;
  pointer-events: none;
  mix-blend-mode: screen;
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(120deg, rgba(0, 246, 255, 0.9), rgba(124, 77, 255, 0.9));
  transition: transform 0.4s var(--ease-out-cubic);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.branding__logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, rgba(0, 246, 255, 0.8), rgba(124, 77, 255, 0.6));
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 246, 255, 0.25);
  overflow: hidden;
}

.branding__logo img {
  width: 42px;
  height: auto;
}

.branding__name {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.branding__tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
}

.quick-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.quick-links__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: inherit;
  font-weight: 500;
  padding-bottom: 0.3rem;
  transition: color 0.35s var(--ease-out-cubic);
}

.quick-links__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 246, 255, 0.9), rgba(124, 77, 255, 0.8));
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.45s var(--ease-out-cubic), opacity 0.45s ease;
}

.quick-links__link:hover,
.quick-links__link:focus {
  color: var(--color-primary);
}

.quick-links__link:hover::after,
.quick-links__link:focus::after,
.quick-links__link.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.quick-links__link.is-active {
  color: var(--color-text);
  text-shadow: 0 0 24px rgba(0, 246, 255, 0.4);
}

.download-link {
  display: none;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-secondary);
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 246, 255, 0.25);
}

.hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__flare {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 246, 255, 0.32), transparent 65%);
  filter: blur(48px);
  mix-blend-mode: screen;
  animation: drift 18s ease-in-out infinite;
}

.hero__flare--one {
  top: -20%;
  left: -10%;
}

.hero__flare--two {
  bottom: -20%;
  right: -12%;
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.45), transparent 70%);
}

.hero__flare--three {
  top: 30%;
  left: 60%;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(255, 95, 162, 0.35), transparent 70%);
}

.hero__halo {
  position: absolute;
  inset: 10% 15%;
  border-radius: 50%;
  border: 1px solid rgba(0, 246, 255, 0.08);
  filter: blur(0.5px);
}

.hero__halo--inner {
  inset: 18% 25%;
  border-color: rgba(124, 77, 255, 0.12);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
}

.hero__content {
  backdrop-filter: blur(16px);
  background: linear-gradient(145deg, rgba(2, 12, 26, 0.65), rgba(2, 12, 26, 0.3));
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
}

.hero__content h1 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  line-height: 1.06;
  margin: 1rem 0 1.2rem;
  letter-spacing: -0.01em;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.chip--glow {
  background: linear-gradient(120deg, rgba(0, 246, 255, 0.5), rgba(66, 255, 210, 0.15));
  color: #051622;
  box-shadow: 0 10px 30px rgba(0, 246, 255, 0.35);
}

.chip--outline {
  color: var(--color-primary);
  border: 1px solid rgba(0, 246, 255, 0.4);
  background: rgba(2, 12, 26, 0.6);
}

.lead {
  font-size: 1.05rem;
  color: rgba(223, 245, 255, 0.82);
  margin-bottom: 2.1rem;
  max-width: 640px;
}

.hero__insights {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2.4rem;
}

.insight {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(5, 16, 34, 0.76);
  border: 1px solid rgba(0, 246, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  --card-rotate-x: 0deg;
  --card-rotate-y: 0deg;
  --card-translate-z: 0px;
  --card-translate-y: 0px;
  --card-scale: 1;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y))
    translateZ(var(--card-translate-z)) translateY(var(--card-translate-y)) scale(var(--card-scale));
  transition: transform 0.5s var(--ease-out-cubic), border-color 0.35s ease, box-shadow 0.35s ease;
}

.insight:hover {
  --card-translate-y: -4px;
  border-color: rgba(0, 246, 255, 0.45);
}

.insight__value {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #f6fdff;
}

.insight__label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 24px 45px rgba(0, 246, 255, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta.primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 30px 70px rgba(0, 246, 255, 0.45);
}

.cta.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 12, 26, 0.5);
  color: var(--color-text);
  font-weight: 600;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta.ghost:hover {
  border-color: rgba(0, 246, 255, 0.6);
  transform: translateY(-2px);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.store-buttons--hero {
  margin-bottom: 1.8rem;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(5, 16, 34, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--color-muted);
  font-size: 0.95rem;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.store:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 246, 255, 0.55);
  background: rgba(5, 16, 34, 0.95);
}

.interactive-ripple {
  position: absolute;
  top: var(--ripple-y, 50%);
  left: var(--ripple-x, 50%);
  width: var(--ripple-size, 0px);
  height: var(--ripple-size, 0px);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, rgba(0, 246, 255, 0.45), rgba(0, 246, 255, 0));
  pointer-events: none;
  animation: ripple-burst 0.9s var(--ease-out-cubic) forwards;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.store-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 246, 255, 0.16);
  align-items: center;
  justify-content: center;
}

.store-icon svg {
  fill: var(--color-primary);
  width: 20px;
  height: 20px;
}

.store-name {
  font-weight: 600;
  color: #fff;
}

.trust-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--color-muted);
}

.trust-highlights li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-highlights .bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 0 12px rgba(0, 246, 255, 0.6);
}

.hero__scroll {
  margin-top: 2.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(223, 245, 255, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.scroll-dot {
  width: 8px;
  height: 16px;
  border-radius: 999px;
  background: rgba(0, 246, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.85);
  animation: slide 2s infinite ease;
}

.hero__visual {
  position: relative;
}

[data-parallax] {
  --parallax-x: 0;
  --parallax-y: 0;
  transform: translate3d(calc(var(--parallax-x) * 1px), calc(var(--parallax-y) * 1px), 0);
  transition: transform 1s var(--ease-out-expo);
  will-change: transform;
}

[data-parallax].parallax-active {
  transition-duration: 0.3s;
}

.hero-sculpture {
  position: relative;
  width: min(520px, 90vw);
  margin: 0 auto;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-sculpture__core {
  position: absolute;
  inset: 10% 8% 15% 8%;
  z-index: 0;
  filter: blur(10px);
}

.hero-sculpture__orb {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 246, 255, 0.6), rgba(0, 246, 255, 0));
  top: 0;
  left: 15%;
  animation: float 9s ease-in-out infinite;
}

.hero-sculpture__orb--accent {
  width: 140px;
  height: 140px;
  top: 45%;
  right: 10%;
  left: auto;
  background: radial-gradient(circle, rgba(255, 95, 162, 0.55), rgba(255, 95, 162, 0));
  animation-delay: 2.4s;
}

.hero-sculpture__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 246, 255, 0.15);
  animation: revolve 16s linear infinite;
}

.hero-sculpture__ring--one {
  inset: 12% 8%;
}

.hero-sculpture__ring--two {
  inset: 22% 18%;
  animation-duration: 22s;
  border-color: rgba(124, 77, 255, 0.18);
}

.hero-device {
  position: relative;
  z-index: 1;
  transform: rotateY(-12deg) rotateX(6deg);
}

.hero-device__glow {
  position: absolute;
  inset: -20% -25% 18%;
  background: radial-gradient(circle, rgba(0, 246, 255, 0.4), rgba(0, 246, 255, 0));
  filter: blur(40px);
  z-index: -1;
}

.hero-device__frame {
  padding: 1.6rem;
  border-radius: 42px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(0, 246, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  transform: rotateY(-6deg) rotateX(2deg);
}

.hero-device__status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  align-items: center;
}

.signal {
  width: 6px;
  height: 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  animation: pulse 2s infinite ease-in-out;
}

.signal:nth-child(2) {
  animation-delay: 0.1s;
}

.signal:nth-child(3) {
  animation-delay: 0.2s;
}

.battery {
  width: 22px;
  height: 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
}

.battery::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.hero-device__screen {
  display: grid;
  gap: 1.05rem;
}

.screen-card {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(5, 14, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.card--primary {
  background: linear-gradient(160deg, rgba(0, 246, 255, 0.24), rgba(5, 11, 22, 0.9));
  border-color: rgba(0, 246, 255, 0.4);
}

.card--secondary {
  border-color: rgba(124, 77, 255, 0.45);
}

.card--accent {
  border-color: rgba(0, 246, 255, 0.25);
  background: rgba(5, 14, 26, 0.82);
}

.card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}

.card-value {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin: 0.4rem 0;
}

.card-meta,
.card-text {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.card-progress {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.card-progress span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.card-progress span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  transform: translateX(-100%);
  animation: slide 2.4s infinite ease;
  animation-delay: var(--delay);
}

.hero-float {
  position: absolute;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(2, 12, 26, 0.85);
  border: 1px solid rgba(0, 246, 255, 0.25);
  color: var(--color-text);
  font-size: 0.82rem;
  display: grid;
  gap: 0.25rem;
  box-shadow: 0 20px 45px rgba(0, 246, 255, 0.18);
  animation: float 7s ease-in-out infinite;
  backdrop-filter: blur(16px);
}

.hero-float__label {
  font-weight: 600;
  color: var(--color-primary);
}

.hero-float__detail {
  color: var(--color-muted);
}

.hero-float--savings {
  top: 6%;
  right: -6%;
}

.hero-float--instant {
  bottom: 12%;
  left: -8%;
  animation-delay: 2.2s;
}

.hero-float--kyc {
  bottom: 40%;
  right: -12%;
  animation-delay: 1.4s;
}

section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  inset: 10% 5% auto;
  height: 60%;
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(0, 246, 255, 0.08), rgba(124, 77, 255, 0.05));
  filter: blur(50px);
  opacity: 0.6;
  pointer-events: none;
}

.faq::before,
.cta-final::before,
.legal::before {
  content: none;
}

section .container {
  position: relative;
  z-index: 1;
}

section h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2.8rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(0, 246, 255, 0.14);
  border: 1px solid rgba(0, 246, 255, 0.35);
  color: var(--color-primary);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-lead {
  color: rgba(223, 245, 255, 0.78);
  margin: 0;
  max-width: 720px;
}

.problem-grid,
.solution-grid,
.steps-grid,
.feature-grid,
.trust-grid,
.testimonials,
.pricing-grid,
.visual-grid {
  display: grid;
  gap: 1.5rem;
}

.problem-grid,
.feature-grid,
.visual-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.solution-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(40px, 10vw, 120px);
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 246, 255, 0.45), rgba(124, 77, 255, 0.2));
  opacity: 0.6;
}

.steps-grid > * {
  position: relative;
  padding-left: clamp(1rem, 4vw, 2.8rem);
}

.steps-grid > *::before {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: clamp(-0.4rem, calc(-3vw), -1rem);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 0 0 6px rgba(0, 246, 255, 0.12);
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.problem-card,
.flow-card,
.benefit-card,
.step-card,
.feature-card,
.pricing-card,
.visual-card {
  position: relative;
  background: linear-gradient(160deg, rgba(7, 18, 34, 0.82), rgba(7, 18, 34, 0.6));
  border-radius: var(--radius-md);
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 25px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  overflow: hidden;
  --card-rotate-x: 0deg;
  --card-rotate-y: 0deg;
  --card-translate-z: 0px;
  --card-translate-y: 0px;
  --card-scale: 1;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y))
    translateZ(var(--card-translate-z)) translateY(var(--card-translate-y)) scale(var(--card-scale));
  transition: transform 0.6s var(--ease-out-cubic), border-color 0.45s ease, box-shadow 0.45s ease;
}

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

[data-tilt].tilt-active {
  --card-rotate-x: var(--tilt-x);
  --card-rotate-y: var(--tilt-y);
  --card-translate-z: 18px;
  box-shadow: 0 38px 70px rgba(0, 246, 255, 0.22);
}

.problem-card::after,
.flow-card::after,
.benefit-card::after,
.step-card::after,
.feature-card::after,
.pricing-card::after,
.visual-card::after {
  content: '';
  position: absolute;
  inset: -40% -40% auto;
  height: 60%;
  background: linear-gradient(120deg, rgba(0, 246, 255, 0.22), rgba(124, 77, 255, 0.15));
  opacity: 0;
  transform: rotate(12deg);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.problem-card:hover,
.flow-card:hover,
.benefit-card:hover,
.step-card:hover,
.feature-card:hover,
.pricing-card:hover,
.visual-card:hover {
  --card-translate-y: -10px;
  --card-scale: 1.01;
  border-color: rgba(0, 246, 255, 0.45);
  box-shadow: 0 32px 60px rgba(0, 246, 255, 0.18);
}

.problem-card:hover::after,
.flow-card:hover::after,
.benefit-card:hover::after,
.step-card:hover::after,
.feature-card:hover::after,
.pricing-card:hover::after,
.visual-card:hover::after {
  opacity: 0.4;
  transform: rotate(0deg);
}

.problem::before {
  inset: 8% 15% auto;
  height: 55%;
  background: linear-gradient(135deg, rgba(255, 95, 162, 0.12), rgba(0, 246, 255, 0.08));
}

.solution::before {
  inset: 6% 10% auto;
  height: 70%;
  background: radial-gradient(circle at 20% 20%, rgba(0, 246, 255, 0.12), transparent 65%),
    radial-gradient(circle at 80% 40%, rgba(124, 77, 255, 0.15), transparent 62%);
}

.feature-showcase::before {
  inset: 5% 18% auto;
  height: 65%;
  background: linear-gradient(160deg, rgba(0, 246, 255, 0.1), rgba(66, 255, 210, 0.08));
}

.pricing::before {
  inset: 6% 12% auto;
  height: 75%;
  background: linear-gradient(140deg, rgba(124, 77, 255, 0.12), rgba(0, 246, 255, 0.1));
}

.visual-language::before {
  inset: 8% 12% auto;
  height: 70%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 246, 255, 0.12), transparent 65%),
    radial-gradient(circle at 80% 60%, rgba(255, 95, 162, 0.12), transparent 60%);
}

.trust::before {
  inset: 12% 25% auto;
  height: 55%;
  background: linear-gradient(120deg, rgba(0, 246, 255, 0.09), rgba(124, 77, 255, 0.07));
}

.feature-icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(0, 246, 255, 0.32), rgba(124, 77, 255, 0.2));
  margin-bottom: 1rem;
  box-shadow: 0 15px 28px rgba(0, 246, 255, 0.24);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--color-primary);
}

.step-number {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.15rem;
}

.flow-card ol {
  padding-left: 1.1rem;
  color: var(--color-muted);
}

.flow-card--highlight {
  background: linear-gradient(160deg, rgba(0, 246, 255, 0.14), rgba(7, 18, 34, 0.9));
  border-color: rgba(0, 246, 255, 0.4);
}

.benefit-card h3,
.feature-card h3,
.step-card h3,
.pricing-card h3,
.visual-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.benefit-card p,
.feature-card p,
.step-card p,
.visual-card p {
  color: var(--color-muted);
}

.security {
  background: linear-gradient(160deg, rgba(0, 246, 255, 0.08), rgba(7, 18, 34, 0.8));
}

.security__grid {
  display: grid;
  gap: 2.5rem;
}

.security-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.8rem;
  color: var(--color-muted);
}

.security-list li::before {
  content: '◉';
  color: var(--color-primary);
  margin-right: 0.8rem;
}

.security__card {
  background: rgba(3, 10, 22, 0.9);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 246, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 246, 255, 0.15);
}

.security__card ul {
  padding-left: 1.1rem;
  color: var(--color-muted);
}

.security__badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 246, 255, 0.18);
  color: var(--color-primary);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  position: relative;
  padding-top: 2.2rem;
}

.pricing-card h3 {
  font-size: 1.3rem;
}

.pricing-value {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin: 1rem 0 0.4rem;
}

.pricing-note {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--color-muted);
}

.pricing-card ul li::before {
  content: '▹';
  color: var(--color-primary);
  margin-right: 0.6rem;
}

.pricing-card--highlight {
  background: linear-gradient(160deg, rgba(0, 246, 255, 0.18), rgba(7, 18, 34, 0.92));
  border-color: rgba(0, 246, 255, 0.5);
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(124, 77, 255, 0.2);
  color: var(--color-primary);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-language {
  background: linear-gradient(160deg, rgba(7, 18, 34, 0.92), rgba(2, 10, 22, 0.95));
}

.trust-header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
  background: rgba(7, 18, 34, 0.85);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.stat {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 2rem;
  margin: 0;
  color: var(--color-primary);
}

.label {
  margin: 0.4rem 0 0;
  color: var(--color-muted);
}

.testimonials {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.testimonials article {
  background: rgba(7, 18, 34, 0.8);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
}

.author {
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.badges span {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(0, 246, 255, 0.1);
  border: 1px solid rgba(0, 246, 255, 0.2);
  color: var(--color-primary);
  font-size: 0.85rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq details {
  background: rgba(7, 18, 34, 0.85);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
}

.faq p {
  margin-top: 0.75rem;
  color: var(--color-muted);
}

.cta-final {
  background: radial-gradient(circle at 10% 20%, rgba(0, 246, 255, 0.12), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(124, 77, 255, 0.16), transparent 60%);
}

.cta-card {
  background: rgba(7, 18, 34, 0.85);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  display: grid;
  gap: 1.8rem;
  border: 1px solid rgba(0, 246, 255, 0.18);
  box-shadow: 0 25px 50px rgba(0, 246, 255, 0.18);
}

.legal {
  background: linear-gradient(170deg, rgba(0, 246, 255, 0.08), rgba(2, 8, 18, 0.95));
}

.legal__wrapper {
  display: grid;
  gap: 2rem;
}

.legal__columns {
  display: grid;
  gap: 2rem;
}

.legal-document {
  background: rgba(5, 14, 26, 0.9);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid rgba(0, 246, 255, 0.24);
  box-shadow: 0 35px 70px rgba(0, 246, 255, 0.15);
}

.legal-document h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.6rem;
}

.legal-document h4 {
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.legal-document p,
.legal-document ul {
  color: var(--color-muted);
}

.legal-document ul {
  padding-left: 1.2rem;
}

.site-footer {
  background: rgba(0, 4, 10, 0.95);
  padding: 2.2rem 0;
  border-top: 1px solid rgba(0, 246, 255, 0.18);
}

.site-footer .container {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.animate-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

[data-animate="fade-in"].animate-ready {
  transform: translateY(0) scale(0.96);
}

[data-animate="fade-in"].animate-ready.is-visible {
  transform: scale(1);
}

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

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(4%, -3%, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes ripple-burst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.45;
  }
  60% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  [data-parallax],
  .scroll-progress__bar {
    transition: none !important;
  }

  [data-tilt] {
    transition: none !important;
  }

  .interactive-ripple {
    animation: none !important;
  }
}

@keyframes revolve {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.02);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media (min-width: 768px) {
  .quick-links {
    display: flex;
  }

  .download-link {
    display: inline-flex;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
  }

  .hero__actions {
    gap: 1.4rem;
  }

  .store-buttons {
    flex-wrap: nowrap;
  }

  .store-buttons .store {
    min-width: 200px;
  }

  .steps-grid::before {
    left: 120px;
  }

  .steps-grid > * {
    padding-left: 3rem;
  }

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

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

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

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .hero__content {
    padding: 1.6rem;
  }
}

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .store-buttons .store {
    width: 100%;
  }

  .steps-grid::before {
    display: none;
  }

  .steps-grid > * {
    padding-left: 1.2rem;
  }

  .steps-grid > *::before {
    left: -0.2rem;
  }
}

@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;
  }
}
