@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #030A1A;
  --bg2: #0C1B3A;
  --card: rgba(12, 27, 58, 0.55);
  --electric: #2979FF;
  --teal: #00BFA5;
  --accent: #7C4DFF;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-300: #93C5FD;
  --blue-200: #BFDBFE;
  --green: #10B981;
  --amber: #F59E0B;
  --text: #E8ECF4;
  --text2: #8B9CC0;
  --text3: #5A6E94;
  --border: rgba(41, 121, 255, 0.06);
  --border2: rgba(41, 121, 255, 0.15);
  --grad: linear-gradient(135deg, #2979FF, #00BFA5, #2563EB);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1060px;
  --r: 14px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

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

.ct {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px
}

/* Canvas */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

/* --- Morphing Blobs --- */
.morphing-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
}

.morphing-blob.mb-1 {
  top: 8%;
  right: -5%;
  width: 350px;
  height: 350px;
}

.morphing-blob.mb-2 {
  top: 50%;
  left: -8%;
  width: 280px;
  height: 280px;
}

.morphing-blob.mb-3 {
  bottom: 15%;
  right: 5%;
  width: 200px;
  height: 200px;
}

.morphing-blob svg {
  width: 100%;
  height: 100%;
}

.blob-path-1 {
  fill: var(--electric);
  animation: blobMorph1 12s ease-in-out infinite;
}

.blob-path-2 {
  fill: var(--teal);
  animation: blobMorph2 15s ease-in-out infinite;
}

.blob-path-3 {
  fill: var(--accent);
  animation: blobMorph3 10s ease-in-out infinite;
}

@keyframes blobMorph1 {

  0%,
  100% {
    d: path("M220,100 C250,50 300,80 280,150 C260,220 200,250 150,220 C100,190 80,140 100,100 C120,60 190,50 220,100Z");
  }

  33% {
    d: path("M200,90 C260,40 310,100 270,170 C230,240 170,260 120,210 C70,160 60,110 100,70 C140,30 150,60 200,90Z");
  }

  66% {
    d: path("M230,120 C270,70 290,110 260,180 C230,250 180,230 140,200 C100,170 90,120 120,80 C150,40 200,70 230,120Z");
  }
}

@keyframes blobMorph2 {

  0%,
  100% {
    d: path("M200,80 C250,40 280,100 260,160 C240,220 180,250 130,210 C80,170 70,120 100,80 C130,40 160,50 200,80Z");
  }

  50% {
    d: path("M210,100 C260,60 290,120 250,180 C210,240 160,230 120,190 C80,150 80,100 110,70 C140,40 170,60 210,100Z");
  }
}

@keyframes blobMorph3 {

  0%,
  100% {
    d: path("M160,60 C200,30 220,70 200,120 C180,170 140,180 110,150 C80,120 70,80 100,60 C130,40 140,45 160,60Z");
  }

  50% {
    d: path("M170,70 C210,40 230,80 210,130 C190,180 150,170 120,140 C90,110 85,70 110,50 C135,30 145,50 170,70Z");
  }
}

/* --- Crystal Lattice SVG --- */
.crystal-lattice {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
}

.crystal-lattice.cl-1 {
  top: 25%;
  left: 10%;
  width: 200px;
  animation: latticeRotate 40s linear infinite;
}

.crystal-lattice.cl-2 {
  bottom: 20%;
  right: 8%;
  width: 160px;
  animation: latticeRotate 50s linear infinite reverse;
}

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

.lattice-line {
  stroke: var(--electric);
  stroke-width: 0.5;
  fill: none;
  opacity: 0.6;
}

.lattice-node {
  fill: var(--teal);
  opacity: 0.8;
}

/* --- Liquid Dividers --- */
.liquid-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  height: 60px;
}

.liquid-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.liquid-path {
  fill: none;
  stroke-width: 1.5;
  opacity: 0.12;
}

.liquid-path-1 {
  stroke: var(--electric);
  animation: liquidFlow1 6s ease-in-out infinite;
}

.liquid-path-2 {
  stroke: var(--teal);
  animation: liquidFlow2 8s ease-in-out infinite;
}

