/* 灵虚幻境数字科技官网 - Unreal-style dark premium static site */
:root{
  --bg:#040910;
  --bg-2:#07111D;
  --panel:#091522;
  --panel-2:#0D1D2E;
  --line:rgba(217,166,80,.34);
  --gold:#D9A64D;
  --gold-2:#F5D589;
  --gold-3:#8D5A20;
  --text:#F6E8C9;
  --muted:#B7C2D1;
  --blue:#2D8CFF;
  --cyan:#7FE7FF;
  --danger:#FF7A39;
  --radius:24px;
  --shadow:0 28px 90px rgba(0,0,0,.42);
  --ease:cubic-bezier(.16,1,.3,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  font-family:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-5;
  background:
    radial-gradient(circle at 70% 12%, rgba(45,140,255,.18), transparent 32%),
    radial-gradient(circle at 22% 22%, rgba(217,166,80,.08), transparent 26%),
    linear-gradient(180deg,#03070E 0%,#07101C 42%,#04080E 100%);
}
.site-bg{
  position:fixed;
  inset:0;
  z-index:-4;
  opacity:.18;
  pointer-events:none;
  background-image:url("../images/noise.png");
  mix-blend-mode:screen;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font:inherit;color:inherit}

.cursor-glow{
  position:fixed;
  width:380px;
  height:380px;
  border-radius:50%;
  pointer-events:none;
  z-index:999;
  opacity:.26;
  background:radial-gradient(circle, rgba(63,164,255,.32), rgba(217,166,80,.12) 34%, transparent 70%);
  transform:translate(-50%,-50%);
  mix-blend-mode:screen;
  transition:opacity .25s ease;
}

/* Header */
.site-header{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  z-index:1000;
  width:min(1440px, calc(100% - 48px));
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 24px 0 26px;
  border:1px solid var(--line);
  border-radius:16px;
  background:linear-gradient(90deg,rgba(4,10,18,.88),rgba(8,18,30,.82));
  backdrop-filter:blur(18px);
  box-shadow:0 18px 70px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.05);
}
.site-header::after{
  content:"";
  position:absolute;
  left:28%;
  right:28%;
  bottom:-1px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity:.95;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:max-content;
  font-family:"STSong","Songti SC","SimSun",serif;
  font-size:28px;
  letter-spacing:.06em;
  color:var(--gold-2);
  text-shadow:0 0 26px rgba(217,166,80,.28);
}
.brand-mark{width:44px;height:44px}
.main-nav{
  display:flex;
  align-items:center;
  gap:36px;
  font-size:16px;
  color:rgba(255,255,255,.82);
}
.main-nav a{
  position:relative;
  padding:12px 0;
  transition:color .25s ease;
}
.main-nav a:hover,.main-nav a.is-active{color:var(--gold-2)}
.main-nav a.is-active::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:3px;
  width:30px;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  transform:translateX(-50%);
  box-shadow:0 0 14px var(--gold);
}
.main-nav .nav-cta{
  padding:13px 20px;
  border:1px solid rgba(245,213,137,.72);
  border-radius:10px;
  color:var(--gold-2);
  box-shadow:inset 0 0 0 1px rgba(217,166,80,.16);
}
.main-nav .nav-cta::after{display:none}
.nav-toggle{display:none;background:transparent;border:0;width:44px;height:44px}
.nav-toggle i{display:block;height:2px;background:var(--gold-2);margin:7px 6px}

