/* ==========================================================================
   VOLTICA — style.css
   Shared stylesheet for all pages. Tokens derived from Voltica Design Tokens.
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --bg: #070b14;
  --panel: #0e1525;
  --line: rgba(140, 160, 200, 0.12);
  --line-strong: rgba(140, 160, 200, 0.22);
  --ink: #f1f5f9;
  --ink-dim: #9aa7bd;
  --ink-faint: #5c6573;
  --em: #0046ff; /* primary brand blue */
  --em-bright: #2f6bff; /* hover */
  --sky: #1ea1ff; /* secondary / active UI */
  --cyan: #64d9ff; /* hover cyan */
  --gold: #e9b84a; /* premium */
  --gold-soft: #ffd875;
  --up-soft: #3ddc84;
  --down-soft: #ff6b6b;
  --radius: 18px;
  --maxw: 1240px;
  --sans: "Inter", system-ui, sans-serif;
  --display: "Sora", "Inter", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* ---------- RESET ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  z-index: -2;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(820px 520px at 12% -4%, rgba(0, 70, 255, 0.18), transparent 60%),
    radial-gradient(720px 520px at 92% 8%, rgba(30, 161, 255, 0.12), transparent 55%),
    radial-gradient(900px 700px at 78% 96%, rgba(233, 184, 74, 0.06), transparent 60%);
  content: "";
}
body::after {
  z-index: -2;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(140, 160, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 160, 200, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.4;
}

section {
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
section {
  position: relative;
}

/* ---------- TYPE SCALE ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  color: var(--sky);
  font-weight: 500;
  font-size: 0.72rem;
  font-family: var(--mono);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--sky), transparent);
  content: "";
}
.eyebrow.no-rule::before {
  display: none;
}
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.08;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
h2.section-title {
  margin: 0.5rem 0 0.9rem;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
}
.lead {
  max-width: 70%;
  color: var(--ink-dim);
  font-size: 1.06rem;
}
.lead.hero-lead-accent {
  width: 100%;
  max-width: 100%;
}
.accent {
  color: var(--sky);
}

/* ---------- NAVBAR ---------- */
.nav {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease,
    padding 0.35s ease;
}
.nav.scrolled {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(7, 11, 20, 0.78);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 1.18rem;
  font-family: var(--display);
  letter-spacing: 0.02em;
}
.brand img {
  width: auto;
  height: 40px;
  transform: scale(1.3);
  filter: drop-shadow(0 0 12px rgba(30, 161, 255, 0.35));
}
.brand b {
  font-weight: 800;
}
.brand .dot {
  color: var(--sky);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--ink-dim);
  font-weight: 500;
  font-size: 0.86rem;
  white-space: nowrap;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover {
  background: rgba(140, 160, 200, 0.07);
  color: var(--ink);
}
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  display: block;
  height: 2px;
  margin-top: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  content: "";
}
.nav-cta {
  padding: 9px 18px;
  border: 1px solid rgba(120, 160, 255, 0.4);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--em), var(--em-bright));
  box-shadow: 0 6px 22px -8px rgba(0, 70, 255, 0.7);
  color: #fff;
  font-weight: 600;
  font-size: 0.86rem;
  font-family: var(--sans);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -8px rgba(0, 70, 255, 0.85);
}
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  gap: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(20, 28, 46, 0.5);
  cursor: pointer;
}
.burger span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile drawer */
.drawer {
  display: flex;
  z-index: 99;
  position: fixed;
  flex-direction: column;
  width: min(82vw, 340px);
  inset: 0 0 0 auto;
  padding: 96px 26px 30px;
  overflow-y: auto;
  gap: 6px;
  transform: translate3d(100%, 0, 0);
  border-left: 1px solid var(--line);
  background: rgb(10, 15, 28);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.drawer.open {
  transform: translate3d(0, 0, 0);
}
.drawer a {
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--ink-dim);
  font-weight: 500;
  font-size: 0.98rem;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.drawer a:hover,
.drawer a.active {
  border-color: var(--line);
  background: rgba(140, 160, 200, 0.07);
  color: var(--ink);
}
.drawer .nav-cta {
  margin-top: 14px;
  text-align: center;
}
.scrim {
  z-index: 98;
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 12, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.scrim.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  gap: 0.55em;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.93rem;
  font-family: var(--sans);
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.btn .arr {
  transition: transform 0.25s;
}
.btn:hover .arr {
  transform: translateX(3px);
}
.btn-primary {
  border-color: rgba(120, 160, 255, 0.45);
  background: linear-gradient(135deg, var(--em), var(--em-bright));
  box-shadow: 0 10px 30px -10px rgba(0, 70, 255, 0.7);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -10px rgba(0, 70, 255, 0.85);
}
.btn-ghost {
  border-color: var(--line-strong);
  background: rgba(140, 160, 200, 0.06);
  color: var(--ink);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--sky);
  background: rgba(30, 161, 255, 0.08);
  color: #fff;
}
.btn-gold {
  border-color: rgba(255, 216, 117, 0.5);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 30px -10px rgba(233, 184, 74, 0.6);
  color: #1a1406;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -10px rgba(233, 184, 74, 0.75);
}
.btn-sm {
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 0.84rem;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 150px 0 30px;
}
.page-hero .lead {
  margin-top: 18px;
}
.page-hero#about {
  background: url("../images/AboutUsTopBG.png") center/cover no-repeat !important;
}
.breadcrumb {
  margin-bottom: 8px;
  color: var(--ink-faint);
  font-size: 0.74rem;
  font-family: var(--mono);
  letter-spacing: 0.06em;
}
.breadcrumb a {
  color: var(--ink-dim);
}
.breadcrumb a:hover {
  color: var(--sky);
}