.liquid-path-3 {
  stroke: var(--accent);
  opacity: 0.06;
  animation: liquidFlow3 10s ease-in-out infinite;
}

@keyframes liquidFlow1 {

  0%,
  100% {
    d: path("M0 30 C200 15 300 50 500 30 C700 10 800 45 1000 30");
  }

  50% {
    d: path("M0 30 C200 50 300 10 500 35 C700 55 800 15 1000 30");
  }
}

@keyframes liquidFlow2 {

  0%,
  100% {
    d: path("M0 35 C250 20 400 48 500 28 C600 8 750 50 1000 35");
  }

  50% {
    d: path("M0 25 C250 45 400 12 500 38 C600 58 750 18 1000 28");
  }
}

@keyframes liquidFlow3 {

  0%,
  100% {
    d: path("M0 28 C180 40 350 18 500 32 C650 46 820 22 1000 32");
  }

  50% {
    d: path("M0 32 C180 18 350 42 500 28 C650 14 820 38 1000 28");
  }
}

/* --- Orbital Rings --- */
.orbital-rings {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.orbital-rings.or-1 {
  top: 10%;
  right: 15%;
  width: 180px;
  height: 180px;
}

.orbital-ring {
  fill: none;
  stroke-width: 0.5;
  opacity: 0.08;
}

.orbital-ring-1 {
  stroke: var(--electric);
  animation: orbitalSpin 25s linear infinite;
  transform-origin: center;
}

.orbital-ring-2 {
  stroke: var(--teal);
  animation: orbitalSpin 35s linear infinite reverse;
  transform-origin: center;
}

.orbital-ring-3 {
  stroke: var(--accent);
  animation: orbitalSpin 20s linear infinite;
  transform-origin: center;
}

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

.orbital-node {
  fill: var(--electric);
  animation: orbNodePulse 3s ease-in-out infinite;
}

.orbital-node:nth-child(even) {
  fill: var(--teal);
  animation-delay: -1.5s;
}

@keyframes orbNodePulse {

  0%,
  100% {
    opacity: 0.6;
    r: 2;
  }

  50% {
    opacity: 1;
    r: 3.5;
  }
}

/* --- Glow Trail Overlay --- */
.glow-trail-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* --- Shockwave Effect --- */
.shockwave {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: shockwaveExpand 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes shockwaveExpand {
  0% {
    transform: scale(0);
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(41, 121, 255, 0.4), inset 0 0 10px rgba(0, 191, 165, 0.3);
  }

  60% {
    opacity: 0.15;
  }

  100% {
    transform: scale(5);
    opacity: 0;
    box-shadow: 0 0 60px rgba(41, 121, 255, 0), inset 0 0 30px rgba(0, 191, 165, 0);
  }
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  transition: all .3s
}

.nav.scrolled {
  background: rgba(3, 10, 26, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border)
}

.nav-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  z-index: 1001
}

.logo-i {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff
}

.nav-l {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav-l a {
  color: var(--text2);
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
  cursor: pointer
}

.nav-l a:hover {
  color: var(--text)
}

.nav-cta {
  background: linear-gradient(135deg, var(--electric), var(--teal)) !important;
  color: #030A1A !important;
  padding: 7px 18px;
  border-radius: 7px;
  font-weight: 700 !important;
  font-size: 12px !important;
  transition: all .2s
}

.nav-cta:hover {
  box-shadow: 0 0 24px rgba(41, 121, 255, .3);
  transform: translateY(-1px);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  background: 0;
  border: 0;
  z-index: 1001
}

.ham span {
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s
}

.ham.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px)
}

.ham.active span:nth-child(2) {
  opacity: 0
}

.ham.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px)
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 80px;
  position: relative;
  z-index: 1
}

.hero-c {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(41, 121, 255, .08);
  border: 1px solid rgba(41, 121, 255, .15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-300);
  margin-bottom: 20px
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--teal);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 16px
}

.gt {
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.hero-sub {
  font-size: 15px;
  color: var(--text2);
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.65
}

.btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all .25s;
  border: 0;
  min-height: 44px
}

.btn svg {
  width: 15px;
  height: 15px
}

.btn-p {
  background: var(--grad);
  background-size: 200% 200%;
  animation: gs 5s ease infinite;
  color: #030A1A
}

