/* ─── RESET & TOKENS ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/*
  Color palette extracted from DreamspireX logo:
  --c   : #8866ff  violet-purple  (X center / left arm)
  --cp  : #44aaff  sky blue       (X right arm glow)
  Gradient direction matches the X symbol: violet → sky-blue
*/
:root {
  --bg:    #0a0c18;
  --bg1:   #0f1220;
  --c:     #8866ff;   /* violet – primary */
  --cp:    #44aaff;   /* sky blue – secondary */
  --cglow: rgba(136,102,255,.12);
  --txt:   #ffffff;
  --muted: rgba(255,255,255,.55);
  --bd:    rgba(255,255,255,.07);
  --bdc:   rgba(136,102,255,.28);
  --sans:  'Inter', -apple-system, sans-serif;
  --disp:  'Space Grotesk', sans-serif;
  --mono:  'JetBrains Mono', monospace;
  --r:     12px;
  --ease:  cubic-bezier(.4,0,.2,1);
  --t:     .3s var(--ease);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--txt);
  overflow-x: clip;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

/* tech grid + ambient glow */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(136,102,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136,102,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(136,102,255,.09) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 78%, rgba(68,170,255,.07) 0%, transparent 60%);
}

/* ─── LANGUAGE TOGGLE STATES ──────────────────────────────────────── */
.t-en { color: inherit; }
.t-zh { color: rgba(255,255,255,.42); font-size: .92em; }

body.l-en .t-zh   { display: none !important; }
body.l-en .zh-sub { display: none !important; }

body.l-zh .t-en   { display: none !important; }
body.l-zh .t-zh   { color: inherit !important; font-size: inherit !important; }
body.l-zh .zh-sub { color: rgba(255,255,255,.55) !important; font-size: .6em !important; }

.stat-lbl span.t-en, .stat-lbl span.t-zh,
.m-lbl span.t-en,   .m-lbl span.t-zh { display: block; }

body.l-en .stat-lbl span.t-zh { display: none !important; }
body.l-zh .stat-lbl span.t-en { display: none !important; }
body.l-en .m-lbl span.t-zh    { display: none !important; }
body.l-zh .m-lbl span.t-en    { display: none !important; }

/* ─── UTILITIES ────────────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.grad {
  background: linear-gradient(135deg, var(--c), var(--cp));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.label {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--c); display: block; margin-bottom: 14px;
}
.h2 {
  font-family: var(--disp); font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 20px;
}
.body-text  { font-size: 18px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.sec-desc   { font-size: 18px; color: var(--muted); max-width: 600px; margin: 12px auto 0; line-height: 1.75; text-align: center; }
.zh-sub { font-size: .6em; font-weight: 400; color: rgba(255,255,255,.38); letter-spacing: 0; display: block; margin-top: 2px; }

/* ─── SCROLL REVEAL ────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.on { opacity: 1; transform: translateY(0); }

/* ─── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600;
  letter-spacing: .02em; text-decoration: none; cursor: pointer; border: none;
  transition: var(--t); font-family: var(--sans);
}
.btn-primary { background: var(--c); color: #fff; }
.btn-primary:hover { background: #fff; color: #000; box-shadow: 0 0 32px rgba(136,102,255,.55); transform: translateY(-2px); }
.btn-ghost   { background: transparent; color: var(--txt); border: 1px solid var(--bdc); }
.btn-ghost:hover { border-color: var(--c); background: var(--cglow); transform: translateY(-2px); }
.btn-full    { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

/* ─── LANGUAGE SWITCH ──────────────────────────────────────────────── */
.lang-sw {
  display: flex; gap: 2px; background: rgba(255,255,255,.06);
  border-radius: 8px; padding: 3px; flex-shrink: 0;
}
.ls-btn {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em;
  padding: 6px 12px; border-radius: 6px; border: none; background: transparent;
  color: var(--muted); cursor: pointer; transition: var(--t);
}
.ls-btn.active { background: var(--c); color: #fff; }
.ls-btn:hover:not(.active) { color: var(--txt); }

/* ─── NAVIGATION ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--t), border-color var(--t), border-bottom-color var(--t);
}
.nav.scrolled {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bd);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.nav__logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; }
.nav__logo-img { height: 52px; width: auto; display: block; }

/* Default: show dark logo, hide light logo */
.logo-dark  { display: block; }
.logo-light { display: none; }

.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__link  { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color var(--t); }
.nav__link:hover { color: var(--txt); }
.nav__cta   {
  background: transparent; border: 1px solid var(--bdc); color: var(--c);
  font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 6px;
  cursor: pointer; transition: var(--t); font-family: var(--sans);
  text-decoration: none; flex-shrink: 0; white-space: nowrap;
}
.nav__cta:hover { background: var(--c); color: #fff; border-color: var(--c); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--txt); display: block; transition: var(--t); }

/* ─── HERO ──────────────────────────────────────────────────────────── */
.s-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  gap: 48px; text-align: left; position: sticky; top: 0; overflow: hidden; padding: 0 6%;
  background: var(--bg); z-index: 1;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../assets/hero-bg.jpg') center center / cover no-repeat;
  animation: hero-drift 18s ease-in-out infinite alternate;
  will-change: transform;
  filter: blur(1px);
}
@keyframes hero-drift {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1%, 0.5%); }
  100% { transform: scale(1.08) translate(1%, -0.5%); }
}
.s-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(9, 8, 20, 0.72);
}
#canvas { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.hero__3d {
  position: relative;
  width: min(420px, 40vw); height: min(420px, 40vw);
  z-index: 2; pointer-events: none; flex-shrink: 0;
}
.hero__3d canvas { display: block; width: 100% !important; height: 100% !important; }
@media (max-width: 900px) {
  .hero__3d { display: none; }
  .s-hero { justify-content: center; text-align: center; padding: 0 24px; gap: 0; }
  .hero__body { padding: 88px 0 0; max-width: 840px; }
  .hero__btns { justify-content: center; }
}
.hero__body { position: relative; z-index: 3; max-width: 560px; padding-top: 88px; flex-shrink: 0; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px;
  border: 1px solid var(--bdc); border-radius: 100px;
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .08em;
  color: var(--c); margin-bottom: 36px; background: rgba(136,102,255,.06);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c); box-shadow: 0 0 9px var(--c);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(1.5)} }