/* ---------- HOME HERO ---------- */
.hero {
  position: relative;
  padding: 100px 0 70px;
  overflow: clip;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding-right: 0;
  padding-left: max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
  gap: 54px;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
}
.hero h1 .hl {
  background: linear-gradient(120deg, #fff 10%, var(--sky) 55%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  margin: 22px 0 8px;
  font-size: 1.12rem;
}
.hero-lead-accent {
  background: linear-gradient(120deg, var(--sky) 0%, var(--cyan) 72%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--sky);
  font-weight: 600;
  -webkit-text-fill-color: transparent;
}
.hero-points {
  display: grid;
  margin: 22px 0 30px;
  gap: 11px;
  list-style: none;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-dim);
  font-size: 0.98rem;
}
.hero-points li::before {
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  transform: rotate(45deg);
  border-radius: 2px;
  background: var(--sky);
  box-shadow: 0 0 10px var(--sky);
  content: "";
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-visual {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
/* ---------- STAGE ANIMATION ---------- */
.stage {
  position: relative;
  width: 680px;
  height: 560px;
  overflow: visible;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}
.groundlight {
  position: absolute;
  bottom: 14%;
  left: 50%;
  width: 380px;
  height: 100px;
  margin-left: -190px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(90, 160, 240, 0.45), rgba(90, 160, 240, 0) 70%);
  animation: pulse 4.5s ease-in-out infinite;
  filter: blur(20px);
}
.phone {
  z-index: 10;
  position: absolute;
  top: 26%;
  left: 44%;
  width: 360px;
  transform: translate(-50%, -53%) rotate(8deg);
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 45px 60px rgba(30, 50, 80, 0.28));
}
@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -53%) rotate(8deg) translateY(0);
  }
  50% {
    transform: translate(-50%, -53%) rotate(8deg) translateY(-16px);
  }
}
.bg-deco {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
.wave {
  fill: none;
  stroke-linecap: round;
  filter: blur(0.4px);
}
.wave1 {
  animation: driftA 9s ease-in-out infinite;
}
.wave2 {
  animation: driftB 11s ease-in-out infinite;
}
.wave3 {
  animation: driftA 7.5s ease-in-out infinite;
}
@keyframes driftA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes driftB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.node {
  animation: nodepulse 3s ease-in-out infinite;
}
@keyframes nodepulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.candle {
  transform-origin: bottom;
  animation: candlerise 5s ease-in-out infinite;
}
@keyframes candlerise {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.04);
  }
}
.ring {
  position: absolute;
  top: 70%;
  left: 50%;
  border-style: solid;
  border-radius: 50%;
  border-color: transparent;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  mix-blend-mode: screen;
  filter: blur(18px);
}
.ring1 {
  width: 480px;
  height: 480px;
  margin-top: -240px;
  margin-left: -240px;
  border-width: 20px;
  border-top-color: rgba(90, 160, 240, 0.55);
  border-right-color: rgba(120, 180, 250, 0.25);
  animation-duration: 9s;
  animation-name: spinRingA;
}
.ring2 {
  width: 600px;
  height: 600px;
  margin-top: -300px;
  margin-left: -300px;
  border-width: 16px;
  border-bottom-color: rgba(140, 190, 250, 0.4);
  animation-duration: 14s;
  animation-name: spinRingB;
}
@keyframes spinRingA {
  from {
    transform: rotateX(78deg) rotate(0deg);
  }
  to {
    transform: rotateX(78deg) rotate(360deg);
  }
}
@keyframes spinRingB {
  from {
    transform: rotateX(78deg) rotate(360deg);
  }
  to {
    transform: rotateX(78deg) rotate(0deg);
  }
}