@keyframes gs {
  0% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(41, 121, 255, .25)
}

.btn-o {
  background: rgba(41, 121, 255, .06);
  color: var(--blue-200);
  border: 1px solid rgba(41, 121, 255, .15)
}

.btn-o:hover {
  border-color: var(--electric);
  background: rgba(41, 121, 255, .12)
}

/* Stats */
.stats {
  padding: 32px 20px;
  position: relative;
  z-index: 1
}

.stats-g {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.stat {
  text-align: center
}

.stat-value {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2
}

.stat-label {
  font-size: 11px;
  color: var(--text3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px
}

/* Sections */
.sec {
  padding: 64px 20px;
  position: relative;
  z-index: 1
}

.sec-h {
  text-align: center;
  margin-bottom: 36px
}

.sec-lbl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px
}

.sec-lbl.f {
  color: var(--teal)
}

.sec-lbl.s {
  color: var(--amber)
}

.sec-lbl.a {
  color: var(--blue-300)
}

.sec-lbl svg {
  width: 13px;
  height: 13px
}

.sec-t {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 8px
}

.sec-d {
  font-size: 14px;
  color: var(--text2);
  max-width: 420px;
  margin: 0 auto
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.card {
  background: var(--card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity .3s
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--border2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .3), 0 0 40px rgba(41, 121, 255, 0.04)
}

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

.card-f::before {
  background: var(--teal)
}

.card-s::before {
  background: var(--amber)
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 14px
}

.tag-f {
  background: rgba(0, 191, 165, .1);
  color: var(--teal);
  border: 1px solid rgba(0, 191, 165, .12)
}

.tag-s {
  background: rgba(245, 158, 11, .1);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, .12)
}

.card-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px
}

.card-ic.g {
  background: rgba(0, 191, 165, .1)
}

.card-ic.am {
  background: rgba(245, 158, 11, .1)
}

.card-ic svg {
  width: 20px;
  height: 20px
}

.card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -.3px
}

.card-d {
  color: var(--text2);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px
}

.feat {
  list-style: none;
  margin-bottom: 16px
}

.feat li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 3px 0;
  font-size: 12px;
  color: var(--text2)
}

.feat li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px
}

.ck-g {
  color: var(--teal)
}

.ck-a {
  color: var(--amber)
}

.clink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 13px;
  transition: gap .2s;
  cursor: pointer;
  min-height: 44px
}

.clink:hover {
  gap: 10px
}

.clink.g {
  color: var(--teal)
}

.clink.am {
  color: var(--amber)
}

.clink svg {
  width: 14px;
  height: 14px;
  transition: transform .2s
}

.clink:hover svg {
  transform: translateX(3px)
}

/* About */
.about-g {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center
}

.av-w {
  position: relative;
  width: 160px;
  height: 160px
}

.av {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(12, 27, 58, .8), rgba(20, 40, 80, .8));
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center
}

.av-t {
  font-size: 48px;
  font-weight: 900;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  border: 1px dashed rgba(41, 121, 255, .12);
  border-radius: 50%;
  animation: spin 20s linear infinite
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.orb-d {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 12px var(--electric), 0 0 24px rgba(41, 121, 255, 0.3)
}

.orb-d:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%)
}

.orb-d:nth-child(2) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%)
}

.orb-d:nth-child(3) {
  top: 50%;
  right: 0;
  transform: translateY(-50%)
}

.about-c h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: 12px;
  line-height: 1.2
}

.about-t {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px
}

.about-q {
  padding: 14px 18px;
  background: rgba(41, 121, 255, .04);
  border-left: 2px solid var(--electric);
  border-radius: 0 7px 7px 0;
  color: var(--blue-200);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
  margin: 16px 0
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px
}

.tg {
  padding: 3px 10px;
  background: rgba(41, 121, 255, .04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text2);
  font-weight: 500
}

/* CTA */
.cta {
  text-align: center
}

.cta h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 10px
}

.cta p {
  font-size: 14px;
  color: var(--text2);
  max-width: 360px;
  margin: 0 auto 24px
}

