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

:root {
  --bg: #070b14;
  --bg2: #0c1120;
  --bg3: #111729;
  --surf: #151d30;
  --surf2: #1a2540;
  --blue: #0052d9;
  --bluel: #3370ff;
  --bluell: #5b8fff;
  --bluelll: #c2d6ff;
  --cyan: #00c4dc;
  --green: #34d399;
  --amber: #fbbf24;
  --rose: #fb7185;
  --txt: #d6dce8;
  --mu: #8896ad;
  --wh: #f0f4fa;
  --bd: rgba(51, 112, 255, .12);
  --bdh: rgba(51, 112, 255, .3);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Noto Sans SC', 'Outfit', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(0, 82, 217, .3);
}

#sbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 600;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 10px rgba(0, 82, 217, .5);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: all .35s;
}

nav.on {
  background: rgba(7, 11, 20, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  display: block;
  filter: invert(1);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  position: relative;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  letter-spacing: 1px;
  overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, .15));
  pointer-events: none;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--wh);
  line-height: 1.2;
}

.logo-sub {
  font-size: 9.5px;
  color: var(--mu);
  font-weight: 400;
  letter-spacing: .5px;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  color: var(--mu);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--wh);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--bluel);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--bd);
  border-radius: 100px;
  overflow: hidden;
  margin-right: 4px;
}

.lang-btn {
  padding: 5px 12px;
  font-size: 11px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--mu);
  transition: all .2s;
}

.lang-btn.active {
  background: var(--blue);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-ghost {
  color: var(--mu);
  border-color: var(--bd);
}

.btn-ghost:hover {
  color: var(--wh);
  border-color: var(--bdh);
  background: rgba(0, 82, 217, .06);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--bluel);
  box-shadow: 0 8px 32px rgba(0, 82, 217, .35);
  transform: translateY(-2px);
}

.btn-white {
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
}

.btn-white:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .06);
}

.btn-lg {
  padding: 13px 30px;
  font-size: 14px;
}

.btn-xl {
  padding: 15px 38px;
  font-size: 15px;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px 60px;
}

.hero-left {
  position: relative;
  z-index: 10;
  flex: 1;
  max-width: 540px;
}

.hero-right {
  flex: 1;
  position: relative;
  z-index: 2;
  min-height: 520px;
}

#threeCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 500px at 25% 40%, rgba(0, 82, 217, .07), transparent), radial-gradient(ellipse 500px 400px at 75% 55%, rgba(0, 196, 220, .04), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(rgba(51, 112, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 112, 255, .02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--bd);
  background: rgba(0, 82, 217, .06);
  font-size: 12px;
  color: var(--bluell);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fu .6s ease both;
}

.hero-badge .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bluell);
  animation: pd 2s infinite;
}

@keyframes pd {

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

  50% {
    opacity: .3;
    transform: scale(.6)
  }
}

.hero-company {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  color: var(--wh);
  letter-spacing: -2px;
  margin-bottom: 8px;
  animation: fu .65s ease .08s both;
}

.hero-company span {
  background: linear-gradient(135deg, var(--wh) 0%, var(--bluelll) 40%, var(--bluell) 70%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-en {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 19px);
  letter-spacing: 5px;
  color: var(--mu);
  margin-bottom: 22px;
  text-transform: uppercase;
  animation: fu .65s ease .16s both;
}

.hero-tag {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--mu);
  line-height: 1.85;
  max-width: 480px;
  font-weight: 300;
  animation: fu .65s ease .24s both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fu .65s ease .32s both;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: fu .65s ease .8s both;
}

.scroll-mouse {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(136, 150, 173, .3);
  border-radius: 9px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-dot {
  width: 2px;
  height: 5px;
  background: var(--bluell);
  border-radius: 2px;
  animation: sf 2s ease-in-out infinite;
}

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

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

.scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--mu);
  font-family: 'Outfit', sans-serif;
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.stats-band {
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  background: var(--bg2);
  padding: 44px 48px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--wh);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--mu);
  margin-top: 6px;
  letter-spacing: 1px;
  font-family: 'Outfit', sans-serif;
}

.sec {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 48px;
}

.sec-tag {
  font-size: 10px;
  color: var(--bluell);
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
  font-family: 'Outfit', sans-serif;
}

.sec-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--wh);
  margin-bottom: 14px;
}

.sec-p {
  font-size: 15px;
  color: var(--mu);
  line-height: 1.85;
  max-width: 480px;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bd), transparent);
  margin: 0 48px;
}

