/* ============================================================
   大场新生活 · 官方网站
   上海酷晓信息技术有限公司
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  --bg:            #05060c;
  --bg-2:          #090b16;
  --panel:         rgba(255, 255, 255, .045);
  --panel-2:       rgba(255, 255, 255, .028);
  --line:          rgba(255, 255, 255, .10);
  --line-strong:   rgba(255, 255, 255, .18);

  --txt:           #f2f4fb;
  --txt-2:         #b9c0d4;
  --txt-3:         #7c8399;

  --brand:         #e2245c;   /* 玫红 · 取自官方标识 */
  --brand-2:       #ff5c8a;
  --gold:          #ffc93c;   /* 金黄 · 取自官方标识 */
  --cyan:          #2ee6d6;
  --violet:        #8b5cf6;

  --grad-brand:    linear-gradient(120deg, #ffc93c 0%, #ff5c8a 45%, #e2245c 100%);
  --grad-cool:     linear-gradient(120deg, #2ee6d6 0%, #8b5cf6 60%, #e2245c 100%);
  --grad-text:     linear-gradient(100deg, #ffffff 0%, #ffd970 38%, #ff5c8a 68%, #b98cff 100%);

  --shadow-lg:     0 30px 80px -30px rgba(0, 0, 0, .9);
  --shadow-brand:  0 24px 60px -24px rgba(226, 36, 92, .55);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;

  --maxw: 1200px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC",
          -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--brand); color: #fff; }

:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 3px; border-radius: 6px; }

/* ---------- 3. Background layers ---------- */
#bg-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; opacity: .55;
  pointer-events: none;
}
.aurora {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; overflow: hidden;
}
.aurora span {
  position: absolute; display: block;
  border-radius: 50%; filter: blur(90px);
  opacity: .30;
  animation: drift 26s ease-in-out infinite;
}
.aurora span:nth-child(1) { width: 46vw; height: 46vw; left: -8vw;  top: -10vw;  background: #e2245c; }
.aurora span:nth-child(2) { width: 40vw; height: 40vw; right: -6vw; top: 8vh;    background: #8b5cf6; animation-delay: -8s; }
.aurora span:nth-child(3) { width: 38vw; height: 38vw; left: 22vw;  bottom: -14vw; background: #2ee6d6; opacity: .18; animation-delay: -15s; }
.aurora span:nth-child(4) { width: 26vw; height: 26vw; right: 18vw; top: 52vh;    background: #ffc93c; opacity: .13; animation-delay: -20s; }
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%      { transform: translate3d(4vw, 6vh, 0) scale(1.14); }
  66%      { transform: translate3d(-5vw, -4vh, 0) scale(.92); }
}
.grid-veil {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.030) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 10%, transparent 78%);
}
.spotlight-cursor {
  position: fixed; z-index: 1; width: 420px; height: 420px;
  margin: -210px 0 0 -210px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,36,92,.16), transparent 62%);
  pointer-events: none; opacity: 0; transition: opacity .4s;
  will-change: transform;
}
body.has-cursor .spotlight-cursor { opacity: 1; }

/* ---------- 4. Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 999;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 45%, #14101c, #05060c 70%);
  transition: opacity .6s ease, visibility .6s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pl-inner { display: grid; justify-items: center; gap: 22px; }
.pl-logo {
  width: 92px; height: 92px; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(226,36,92,.65);
  animation: plPulse 1.7s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes plPulse {
  0%   { transform: scale(.94); box-shadow: 0 0 0 0 rgba(226,36,92,.55); }
  70%  { transform: scale(1);   box-shadow: 0 0 0 26px rgba(226,36,92,0); }
  100% { transform: scale(.94); box-shadow: 0 0 0 0 rgba(226,36,92,0); }
}
.pl-bar { width: 186px; height: 3px; border-radius: 99px; background: rgba(255,255,255,.10); overflow: hidden; }
.pl-bar i { display: block; height: 100%; width: 0; background: var(--grad-brand); transition: width .25s ease; }
.pl-txt { font-size: 12px; letter-spacing: .32em; color: var(--txt-3); text-transform: uppercase; }

/* ---------- 5. Layout helpers ---------- */
.wrap { width: min(100% - 48px, var(--maxw)); margin-inline: auto; }
section { position: relative; z-index: 2; padding: 108px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .22em;
  color: var(--brand-2); text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-2));
}
.sec-title {
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.22; font-weight: 800; letter-spacing: -.02em;
}
.sec-title .hl {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sec-sub { margin-top: 16px; color: var(--txt-2); max-width: 720px; font-size: 16px; }
.sec-head { margin-bottom: 56px; }
.center { text-align: center; }
.center .sec-sub { margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(34px); transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1); }
.rv.in { opacity: 1; transform: none; }