/* live ticker */
.ticker {
  position: relative;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(14, 21, 37, 0.7);
}
.ticker::before,
.ticker::after {
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  content: "";
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--panel), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--panel), transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: slide 38s linear infinite;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}
.tk {
  display: flex;
  align-items: center;
  padding: 14px 26px;
  gap: 11px;
  border-right: 1px solid var(--line);
  font-family: var(--mono);
}
.tk .pair {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.tk .px {
  color: var(--ink-dim);
  font-size: 0.82rem;
}
.tk .chg {
  padding: 2px 7px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.76rem;
}
.tk .up {
  background: rgba(22, 163, 74, 0.12);
  color: var(--up-soft);
}
.tk .down {
  background: rgba(220, 38, 38, 0.12);
  color: var(--down-soft);
}

/* ---------- SECTION SHELL ---------- */
.sec {
  padding: 96px 0;
}
.sec.tight {
  padding: 48px 0;
}
.sec-head {
  width: 100%;
  margin-bottom: 48px;
}
.about-section-title {
  margin-top: 30px !important;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  text-align: center;
}
.sec-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.sec-head.center .eyebrow::before {
  display: none;
}
.sec-soft {
  background: linear-gradient(180deg, transparent, rgba(0, 30, 90, 0.12), transparent);
}

/* ---------- CARDS / GRIDS ---------- */
.card {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 26, 46, 0.85), rgba(12, 18, 32, 0.85));
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.card::after {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(30, 161, 255, 0.35), transparent 45%);
  content: "";
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 50px -22px rgba(0, 30, 90, 0.8);
}
.card:hover::after {
  opacity: 1;
}
.card.flat:hover {
  transform: none;
}
.card-gold {
  border-color: rgba(233, 184, 74, 0.3);
  background: linear-gradient(135deg, rgba(233, 184, 74, 0.14), rgba(12, 18, 32, 0.85));
}
.card-blue {
  background: linear-gradient(140deg, rgba(0, 42, 120, 0.4), rgba(12, 18, 32, 0.85));
}
.card h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}
.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(100, 217, 255, 0.35);
  border-radius: 10px;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.num-divider {
  width: 32px;
  height: 2px;
  margin-bottom: 18px;
  border-radius: 2px;
  background: var(--sky);
  opacity: 0.7;
}
.ico-feat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid #c4e4f3;
  border-radius: 16px;
  background: linear-gradient(145deg, #e4f6fe, #ffffff);
}
.ico-feat img {
  width: auto;
  height: auto;
  transform: scale(1.2);
  border-radius: 10px;
  filter: drop-shadow(0 0 8px rgba(30, 161, 255, 0.38));
}
.card:hover .ico-feat {
  transform: translateY(-2px) scale(1.06);
  border-color: var(--sky);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.card p {
  color: var(--ink-dim);
  font-size: 0.95rem;
}
.card .cta-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  gap: 0.4em;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--sans);
}
.card .cta-link .arr {
  transition: transform 0.25s;
}
.card:hover .cta-link .arr {
  transform: translateX(3px);
}

/* icon tile + hover micro-interaction */
.ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: radial-gradient(circle at 35% 25%, rgba(30, 161, 255, 0.16), rgba(14, 21, 37, 0.4));
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.ico img {
  width: auto;
  height: auto;
  transform: scale(1.2);
  border-radius: 10px;
  filter: drop-shadow(0 0 10px rgba(30, 161, 255, 0.48));
  transition: transform 0.3s ease;
}
.card:hover .ico {
  transform: translateY(-2px) scale(1.06);
  border-color: var(--sky);
  box-shadow: 0 0 22px -4px rgba(30, 161, 255, 0.5);
}
.card:hover .ico img {
  transform: scale(1.08);
}
.ico-gold {
  border-color: rgba(233, 184, 74, 0.4);
  background: radial-gradient(circle at 35% 25%, rgba(233, 184, 74, 0.25), rgba(14, 21, 37, 0.4));
}

.grid {
  display: grid;
  gap: 20px;
}
.g2 {
  grid-template-columns: repeat(2, 1fr);
}
.g3 {
  grid-template-columns: repeat(3, 1fr);
}
.g4 {
  grid-template-columns: repeat(4, 1fr);
}
.stretch {
  align-items: stretch;
}