/* news */
.news-sec {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 48px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.news-featured {
  grid-row: 1/3;
}

.news-featured .news-card {
  height: 100%;
}

.news-featured .news-img {
  height: 260px;
}

.news-card {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: var(--bdh);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 82, 217, .08);
}

.news-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--surf);
}

.news-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: linear-gradient(135deg, var(--surf), var(--bg3));
  transition: transform .5s;
}

.news-img .placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card:hover .placeholder {
  transform: scale(1.05);
}

.news-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 11px;
  color: var(--mu);
  margin-bottom: 8px;
  font-family: 'DM Mono', monospace;
}

.news-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--wh);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card p {
  font-size: 13px;
  color: var(--mu);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-tag {
  display: inline-block;
  font-size: 9px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(0, 82, 217, .1);
  border: 1px solid rgba(0, 82, 217, .2);
  color: var(--bluell);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-top: 12px;
  align-self: flex-start;
}

.news-more {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--bluel);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.news-more:hover {
  gap: 10px;
}

/* services */
.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bd);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--bd);
}

.svc-card {
  background: var(--bg2);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.svc-card:hover {
  background: var(--bg3);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-card:hover .svc-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(0, 82, 217, .2);
}

.svc-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(51, 112, 255, .2);
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 82, 217, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: all .3s;
}

.svc-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 12.5px;
  color: var(--mu);
  line-height: 1.7;
}

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

.svc-tag {
  font-size: 9.5px;
  padding: 2px 9px;
  border-radius: 100px;
  border: 1px solid rgba(51, 112, 255, .15);
  color: rgba(91, 143, 255, .5);
  font-family: 'Outfit', sans-serif;
}

/* split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.rev .split-vis {
  order: -1;
}

.split-vis {
  border-radius: 20px;
  position: relative;
  background: var(--surf);
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-vis.ar {
  aspect-ratio: 4/3;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--mu);
}

.feature-list .arrow {
  color: var(--bluel);
}

@keyframes float-y {

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

  50% {
    transform: translateY(var(--dy, -14px))
  }
}

/* dapp */
.dapp-sec {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dapp-vis {
  position: relative;
  border-radius: 20px;
  background: var(--surf);
  border: 1px solid var(--bd);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dapp-center {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 5;
  box-shadow: 0 0 40px rgba(0, 82, 217, .4);
}

.dapp-node {
  position: absolute;
  background: rgba(12, 17, 32, .9);
  border: 1px solid var(--bdh);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(12px);
}

.dapp-node h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 3px;
}

.dapp-node p {
  font-size: 10px;
  color: var(--mu);
}

.dapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  background: rgba(0, 82, 217, .12);
  border: 1px solid rgba(0, 82, 217, .2);
  color: var(--bluell);
  padding: 2px 7px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  margin-top: 5px;
}

#dappc {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dapp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.ds {
  background: var(--surf);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  transition: all .3s;
}

.ds:hover {
  border-color: var(--bdh);
  transform: translateY(-2px);
}

.ds-num {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.ds-label {
  font-size: 10px;
  color: var(--mu);
  margin-top: 4px;
  font-family: 'Outfit', sans-serif;
}

/* pet */
.pet-sec {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 48px;
}

.pet-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pet-vis {
  position: relative;
  background: var(--surf);
  border: 1px solid var(--bd);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pet-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pet-emoji {
  font-size: 72px;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 0 24px rgba(0, 82, 217, .45));
  transition: opacity .35s, transform .35s;
  animation: pf 3s ease-in-out infinite;
}

@keyframes pf {

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

  50% {
    transform: translateY(-12px) scale(1.03)
  }
}

.pet-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--bluel), var(--bluell), var(--bluel), transparent);
  box-shadow: 0 0 12px rgba(0, 82, 217, .6);
  animation: ps 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ps {
  0% {
    top: 10%
  }

  50% {
    top: 90%
  }

  100% {
    top: 10%
  }
}

.pet-box {
  position: absolute;
  border: 1.5px solid var(--bluell);
  border-radius: 6px;
  animation: pb 2s ease-in-out infinite;
  pointer-events: none;
}

.pet-box::before,
.pet-box::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-style: solid;
}

.pet-box::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-color: var(--bluel);
}

.pet-box::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-color: var(--bluel);
}

@keyframes pb {

  0%,
  100% {
    opacity: .4
  }

  50% {
    opacity: 1
  }
}