/* Common */
.section{
  position:relative;
  width:min(1440px, calc(100% - 48px));
  margin:0 auto;
  padding:96px 0;
}
.section-head{
  text-align:center;
  margin:0 auto 46px;
  max-width:820px;
}
.section-head-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  text-align:left;
  max-width:none;
}
.section-kicker{
  margin:0 0 10px;
  color:var(--cyan);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:13px;
}
h1,h2,h3,p{margin-top:0}
h1,h2{
  font-family:"STSong","Songti SC","SimSun",serif;
  color:var(--gold-2);
  font-weight:700;
  letter-spacing:.05em;
  text-shadow:0 0 30px rgba(217,166,80,.23);
}
h1{
  font-size:clamp(46px,6vw,88px);
  line-height:1.12;
  margin:0 0 26px;
}
h2{
  font-size:clamp(34px,3.6vw,56px);
  line-height:1.16;
  margin:0 0 16px;
}
h3{
  color:var(--gold-2);
  font-size:24px;
  letter-spacing:.04em;
  margin:0 0 14px;
}
p{color:var(--muted);line-height:1.85}
.btn{
  display:inline-flex;
  align-items:center;
  gap:16px;
  min-height:56px;
  padding:0 26px;
  border-radius:10px;
  font-weight:700;
  letter-spacing:.05em;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.btn b{font-size:28px;line-height:0;transform:translateY(-1px)}
.btn-primary{
  color:#111214;
  background:linear-gradient(135deg,#F9D987,#B97C2C);
  box-shadow:0 18px 48px rgba(217,166,80,.22);
}
.btn-ghost{
  border:1px solid rgba(245,213,137,.72);
  color:var(--gold-2);
  background:rgba(9,18,30,.38);
}
.btn:hover{transform:translateY(-3px)}
.text-link{
  color:var(--gold-2);
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
}
.text-link b{font-size:24px}

/* Hero */
.hero{
  width:100%;
  min-height:920px;
  padding:180px max(24px,calc((100vw - 1440px)/2)) 110px;
  display:grid;
  grid-template-columns:minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  gap:30px;
  align-items:center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  background:
    linear-gradient(90deg,#040910 0%,rgba(4,9,16,.94) 34%,rgba(4,9,16,.52) 62%,#040910 100%),
    url("../images/hero-scene.webp") right center/cover no-repeat;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:360px;
  background:linear-gradient(0deg,#040910 12%,transparent);
  pointer-events:none;
}
.hero-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:-1;
  opacity:.9;
}
.hero-copy{
  position:relative;
  z-index:3;
  max-width:760px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 14px;
  margin-bottom:24px;
  border:1px solid rgba(127,231,255,.28);
  border-radius:999px;
  color:var(--cyan);
  background:rgba(11,27,45,.48);
  letter-spacing:.12em;
  font-size:13px;
  text-transform:uppercase;
}
.eyebrow .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--cyan);
  box-shadow:0 0 18px var(--cyan);
}
.hero-services{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin:0 0 22px;
  color:#fff;
  font-size:23px;
  letter-spacing:.03em;
}
.hero-services span{
  width:1px;
  height:18px;
  background:linear-gradient(180deg,transparent,var(--gold),transparent);
}
.hero-desc{
  max-width:680px;
  font-size:18px;
  color:rgba(222,229,239,.84);
}
.hero-actions{display:flex;gap:22px;margin-top:38px;flex-wrap:wrap}
.hero-visual{
  position:relative;
  z-index:2;
  min-height:580px;
}
.hero-scene{
  position:absolute;
  inset:0;
  border-radius:30px;
  background:
    radial-gradient(circle at 70% 28%,rgba(64,162,255,.22),transparent 38%),
    linear-gradient(135deg,rgba(9,20,33,.1),rgba(9,20,33,.52));
  filter:drop-shadow(0 24px 80px rgba(0,0,0,.34));
}
.hero-scene::before{
  content:"";
  position:absolute;
  inset:10%;
  border:1px solid rgba(127,231,255,.18);
  border-radius:26px;
  transform:perspective(900px) rotateX(58deg) rotateZ(-11deg);
  background:
    linear-gradient(90deg,rgba(127,231,255,.18) 1px,transparent 1px),
    linear-gradient(rgba(127,231,255,.18) 1px,transparent 1px);
  background-size:60px 60px;
  animation:gridDrift 8s linear infinite;
  opacity:.36;
}
.hero-gif{
  position:absolute;
  right:4%;
  bottom:12%;
  width:68%;
  height:54%;
  background:url("../gif/hero-flow.gif") center/cover no-repeat;
  mix-blend-mode:screen;
  opacity:.72;
  filter:saturate(1.3) contrast(1.1);
}
.floating-panel{
  position:absolute;
  width:220px;
  padding:18px;
  border:1px solid rgba(127,231,255,.35);
  border-radius:16px;
  background:rgba(3,15,28,.48);
  backdrop-filter:blur(12px);
  box-shadow:0 0 40px rgba(45,140,255,.12), inset 0 0 28px rgba(45,140,255,.09);
  animation:floatY 5s var(--ease) infinite alternate;
}
.floating-panel strong{
  display:block;
  color:var(--cyan);
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.floating-panel em{
  display:block;
  color:rgba(255,255,255,.72);
  font-style:normal;
  font-size:13px;
  margin:8px 0 12px;
}
.floating-panel span{
  display:block;
  height:46px;
  border-radius:10px;
  background:
    linear-gradient(90deg,rgba(127,231,255,.45) 20%,transparent 20% 35%,rgba(127,231,255,.25) 35% 55%,transparent 55%),
    linear-gradient(180deg,transparent 50%,rgba(127,231,255,.16) 51%);
  background-size:100% 100%,100% 9px;
}
.panel-a{left:12%;top:11%}
.panel-b{right:4%;top:38%;animation-delay:.7s}
.hologram-ring{
  position:absolute;
  right:9%;
  bottom:18%;
  width:240px;
  height:240px;
  border-radius:50%;
  border:1px solid rgba(127,231,255,.32);
  box-shadow:0 0 50px rgba(45,140,255,.18), inset 0 0 40px rgba(45,140,255,.14);
  animation:spinSlow 18s linear infinite;
}
.hologram-ring::before,.hologram-ring::after{
  content:"";
  position:absolute;
  inset:26px;
  border:1px dashed rgba(127,231,255,.36);
  border-radius:50%;
}
.hologram-ring::after{inset:58px;border-style:solid;opacity:.6}
.hero-bottom{
  position:absolute;
  left:max(24px,calc((100vw - 1440px)/2));
  bottom:58px;
  z-index:3;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.engine-chip{
  padding:10px 16px;
  border:1px solid rgba(217,166,80,.32);
  border-radius:999px;
  color:rgba(245,213,137,.88);
  background:rgba(10,22,36,.52);
  backdrop-filter:blur(12px);
  font-size:13px;
  letter-spacing:.08em;
}

/* Cards */
.capability-grid,.solution-grid,.case-grid{
  display:grid;
  gap:22px;
}
.capability-grid{grid-template-columns:repeat(4,1fr)}
.cap-card{
  min-height:300px;
  padding:38px 28px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:
    radial-gradient(circle at 20% 16%,rgba(217,166,80,.12),transparent 28%),
    radial-gradient(circle at 85% 90%,rgba(45,140,255,.16),transparent 38%),
    linear-gradient(180deg,rgba(10,23,38,.78),rgba(4,12,22,.82));
  box-shadow:var(--shadow);
  transform-style:preserve-3d;
  transition:transform .4s var(--ease),border-color .4s,box-shadow .4s;
}
.cap-card::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:90px;
  background:url("../gif/digital-wave.gif") center/cover no-repeat;
  opacity:.23;
  mix-blend-mode:screen;
  border-radius:0 0 var(--radius) var(--radius);
  pointer-events:none;
}
.cap-card:hover,.solution-card:hover,.case-card:hover{
  border-color:rgba(245,213,137,.75);
  box-shadow:0 34px 100px rgba(0,0,0,.5),0 0 45px rgba(217,166,80,.12);
}
.icon{
  width:84px;
  height:84px;
  margin-bottom:30px;
  color:var(--gold-2);
  filter:drop-shadow(0 0 20px rgba(217,166,80,.28));
}
.icon::before,.icon::after{content:"";display:block}
.icon.cube{
  border:4px solid var(--gold-2);
  transform:rotate(45deg) skew(-8deg,-8deg);
  margin-left:12px;
  margin-top:12px;
}
.icon.cube::before{
  position:absolute;
  width:46px;height:4px;background:var(--gold-2);transform:rotate(-45deg) translate(22px,24px);
}
.icon.clapper{
  position:relative;
  border:4px solid var(--gold-2);
  border-radius:5px;
}
.icon.clapper::before{
  position:absolute;left:-4px;right:-4px;top:-22px;height:22px;border:4px solid var(--gold-2);border-radius:5px 5px 0 0;transform:skewX(-12deg);
}
.icon.clapper::after{
  position:absolute;left:30px;top:24px;border-left:18px solid var(--gold-2);border-top:12px solid transparent;border-bottom:12px solid transparent;
}
.icon.temple{
  position:relative;
  border-bottom:4px solid var(--gold-2);
}
.icon.temple::before{
  position:absolute;left:8px;right:8px;bottom:4px;height:42px;border:4px solid var(--gold-2);border-top:0;
}
.icon.temple::after{
  position:absolute;left:2px;right:2px;top:12px;height:22px;border-top:4px solid var(--gold-2);border-bottom:4px solid var(--gold-2);border-radius:50% 50% 0 0;
}
.icon.vr{
  position:relative;
}
.icon.vr::before{
  width:74px;height:40px;border:5px solid var(--gold-2);border-radius:20px 20px 16px 16px;margin-top:14px;
}
.icon.vr::after{
  width:58px;height:46px;border-left:4px solid var(--gold-2);border-right:4px solid var(--gold-2);border-bottom:4px solid var(--gold-2);border-radius:0 0 34px 34px;margin:0 0 0 8px;
}
.cap-card p{font-size:16px;margin:0}

.solution-grid{grid-template-columns:repeat(4,1fr)}
.solution-card,.case-card{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(10,22,36,.84),rgba(5,12,20,.92));
  box-shadow:var(--shadow);
  transform-style:preserve-3d;
  transition:transform .42s var(--ease),border-color .4s,box-shadow .4s;
}
.solution-card img{height:220px;width:100%;object-fit:cover}
.solution-card::before,.case-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 34%,rgba(3,8,14,.92));
  z-index:1;
  pointer-events:none;
}
.card-body{
  position:relative;
  z-index:2;
  padding:24px 22px 26px;
}
.mini-icon,.case-icon{
  display:inline-grid;
  place-items:center;
  width:44px;height:44px;
  border:1px solid rgba(245,213,137,.56);
  border-radius:14px;
  color:var(--gold-2);
  margin-bottom:16px;
}
.card-body h3,.case-content h3{font-size:22px;margin-bottom:10px}
.card-body p,.case-content p{font-size:15px;margin:0}

