/* ═══════════════════════════════════════════════════════════════
   VULCANIATECH — PREMIUM CSS
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
  --bg: #04080f;
  --bg1: #060c17;
  --bg2: #081020;
  --bg3: #0a1425;
  --s0: rgba(255, 255, 255, .03);
  --s1: rgba(255, 255, 255, .055);
  --s2: rgba(255, 255, 255, .09);
  --s3: rgba(255, 255, 255, .13);
  --b0: rgba(255, 255, 255, .06);
  --b1: rgba(255, 255, 255, .10);
  --b2: rgba(255, 255, 255, .18);
  --bc: rgba(0, 220, 255, .18);
  --bc2: rgba(0, 220, 255, .35);
  --t0: #eef5ff;
  --t1: #8fa8c8;
  --t2: #4f6880;
  --t3: #2d4256;
  --cyan: #00dcff;
  --blue: #3b82f6;
  --indigo: #6366f1;
  --gc: rgba(0, 220, 255, .2);
  --gb: rgba(59, 130, 246, .15);
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --tf: .15s;
  --tm: .25s;
  --ts: .4s;
  --f1: 'Plus Jakarta Sans', sans-serif;
  --f2: 'Syne', sans-serif;
  --sh: 0 4px 24px rgba(0, 0, 0, .5);
  --sh-lg: 0 24px 80px rgba(0, 0, 0, .6);
  --sh-c: 0 0 60px rgba(0, 220, 255, .14), 0 0 120px rgba(0, 220, 255, .05);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: var(--f1);
  background: var(--bg);
  color: var(--t0);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none
}

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

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

button {
  font-family: inherit
}

/* CURSOR */
.cur,
.cur-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%)
}

.cur {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  mix-blend-mode: screen;
  transition: width .2s, height .2s, opacity .2s
}

.cur-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 220, 255, .45);
  border-radius: 50%;
  z-index: 9998;
  transition: transform .12s var(--ease-out), width .25s, height .25s
}

.cur.on {
  width: 18px;
  height: 18px;
  opacity: .5
}

.cur-ring.on {
  width: 52px;
  height: 52px;
  border-color: var(--cyan)
}

/* AMBIENT */
.amb {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.amb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px)
}

.amb-1 {
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 220, .1), transparent 70%);
  top: -200px;
  left: -200px;
  animation: drift 28s ease-in-out infinite alternate
}

.amb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, .09), transparent 70%);
  bottom: 0;
  right: -150px;
  animation: drift 34s ease-in-out -12s infinite alternate
}

.amb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99, 102, 241, .07), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: drift 22s ease-in-out -6s infinite alternate
}

@keyframes drift {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(50px, 40px)
  }
}

.grid-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(rgba(0, 220, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 220, 255, .022) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 0%, black, transparent)
}

/* LAYOUT */
.container {
  width: min(1160px, 92%);
  margin: 0 auto
}

.g2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

/* TYPE */
h1,
h2,
h3,
h4 {
  line-height: 1.1;
  font-family: var(--f1)
}

h1 {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.0
}

h2 {
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 800;
  letter-spacing: -1.5px
}

h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: -.3px
}

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.label::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--cyan)
}

.lead {
  font-size: clamp(15px, 1.5vw, 18.5px);
  color: var(--t1);
  line-height: 1.8;
  max-width: 580px;
  font-weight: 400
}

.muted {
  color: var(--t1)
}

.dim {
  color: var(--t2)
}

.micro {
  font-size: 12px;
  color: var(--t2)
}

.grad {
  background: linear-gradient(135deg, var(--cyan) 0%, #7dd3fc 45%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(4, 8, 15, .82);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--b0)
}

.nav::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--bc) 30%, var(--bc) 70%, transparent);
  opacity: .55
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.2px
}

.img-logo {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 220, 255, .4))
}

.brand em {
  color: var(--cyan);
  font-style: normal
}

.menu {
  display: flex;
  align-items: center;
  gap: 2px
}

.menu a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--t2);
  padding: 8px 13px;
  border-radius: 10px;
  transition: color var(--tf), background var(--tf);
  position: relative;
  letter-spacing: -.1px
}

.menu a:hover {
  color: var(--t0);
  background: var(--s1)
}

.menu a.active {
  color: var(--t0)
}

.menu a.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--cyan)
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--f1);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -.1px;
  border: 0;
  cursor: pointer;
  transition: all var(--tm) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background: var(--cyan);
  color: #020c12
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent);
  opacity: 0;
  transition: opacity var(--tf)
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 220, 255, .35)
}

.btn:hover::after {
  opacity: 1
}