/* ---------- 6. Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(6, 7, 14, .72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}
.nav-in {
  width: min(100% - 48px, 1320px); margin-inline: auto;
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; white-space: nowrap; flex: 0 0 auto; }
.brand img { width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto; }
.brand b { font-size: 17px; font-weight: 800; letter-spacing: .02em; }
.brand small { display: block; font-size: 10px; letter-spacing: .18em; color: var(--txt-3); font-family: var(--mono); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 8px 14px; border-radius: 99px;
  font-size: 14px; color: var(--txt-2); transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--txt); background: var(--panel); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 50%; bottom: 1px; transform: translateX(-50%);
  width: 16px; height: 2px; border-radius: 2px; background: var(--grad-brand);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; white-space: nowrap;
  padding: 9px 20px; border-radius: 99px; font-size: 14px; font-weight: 600;
  background: var(--grad-brand); color: #1a0410;
  box-shadow: 0 10px 28px -12px rgba(226,36,92,.9);
  transition: transform .25s, box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(226,36,92,1); }
.nav-progress {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: var(--grad-brand); box-shadow: 0 0 12px rgba(226,36,92,.9);
}
.burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); }
.burger i { display: block; width: 18px; height: 1.6px; background: var(--txt); margin: 4px auto; transition: .3s; }
.burger.on i:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.burger.on i:nth-child(2) { opacity: 0; }
.burger.on i:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 130px; overflow: hidden;
}
.hero > .wrap { width: min(100% - 48px, 1320px); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 8px; border-radius: 99px;
  background: var(--panel); border: 1px solid var(--line);
  font-size: 13px; color: var(--txt-2); margin-bottom: 26px;
}
.hero-badge img { width: 22px; height: 22px; border-radius: 50%; }
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(46,230,214,.7); animation: dot 2s infinite;
}
@keyframes dot {
  0%   { box-shadow: 0 0 0 0 rgba(46,230,214,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(46,230,214,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,230,214,0); }
}
.hero h1 {
  font-size: clamp(32px, 5.3vw, 74px);
  line-height: 1.04; font-weight: 900; letter-spacing: -.035em;
}
.hero h1 .g {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 8px 34px rgba(226,36,92,.35));
}
.hero h1 .line2 { display: block; }
.hero-tag {
  margin-top: 14px; font-family: var(--mono); font-size: 13px;
  letter-spacing: .3em; color: var(--txt-3); text-transform: uppercase;
}
.hero-lead {
  margin-top: 26px; font-size: 17px; color: var(--txt-2); max-width: 560px;
}
.hero-lead strong { color: var(--txt); font-weight: 600; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 99px; font-weight: 600; font-size: 15px;
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s, background .28s, border-color .28s;
}
.btn-primary {
  background: var(--grad-brand); color: #1c0410;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 30px 66px -22px rgba(226,36,92,1); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--txt); background: var(--panel-2); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--brand-2); background: rgba(226,36,92,.10); }
.btn svg { width: 17px; height: 17px; }

.hero-tags { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tags span {
  padding: 7px 15px; border-radius: 99px; font-size: 13px; color: var(--txt-2);
  border: 1px solid var(--line); background: var(--panel-2);
}

/* hero visual — orbit ring */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.orbit { position: relative; width: min(430px, 88vw); aspect-ratio: 1; }
.ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
}
.ring::after {
  content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px;
  margin-left: -4px; border-radius: 50%; background: var(--brand-2);
  box-shadow: 0 0 16px 3px rgba(226,36,92,.85);
}
.ring.r1 { animation: spin 16s linear infinite; }
.ring.r2 { inset: 13%; border-color: rgba(255,255,255,.07); animation: spin 24s linear infinite reverse; }
.ring.r2::after { background: var(--cyan); box-shadow: 0 0 16px 3px rgba(46,230,214,.8); }
.ring.r3 { inset: 26%; border-color: rgba(255,255,255,.05); animation: spin 34s linear infinite; }
.ring.r3::after { background: var(--gold); box-shadow: 0 0 16px 3px rgba(255,201,60,.8); }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-core {
  position: absolute; inset: 34%; border-radius: 50%;
  display: grid; place-items: center; gap: 6px;
  background: radial-gradient(circle at 38% 30%, rgba(226,36,92,.34), rgba(10,10,22,.9) 70%);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 60px rgba(226,36,92,.22), 0 30px 70px -30px #000;
}
.orbit-core img { width: 46%; border-radius: 50%; }
.orbit-core b { font-size: 13px; letter-spacing: .1em; color: var(--txt-2); }
.orbit-chip {
  position: absolute; padding: 9px 16px; border-radius: 99px;
  font-size: 13px; color: var(--txt);
  background: rgba(12,13,24,.82); border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px); white-space: nowrap;
  box-shadow: 0 14px 34px -18px #000;
}
.orbit-chip b { color: var(--brand-2); font-family: var(--mono); }
.orbit-chip.c1 { top: 4%;  left: -6%;  animation: floaty 5.5s ease-in-out infinite; }
.orbit-chip.c2 { top: 40%; right: -12%; animation: floaty 6.5s ease-in-out infinite -1.6s; }
.orbit-chip.c3 { bottom: 6%; left: 2%;  animation: floaty 7s ease-in-out infinite -3s; }
.orbit-chip.c4 { bottom: 30%; left: -12%; animation: floaty 6s ease-in-out infinite -4.4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

.scroll-hint {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .28em; color: var(--txt-3);
}
.scroll-hint i {
  display: block; width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--brand-2), transparent);
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- 8. Stats ---------- */
.stats { padding-top: 0; }
.stats-panel {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}
.stat { padding: 40px 30px; position: relative; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat .num {
  font-size: clamp(34px, 4.6vw, 52px); font-weight: 900; letter-spacing: -.03em;
  line-height: 1; background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat .num em { font-style: normal; font-size: .48em; margin-left: 2px; }
.stat .lbl { margin-top: 12px; font-size: 15px; font-weight: 600; }
.stat .hint { margin-top: 4px; font-size: 12.5px; color: var(--txt-3); }

/* ---------- 9. About ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: start; }
.about-copy p + p { margin-top: 18px; }
.about-copy p { color: var(--txt-2); }
.about-copy .lead { font-size: 18px; color: var(--txt); }
.about-copy .lead b {
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.honor-list { margin-top: 34px; display: grid; gap: 14px; }
.honor {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 22px; border-radius: var(--r);
  border: 1px solid var(--line); background: var(--panel-2);
  transition: border-color .3s, transform .3s, background .3s;
}
.honor:hover { border-color: rgba(226,36,92,.5); transform: translateX(6px); background: rgba(226,36,92,.06); }
.honor .ic {
  flex: 0 0 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(226,36,92,.14); border: 1px solid rgba(226,36,92,.3); color: var(--brand-2);
}
.honor .ic svg { width: 18px; height: 18px; }
.honor b { display: block; font-size: 15px; }
.honor span { font-size: 13px; color: var(--txt-3); }

.about-card {
  border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden;
  background: linear-gradient(165deg, rgba(226,36,92,.14), rgba(10,11,22,.6) 55%);
  padding: 34px; position: sticky; top: 96px;
  box-shadow: var(--shadow-lg);
}
.about-card h3 { font-size: 18px; margin-bottom: 6px; }
.about-card .sub { font-size: 13px; color: var(--txt-3); margin-bottom: 24px; }
.badge-row { display: flex; align-items: center; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); }
.badge-row img { width: 62px; height: 62px; border-radius: 14px; background: #fff; padding: 4px; object-fit: contain; }
.badge-row b { font-size: 14.5px; display: block; }
.badge-row span { font-size: 12.5px; color: var(--txt-3); }
.about-logo-q { margin-top: 22px; display: flex; align-items: center; gap: 18px; }
.about-logo-q img { width: 108px; height: 108px; border-radius: 12px; background: #fff; padding: 5px; }
.about-logo-q p { font-size: 13px; color: var(--txt-2); }

/* ---------- 10. Coverage ---------- */
.coverage-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.area-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.area-cloud span {
  padding: 11px 20px; border-radius: 14px; font-size: 15px;
  border: 1px solid var(--line); background: var(--panel-2); color: var(--txt-2);
  transition: all .3s cubic-bezier(.22,1,.36,1); cursor: default;
}
.area-cloud span:hover {
  color: #fff; border-color: rgba(226,36,92,.65);
  background: rgba(226,36,92,.16); transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 34px -20px rgba(226,36,92,.9);
}
.area-cloud span.key {
  color: #1c0410; background: var(--grad-brand); border-color: transparent; font-weight: 700;
}
.radar {
  position: relative; aspect-ratio: 1; width: min(430px, 100%); margin-inline: auto;
  border-radius: 50%; overflow: hidden;
  background:
    radial-gradient(circle, rgba(226,36,92,.14), transparent 62%),
    repeating-radial-gradient(circle, rgba(255,255,255,.07) 0 1px, transparent 1px 100%);
  background-size: auto, 25% 25%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.radar::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(226,36,92,.55), rgba(226,36,92,.12) 16%, transparent 34%);
  animation: spin 5.2s linear infinite;
  filter: blur(14px);
  opacity: .85;
}
.radar-in { position: relative; text-align: center; z-index: 2; }
.radar-in .big {
  font-size: clamp(40px, 6vw, 62px); font-weight: 900; letter-spacing: -.03em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.radar-in .cap { font-size: 14px; color: var(--txt-2); letter-spacing: .05em; }
.radar-dot {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 14px 3px rgba(46,230,214,.75);
}
.radar-dot:nth-child(1) { top: 18%; left: 26%; animation: dot 2.4s infinite; }
.radar-dot:nth-child(2) { top: 66%; left: 18%; animation: dot 2.4s infinite .5s; }
.radar-dot:nth-child(3) { top: 30%; right: 20%; animation: dot 2.4s infinite 1s; }
.radar-dot:nth-child(4) { bottom: 22%; right: 30%; animation: dot 2.4s infinite 1.5s; }
.radar-dot:nth-child(5) { top: 50%; left: 48%; background: var(--gold); box-shadow: 0 0 14px 3px rgba(255,201,60,.75); }

/* ---------- 11. Timeline ---------- */
.timeline { position: relative; padding-left: 0; }
.tl-line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; margin-left: -1px;
  background: linear-gradient(180deg, transparent, rgba(226,36,92,.55) 12%, rgba(139,92,246,.5) 88%, transparent);
}
.tl-progress {
  position: absolute; left: 50%; top: 0; width: 2px; margin-left: -1px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--brand), var(--violet));
  box-shadow: 0 0 16px rgba(226,36,92,.9);
}
.tl-item { position: relative; width: 50%; padding: 0 46px 44px 0; }
.tl-item:nth-child(even) { margin-left: 50%; padding: 0 0 44px 46px; text-align: left; }
.tl-item:nth-child(odd) { text-align: right; }
.tl-card {
  display: inline-block; text-align: left; width: 100%; max-width: 430px;
  padding: 26px 28px; border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
  backdrop-filter: blur(12px);
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s, box-shadow .4s;
}
.tl-card:hover {
  transform: translateY(-6px); border-color: rgba(226,36,92,.55);
  box-shadow: 0 28px 60px -30px rgba(226,36,92,.85);
}
.tl-date {
  display: inline-block; font-family: var(--mono); font-size: 12.5px; letter-spacing: .12em;
  color: var(--gold); padding: 4px 12px; border-radius: 99px;
  background: rgba(255,201,60,.10); border: 1px solid rgba(255,201,60,.28); margin-bottom: 14px;
}
.tl-card h4 { font-size: 17.5px; margin-bottom: 8px; font-weight: 700; }
.tl-card p { font-size: 14px; color: var(--txt-2); }
.tl-dot {
  position: absolute; top: 26px; right: -8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--brand);
  box-shadow: 0 0 0 5px rgba(226,36,92,.14), 0 0 22px rgba(226,36,92,.7);
}
.tl-item:nth-child(even) .tl-dot { right: auto; left: -8px; }
.tl-item.in .tl-dot { background: var(--brand); }