/* trust bar */
#trust.sec.tight {
  padding: 96px 0 116px;
}
#trust .wrap {
  max-width: 1560px;
}
.trustbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.trust-item {
  display: grid;
  position: relative;
  grid-template-rows: 270px 72px auto;
  align-content: start;
  min-height: 540px;
  padding: 34px 32px 42px;
  overflow: hidden;
  border: 1px solid rgba(100, 217, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(280px 220px at 50% 24%, rgba(30, 161, 255, 0.22), transparent 72%),
    linear-gradient(180deg, rgba(17, 26, 46, 0.92), rgba(10, 15, 28, 0.88));
  box-shadow: 0 18px 48px -38px rgba(30, 161, 255, 0.8);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s,
    box-shadow 0.4s;
  --mx: 50%;
  --my: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  isolation: isolate;
}
.trust-item::before {
  z-index: 0;
  position: absolute;
  inset: 0;
  background: radial-gradient(
    380px circle at var(--mx) var(--my),
    rgba(100, 217, 255, 0.13),
    transparent 60%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.trust-item:hover::before {
  opacity: 1;
}
.trust-item::after {
  z-index: 1;
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.64) 38%, rgba(7, 11, 20, 0.9));
  content: "";
  pointer-events: none;
}
.trust-item:hover {
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateY(-8px);
  border-color: rgba(100, 217, 255, 0.38);
  box-shadow:
    0 32px 64px -28px rgba(30, 161, 255, 0.95),
    0 0 0 1px rgba(100, 217, 255, 0.12) inset;
}
.trust-item:hover .trust-icon img {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 28px rgba(30, 161, 255, 0.28));
}
.trust-icon img {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.4s ease;
}
.trust-icon {
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 270px;
  margin: 0 0 26px;
}
.trust-icon img {
  width: 100%;
  max-width: 360px;
  max-height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.36));
}
.trust-icon-wide img {
  max-width: 390px;
  max-height: 246px;
}
.trust-item h4 {
  display: flex;
  z-index: 2;
  position: relative;
  align-items: flex-start;
  align-self: start;
  margin: 0;
  color: var(--sky);
  font-size: clamp(1.18rem, 1.28vw, 1.48rem);
  line-height: 1.16;
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-item p {
  z-index: 2;
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.62;
}

/* problem + solution */
#problem {
  overflow: hidden;
  background:
    radial-gradient(920px 500px at 50% 0%, rgba(30, 161, 255, 0.1), transparent 64%), #ffffff;
  color: #061a34;
}
#problem::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 161, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 161, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  opacity: 0.38;
  pointer-events: none;
}
#problem .wrap {
  position: relative;
  max-width: 1440px;
}
.problem-split {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.problem-split::before {
  display: none;
}
.problem-panel {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 780px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(30, 161, 255, 0.18);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 30px 80px -58px rgba(11, 73, 126, 0.58);
}
.problem-panel-market {
  background: #ffffff;
}
.problem-panel-solution {
  background: #ffffff;
}
.problem-panel::after {
  display: none;
}
.problem-visual {
  z-index: 1;
  position: relative;
  height: 345px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(30, 161, 255, 0.16);
  border-radius: 0;
  background:
    radial-gradient(520px 280px at 50% 42%, rgba(30, 161, 255, 0.28), transparent 70%),
    radial-gradient(420px 260px at 78% 20%, rgba(128, 74, 255, 0.16), transparent 72%),
    linear-gradient(180deg, #061026, #0b172e 62%, #09111f);
  box-shadow: none;
}
.problem-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.4));
}
.problem-copy {
  z-index: 1;
  position: relative;
  max-width: none;
  padding: 52px clamp(30px, 4vw, 58px) 62px;
}
.problem-panel-solution .problem-copy {
  margin-left: 0;
}
.problem-kicker {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 14px;
  color: #0877bd;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.08vw, 1.08rem);
  font-family: var(--mono);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.problem-kicker::before {
  width: 42px;
  height: 2px;
  background: #1ea1ff;
  content: "";
}
.problem-name {
  margin-bottom: 30px;
  color: #0877bd;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.problem-statement {
  margin-bottom: 28px;
  color: #061a34;
  font-weight: 700;
  font-size: clamp(1.55rem, 2.4vw, 2.55rem);
  line-height: 1.12;
  font-family: var(--display);
}
.problem-body {
  color: #62748e;
  font-size: clamp(1.02rem, 1.18vw, 1.2rem);
  line-height: 1.75;
}

/* product ecosystem */
#ecosystem .wrap {
  max-width: 1460px;
}
#ecosystem .sec-head {
  max-width: 1120px;
}
#ecosystem .section-title {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.08;
}
#ecosystem .section-title .accent {
  display: block;
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: 34px;
}
.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -6px -4px 26px;
  overflow: hidden;
  border: 1px solid rgba(100, 217, 255, 0.12);
  background:
    radial-gradient(380px 200px at 50% 55%, rgba(30, 161, 255, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(17, 26, 46, 0.62), rgba(7, 11, 20, 0.2));
}
.product-visual img,
.product-visual {
  width: 100%;
  border-radius: 15px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.36));
}
.product-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.38rem, 1.8vw, 1.75rem);
}
.product-card p {
  font-size: 1.03rem;
  line-height: 1.72;
}
.product-card .cta-link {
  margin-top: auto;
  padding-top: 24px;
  font-size: 1rem;
}

/* ---------- MOMO CONSTELLATION ---------- */
.constellation {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  margin: 10px auto 30px;
}
.node {
  display: flex;
  z-index: 2;
  position: absolute;
  top: var(--y);
  left: var(--x);
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  text-align: center;
}
.card.agent h3 {
  font-size: 1.05rem;
}
.card.agent h3 em {
  color: var(--sky);
  font-style: normal;
  font-weight: 500;
  font-size: 0.85em;
  font-family: var(--mono);
}

/* ---------- EXECUTION FLOW ---------- */
.flow {
  display: grid;
  gap: 16px;
}

/* ---------- FX CHIPS ---------- */
.fx-pairs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
  gap: 10px;
}
.fx-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(14, 21, 37, 0.7);
  color: var(--ink-dim);
  font-size: 0.86rem;
  font-family: var(--mono);
  transition:
    transform 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.fx-chip:hover {
  transform: translateY(-2px);
  border-color: var(--sky);
  color: var(--ink);
}
.fx-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--up-soft);
  box-shadow: 0 0 8px var(--up-soft);
}
.fx-chip.minor .dot {
  background: var(--sky);
  box-shadow: 0 0 8px var(--sky);
}

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 30px;
}
.form {
  display: grid;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  color: var(--ink-dim);
  font-weight: 500;
  font-size: 0.82rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(10, 15, 28, 0.7);
  color: var(--ink);
  font-size: 0.95rem;
  font-family: var(--sans);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sky);
  outline: none;
  background: rgba(14, 21, 37, 0.9);
  box-shadow: 0 0 0 3px rgba(30, 161, 255, 0.15);
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239AA7BD' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-position: right 15px center;
  background-repeat: no-repeat;
}
.form-note {
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 0.78rem;
}
.inquiry-list {
  display: grid;
  gap: 12px;
}
.inq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(14, 21, 37, 0.5);
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
}
.inq:hover {
  transform: translateX(4px);
  border-color: var(--line-strong);
  background: rgba(14, 21, 37, 0.8);
}
.inq span {
  font-weight: 500;
  font-size: 0.94rem;
}
.inq a {
  color: var(--sky);
  font-weight: 600;
  font-size: 0.84rem;
  white-space: nowrap;
}