.hero__h1 {
  font-family: var(--disp); font-size: clamp(38px, 8vw, 86px);
  font-weight: 700; line-height: 1.08; letter-spacing: -.03em; margin-bottom: 28px;
}
.hero__h1 .line { display: block; }
.hero__sub {
  font-size: clamp(17px, 2.2vw, 20px); color: rgba(255,255,255,.65);
  line-height: 1.75; margin-bottom: 12px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero__btns { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; margin-top: 36px; }
.hero__scroll { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-wrap {
  width: 24px; height: 42px; border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px; display: flex; align-items: flex-start; justify-content: center; padding: 7px;
}
.scroll-wrap span {
  width: 3px; height: 9px; background: var(--c); border-radius: 100px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(15px)} }

/* ─── WHY ─────────────────────────────────────────────────────────── */
.s-why { padding: 120px 0; background: var(--bg); position: relative; z-index: 10;
  border-radius: 28px 28px 0 0; box-shadow: 0 -12px 48px rgba(0,0,0,0.5); }
.why__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.why__stats { display: flex; flex-direction: column; gap: 16px; }

.stat-card {
  padding: 28px 32px; border: 1px solid var(--bd); border-radius: var(--r);
  background: rgba(255,255,255,.02); position: relative; overflow: hidden;
  transition: border-color var(--t), background var(--t);
}
.stat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c), transparent);
  opacity: 0; transition: opacity var(--t);
}
.stat-card:hover::after { opacity: 1; }
.stat-card:hover { border-color: var(--bdc); background: rgba(136,102,255,.025); }