.btn.secondary {
  background: transparent;
  color: var(--t0);
  border: 1px solid var(--b2);
  box-shadow: none
}

.btn.secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 220, 255, .12)
}

.hamb {
  display: none;
  background: var(--s1);
  border: 1px solid var(--b1);
  color: var(--t0);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 18px;
  cursor: pointer;
  transition: all var(--tf)
}

.hamb:hover {
  border-color: var(--bc);
  color: var(--cyan)
}

/* CARDS */
.card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all var(--tm) var(--ease);
  position: relative;
  overflow: hidden
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
  opacity: 0;
  transition: opacity var(--tm)
}

.card:hover {
  border-color: var(--bc);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 40px rgba(0, 220, 255, .05)
}

.card:hover::before {
  opacity: 1
}

.feat-card {
  background: var(--s0);
  border: 1px solid var(--b0);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all var(--tm) var(--ease);
  position: relative;
  overflow: hidden
}

.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(0, 220, 255, .05), transparent);
  opacity: 0;
  transition: opacity var(--ts)
}

.feat-card:hover {
  border-color: var(--bc);
  background: var(--s1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), var(--sh-c)
}

.feat-card:hover::after {
  opacity: 1
}

.c-idx {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--t3);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--f2)
}

.c-ghost {
  position: absolute;
  bottom: 14px;
  right: 22px;
  font-family: var(--f2);
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, .023);
  user-select: none;
  pointer-events: none;
  letter-spacing: -4px
}

/* ICON */
.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(0, 220, 255, .09);
  border: 1px solid rgba(0, 220, 255, .2);
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 18px;
  transition: all var(--tm)
}

.card:hover .icon-box,
.feat-card:hover .icon-box {
  background: rgba(0, 220, 255, .17);
  box-shadow: 0 0 18px rgba(0, 220, 255, .2)
}

/* PILLS */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(0, 220, 255, .22);
  background: rgba(0, 220, 255, .06);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  margin: 3px
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 14px;
  border-radius: 999px;
  border: 1px solid var(--bc);
  background: rgba(0, 220, 255, .06);
  font-size: 12px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 24px;
  animation: fsu .7s var(--ease-out) both
}

.hero-badge .tag {
  background: var(--cyan);
  color: #020c12;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .3px
}

.hero-badge .pdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.7)
  }
}

@keyframes fsd {
  from {
    opacity: 0;
    transform: translateY(-14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fsu {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hero h1 {
  animation: fsu .8s .1s var(--ease-out) both
}

.hero .lead {
  animation: fsu .8s .22s var(--ease-out) both;
  margin-top: 20px
}

.hero .h-actions {
  animation: fsu .8s .34s var(--ease-out) both;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px
}

.hero-metrics {
  display: flex;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--b0);
  border-radius: 18px;
  overflow: hidden;
  animation: fsu .8s .46s var(--ease-out) both
}

.hm-cell {
  flex: 1;
  padding: 16px 18px;
  border-right: 1px solid var(--b0);
  background: var(--s0)
}

.hm-cell:last-child {
  border-right: 0
}

.hm-cell strong {
  display: block;
  font-family: var(--f2);
  font-size: 24px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 3px
}

.hm-cell span {
  font-size: 11px;
  color: var(--t2);
  letter-spacing: .3px;
  font-weight: 600;
  text-transform: uppercase
}

.hero-visual {
  position: relative;
  animation: fsu .8s .28s var(--ease-out) both
}

.hero-frame {
  position: relative;
  background: linear-gradient(140deg, rgba(0, 220, 255, .1), rgba(59, 130, 246, .06));
  border: 1px solid var(--bc);
  border-radius: var(--r-2xl);
  padding: 18px;
  box-shadow: var(--sh-lg), var(--sh-c);
  overflow: hidden
}

.hero-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 220, 255, .65), transparent)
}

.hero-frame img {
  border-radius: 24px;
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(0, 220, 255, .38))
}

.chip {
  position: absolute;
  background: rgba(4, 8, 15, .88);
  border: 1px solid var(--bc);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 9px 13px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--t0);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--sh);
  white-space: nowrap
}

.chip .cdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s ease infinite
}

.chip-a {
  top: -14px;
  right: -8px;
  animation: float 4s ease-in-out infinite
}

.chip-b {
  bottom: 22px;
  left: -14px;
  animation: float 4s ease-in-out .9s infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* PAGE HERO */
.page-hero {
  position: relative;
  padding: 96px 0 52px;
  border-bottom: 1px solid var(--b0);
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bc2), transparent)
}

/* SECTIONS */
.section {
  padding: 96px 0;
  position: relative;
  z-index: 1
}