.pet-box-label {
  position: absolute;
  top: -22px;
  left: 0;
  font-size: 8.5px;
  background: var(--blue);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.pet-chip {
  position: absolute;
  background: rgba(12, 17, 32, .9);
  border: 1px solid var(--bdh);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 10px;
  color: var(--bluell);
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.pet-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: pd 1.5s infinite;
}

.pet-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.pet-stat {
  background: var(--surf);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 16px;
  transition: all .3s;
}

.pet-stat:hover {
  border-color: var(--bdh);
  transform: translateY(-2px);
}

.pet-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--bluell);
}

.pet-stat-label {
  font-size: 11px;
  color: var(--mu);
  margin-top: 3px;
}

/* team */
.team-sec {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 48px;
}

.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 52px;
}

.team-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tnc {
  background: var(--surf);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.tnc:hover {
  border-color: var(--bdh);
  transform: translateY(-3px);
}

.tnc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--bluell));
}

.tnv {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--wh);
}

.tnl {
  font-size: 11px;
  color: var(--mu);
  margin-top: 4px;
  font-family: 'Outfit', sans-serif;
}

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

.tc {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  transition: all .3s;
  cursor: default;
}

.tc:hover {
  border-color: rgba(0, 82, 217, .3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 82, 217, .08);
}

.tav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 14px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avr {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--blue), var(--bluell)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: rs 4s linear infinite;
}

@keyframes rs {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.tc h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 3px;
}

.trl {
  font-size: 9.5px;
  color: var(--bluell);
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.tc p {
  font-size: 11.5px;
  color: var(--mu);
  line-height: 1.6;
}

.tbs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-top: 10px;
}

.tb {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 100px;
  background: rgba(0, 82, 217, .08);
  border: 1px solid rgba(0, 82, 217, .18);
  color: var(--bluel);
  font-family: 'Outfit', sans-serif;
}

/* terminal */
.term {
  background: #040810;
  border: 1px solid rgba(0, 82, 217, .18);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}

.term-bar {
  background: rgba(0, 82, 217, .05);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 82, 217, .1);
}

.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.term-title {
  margin-left: auto;
  font-size: 11px;
  color: var(--mu);
  font-family: 'DM Mono', monospace;
}

.term-body {
  padding: 16px 20px;
  font-family: 'DM Mono', monospace;
  font-size: 12.5px;
  line-height: 1.9;
  min-height: 80px;
  max-height: 180px;
  overflow-y: auto;
  color: var(--mu);
}

.term-irow {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 82, 217, .08);
  background: #030610;
}

.term-prompt {
  padding: 10px 0 10px 18px;
  font-family: 'DM Mono', monospace;
  font-size: 12.5px;
  color: var(--bluell);
  white-space: nowrap;
  user-select: none;
}

.term-inp {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'DM Mono', monospace;
  font-size: 12.5px;
  color: var(--cyan);
  padding: 10px 16px 10px 6px;
  caret-color: var(--bluell);
}

.syn-c {
  color: rgba(51, 112, 255, .3);
}

.syn-v {
  color: var(--bluel);
}

.syn-s {
  color: var(--cyan);
}

.syn-k {
  color: var(--bluell);
}

.syn-g {
  color: var(--green);
}

.syn-e {
  color: var(--rose);
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tp {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--bd);
  background: var(--bg2);
  font-size: 12.5px;
  color: var(--mu);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .25s;
  cursor: default;
  font-family: 'Outfit', sans-serif;
}

.tp:hover {
  border-color: var(--bdh);
  color: var(--txt);
  transform: translateY(-2px);
}

/* ═══ PARTNERS — 2-row auto-scrolling marquee ═══ */
.partners-sec {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 64px 0;
  text-align: center;
  overflow: hidden;
}

.partners-sec .plbl {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--mu);
  margin-bottom: 36px;
  display: block;
  font-family: 'Outfit', sans-serif;
  padding: 0 48px;
}

.marquee-wrap {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

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

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent);
}

.marquee-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  width: max-content;
}

.marquee-row.scroll-left {
  animation: ml var(--dur, 40s) linear infinite;
}

.marquee-row.scroll-right {
  animation: mr var(--dur, 45s) linear infinite;
}