/* ---------- RISK / COMPLIANCE ---------- */
.risk-warning {
  display: flex;
  align-items: flex-start;
  margin-top: 24px;
  padding: 24px 26px;
  gap: 16px;
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-radius: 14px;
  background: rgba(217, 119, 6, 0.07);
}
.risk-warning .badge {
  flex: none;
  padding: 6px 10px;
  border: 1px solid rgba(233, 184, 74, 0.4);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.7rem;
  font-family: var(--mono);
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.risk-warning p {
  color: var(--ink-dim);
  font-size: 0.92rem;
}

/* ---------- FOOTER ---------- */
.footer {
  margin-top: 60px;
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  background: white;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  margin-bottom: 44px;
  gap: 30px;
}
.footer-brand .brand {
  margin-bottom: 14px;
}
.footer-brand p {
  max-width: 34ch;
  color: rgb(98, 117, 142);
  font-size: 0.88rem;
}
.footer-col h5 {
  margin-bottom: 14px;
  color: #061a34;
  font-size: 0.82rem;
  font-family: var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: #62758e;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--sky);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 24px;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.8rem;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  transform: translateY(30px);
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.active,
.reveal.in {
  transform: translateY(0);
  opacity: 1;
}
.reveal[data-anim="left"] {
  transform: translateX(-30px);
}
.reveal[data-anim="right"] {
  transform: translateX(30px);
}
.reveal[data-anim="left"].active,
.reveal[data-anim="right"].active,
.reveal[data-anim="left"].in,
.reveal[data-anim="right"].in {
  transform: translateX(0);
}
[data-delay="1"] {
  transition-delay: 0.08s;
}
[data-delay="2"] {
  transition-delay: 0.16s;
}
[data-delay="3"] {
  transition-delay: 0.24s;
}
[data-delay="4"] {
  transition-delay: 0.32s;
}
[data-delay="5"] {
  transition-delay: 0.4s;
}

.product-visual img {
  padding: 10px;
  border-radius: 5px;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 992px) {
  .hero-visual {
    margin-top: 150px;
    margin-bottom: -94px;
  }
  .phone {
    top: 22%;
    width: 430px;
  }
}
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .desktop-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-right: 0;
    padding-left: 28px;
    gap: 30px;
  }
  .hero-visual {
    justify-content: center;
    order: -1;
    margin-bottom: -80px;
  }
  .phone {
    top: 38%;
    left: 50%;
    width: min(65vw, 320px);
  }
  .stage {
    width: 100%;
    height: auto;
    min-height: 500px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .trustbar {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item {
    grid-template-rows: 230px 68px auto;
    min-height: 470px;
  }
  .trust-icon {
    height: 230px;
  }
  .trust-icon img {
    max-height: 230px;
  }
  .trust-icon-wide img {
    max-height: 200px;
  }
  .product-card {
    min-height: auto;
  }
  .product-visual {
    min-height: initial;
    padding: 10px;
  }
  .product-visual img {
    max-height: 230px;
  }
  #problem .wrap {
    padding: 0 24px;
  }
  .problem-split {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(30, 161, 255, 0.16);
    border-radius: 28px;
  }
  .problem-split::before {
    display: none;
  }
  .problem-panel {
    min-height: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .problem-panel + .problem-panel {
    border-top: 1px solid rgba(30, 161, 255, 0.18);
  }
  .problem-visual {
    height: 250px;
  }
  .problem-copy {
    padding: 34px;
  }
  .problem-name {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
  }
  .problem-statement {
    font-size: clamp(1.45rem, 5vw, 2.2rem);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .wrap {
    padding: 0 18px;
  }
  .sec {
    padding: 64px 0;
  }
  .hero {
    padding: 128px 0 50px;
  }
  .page-hero {
    padding: 120px 0 20px;
  }
  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr;
  }
  .trustbar {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  #trust.sec.tight {
    padding: 76px 0 86px;
  }
  .trust-item {
    grid-template-rows: auto auto auto;
    min-height: 380px;
    padding: 22px;
  }
  .trust-item h4 {
    justify-content: center;
  }
  .trust-icon {
    height: auto;
    margin-bottom: 27px;
  }
  .trust-icon img {
    max-height: 158px;
    transform: scale(1.5);
  }
  .trust-icon-wide img {
    max-height: 112px;
  }
  .trust-item h4 {
    margin-bottom: 10px;
    font-size: 0.92rem;
  }
  .trust-item p {
    font-size: 0.84rem;
    line-height: 1.48;
  }
  #ecosystem .section-title {
    font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  }
  .product-visual {
    min-height: 184px;
    margin: 0 0 22px;
  }
  .product-visual img {
    max-height: 184px;
  }
  #problem .wrap {
    padding: 0 18px;
  }
  .problem-visual {
    height: 190px;
  }
  .problem-copy {
    padding: 28px 22px 36px;
  }
  .problem-kicker {
    margin-bottom: 18px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }
  .problem-kicker::before {
    width: 30px;
  }
  .problem-name {
    margin-bottom: 18px;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
  }
  .problem-statement {
    margin-bottom: 18px;
    font-size: 1.2rem;
  }
  .problem-body {
    font-size: 0.95rem;
    line-height: 1.64;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .voltica-loader__core {
    width: min(68vw, 260px);
  }
  .stage {
    min-height: 420px;
  }
}

/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto;
  }
  html.is-preloading,
  body.is-loading {
    overflow: auto;
  }
  .voltica-loader {
    display: none;
  }
  .reveal {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .bg-deco,
  .ring,
  .groundlight {
    display: none;
  }
  .card:not(.flat):hover {
    transform: translateY(-5px);
  }
}

/* ==========================================================================
   UTILITY CLASSES (replaces former inline styles — keeps HTML clean)
   ========================================================================== */