.stat-num {
  font-family: var(--disp); font-size: 56px; font-weight: 700;
  color: var(--c); line-height: 1; margin-bottom: 10px; letter-spacing: -.03em;
}
.stat-num.flag { font-size: 38px; display: flex; align-items: center; gap: 10px; }
.stat-num sup { font-size: .44em; font-weight: 600; vertical-align: super; }
.stat-lbl { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* ─── BANNER ──────────────────────────────────────────────────────── */
.s-banner { padding: 80px 0; position: relative; z-index: 10; background: var(--bg);
  border-radius: 28px 28px 0 0; box-shadow: 0 -16px 56px rgba(0,0,0,0.55); }
.banner {
  border: 1px solid var(--bdc); border-radius: 20px; padding: 60px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(136,102,255,.04), rgba(68,170,255,.04));
}
.banner__glow-l {
  position: absolute; top: -140px; left: -100px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(136,102,255,.1), transparent 70%);
  pointer-events: none;
}
.banner__glow-r {
  position: absolute; bottom: -140px; right: -100px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(68,170,255,.1), transparent 70%);
  pointer-events: none;
}
.banner__copy { position: relative; z-index: 2; flex: 1; }
.banner__h3 {
  font-family: var(--disp); font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700; letter-spacing: -.025em; margin-bottom: 14px; margin-top: 6px;
}
.banner__copy p { font-size: 17px; color: var(--muted); line-height: 1.8; max-width: 460px; margin-bottom: 4px; }
.banner__orb { flex-shrink: 0; position: relative; z-index: 2; }

/* ─── QUICKCART BANNER VISUAL ─────────────────────────────────────── */
.banner__visual {
  position: relative; flex-shrink: 0; z-index: 2;
  width: 330px; height: 290px;
  display: flex; align-items: center; justify-content: center;
}

.qc-chip {
  position: absolute;
  background: rgba(136,102,255,.14);
  border: 1px solid rgba(136,102,255,.38);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: qc-float 3.8s ease-in-out infinite;
}
.qc-c1 { top: 8px;   right: 0;    animation-delay: 0s; }
.qc-c2 { top: 110px; left: -10px; animation-delay: 0.8s; }
.qc-c3 { bottom: 28px; right: 0;  animation-delay: 1.6s; }
.qc-c4 { bottom: 8px;  left: 10px; animation-delay: 2.4s; }

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

.qc-notif {
  position: absolute;
  top: -8px; left: -20px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(6,8,20,.88);
  border: 1px solid rgba(68,170,255,.35);
  border-radius: 12px;
  padding: 10px 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  white-space: nowrap; z-index: 4;
  box-shadow: 0 4px 20px rgba(68,170,255,.12);
  animation: qc-notif-pop 5.5s ease-in-out infinite;
}
.qc-notif__icon { width: 20px; height: 20px; color: var(--cp); flex-shrink: 0; }
.qc-notif__icon svg { width: 100%; height: 100%; }
.qc-notif__title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.qc-notif__sub   { font-size: 11px; color: rgba(255,255,255,.5); }

@keyframes qc-notif-pop {
  0%, 8%   { opacity: 0; transform: translateY(14px); }
  18%, 78% { opacity: 1; transform: translateY(0); }
  90%,100% { opacity: 0; transform: translateY(-8px); }
}

.qc-stats {
  display: flex; align-items: center; gap: 18px;
  margin: 18px 0 6px;
}
.qc-stat-item { display: flex; flex-direction: column; }
.qc-stat-num  { font-family: var(--disp); font-size: 22px; font-weight: 700; color: var(--c); line-height: 1; }
.qc-stat-lbl  { font-size: 11px; color: var(--muted); margin-top: 3px; }
.qc-stat-div  { width: 1px; height: 30px; background: var(--bd); flex-shrink: 0; }

/* ─── AI ORB ──────────────────────────────────────────────────────── */
.orb {
  position: relative; width: 220px; height: 220px;
  filter: drop-shadow(0 0 28px rgba(136,102,255,.4));
}

.orb-r { position: absolute; border-radius: 50%; }

/* Ring 1 – outer, violet, slow CW */
.r1 {
  inset: 0;
  border: 2px solid rgba(136,102,255,.45);
  animation: spin 11s linear infinite;
}
.r1::after {
  content: ''; position: absolute; top: 50%; left: -6px;
  width: 11px; height: 11px; margin-top: -5.5px; border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 14px var(--c), 0 0 28px var(--c);
}

/* Ring 2 – sky blue, medium CCW */
.r2 {
  inset: 22px;
  border: 1.5px solid rgba(68,170,255,.55);
  animation: spin 6.5s linear infinite reverse;
}
.r2::after {
  content: ''; position: absolute; top: -6px; left: 50%;
  width: 10px; height: 10px; margin-left: -5px; border-radius: 50%;
  background: var(--cp);
  box-shadow: 0 0 12px var(--cp), 0 0 24px var(--cp);
}