.section-hd {
  margin-bottom: 52px
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--b0);
  border-bottom: 1px solid var(--b0);
  background: var(--s0);
  position: relative
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent)
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent)
}

.mtrack {
  display: flex;
  width: max-content;
  animation: mq 22s linear infinite
}

.mitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--t3);
  white-space: nowrap
}

.mitem em {
  color: var(--cyan);
  font-style: normal
}

.mitem .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--t3)
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* PROCESS */
.proc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}

.proc-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--cyan));
  opacity: .2
}

.p-step {
  padding: 0 16px;
  text-align: center
}

.p-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: grid;
  place-items: center;
  font-family: var(--f2);
  font-size: 16px;
  font-weight: 800;
  color: #020c12;
  box-shadow: 0 0 28px rgba(0, 220, 255, .25)
}

.p-step h3 {
  font-size: 14.5px;
  margin-bottom: 8px
}

/* TECH BADGES */
.tech-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}

.tech-badge {
  padding: 5px 13px;
  border-radius: 8px;
  background: var(--s1);
  border: 1px solid var(--b1);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--t2);
  letter-spacing: .3px;
  transition: all var(--tf)
}

.tech-badge:hover {
  border-color: var(--bc);
  color: var(--cyan);
  background: rgba(0, 220, 255, .05)
}

/* METRICS */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--b0);
  border-radius: var(--r-xl);
  overflow: hidden
}

.mc {
  padding: 30px 24px;
  border-right: 1px solid var(--b0);
  background: var(--s0);
  text-align: center
}

.mc:last-child {
  border-right: 0
}

.mc strong {
  display: block;
  font-family: var(--f2);
  font-size: 36px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px
}

.mc span {
  font-size: 11.5px;
  color: var(--t2);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 600
}

/* CTA BANNER */
.cta-wrap {
  position: relative;
  padding: 60px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--bc);
  background: linear-gradient(135deg, rgba(0, 220, 255, .08), rgba(59, 130, 246, .06));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px
}

.cta-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  opacity: .5
}

.cta-wrap::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 220, 255, .1), transparent 70%);
  pointer-events: none
}

/* TESTIMONIALS */
.testi {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-xl);
  padding: 26px;
  position: relative
}

.testi::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 60px;
  font-family: var(--f2);
  color: var(--cyan);
  opacity: .12;
  line-height: 1
}

.testi-stars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 11px
}

.testi p {
  color: var(--t0);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px
}

.t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: grid;
  place-items: center;
  font-family: var(--f2);
  font-size: 12px;
  font-weight: 800;
  color: #020c12;
  flex-shrink: 0
}

.t-meta b {
  display: block;
  font-size: 13px;
  font-weight: 700
}

.t-meta span {
  font-size: 11.5px;
  color: var(--t2)
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--b0)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--t0);
  transition: color var(--tf)
}

.faq-q:hover {
  color: var(--cyan)
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--b1);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--cyan);
  transition: transform var(--tm) var(--ease), border-color var(--tm);
  flex-shrink: 0
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--cyan)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease)
}

.faq-a p {
  padding-bottom: 18px;
  font-size: 14px;
  color: var(--t1);
  line-height: 1.75
}

/* FORM */
.form-grid {
  display: grid;
  gap: 11px
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px
}

.input,
.textarea,
select {
  width: 100%;
  padding: 12px 15px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 12px;
  color: var(--t0);
  font-family: var(--f1);
  font-size: 14px;
  outline: none;
  transition: border-color var(--tf), background var(--tf), box-shadow var(--tf)
}

.input::placeholder,
.textarea::placeholder {
  color: var(--t3)
}

.input:focus,
.textarea:focus,
select:focus {
  border-color: var(--cyan);
  background: rgba(0, 220, 255, .04);
  box-shadow: 0 0 0 3px rgba(0, 220, 255, .1)
}

select option {
  background: var(--bg2)
}

.textarea {
  min-height: 130px;
  resize: vertical
}

.mini {
  font-size: 12.5px;
  color: var(--t2)
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--b0)
}

.info-block:last-child {
  border-bottom: 0
}

.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 220, 255, .09);
  border: 1px solid rgba(0, 220, 255, .2);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0
}

.info-block strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 2px
}

.info-block span {
  font-size: 13px;
  color: var(--t1)
}

/* FOOTER */
.footer {
  background: rgba(0, 0, 0, .25);
  border-top: 1px solid var(--b0);
  padding: 52px 0 26px;
  position: relative;
  z-index: 1
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bc), var(--blue) 60%, transparent);
  opacity: .4
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 36px
}

.ftitle {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 14px
}