/* text + alignment */
.u-center {
  text-align: center;
}
.u-mxauto {
  margin-right: auto;
  margin-left: auto;
}
.u-eyebrow-sm {
  font-size: 0.66rem;
}

/* font sizes for headings reused across pages */
.h-page {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}
.h-sm {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.t-1 {
  font-size: 1.05rem;
}
.t-3 {
  font-size: 1.15rem;
}
.t-4 {
  font-size: 0.86rem;
}

/* paddings */
.p-30 {
  padding: 30px;
}
.p-32 {
  padding: 32px;
}
.p-34 {
  padding: 34px;
}

/* margins */
.mt-8 {
  margin-top: 8px;
}
.mt-14 {
  margin-top: 14px;
}
.mt-34 {
  margin-top: 34px;
}
.mb-6 {
  margin-bottom: 6px;
}
.mb-18 {
  margin-bottom: 18px;
}
.mb-22 {
  margin-bottom: 22px;
}
.mb-28 {
  margin-bottom: 28px;
}
.mb-34 {
  margin-bottom: 34px;
}
.my-2810 {
  margin: 8px 0 10px;
}

/* flex helpers */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* composite blocks used repeatedly */
.cta-panel {
  margin-top: 34px;
  padding: 42px;
  text-align: center;
}
.cta-panel.t {
  padding: 42px;
  text-align: center;
}
.u-center-flex {
  justify-content: center;
}
.eyebrow.u-center-flex::before {
  display: none;
}

/* ==========================================================================
   MOTION UPGRADE — loading, scroll reveal, hero core and micro-interactions
   ========================================================================== */

/* ---------- PREMIUM LOADING OVERLAY ---------- */
html.is-preloading,
body.is-loading {
  overflow: hidden;
}
.voltica-loader {
  display: grid;
  visibility: visible;
  z-index: 9999;
  position: fixed;
  place-items: center;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(780px 500px at 50% 38%, rgba(0, 70, 255, 0.26), transparent 66%),
    radial-gradient(560px 420px at 50% 52%, rgba(30, 161, 255, 0.16), transparent 64%),
    linear-gradient(180deg, #050812 0%, #070b14 54%, #03050b 100%);
  opacity: 1;
  transition:
    opacity 0.72s ease,
    visibility 0.72s ease;
}
.voltica-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.voltica-loader::before {
  position: absolute;
  inset: -25%;
  transform: perspective(900px) rotateX(62deg) translateY(-9%);
  background-image:
    linear-gradient(rgba(100, 217, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 217, 255, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  animation: loaderGrid 4.8s linear infinite;
  opacity: 0.38;
}
.voltica-loader::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 48%,
    transparent 0 14%,
    rgba(7, 11, 20, 0.28) 34%,
    rgba(2, 4, 10, 0.72) 100%
  );
  content: "";
  opacity: 0.8;
}
.voltica-loader__core {
  display: grid;
  z-index: 1;
  position: relative;
  place-items: center;
  aspect-ratio: 1;
  width: min(54vw, 320px);
  filter: drop-shadow(0 0 34px rgba(30, 161, 255, 0.4));
}
.voltica-loader__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(100, 217, 255, 0.22);
  border-radius: 50%;
  border-top-color: rgba(100, 217, 255, 0.9);
  border-right-color: rgba(233, 184, 74, 0.55);
  box-shadow:
    0 0 34px -16px rgba(30, 161, 255, 0.9),
    inset 0 0 28px -18px rgba(233, 184, 74, 0.9);
  animation: loaderSpin 2.8s linear infinite;
}
.voltica-loader__ring:nth-child(2) {
  inset: 12%;
  border-top-color: rgba(233, 184, 74, 0.6);
  border-left-color: rgba(100, 217, 255, 0.62);
  animation-duration: 4.2s;
  animation-direction: reverse;
}
.voltica-loader__ring:nth-child(3) {
  inset: 25%;
  border-style: dashed;
  border-color: rgba(140, 160, 200, 0.2);
  border-bottom-color: rgba(100, 217, 255, 0.7);
  animation-duration: 6s;
}
.voltica-loader__logo {
  z-index: 2;
  position: relative;
  width: 42%;
  height: auto;
  animation: loaderLogo 2.4s ease-in-out infinite;
  filter: drop-shadow(0 18px 44px rgba(0, 40, 120, 0.8))
    drop-shadow(0 0 18px rgba(100, 217, 255, 0.48));
}
.voltica-loader__progress {
  z-index: 2;
  position: absolute;
  right: 18%;
  bottom: 8%;
  left: 18%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(140, 160, 200, 0.14);
}
.voltica-loader__progress::before {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--sky), var(--gold-soft), transparent);
  content: "";
  animation: loaderProgress 1.45s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes loaderGrid {
  to {
    background-position:
      0 58px,
      58px 0;
  }
}
@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loaderLogo {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.92;
  }
  50% {
    transform: translateY(-5px) scale(1.035);
    opacity: 1;
  }
}
@keyframes loaderProgress {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(255%);
  }
}