/* Ring 3 – violet, fast CW */
.r3 {
  inset: 44px;
  border: 1.5px solid rgba(136,102,255,.75);
  animation: spin 4s linear infinite;
}
.r3::after {
  content: ''; position: absolute; bottom: -5px; right: 28%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 10px var(--c), 0 0 20px var(--c);
}

/* Ring 4 – dashed sky blue, slowest CCW */
.r4 {
  inset: 64px;
  border: 1px dashed rgba(68,170,255,.4);
  animation: spin 14s linear infinite reverse;
}

/* Core */
.orb-core {
  position: absolute; inset: 78px;
  background: radial-gradient(circle at 38% 38%, #aa88ff, #44aaff);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: core-pulse 2.8s ease-in-out infinite;
}
.orb-core span {
  font-family: var(--mono); font-size: 16px; font-weight: 700; color: #fff;
  letter-spacing: .06em; text-shadow: 0 0 8px rgba(255,255,255,.8);
}

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

@keyframes core-pulse {
  0%,100% {
    box-shadow:
      0 0 20px rgba(136,102,255,.9),
      0 0 50px rgba(136,102,255,.5),
      0 0 90px rgba(136,102,255,.2);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 36px rgba(136,102,255,1),
      0 0 80px rgba(68,170,255,.7),
      0 0 140px rgba(68,170,255,.25);
    transform: scale(1.1);
  }
}

/* ─── ABOUT ──────────────────────────────────────────────────────────── */
.s-about { padding: 120px 0; background: var(--bg); position: relative; z-index: 10;
  border-radius: 28px 28px 0 0; box-shadow: 0 -16px 56px rgba(0,0,0,0.55); }
.sec-hd  { text-align: center; margin-bottom: 64px; }

.about__intro {
  max-width: 720px; margin: 0 auto 60px; text-align: center;
}
.about__intro p { font-size: 18px; color: var(--muted); line-height: 1.85; margin-bottom: 10px; }
.about__intro em { font-style: italic; color: rgba(255,255,255,.8); }

/* Team */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 72px; }
.team-card {
  padding: 38px; border: 1px solid var(--bd); border-radius: var(--r);
  background: rgba(255,255,255,.015); transition: border-color var(--t), background var(--t);
}
.team-card:hover { border-color: var(--bdc); background: rgba(136,102,255,.025); }
.team-card__top { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.avatar {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c), var(--cp));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--disp); font-size: 22px; font-weight: 700; color: #fff;
}
.avatar.purple { background: linear-gradient(135deg, #5533cc, var(--c)); }
.team-role { font-family: var(--mono); font-size: 11px; color: var(--c); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.team-pos  { font-size: 15px; font-weight: 600; }
.team-bio  { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 6px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  font-size: 11px; font-family: var(--mono); padding: 5px 10px; border-radius: 5px;
  background: rgba(136,102,255,.08); border: 1px solid rgba(136,102,255,.2); color: var(--c);
}

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 64px; }
.val-item {
  padding: 32px 26px; border: 1px solid rgba(136,102,255,.35); border-radius: var(--r);
  background: rgba(136,102,255,.04);
  position: relative; overflow: hidden;
  transition: border-color var(--t), transform var(--t), background var(--t);
  isolation: isolate;
}
.val-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c), var(--cp));
  opacity: .7;
}
.val-item:hover { border-color: var(--c); transform: translateY(-5px); background: rgba(136,102,255,.07); }
.val-num {
  font-family: var(--mono); font-size: 36px; font-weight: 700;
  color: var(--c); margin-bottom: 14px; line-height: 1;
  text-shadow: 0 0 20px rgba(136,102,255,.5);
}
.val-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.val-item p  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 4px; }

/* Story */
.story {
  border-left: 1px solid var(--bdc); padding-left: 40px; position: relative;
}
.story::before {
  content: ''; position: absolute; left: -5px; top: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c); box-shadow: 0 0 16px var(--c);
}
.story p { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 10px; margin-top: 12px; }

/* ─── SERVICES ────────────────────────────────────────────────────── */
.s-services { padding: 120px 0; background: var(--bg); position: relative; z-index: 10;
  border-radius: 28px 28px 0 0; box-shadow: 0 -16px 56px rgba(0,0,0,0.55); }