@keyframes ml {
  0% {
    transform: translateX(0)
  }

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

@keyframes mr {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

.marquee-row:hover {
  animation-play-state: paused;
}

.pc {
  background: var(--bg);
  border: 1.5px solid var(--bd);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .25s;
  cursor: default;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 220px;
}

.pc:hover {
  border-color: rgba(0, 82, 217, .3);
  background: rgba(0, 82, 217, .04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 82, 217, .06);
}

.pc-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.pc-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 1px;
}

.pc-info p {
  font-size: 10px;
  color: var(--mu);
}

/* cta */
.cta-sec {
  padding: 72px 48px;
  max-width: 1140px;
  margin: 0 auto;
}

.cta-inner {
  background: linear-gradient(135deg, var(--surf2), rgba(0, 82, 217, .1) 50%, var(--surf2));
  border: 1px solid rgba(0, 82, 217, .18);
  border-radius: 22px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(0, 82, 217, .1), transparent 60%);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--wh);
  line-height: 1.12;
  margin-bottom: 14px;
}

.cta-inner p {
  font-size: 15px;
  color: var(--mu);
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-sub {
  margin-top: 16px;
  font-size: 10px;
  color: rgba(51, 112, 255, .2);
  letter-spacing: 2.5px;
  font-family: 'Outfit', sans-serif;
}

footer {
  border-top: 1px solid var(--bd);
  padding: 36px 48px;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 12px;
  color: var(--mu);
  margin-top: 8px;
  max-width: 340px;
  line-height: 1.65;
}

.footer-social {
  text-align: center;
}

.fs-title {
  font-size: 13px;
  color: var(--mu);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.fs-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.fs-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mu);
  transition: all .25s;
  text-decoration: none;
}

.fs-icon:hover {
  color: var(--wh);
  border-color: var(--bdh);
  background: rgba(0, 82, 217, .08);
  transform: translateY(-2px);
}

/* ── Footer social icon masks ── */
.fs-icon::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.fs-icon[title="X (Twitter)"]::before {
  background: #1D9BF0;
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/></svg>");
}

.fs-icon[title="Instagram"]::before {
  background: #E4405F;
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/></svg>");
}

.fs-icon[title="WeChat"]::before {
  background: #07C160;
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path fill='currentColor' d='M14 7.3c3.2 0 6 2.258 6 5.007c0 1.472-1.1 2.846-2.5 3.926L18 18l-1.9-1.08c-.7.196-1.4.393-2.1.393c-3.4 0-6-2.258-6-5.006S10.7 7.3 14 7.3M7 2c3.5 0 6.5 2.061 7.3 4.81h-.7c-3.4 0-5.999 2.454-5.999 5.497c0 .49.1.981.2 1.472h-.7c-.9 0-1.6-.196-2.5-.393l-2.5 1.178l.699-2.06C1.1 11.324 0 9.753 0 7.89C0 4.552 3.1 2 7 2m5.1 8.049c-.3 0-.7.393-.7.687c0 .392.3.687.7.687c.5 0 .9-.392.9-.687c0-.393-.4-.687-.9-.687m3.8 0c-.3 0-.7.393-.7.687c0 .392.4.687.7.687c.6 0 .9-.392.9-.687c0-.393-.4-.687-.9-.687M4.8 4.846c-.6 0-1.1.393-1.1.884c0 .589.6.884 1.1.884q.75 0 .9-.884c0-.59-.4-.884-.9-.884m4.9 0c-.6 0-1.1.393-1.1.884c0 .589.6.884 1.1.884s.9-.295.9-.884c0-.59-.4-.884-.9-.884'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path fill='currentColor' d='M14 7.3c3.2 0 6 2.258 6 5.007c0 1.472-1.1 2.846-2.5 3.926L18 18l-1.9-1.08c-.7.196-1.4.393-2.1.393c-3.4 0-6-2.258-6-5.006S10.7 7.3 14 7.3M7 2c3.5 0 6.5 2.061 7.3 4.81h-.7c-3.4 0-5.999 2.454-5.999 5.497c0 .49.1.981.2 1.472h-.7c-.9 0-1.6-.196-2.5-.393l-2.5 1.178l.699-2.06C1.1 11.324 0 9.753 0 7.89C0 4.552 3.1 2 7 2m5.1 8.049c-.3 0-.7.393-.7.687c0 .392.3.687.7.687c.5 0 .9-.392.9-.687c0-.393-.4-.687-.9-.687m3.8 0c-.3 0-.7.393-.7.687c0 .392.4.687.7.687c.6 0 .9-.392.9-.687c0-.393-.4-.687-.9-.687M4.8 4.846c-.6 0-1.1.393-1.1.884c0 .589.6.884 1.1.884q.75 0 .9-.884c0-.59-.4-.884-.9-.884m4.9 0c-.6 0-1.1.393-1.1.884c0 .589.6.884 1.1.884s.9-.295.9-.884c0-.59-.4-.884-.9-.884'/></svg>");
}