.case-grid{grid-template-columns:repeat(3,1fr)}
.case-card{min-height:560px}
.case-card img{height:100%;width:100%;object-fit:cover}
.case-card::before{background:linear-gradient(180deg,transparent 30%,rgba(4,9,16,.92) 70%)}
.scan-layer{
  position:absolute;
  inset:0;
  z-index:2;
  background:url("../gif/scan-loop.gif") center/cover no-repeat;
  mix-blend-mode:screen;
  opacity:.28;
  pointer-events:none;
}
.case-content{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:3;
}
.case-icon{font-family:"STSong","Songti SC","SimSun",serif;font-size:22px;border-radius:50%}

/* Process */
.process{
  overflow:hidden;
  border-top:1px solid rgba(217,166,80,.16);
  border-bottom:1px solid rgba(217,166,80,.16);
}
.wave-gif{
  position:absolute;
  left:0;right:0;bottom:0;height:220px;
  background:url("../gif/digital-wave.gif") center bottom/cover repeat-x;
  opacity:.38;
  mix-blend-mode:screen;
}
.process-line{
  position:relative;
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:14px;
  z-index:2;
}
.step{
  position:relative;
  text-align:center;
  padding:0 6px;
}
.step::after{
  content:"";
  position:absolute;
  top:48px;
  right:-18px;
  width:32px;
  height:1px;
  background:linear-gradient(90deg,var(--gold),transparent);
}
.step:last-child::after{display:none}
.step b{
  display:grid;
  place-items:center;
  width:96px;height:96px;
  margin:0 auto 18px;
  border:1px solid rgba(245,213,137,.7);
  border-radius:50%;
  color:var(--gold-2);
  font-size:21px;
  box-shadow:0 0 36px rgba(217,166,80,.14), inset 0 0 20px rgba(217,166,80,.06);
}
.step i{
  position:absolute;
  top:45px;left:50%;
  transform:translate(-50%,-50%);
  color:var(--gold-2);
  font-style:normal;
  font-size:26px;
}
.step h3{font-size:20px;margin:0 0 8px}
.step p{font-size:14px;line-height:1.6;margin:0;color:rgba(218,225,235,.7)}