.footer a {
  display: block;
  color: var(--t2);
  font-size: 13px;
  margin: 6px 0;
  transition: color var(--tf), padding-left var(--tf)
}

.footer a:hover {
  color: var(--t0);
  padding-left: 4px
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--b0);
  gap: 16px;
  flex-wrap: wrap
}

.socials {
  display: flex;
  gap: 7px
}

.social {
  width: 32px;
  height: 32px;
  border: 1px solid var(--b1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--t2);
  font-size: 12px;
  transition: all var(--tf)
}

.social:hover {
  border-color: var(--bc);
  color: var(--cyan);
  background: rgba(0, 220, 255, .05)
}

/* CHECK LIST */
.check-list {
  list-style: none
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--t1);
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.check-list li:last-child {
  border-bottom: 0
}

.check-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px
}

/* LEGAL */
.legal-body h2 {
  font-size: 19px;
  margin-top: 36px;
  margin-bottom: 10px
}

.legal-body h2:first-child {
  margin-top: 0
}

.legal-body p {
  margin-bottom: 11px;
  font-size: 14.5px;
  color: var(--t1)
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.rl {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
}

.rl.visible {
  opacity: 1;
  transform: none
}

.rr {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
}

.rr.visible {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

.d5 {
  transition-delay: .40s
}

/* SCROLL CUE */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fsu 1s 1.2s var(--ease-out) both
}

.sc-mouse {
  width: 20px;
  height: 31px;
  border: 1.5px solid var(--t3);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px
}

.sc-mouse::before {
  content: '';
  width: 3px;
  height: 6px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scw 2s ease-in-out infinite
}

@keyframes scw {
  0% {
    opacity: 1;
    transform: translateY(0)
  }

  100% {
    opacity: 0;
    transform: translateY(8px)
  }
}

.scroll-cue span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--t3)
}

/* BOOSTBUNDLE */
.bb-card {
  background: linear-gradient(140deg, rgba(99, 77, 200, .1), rgba(59, 130, 246, .07));
  border-color: rgba(99, 102, 241, .2)
}

.bb-card:hover {
  border-color: rgba(120, 100, 220, .5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 50px rgba(99, 77, 200, .15)
}

.bb-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 24, .5);
  border: 1px solid rgba(99, 102, 241, .18);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden
}

.bb-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(99, 77, 200, .18), transparent 70%)
}

.bb-logo-wrap img {
  width: 100%;
  max-width: 170px;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(120, 80, 220, .55));
  position: relative
}

.bb-pill {
  border-color: rgba(99, 102, 241, .3);
  background: rgba(99, 102, 241, .08);
  color: #a5b4fc
}

/* RESPONSIVE */
@media(max-width:920px) {
  .hamb {
    display: block
  }

  .menu {
    position: absolute;
    top: 64px;
    left: 4%;
    right: 4%;
    flex-direction: column;
    display: none;
    background: rgba(6, 12, 23, .97);
    border: 1px solid var(--b1);
    border-radius: var(--r-xl);
    padding: 14px;
    backdrop-filter: blur(20px);
    gap: 4px
  }

  .menu.open {
    display: flex
  }

  .menu a {
    padding: 10px 14px;
    border-radius: 10px;
    width: 100%
  }

  .menu a.active::after {
    display: none
  }

  .hero {
    padding: 80px 0 60px;
    min-height: unset
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .hero-visual {
    max-width: 320px;
    margin: 0 auto;
    order: -1
  }

  .hero-metrics {
    flex-direction: column
  }

  .hm-cell {
    border-right: 0;
    border-bottom: 1px solid var(--b0)
  }

  .hm-cell:last-child {
    border-bottom: 0
  }

  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta-wrap {
    flex-direction: column;
    padding: 36px
  }

  .proc-row {
    grid-template-columns: 1fr 1fr
  }

  .proc-row::before {
    display: none
  }

  .metrics-row {
    grid-template-columns: 1fr 1fr
  }

  .mc:nth-child(2) {
    border-right: 0
  }

  .mc:nth-child(3),
  .mc:nth-child(4) {
    border-top: 1px solid var(--b0)
  }

  body {
    cursor: auto
  }

  .cur,
  .cur-ring {
    display: none
  }
}

@media(max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr
  }

  .proc-row {
    grid-template-columns: 1fr
  }

  .metrics-row {
    grid-template-columns: 1fr
  }

  .mc {
    border-right: 0;
    border-bottom: 1px solid var(--b0)
  }

  .form-row-2 {
    grid-template-columns: 1fr
  }

  .chip {
    display: none
  }

  h1 {
    letter-spacing: -1.5px
  }

  .cta-wrap {
    padding: 28px
  }
}