.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 72px; }
.svc-card {
  padding: 40px 32px; border: 1px solid var(--bd); border-radius: var(--r);
  background: rgba(255,255,255,.018); position: relative; overflow: hidden;
  transition: border-color var(--t), background var(--t);
  transform-style: preserve-3d; will-change: transform;
}
.svc-card:hover { border-color: var(--bdc); background: rgba(136,102,255,.025); }
.svc-num  { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.28); letter-spacing: .1em; margin-bottom: 22px; }
.svc-icon { width: 40px; height: 40px; color: var(--c); margin-bottom: 18px; }
.svc-icon svg { width: 100%; height: 100%; }
.svc-card h3 { font-family: var(--disp); font-size: 21px; font-weight: 700; margin-bottom: 12px; letter-spacing: -.01em; }
.svc-card p  { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.78; margin-bottom: 22px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.svc-list li {
  font-size: 14px; color: rgba(255,255,255,.42); padding-left: 16px; position: relative; line-height: 1.5;
}
.svc-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--c); opacity: .65;
}

/* Spotlight */
.spotlight {
  border: 1px solid var(--bdc); border-radius: 18px; padding: 60px;
  background: linear-gradient(135deg, rgba(136,102,255,.025), rgba(68,170,255,.025));
}
.spotlight__hd { margin-bottom: 44px; }
.spotlight__body { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.spotlight__left p { font-size: 16px; color: rgba(255,255,255,.62); line-height: 1.85; margin-bottom: 10px; }
.spotlight__left em { font-style: italic; color: rgba(255,255,255,.82); }
.spotlight__left strong { color: var(--c); font-style: normal; }

.market-stats { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--bd); display: flex; flex-direction: column; gap: 20px; }
.m-stat  { display: flex; align-items: flex-start; gap: 18px; }
.m-num   { font-family: var(--disp); font-size: 32px; font-weight: 700; color: var(--c); min-width: 72px; letter-spacing: -.02em; flex-shrink: 0; }
.m-lbl   { font-size: 15px; color: var(--muted); line-height: 1.45; padding-top: 5px; }

.qc-feat-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.qc-feat-item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.6; }
.qc-feat-item .feat-dot { margin-top: 6px; flex-shrink: 0; }
.qc-feat-item strong { color: var(--txt); font-weight: 600; }

.feat-list { display: flex; flex-direction: column; gap: 26px; }
.feat-item { display: flex; gap: 16px; align-items: flex-start; }
.feat-dot  {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--c); box-shadow: 0 0 9px var(--c); flex-shrink: 0; margin-top: 5px;
}
.feat-item strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.feat-item p { font-size: 14px; color: var(--muted); line-height: 1.5; margin-bottom: 0; }

/* ─── CONTACT ─────────────────────────────────────────────────────── */
.s-contact { padding: 120px 0; background: var(--bg); position: relative; z-index: 10;
  border-radius: 28px 28px 0 0; box-shadow: 0 -16px 56px rgba(0,0,0,0.55); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: stretch; }
.contact__info { display: flex; flex-direction: column; justify-content: space-between; }

.c-detail {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--bd);
}
.c-detail:first-child { padding-top: 0; }
.c-icon { width: 36px; height: 36px; color: var(--c); flex-shrink: 0; }
.c-icon svg { width: 100%; height: 100%; }
.c-lbl { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.38); letter-spacing: .08em; margin-bottom: 4px; }
.c-val { font-size: 16px; font-weight: 500; }

.comp-note {
  margin-top: 28px; padding: 24px; border: 1px solid rgba(68,170,255,.28);
  border-radius: var(--r); background: rgba(68,170,255,.04);
}
.comp-note__icon { font-size: 24px; margin-bottom: 12px; }
.comp-note p { font-size: 15px; color: rgba(255,255,255,.58); line-height: 1.75; margin-bottom: 4px; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.38); letter-spacing: .05em; font-family: var(--mono); }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,.03); border: 1px solid var(--bd); border-radius: 8px;
  padding: 12px 15px; font-size: 15px; color: var(--txt); font-family: var(--sans);
  transition: var(--t); outline: none; -webkit-appearance: none; appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--c); background: rgba(136,102,255,.04);
  box-shadow: 0 0 0 3px rgba(136,102,255,.1);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.18); }