.fs-icon[title="抖音"]::before {
  background: #69C9D0;
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z'/></svg>");
}

.fs-icon[title="WhatsApp"]::before {
  background: #25D366;
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/></svg>");
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
}

.footer-right p {
  font-size: 11px;
  color: var(--mu);
}

/* ── Contact float icon masks ── */
.cf-btn::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: white;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

#cfWa .cf-btn::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/></svg>");
}

#cfTg .cf-btn::before {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11.944 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0h-.056zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 01.171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.479.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11.944 0A12 12 0 000 12a12 12 0 0012 12 12 12 0 0012-12A12 12 0 0012 0h-.056zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 01.171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.479.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/></svg>");
}

#cfEmail .cf-btn::before {
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/></svg>");
}

.cf-toggle::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'><path d='M18 15l-6-6-6 6'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'><path d='M18 15l-6-6-6 6'/></svg>");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* ═══ FLOATING CONTACT WIDGET ═══ */
.contact-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cf-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cf-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

.cf-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0, 0, 0, .35);
}

.cf-label {
  font-size: 10px;
  color: var(--mu);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-top: 2px;
  margin-bottom: 2px;
}

.cf-line {
  width: 1px;
  height: 14px;
  background: var(--bd);
  margin: 2px 0;
}

.cf-toggle {
  width: 52px;
  height: 40px;
  border-radius: 16px;
  border: none;
  background: rgba(51, 112, 255, .12);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--mu);
  transition: all .25s;
  margin-top: 4px;
}

.cf-toggle:hover {
  background: rgba(51, 112, 255, .25);
  color: var(--wh);
  transform: translateY(-2px);
}

/* popups */
.cf-popup {
  position: absolute;
  right: 68px;
  bottom: 0;
  background: var(--wh);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px) scale(.95);
  transition: all .25s;
  z-index: 10;
  white-space: nowrap;
}

.cf-item:hover .cf-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.cf-popup::after {
  content: '';
  position: absolute;
  right: -6px;
  bottom: 18px;
  width: 12px;
  height: 12px;
  background: var(--wh);
  transform: rotate(45deg);
  border-radius: 2px;
}

.cf-qr-placeholder {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.cf-qr-placeholder img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  background: #fff;
}

.cf-popup-label {
  font-size: 11px;
  color: #666;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.cf-email-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cf-email-icon {
  font-size: 24px;
}

.cf-email-addr {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  font-family: 'Outfit', sans-serif;
}

.cf-email-hint {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

.cf-copy-btn {
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 5px 7px;
  cursor: pointer;
  color: #888;
  transition: all .2s;
  display: flex;
  align-items: center;
}

.cf-copy-btn:hover {
  border-color: #3370ff;
  color: #3370ff;
  background: rgba(51, 112, 255, .05);
}

.cf-copy-btn.copied {
  border-color: #34d399;
  color: #34d399;
}

[da] {
  opacity: 0;
  will-change: opacity, transform;
}

[da=up] {
  transform: translateY(44px);
}

[da=left] {
  transform: translateX(-50px);
}

[da=right] {
  transform: translateX(50px);
}

[da=scale] {
  transform: scale(.9);
}

[da=blur] {
  transform: translateY(14px);
  filter: blur(6px);
}

[da].ai {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1), filter .5s ease;
}

[dd="1"] {
  transition-delay: .08s !important;
}

[dd="2"] {
  transition-delay: .16s !important;
}

[dd="3"] {
  transition-delay: .24s !important;
}

[dd="4"] {
  transition-delay: .32s !important;
}

[dd="5"] {
  transition-delay: .4s !important;
}

@media(max-width:1024px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    min-height: 300px;
    width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-scroll {
    left: 50%;
    transform: translateX(-50%);
  }

  .sec,
  .pet-sec,
  .team-sec,
  .dapp-sec,
  .news-sec {
    padding: 72px 24px;
  }

  .svc-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .pet-split,
  .team-header,
  .dapp-sec {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split.rev .split-vis {
    order: 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-featured {
    grid-row: auto;
  }

  .marquee-wrap {
    width: 95%;
  }

  footer {
    padding: 32px 24px;
    flex-direction: column;
    text-align: center;
  }

  .divider {
    margin: 0 24px;
  }

  .cta-sec {
    padding: 48px 24px;
  }

  .cta-inner {
    padding: 48px 24px;
  }

  .stats-band {
    padding: 36px 24px;
  }
}

@media(max-width:640px) {

  .svc-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .pc {
    min-width: 180px;
    padding: 14px 16px;
  }

  .dapp-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}