/* Footer */
.ft {
  border-top: 1px solid var(--border);
  padding: 28px 20px;
  position: relative;
  z-index: 1
}

.ft-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.ft-t {
  color: var(--text3);
  font-size: 12px
}

.ft-s {
  display: flex;
  gap: 10px
}

.sl {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(41, 121, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  transition: all .2s;
  cursor: pointer
}

.sl:hover {
  color: var(--text);
  border-color: var(--electric);
  background: rgba(41, 121, 255, .1);
  box-shadow: 0 0 16px rgba(41, 121, 255, 0.15)
}

.sl svg {
  width: 16px;
  height: 16px
}

/* Language Toggle */
.lang-toggle {
  background: rgba(41, 121, 255, .08);
  border: 1px solid rgba(41, 121, 255, .15);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--blue-300);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all .2s;
  min-height: 32px;
  min-width: 40px;
  z-index: 1001;
  letter-spacing: .5px;
  margin-right: 4px
}

.lang-toggle:hover {
  background: rgba(41, 121, 255, .15);
  border-color: var(--electric);
  color: var(--text)
}

.lang-toggle:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px
}

/* Expertise Timeline */
.timeline {
  margin: 20px 0 12px;
  padding-left: 16px;
  border-left: 2px solid rgba(41, 121, 255, .15)
}

.tl-item {
  position: relative;
  padding: 0 0 16px 18px
}

.tl-item:last-child {
  padding-bottom: 0
}

.tl-dot {
  position: absolute;
  left: -23px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 10px rgba(41, 121, 255, .4)
}

.tl-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px
}

.tl-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5
}

/* Connect Grid */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 28px auto 0
}

.connect-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all .25s;
  cursor: pointer;
  min-height: 44px;
  text-decoration: none
}

.connect-card:hover {
  border-color: var(--border2);
  background: rgba(41, 121, 255, .06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25)
}

.connect-card:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px
}

.connect-card svg {
  flex-shrink: 0;
  color: var(--blue-300);
  width: 20px;
  height: 20px
}

.cc-text {
  display: flex;
  flex-direction: column;
  min-width: 0
}

.cc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2
}

.cc-desc {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.3
}

/* i18n transition */
[data-i18n] {
  transition: opacity .15s ease
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-d1 {
  transition-delay: .1s
}

.reveal-d2 {
  transition-delay: .2s
}

/* Responsive */
@media(max-width:1024px) {
  .about-g {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center
  }

  .av-w {
    margin: 0 auto
  }

  .about-q {
    text-align: left
  }

  .tags {
    justify-content: center
  }
}

@media(max-width:768px) {
  .sec {
    padding: 48px 20px
  }

  .nav-l {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 26, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999
  }

  .nav-l.open {
    display: flex
  }

  .nav-l a {
    font-size: 16px
  }

  .nav-cta {
    font-size: 14px !important;
    padding: 10px 22px
  }

  .ham {
    display: flex
  }

  .hero {
    padding: 70px 20px 30px;
    min-height: auto;
    padding-top: 100px
  }

  .stats-g {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

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

  .card {
    padding: 22px
  }

  .av-w,
  .av {
    width: 120px;
    height: 120px
  }

  .av-t {
    font-size: 36px
  }

  .orb {
    width: 160px;
    height: 160px
  }

  .ft-in {
    flex-direction: column;
    text-align: center
  }

  .morphing-blob.mb-1 {
    width: 200px;
    height: 200px;
  }

  .morphing-blob.mb-2 {
    display: none;
  }

  .morphing-blob.mb-3 {
    display: none;
  }

  .crystal-lattice {
    display: none;
  }

  .orbital-rings {
    display: none;
  }

  .connect-grid {
    grid-template-columns: 1fr;
    max-width: 320px
  }

  .timeline {
    margin: 16px 0 8px
  }
}

@media(max-width:480px) {
  .btns {
    flex-direction: column;
    align-items: stretch
  }

  .btn {
    justify-content: center
  }

  .stat-value {
    font-size: 24px
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }

  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none
  }

  #bgCanvas,
  .glow-trail-canvas {
    display: none
  }

  .morphing-blob,
  .crystal-lattice,
  .orbital-rings {
    display: none
  }
}