/* ---------- 12. Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc {
  position: relative; padding: 34px 32px 32px; border-radius: var(--r-lg);
  border: 1px solid var(--line); overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.014));
  transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .45s;
}
.svc::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .45s;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(226,36,92,.20), transparent 62%);
}
.svc:hover { transform: translateY(-7px); border-color: rgba(226,36,92,.5); }
.svc:hover::before { opacity: 1; }
.svc-no {
  position: absolute; right: 26px; top: 18px;
  font-family: var(--mono); font-size: 46px; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,.055);
}
.svc-ic {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(226,36,92,.13); border: 1px solid rgba(226,36,92,.32); color: var(--brand-2);
  margin-bottom: 22px; position: relative;
}
.svc-ic svg { width: 24px; height: 24px; }
.svc:nth-child(2) .svc-ic { background: rgba(139,92,246,.13); border-color: rgba(139,92,246,.34); color: #b79cff; }
.svc:nth-child(3) .svc-ic { background: rgba(46,230,214,.12); border-color: rgba(46,230,214,.32); color: var(--cyan); }
.svc:nth-child(4) .svc-ic { background: rgba(255,201,60,.12); border-color: rgba(255,201,60,.32); color: var(--gold); }
.svc h3 { font-size: 19px; margin-bottom: 12px; position: relative; }
.svc p { font-size: 14.5px; color: var(--txt-2); position: relative; }
.svc .tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; position: relative; }
.svc .tags i {
  font-style: normal; font-size: 12px; padding: 4px 11px; border-radius: 99px;
  border: 1px solid var(--line); color: var(--txt-3);
}

/* ---------- 13. Matrix / platforms ---------- */
.matrix { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mx {
  padding: 30px 26px; border-radius: var(--r); text-align: center;
  border: 1px solid var(--line); background: var(--panel-2);
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s, background .4s;
}
.mx:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.28); background: var(--panel); }
.mx .glyph {
  width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 17px;
  display: grid; place-items: center; font-size: 20px; font-weight: 800;
  letter-spacing: .04em; white-space: nowrap;
  background: linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  border: 1px solid var(--line-strong);
}
.mx h4 { font-size: 16px; margin-bottom: 6px; }
.mx p { font-size: 13px; color: var(--txt-3); }
.qr-panel {
  margin-top: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.qr-card {
  display: flex; gap: 24px; align-items: center; padding: 26px;
  border-radius: var(--r-lg); border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.016));
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s;
}
.qr-card:hover { transform: translateY(-6px); border-color: rgba(226,36,92,.5); }
.qr-card img.qr { width: 128px; height: 128px; border-radius: 14px; background: #fff; padding: 6px; object-fit: contain; flex: 0 0 auto; }
.qr-card img.qr.tall { width: auto; height: 178px; padding: 0; border-radius: 12px; background: #0f1020; }
.qr-card .t { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; color: var(--brand-2); }
.qr-card h4 { font-size: 18px; margin: 8px 0 6px; }
.qr-card p { font-size: 13.5px; color: var(--txt-2); }
.qr-card .id { margin-top: 10px; font-family: var(--mono); font-size: 12.5px; color: var(--gold); }

/* ---------- 14. Community services ---------- */
.shelf { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.shelf-item {
  display: flex; gap: 22px; padding: 28px; border-radius: var(--r-lg);
  border: 1px solid var(--line); background: var(--panel-2);
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s, background .4s;
}
.shelf-item:hover { transform: translateY(-6px); border-color: rgba(46,230,214,.44); background: rgba(46,230,214,.05); }
.shelf-ic {
  flex: 0 0 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(46,230,214,.11); border: 1px solid rgba(46,230,214,.3); color: var(--cyan);
}
.shelf-ic svg { width: 22px; height: 22px; }
.shelf-item h4 { font-size: 17px; margin-bottom: 8px; }
.shelf-item p { font-size: 14px; color: var(--txt-2); }
.shelf-item .kpi { margin-top: 12px; display: flex; gap: 18px; flex-wrap: wrap; }
.shelf-item .kpi b { font-family: var(--mono); font-size: 15px; color: var(--gold); }
.shelf-item .kpi span { font-size: 12px; color: var(--txt-3); }

.groups { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.groups span {
  font-size: 13px; padding: 8px 16px; border-radius: 99px;
  border: 1px dashed var(--line-strong); color: var(--txt-2); transition: .3s;
}
.groups span:hover { border-style: solid; border-color: var(--brand-2); color: #fff; background: rgba(226,36,92,.1); }

/* ---------- 15. Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card {
  padding: 32px 30px; border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255,255,255,.06), rgba(255,255,255,.014));
  position: relative; overflow: hidden;
  transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .45s;
}
.team-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.team-card:hover::after { transform: scaleX(1); }
.team-card h3 { font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.team-card h3 em {
  font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  color: var(--txt-3); border: 1px solid var(--line); padding: 2px 8px; border-radius: 6px;
}
.team-card p { font-size: 14.5px; color: var(--txt-2); }

/* ---------- 16. Partners marquee ---------- */
.marquee { position: relative; overflow: hidden; padding: 6px 0; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 190px; z-index: 3; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.mq-track { display: flex; gap: 18px; width: max-content; animation: marquee 46s linear infinite; }
.mq-track.rev { animation-direction: reverse; animation-duration: 56s; }
.marquee:hover .mq-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item {
  flex: 0 0 auto; width: 176px; height: 92px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; padding: 16px 18px;
  background: #f6f7fa; border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s, box-shadow .35s;
}
.mq-item img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.mq-item:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 20px 40px -22px rgba(0,0,0,.9); }
.mq-wrap { display: grid; gap: 18px; }

/* keyword ticker band */
.ticker {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(226,36,92,.10), rgba(139,92,246,.08), rgba(46,230,214,.07));
  overflow: hidden; padding: 15px 0; margin-top: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker-track {
  display: flex; align-items: center; gap: 30px; width: max-content;
  animation: marquee 32s linear infinite;
}
.ticker-track span {
  font-size: 15px; font-weight: 600; letter-spacing: .1em; color: var(--txt-2); white-space: nowrap;
}
.ticker-track i { font-style: normal; font-size: 9px; color: var(--brand); }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- 17. CTA / contact ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: 32px;
  padding: 66px 56px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(700px circle at 12% 0%, rgba(226,36,92,.35), transparent 60%),
    radial-gradient(600px circle at 92% 100%, rgba(139,92,246,.30), transparent 62%),
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow: var(--shadow-lg);
}
.cta-grid { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 48px; align-items: center; }
.cta h2 { font-size: clamp(26px, 3.8vw, 40px); font-weight: 800; letter-spacing: -.02em; line-height: 1.25; }
.cta h2 .hl { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta p { margin-top: 16px; color: var(--txt-2); max-width: 560px; }
.contact-lines { margin-top: 30px; display: grid; gap: 14px; }
.cline { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; color: var(--txt-2); }
.cline svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--brand-2); margin-top: 3px; }
.cline b { color: var(--txt); font-weight: 600; }
.cta-actions { display: grid; gap: 14px; justify-items: stretch; }

/* ---------- 18. Footer ---------- */
footer {
  position: relative; z-index: 2; margin-top: 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  padding: 56px 0 34px;
}
.foot-grid { display: grid; grid-template-columns: minmax(0,1.3fr) repeat(3, minmax(0,1fr)); gap: 40px; }
.foot-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.foot-brand img { width: 48px; height: 48px; border-radius: 50%; }
.foot-brand b { font-size: 17px; display: block; }
.foot-brand span { font-size: 12px; color: var(--txt-3); letter-spacing: .1em; }
.foot-col h5 { font-size: 13px; letter-spacing: .16em; color: var(--txt-3); font-weight: 600; margin-bottom: 16px; font-family: var(--mono); }
.foot-col a, .foot-col li { display: block; font-size: 14px; color: var(--txt-2); padding: 5px 0; transition: color .25s; }
.foot-col a:hover { color: var(--brand-2); }
.foot-note { font-size: 13.5px; color: var(--txt-3); max-width: 340px; }
.foot-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--txt-3);
}

/* to-top */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(14,15,26,.86); border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px); color: var(--txt);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: .35s;
}
.to-top.on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--brand-2); color: var(--brand-2); }