.fg select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.fg select option { background: #0a0a18; color: var(--txt); }
.fg textarea { min-height: 120px; resize: vertical; line-height: 1.65; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer { background: var(--bg1); border-top: 1px solid var(--bd); padding: 80px 0 40px; position: relative; z-index: 10; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer__logo-img { height: 56px; width: auto; display: block; margin-bottom: 16px; }
.footer__logo-img.logo-light,
.nav__logo-img.logo-light { display: none; }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 4px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--c); margin-bottom: 4px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.4); text-decoration: none; transition: color var(--t); }
.footer__col a:hover { color: var(--txt); }

.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; cursor: default;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon.live {
  opacity: 1; cursor: pointer; text-decoration: none;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.social-icon.live:hover { border-color: var(--c); color: var(--c); background: var(--cglow); }

.wa-link { color: var(--txt); text-decoration: none; transition: color var(--t); }
.wa-link:hover { color: #25d366; }

.footer__bar {
  border-top: 1px solid var(--bd); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer__bar span { font-size: 13px; color: rgba(255,255,255,.25); }
.foot-zh { font-size: 12px !important; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why__grid { gap: 48px; }
  .contact__grid { gap: 56px; }
}

@media (max-width: 900px) {
  .spotlight__body { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .lang-sw { margin-left: auto; }
  .nav__burger { display: flex; margin-left: 8px; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(0,0,0,.96);
    padding: 24px; gap: 20px; border-bottom: 1px solid var(--bd);
    backdrop-filter: blur(20px);
  }

  .s-why, .s-about, .s-services, .s-contact { padding: 80px 0; }
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr; }
  .banner { flex-direction: column; padding: 44px 32px; text-align: center; }
  .banner__copy p { margin-left: auto; margin-right: auto; }
  .spotlight { padding: 40px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bar { flex-direction: column; text-align: center; }
  .orb { width: 180px; height: 180px; }
  .r2 { inset: 18px; }
  .r3 { inset: 36px; }
  .r4 { inset: 52px; }
  .orb-core { inset: 64px; }
}

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; align-items: center; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .banner__visual { display: none; }
  .lang-sw { margin-left: 0; }
}

/* ─── FLOATING WHATSAPP ──────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────────────── */
@media (hover: hover) {
  body, a, button, .btn, input, select, textarea, label { cursor: none !important; }
}
#cur-dot {
  position: fixed; width: 7px; height: 7px; border-radius: 50%;
  background: var(--c); pointer-events: none; z-index: 9999;
  left: -20px; top: -20px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--c), 0 0 24px rgba(136,102,255,.5);
  transition: transform .2s var(--ease), opacity .2s;
  will-change: left, top;
}
#cur-ring {
  position: fixed; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(136,102,255,.5); pointer-events: none; z-index: 9998;
  left: -40px; top: -40px;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease),
              border-color .2s, background .2s;
  will-change: left, top;
}
#cur-ring.expand {
  width: 58px; height: 58px;
  border-color: var(--c);
  background: rgba(136,102,255,.07);
}

/* ─── CARD SPOTLIGHT LAYER ──────────────────────────────────────── */
.spl {
  position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit; opacity: 0;
  transition: opacity .35s;
  z-index: 0;
}

/* ─── GLITCH ─────────────────────────────────────────────────────── */
@keyframes g-flash {
  0%,8%,10%,18%,20%,28%,30%,38%,40%,48%,50%,100% {
    transform: none; filter: none; clip-path: none;
  }
  9%  { transform: translate(-5px, 0);   clip-path: inset(18% 0 58% 0); filter: hue-rotate(60deg)  brightness(1.7); }
  19% { transform: translate(5px, 0);    clip-path: inset(63% 0 14% 0); filter: hue-rotate(-45deg) brightness(1.3); }
  29% { transform: translate(-3px, 1px); clip-path: inset(40% 0 35% 0); filter: saturate(5) brightness(1.2); }
  39% { transform: translate(4px, -1px); clip-path: inset(80% 0 5%  0); filter: brightness(2); }
  49% { transform: translate(-2px, 0);   clip-path: inset(4%  0 82% 0); filter: hue-rotate(30deg); }
}
.hero__h1.glitch-on { animation: g-flash .55s linear forwards; }