/* Tech marquee */
.tech-stack{
  width:100%;
  padding:0;
  border-block:1px solid rgba(217,166,80,.18);
  background:rgba(5,13,23,.62);
  overflow:hidden;
}
.marquee{white-space:nowrap;overflow:hidden}
.marquee-track{
  display:inline-flex;
  gap:18px;
  padding:20px 0;
  animation:marquee 26s linear infinite;
}
.marquee span{
  padding:10px 18px;
  border:1px solid rgba(127,231,255,.22);
  border-radius:999px;
  color:rgba(245,213,137,.88);
  background:rgba(8,20,34,.7);
}

/* About and contact */
.about-panel{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:44px;
  min-height:560px;
  padding:64px;
  border:1px solid var(--line);
  border-radius:30px;
  background:
    linear-gradient(90deg,rgba(4,9,16,.28),rgba(4,9,16,.86) 53%),
    url("../images/about-bg.webp") left center/cover no-repeat;
  box-shadow:var(--shadow);
}
.about-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(127,231,255,.1) 1px,transparent 1px),
    linear-gradient(rgba(127,231,255,.08) 1px,transparent 1px);
  background-size:80px 80px;
  opacity:.12;
  mask-image:linear-gradient(90deg,#000,transparent 72%);
  pointer-events:none;
}
.about-copy{position:relative;z-index:2;max-width:600px;align-self:center}
.about-copy p{font-size:17px}
.about-features{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
.about-features article{
  padding:26px 28px;
  border:1px solid rgba(217,166,80,.22);
  border-radius:20px;
  background:rgba(5,13,23,.72);
  backdrop-filter:blur(12px);
}
.about-features i{
  color:var(--gold-2);
  font-size:32px;
  font-style:normal;
  display:block;
  margin-bottom:10px;
}
.about-features h3{font-size:22px}
.about-features p{margin:0;font-size:15px}

.contact-panel{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:58px 64px;
  min-height:330px;
  border:1px solid var(--line);
  border-radius:30px;
  background:
    linear-gradient(90deg,rgba(5,11,20,.95) 0%,rgba(5,11,20,.78) 44%,rgba(5,11,20,.18)),
    url("../images/contact-gate.webp") right center/cover no-repeat;
  box-shadow:var(--shadow);
}
.contact-copy{max-width:860px}
.contact-copy ul{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:15px;
}
.contact-copy li{
  color:rgba(255,255,255,.76);
  font-size:17px;
}
.contact-copy li span{color:var(--gold-2);font-weight:700}
.footer{
  width:min(1440px, calc(100% - 48px));
  margin:20px auto 42px;
  padding:34px 0 0;
  border-top:1px solid rgba(217,166,80,.18);
  color:rgba(255,255,255,.6);
}
.footer-brand{
  display:flex;align-items:center;gap:12px;color:var(--gold-2);font-family:"STSong","Songti SC","SimSun",serif;font-size:26px;margin-bottom:24px;
}
.footer-brand img{width:38px}
.footer nav{
  display:flex;
  flex-wrap:wrap;
  gap:26px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(217,166,80,.12);
}
.footer nav a:hover{color:var(--gold-2)}
.footer p{font-size:14px;color:rgba(255,255,255,.45);margin:20px 0 0}
.footer-qrcode{display:flex;flex-direction:column;align-items:center;gap:6px;margin:16px 0 0}
.footer-qrcode img{width:80px;height:80px;border-radius:8px;border:1px solid var(--line);opacity:.85}
.footer-qrcode span{font-size:12px;color:rgba(255,255,255,.4)}

/* reveal and animation */
.reveal{
  opacity:0;
  transform:translateY(36px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay:var(--delay,0ms);
}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.tilt-card{will-change:transform}
@keyframes gridDrift{to{background-position:60px 60px}}
@keyframes floatY{from{transform:translateY(0)}to{transform:translateY(-24px)}}
@keyframes spinSlow{to{transform:rotate(360deg)}}
@keyframes marquee{to{transform:translateX(-50%)}}

/* Responsive */
@media (max-width:1180px){
  .main-nav{gap:22px}
  .brand{font-size:22px}
  .hero{grid-template-columns:1fr;min-height:auto;padding-top:150px}
  .hero-visual{min-height:420px}
  .capability-grid,.solution-grid{grid-template-columns:repeat(2,1fr)}
  .process-line{grid-template-columns:repeat(4,1fr);row-gap:36px}
  .step::after{display:none}
  .about-panel{grid-template-columns:1fr}
}
@media (max-width:820px){
  .site-header{top:12px;width:calc(100% - 24px);height:66px;padding:0 14px}
  .brand{font-size:18px}.brand-mark{width:36px;height:36px}
  .nav-toggle{display:block}
  .main-nav{
    position:absolute;
    left:0;right:0;top:76px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:18px;
    gap:8px;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(4,10,18,.96);
  }
  .main-nav.is-open{display:flex}
  .main-nav .nav-cta{width:100%;text-align:center;justify-content:center}
  .section{width:calc(100% - 28px);padding:66px 0}
  .hero{padding:132px 18px 70px}
  h1{font-size:44px}
  h2{font-size:36px}
  .hero-services{font-size:17px}
  .hero-desc{font-size:16px}
  .hero-visual{min-height:320px}
  .floating-panel{display:none}
  .hologram-ring{width:160px;height:160px}
  .hero-bottom{display:none}
  .capability-grid,.solution-grid,.case-grid{grid-template-columns:1fr}
  .case-card{min-height:460px}
  .process-line{grid-template-columns:repeat(2,1fr)}
  .about-panel,.contact-panel{padding:34px 22px}
  .contact-panel{display:block}
  .contact-panel .btn{margin-top:24px}
  .footer{width:calc(100% - 28px)}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}
  .cursor-glow{display:none}
}