/* ---------- REFINED SCROLL REVEAL ---------- */
.reveal {
  transform: translate3d(0, 30px, 0);
  opacity: 0;
  transition-delay: var(--reveal-delay, 0ms);
  transition-duration: 0.8s;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.active,
.reveal.in {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.reveal[data-anim="left"] {
  transform: translate3d(-30px, 0, 0);
}
.reveal[data-anim="right"] {
  transform: translate3d(30px, 0, 0);
}
.reveal[data-anim="left"].active,
.reveal[data-anim="right"].active,
.reveal[data-anim="left"].in,
.reveal[data-anim="right"].in {
  transform: translate3d(0, 0, 0);
}
[data-delay="1"] {
  --reveal-delay: 90ms;
}
[data-delay="2"] {
  --reveal-delay: 180ms;
}
[data-delay="3"] {
  --reveal-delay: 270ms;
}
[data-delay="4"] {
  --reveal-delay: 360ms;
}
[data-delay="5"] {
  --reveal-delay: 450ms;
}

/* Whole section fade-in on scroll. JS adds .section-reveal automatically. */
.section-reveal {
  transform: translate3d(0, 44px, 0);
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.section-reveal.section-active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.section-reveal.section-active .reveal {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.footer.section-reveal,
.footer .section-reveal {
  transform: none;
  opacity: 1;
  transition: none;
  will-change: auto;
}

/* ---------- HOME HERO ANIMATION ---------- */
.hero-visual {
  isolation: isolate;
}

/* ---------- MICRO-INTERACTIONS ---------- */
.nav-links a,
.drawer a,
.btn,
.nav-cta,
.card,
.trust-item,
.inq,
.fx-chip,
.cta-link {
  will-change: transform;
}
.nav-links a,
.drawer a,
.footer-col a {
  position: relative;
  isolation: isolate;
}
.nav-links a::before,
.drawer a::before {
  z-index: 0;
  position: absolute;
  inset: 5px;
  transform: scale(0.92);
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(30, 161, 255, 0.16), rgba(233, 184, 74, 0.08));
  content: "";
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.nav-links a:hover::before,
.drawer a:hover::before,
.drawer a.active::before {
  transform: scale(1);
  opacity: 1;
}
.nav-links a:hover {
  transform: translateY(-1px);
}
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  z-index: 0;
  position: absolute;
  inset: -1px;
  transform: translateX(-130%);
  background: linear-gradient(
    120deg,
    transparent 18%,
    rgba(255, 255, 255, 0.22) 42%,
    transparent 68%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover::before {
  transform: translateX(130%);
  opacity: 1;
}
.btn:hover,
.nav-cta:hover {
  filter: saturate(112%);
}
.card {
  isolation: isolate;
  --mx: 50%;
  --my: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}
.card::before {
  z-index: -1;
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(100, 217, 255, 0.16),
    transparent 42%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.card:hover::before {
  opacity: 1;
}
.card:not(.flat):hover {
  transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateY(-6px);
  box-shadow:
    0 26px 58px -24px rgba(0, 30, 90, 0.88),
    0 0 30px -22px rgba(100, 217, 255, 0.9);
}
.fx-chip:hover,
.inq:hover {
  box-shadow:
    0 16px 34px -24px rgba(30, 161, 255, 0.7),
    0 0 0 1px rgba(100, 217, 255, 0.08) inset;
}
.cta-link {
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s ease;
}
.cta-link:hover {
  transform: translateX(2px);
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(100, 217, 255, 0.42);
}
.footer-col a:hover {
  transform: translateX(3px);
}

/* ========================================================================== 
   FP TRADING-INSPIRED LIGHT / DARK THEME
   ========================================================================== */
:root {
  --em: #079fea;
  --em-bright: #16b5ff;
  --sky: #079fea;
  --cyan: #54c9ff;
  --radius: 12px;
}

body {
  background: #fff;
  color: #061a34;
}
body::before {
  display: none;
}

/* Header follows the reference site's clean light navigation. */
.nav {
  padding: 11px 0;
  border-bottom: 1px solid rgba(6, 74, 118, 0.1);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
  background: rgba(247, 252, 255, 0.94);
}
.nav.scrolled {
  padding: 8px 0;
  border-bottom-color: rgba(6, 74, 118, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px -28px rgba(4, 43, 78, 0.55);
}
.nav .brand img {
  width: 176px;
  height: auto;
  max-height: 46px;
  transform: none;
  filter: none;
}
.nav-links {
  gap: 1px;
}
.nav-links a {
  padding: 8px 10px;
  border-radius: 7px;
  color: #405a75;
  font-size: 0.82rem;
}
.nav-links a:hover {
  background: #e7f6fd;
  color: #061a34;
}
.nav-links a.active {
  color: #061a34;
}
.nav-links a.active::after {
  background: var(--sky);
}
.nav-cta,
.btn-primary {
  border-radius: 999px;
  border-color: rgba(7, 159, 234, 0.28);
  background: linear-gradient(135deg, #079fea, #19b5ff);
  box-shadow: 0 12px 28px -16px rgba(7, 159, 234, 0.72);
}
.btn,
.btn-sm {
  border-radius: 999px;
}
.burger {
  border-radius: 8px;
  border-color: #c8e7f6;
  background: #eef8fd;
}
.burger span {
  background: #061a34;
}
.drawer {
  border-left-color: #d3eaf5;
  background: #fff;
}
.drawer a {
  border-radius: 8px;
  color: #456079;
}
.drawer a:hover,
.drawer a.active {
  border-color: #cbe8f5;
  background: #e9f7fd;
  color: #061a34;
}

/* Every page alternates light and dark sections in a predictable rhythm. */
body > main > section:nth-of-type(odd) {
  background: linear-gradient(180deg, #eaf8fe 0%, #f7fcff 58%, #ffffff 100%) !important;
  color: #061a34;
}
body > main > section:nth-of-type(even) {
  background: linear-gradient(180deg, #071a33 0%, #0a2445 100%) !important;
  color: #f7fbff;
}
body > main > section:nth-of-type(odd) h1,
body > main > section:nth-of-type(odd) h2,
body > main > section:nth-of-type(odd) h3,
body > main > section:nth-of-type(odd) h4 {
  color: #061a34;
}
body > main > section:nth-of-type(odd) .problem-name {
  color: #0878bd;
}
body > main > section:nth-of-type(odd) .lead,
body > main > section:nth-of-type(odd) .hero-points li,
body > main > section:nth-of-type(odd) .problem-body {
  color: #62758e;
}
body > main > section:nth-of-type(even) .lead {
  color: #a8b8cb;
}

body > main > section:nth-of-type(odd) .card {
  border-color: #cde7f4;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px -48px rgba(8, 80, 127, 0.55);
  color: #061a34;
}
body > main > section:nth-of-type(odd) .card-blue {
  border-color: #b9dff1;
  background: linear-gradient(145deg, #dff4fe, #ffffff);
}
body > main > section:nth-of-type(odd) .card-gold {
  border-color: #f0d58e;
  background: linear-gradient(145deg, #fff8e4, #ffffff);
}
body > main > section:nth-of-type(odd) .card p {
  color: #62758e;
}
body > main > section:nth-of-type(odd) .ico {
  overflow: hidden;
  border-color: #c4e4f3;
  background: linear-gradient(145deg, #e4f6fe, #ffffff);
}
body > main > section:nth-of-type(odd) .btn-ghost {
  border-color: #bfddeb;
  background: #ffffff;
  color: #12304f;
}
body > main > section:nth-of-type(odd) .btn-ghost:hover {
  border-color: #079fea;
  background: #e5f6fd;
  color: #061a34;
}

body > main > section:nth-of-type(even) .card {
  border-color: rgba(94, 181, 226, 0.18);
  background: linear-gradient(180deg, rgba(15, 42, 76, 0.94), rgba(7, 24, 48, 0.94));
  color: #f7fbff;
}
body > main > section:nth-of-type(even) .card p {
  color: #a8b8cb;
}

/* The light hero keeps the phone visual while using FP Trading's blue-white tone. */
.hero h1 {
  color: #061a34;
}
.hero h1 .hl {
  background: linear-gradient(120deg, #0878bd 0%, #079fea 56%, #36c0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead-accent {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #0878bd;
  -webkit-text-fill-color: currentColor;
}

/* Reference-like corner treatment: restrained cards, pill actions. */
.card,
.trust-item,
.problem-panel {
  border-radius: 12px;
}
.product-visual,
.problem-visual,
.ticker,
.inq,
.risk-warning {
  border-radius: 10px;
}
.ico,
.field input,
.field select,
.field textarea {
  border-radius: 8px;
}
.problem-split {
  gap: 24px;
}
.problem-name {
  margin-bottom: 24px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}
.problem-statement {
  font-size: clamp(1.32rem, 1.85vw, 1.8rem);
  line-height: 1.2;
}
.problem-body {
  font-size: 1rem;
  line-height: 1.68;
}
.problem-copy {
  padding: 42px clamp(28px, 3.3vw, 48px) 52px;
}
.problem-panel {
  min-height: 700px;
}
.problem-visual {
  height: 310px;
}
.trust-item {
  border-radius: 12px;
}
.product-card {
  border-radius: 12px;
}
.footer {
  margin-top: 0;
  border-top-color: rgba(107, 180, 219, 0.16);
  background: white;
}

@media (max-width: 1200px) {
  .nav .brand img {
    width: 148px;
  }
  .nav-links a {
    padding: 8px 7px;
    font-size: 0.78rem;
  }
}
@media (max-width: 992px) {
  .problem-panel {
    min-height: 0;
  }
  .problem-visual {
    height: 250px;
  }
  .problem-copy {
    padding: 34px;
  }
}
@media (max-width: 576px) {
  .nav .brand img {
    width: 142px;
    max-height: 40px;
  }
  .problem-visual {
    height: 190px;
  }
  .problem-copy {
    padding: 28px 22px 36px;
  }
  .problem-name {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
  }
  .problem-statement {
    font-size: 1.2rem;
  }
}

.ticker {
  display: none;
}

.sec {
  padding: 96px 0;
}

.sec.tight {
  padding: 72px 0;
}

.page-hero {
  padding: 150px 0 72px;
}

@media (max-width: 600px) {
  .sec {
    padding: 64px 0;
  }

  .sec.tight {
    padding: 54px 0;
  }

  .page-hero {
    padding: 122px 0 52px;
  }
}

/*# sourceMappingURL=../../../Applications/XAMPP/xamppfiles/htdocs/vtc_landing/css/style.css.map */


.hero h1 .hl {
  display: flex!important;
}


.trust-icon.ai-icons {
  height: 300px!important;
  margin-bottom: 27px;
}

.trust-icon.ai-icons img {
  max-height: 88%;
  transform: scale(1.3);
  margin-top: -20px;
}

.d-none { display: none !important; }
@media (min-width: 992px) {
  .d-lg-block { display: block !important; }
}

#compliance {
  overflow: hidden;
}