/* ---------- 19. Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 72px; left: 16px; right: 16px;
    padding: 14px; border-radius: var(--r); border: 1px solid var(--line);
    background: rgba(8,9,18,.96); backdrop-filter: blur(20px);
  }
  .nav-links.open a { padding: 12px 16px; border-radius: 12px; }
  .nav-links.open a.active::after { display: none; }
  .nav-links.open a.active { background: rgba(226,36,92,.16); color: #fff; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; min-height: 380px; }
  .about-grid, .coverage-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card { position: static; }
  .cta-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .stats-panel { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .svc-grid, .shelf, .qr-panel, .matrix { grid-template-columns: 1fr; }
  .matrix { grid-template-columns: 1fr 1fr; }
  .shelf-item { flex-direction: column; }
  section { padding: 76px 0; }
  .cta { padding: 44px 26px; border-radius: 24px; }
  .tl-line, .tl-progress { left: 7px; margin-left: 0; }
  .tl-item, .tl-item:nth-child(even) {
    width: 100%; margin-left: 0; padding: 0 0 30px 34px; text-align: left;
  }
  .tl-item .tl-dot, .tl-item:nth-child(even) .tl-dot { left: -1px; right: auto; }
  .scroll-hint { display: none; }
}
@media (max-width: 640px) {
  .brand small { display: none; }
  .brand b { font-size: 15.5px; }
  .brand img { width: 34px; height: 34px; }
  .brand { gap: 9px; }
  .nav-in { gap: 10px; height: 64px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .nav-cta svg { width: 14px; height: 14px; }
  .orbit { width: 72vw; }
  .orbit-chip { font-size: 12px; padding: 7px 12px; }
  .orbit-chip.c1 { top: -4%; left: -6%; }
  .orbit-chip.c2 { top: 42%; right: -8%; }
  .orbit-chip.c3 { bottom: -2%; left: -6%; }
  .orbit-chip.c4 { display: none; }
  .hero-visual { min-height: 320px; }
  .marquee::before, .marquee::after { width: 60px; }
  .mq-item { width: 140px; height: 78px; padding: 12px 14px; }
  .ticker-track { gap: 20px; }
  .area-cloud span { padding: 9px 15px; font-size: 14px; }
}

@media (max-width: 560px) {
  .wrap, .nav-in { width: calc(100% - 32px); }
  .hero { padding-top: 118px; }
  .matrix { grid-template-columns: 1fr; }
  .qr-card { flex-direction: column; align-items: flex-start; }
  .team-grid, .foot-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-panel { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(2) { border-top: 1px solid var(--line); }
}

/* ---------- 20. Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; }
}

@media print {
  #bg-canvas, .aurora, .grid-veil, .spotlight-cursor, #preloader, .to-top { display: none !important; }
  body { background: #fff; color: #000; }
}
