/* 问涂官网 - 全站科技感设计系统 | UTF-8 */
:root {
  color-scheme: dark;
  --bg: #050a18;
  --bg-deep: #020617;
  --panel: rgba(11, 24, 52, 0.74);
  --panel-strong: rgba(15, 35, 76, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.07);
  --line: rgba(148, 163, 184, 0.2);
  --line-strong: rgba(56, 189, 248, 0.34);
  --text: #eef6ff;
  --muted: #9fb1c9;
  --muted-strong: #c9d7ea;
  --primary: #2563eb;
  --primary-2: #3b82f6;
  --cyan: #22d3ee;
  --cta: #f97316;
  --cta-hover: #fb923c;
  --success: #22c55e;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 24px 80px rgba(2, 8, 23, 0.42);
  --shadow-glow: 0 0 38px rgba(34, 211, 238, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Source Sans 3", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.24), transparent 32rem),
    radial-gradient(circle at 82% 8%, rgba(34, 211, 238, 0.18), transparent 30rem),
    linear-gradient(180deg, #071022 0%, var(--bg) 42%, #040814 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent 78%);
  animation: gridDrift 28s linear infinite;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.03) 48%, transparent 52%),
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 18%), rgba(34, 211, 238, 0.14), transparent 24rem);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button, a, label { -webkit-tap-highlight-color: transparent; }

@keyframes gridDrift { to { background-position: 58px 58px; } }
@keyframes floatOrb { 50% { transform: translate3d(18px, -22px, 0) scale(1.06); } }
@keyframes scanSweep {
  0% { transform: translateX(-120%); opacity: 0; }
  12%, 82% { opacity: 1; }
  100% { transform: translateX(220%); opacity: 0; }
}
@keyframes pulseRing {
  0% { transform: scale(0.82); opacity: 0.7; }
  80%, 100% { transform: scale(1.28); opacity: 0; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.narrow { width: min(860px, calc(100% - 32px)); margin-inline: auto; }
.stack { display: grid; gap: 24px; }
.section { position: relative; padding: clamp(72px, 9vw, 128px) 0; overflow: hidden; }
.home-screen { min-height: 100svh; display: flex; align-items: center; padding: 6.2rem 0 4rem; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.section-title span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #fff 42%, var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
}
.section-copy {
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.85;
}
.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}
.section-head .section-title { font-size: clamp(2rem, 3.2vw, 3.5rem); }
.muted { color: var(--muted); }
.accent { color: var(--cyan); }
.text-cta { color: var(--cta); }

.glass-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(5, 10, 24, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.glass-header.header-scrolled {
  background: rgba(3, 7, 18, 0.9);
  border-color: rgba(34, 211, 238, 0.24);
  box-shadow: 0 18px 60px rgba(2, 8, 23, 0.35);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 24px); color: var(--muted-strong); font-size: 0.92rem; }
.nav-link {
  position: relative;
  padding: 8px 0;
  transition: color 0.22s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--primary-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav-link:hover,
.nav-link.nav-active { color: #fff; }
.nav-link:hover::after,
.nav-link.nav-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-button {
  display: none;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
}
.nav-backdrop { display: none; position: fixed; inset: 0; z-index: 50; background: rgba(2, 6, 23, 0.7); backdrop-filter: blur(4px); cursor: pointer; }
.nav-panel {
  display: none;
  position: fixed;
  z-index: 70;
  top: 84px;
  right: 16px;
  width: min(320px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(5, 10, 24, 0.96);
  box-shadow: var(--shadow);
}
.nav-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted-strong);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-panel a:hover,
.nav-panel .nav-active { color: #fff; background: rgba(34, 211, 238, 0.12); }
#nav-toggle:checked ~ .nav-backdrop,
#nav-toggle:checked ~ .nav-panel { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0.78rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), background 0.22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #071022;
  background: linear-gradient(135deg, var(--cyan), #93f2ff 46%, #60a5fa);
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.28);
}
.btn-primary:hover { box-shadow: 0 0 48px rgba(34, 211, 238, 0.42); }
.btn-secondary {
  color: #fff;
  border-color: rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.07);
}
.btn-secondary:hover { border-color: var(--line-strong); background: rgba(34, 211, 238, 0.1); }
.btn-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--cta), var(--cta-hover));
  box-shadow: 0 0 34px rgba(249, 115, 22, 0.26);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 800;
}
.link-arrow::after { content: "→"; transition: transform 0.2s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

.hero-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy { max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
}
.trust-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.6);
}
.hero-visual {
  position: relative;
  min-height: 520px;
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.72;
  animation: floatOrb 8s var(--ease) infinite;
}
.orb-a { width: 240px; height: 240px; right: 18%; top: 4%; background: rgba(34, 211, 238, 0.22); }
.orb-b { width: 190px; height: 190px; left: 6%; bottom: 7%; background: rgba(37, 99, 235, 0.34); animation-delay: 1.2s; }
.tech-console {
  position: absolute;
  inset: 8% 0 auto auto;
  width: min(460px, 100%);
  min-height: 420px;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 10, 24, 0.86);
  box-shadow: var(--shadow), var(--shadow-glow);
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
}
.tech-console::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: scanSweep 6s ease-in-out infinite;
}
.console-top { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 0.8rem; margin-bottom: 22px; }
.console-dots { display: flex; gap: 7px; }
.console-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); opacity: 0.8; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.metric-card {
  position: relative;
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.065);
}
.metric-card strong { display: block; font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; line-height: 1; }
.metric-card span { display: block; margin-top: 10px; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.two-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.glass-card,
.data-card,
.news-card,
.case-card,
.timeline-item,
.contact-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 60px rgba(2, 8, 23, 0.18);
  overflow: hidden;
}
.glass-card,
.data-card { padding: clamp(20px, 2.8vw, 30px); }
.glass-card::before,
.data-card::before,
.case-card::before,
.news-card::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(34, 211, 238, 0.18), transparent 18rem);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.glass-card:hover::before,
.data-card:hover::before,
.case-card:hover::before,
.news-card:hover::before,
.contact-panel:hover::before { opacity: 1; }
.interactive-card {
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.interactive-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-glow), 0 18px 60px rgba(2, 8, 23, 0.28);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  margin-bottom: 18px;
  background: rgba(34, 211, 238, 0.11);
  border: 1px solid rgba(34, 211, 238, 0.18);
}
.card-icon svg { width: 24px; height: 24px; }
.card-title { margin: 0 0 10px; color: #fff; font-size: 1.12rem; }
.card-copy { margin: 0; color: var(--muted); line-height: 1.75; font-size: 0.95rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: var(--muted-strong); background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(148, 163, 184, 0.15); font-size: 0.78rem; }
.split-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
.sticky-panel { position: sticky; top: 104px; }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.data-card strong { display: block; color: #fff; font-size: 2.15rem; line-height: 1; }
.data-card span { display: block; color: var(--muted); margin-top: 8px; font-size: 0.9rem; }

.page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: end;
  padding: 8.5rem 0 4.5rem;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 26%, rgba(34, 211, 238, 0.2), transparent 24rem),
    radial-gradient(circle at 18% 72%, rgba(37, 99, 235, 0.26), transparent 24rem),
    linear-gradient(145deg, rgba(5, 10, 24, 0.86), rgba(5, 10, 24, 0.96));
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 10px; align-items: center; margin-bottom: 20px; color: var(--muted); font-size: 0.9rem; }
.breadcrumb a:hover { color: #fff; }
.page-title { margin: 0; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.05; letter-spacing: -0.05em; color: #fff; }
.page-lead { max-width: 760px; margin: 18px 0 0; color: var(--muted-strong); line-height: 1.85; font-size: 1.08rem; }
.content-main { padding: clamp(64px, 8vw, 104px) 0; }
.content-main.alt { background: linear-gradient(180deg, rgba(15, 23, 42, 0.32), rgba(2, 6, 23, 0)); }
.rich-text { color: var(--muted-strong); line-height: 1.9; font-size: 1.02rem; }
.rich-text p { margin: 0 0 18px; }
.timeline { position: relative; display: grid; gap: 16px; }
.timeline-item { padding: 22px 22px 22px 76px; }
.timeline-year {
  position: absolute;
  left: 20px;
  top: 22px;
  color: var(--cyan);
  font-weight: 900;
}
.media-panel {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 20%, rgba(34, 211, 238, 0.24), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.media-panel::before,
.media-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 999px;
}
.media-panel::before { width: 260px; height: 260px; right: -58px; top: -36px; }
.media-panel::after { width: 180px; height: 180px; left: 30px; bottom: 36px; }
.media-label { position: absolute; left: 26px; right: 26px; bottom: 26px; padding: 18px; border-radius: 20px; color: var(--muted-strong); background: rgba(2, 6, 23, 0.62); border: 1px solid rgba(148, 163, 184, 0.18); }

.case-card,
.news-card { display: grid; min-height: 100%; }
.visual-block {
  min-height: 180px;
  background:
    radial-gradient(circle at 30% 28%, rgba(34, 211, 238, 0.25), transparent 12rem),
    linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(2, 6, 23, 0.9));
}
.case-card .body,
.news-card .body { padding: 24px; position: relative; z-index: 1; }
.case-meta,
.news-date { color: var(--cyan); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.05em; }
.article-card { padding: clamp(24px, 4vw, 42px); }
.article-card h2 { color: #fff; margin-top: 34px; }

.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { color: var(--muted-strong); font-size: 0.88rem; font-weight: 700; }
.field input,
.field textarea {
  width: 100%;
  color: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.52);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}
.qr-placeholder {
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(34, 211, 238, 0.4);
  border-radius: 24px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}

.site-footer {
  position: relative;
  padding: 56px 0 34px;
  border-top: 1px solid rgba(34, 211, 238, 0.18);
  background: rgba(2, 6, 23, 0.78);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 36px; }
.site-footer .brand {
  display: inline-flex;
  margin-bottom: 22px;
}
.site-footer .footer-grid > div:first-child .footer-copy {
  margin: 0;
}
.footer-title { color: #fff; margin: 0 0 14px; font-size: 0.95rem; }
.footer-copy,
.copyright { color: var(--muted); line-height: 1.75; }
.footer-nav { display: grid; gap: 10px; color: var(--muted-strong); }
.footer-nav a:hover { color: var(--cyan); }
.copyright { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(148, 163, 184, 0.12); font-size: 0.88rem; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-visible { opacity: 1; transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: inline-flex; }
  .hero-layout,
  .split-layout,
  .two-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .tech-console { inset-inline: 0; margin-inline: auto; transform: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid,
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .sticky-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 24px, 1180px); }
  .header-inner { height: 64px; }
  .home-screen { min-height: auto; padding: 6rem 0 4rem; }
  .hero-visual { min-height: 360px; }
  .tech-console { min-height: 340px; padding: 14px; }
  .metric-grid,
  .card-grid,
  .feature-grid,
  .stat-strip,
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 390px; padding-top: 7.5rem; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* 视觉升级：真实 Logo + 高级 Future Enterprise 风格 | UTF-8 */
:root {
  --bg: #030712;
  --bg-deep: #00030a;
  --panel: rgba(8, 15, 31, 0.78);
  --panel-strong: rgba(10, 20, 42, 0.94);
  --line: rgba(133, 158, 191, 0.18);
  --line-strong: rgba(59, 126, 191, 0.52);
  --text: #f4f8ff;
  --muted: #8ea0b8;
  --muted-strong: #d7e2f2;
  --primary: #3b7ebf;
  --primary-2: #5aa8ff;
  --cyan: #59e6ff;
  --cta: #d7a63f;
  --cta-hover: #f0c767;
  --champagne: #f5d38a;
  --shadow: 0 30px 120px rgba(0, 3, 10, 0.62);
  --shadow-glow: 0 0 56px rgba(59, 126, 191, 0.34);
}

body {
  background:
    radial-gradient(circle at 16% 0%, rgba(59, 126, 191, 0.36), transparent 34rem),
    radial-gradient(circle at 78% 12%, rgba(89, 230, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 50% 100%, rgba(215, 166, 63, 0.12), transparent 28rem),
    linear-gradient(180deg, #020817 0%, #030712 46%, #00030a 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(89, 230, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 126, 191, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}

body::after {
  background:
    linear-gradient(118deg, transparent 0%, rgba(245, 211, 138, 0.035) 47%, transparent 53%),
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 18%), rgba(89, 230, 255, 0.16), transparent 25rem);
}

@keyframes lineCharge {
  0% { transform: translateX(-100%); opacity: 0; }
  18%, 84% { opacity: 1; }
  100% { transform: translateX(260%); opacity: 0; }
}

@keyframes nodePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(89, 230, 255, 0); transform: scale(1); }
  50% { box-shadow: 0 0 28px rgba(89, 230, 255, 0.72); transform: scale(1.18); }
}

.glass-header {
  background:
    linear-gradient(180deg, rgba(6, 12, 26, 0.9), rgba(6, 12, 26, 0.66));
  border-bottom-color: rgba(59, 126, 191, 0.28);
}

.glass-header.header-scrolled {
  background: rgba(0, 3, 10, 0.92);
  box-shadow: 0 22px 80px rgba(0, 3, 10, 0.58), inset 0 -1px 0 rgba(89, 230, 255, 0.14);
}

.brand {
  gap: 14px;
}

.brand-logo-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(138px, 13vw, 190px);
  height: 42px;
  padding: 7px 12px;
  border: 1px solid rgba(89, 230, 255, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(225, 238, 255, 0.86)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 34px rgba(59, 126, 191, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.brand-logo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 60%);
  transform: translateX(-140%);
  transition: transform 0.6s var(--ease);
}

.brand:hover .brand-logo-shell::after,
.mobile-brand:hover .brand-logo-shell::after {
  transform: translateX(140%);
}

.brand-logo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.12) contrast(1.08);
}

.mobile-brand {
  margin-bottom: 10px;
  padding: 8px !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.mobile-brand .brand-logo-shell {
  width: 100%;
}

.nav-link::after {
  background: linear-gradient(90deg, var(--champagne), var(--cyan), var(--primary-2));
}

.btn-primary {
  color: #05070d;
  background:
    linear-gradient(135deg, #fff4c2 0%, var(--cta-hover) 38%, var(--cta) 100%);
  box-shadow: 0 0 38px rgba(215, 166, 63, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.btn-primary:hover {
  box-shadow: 0 0 58px rgba(215, 166, 63, 0.48), 0 10px 30px rgba(0, 3, 10, 0.32);
}

.btn-secondary {
  border-color: rgba(89, 230, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(89, 230, 255, 0.1), rgba(255, 255, 255, 0.045));
}

.btn-cta {
  color: #05070d;
  background: linear-gradient(135deg, #fff3bd, #d7a63f 58%, #a97412);
}

.section-title {
  text-shadow: 0 0 52px rgba(59, 126, 191, 0.28);
}

.section-title span,
.page-title {
  background: linear-gradient(92deg, #ffffff 0%, #bfeeff 36%, #5aa8ff 68%, #f5d38a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-kicker {
  color: var(--champagne);
}

.section-kicker::before {
  background: linear-gradient(90deg, var(--champagne), var(--cyan), transparent);
}

.hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
}

.hero-visual {
  min-height: 480px;
}

.orb-a {
  background: rgba(59, 126, 191, 0.42);
  filter: blur(42px);
}

.orb-b {
  background: rgba(215, 166, 63, 0.22);
  filter: blur(44px);
}

.tech-console {
  inset: 0;
  margin: auto;
  width: min(500px, 100%);
  min-height: 410px;
  padding: 22px;
  border-color: rgba(89, 230, 255, 0.36);
  background:
    linear-gradient(145deg, rgba(11, 28, 58, 0.76), rgba(4, 8, 18, 0.9)),
    rgba(0, 3, 10, 0.82);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 88px rgba(59, 126, 191, 0.3),
    0 36px 120px rgba(0, 3, 10, 0.62);
}

.tech-console::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 66px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), var(--cyan), transparent);
  animation: lineCharge 4.8s ease-in-out infinite;
}

.console-map {
  position: relative;
  height: 116px;
  margin-bottom: 18px;
  border: 1px solid rgba(89, 230, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 26% 40%, rgba(89, 230, 255, 0.16), transparent 7rem),
    linear-gradient(rgba(89, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 230, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  overflow: hidden;
}

.map-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(89, 230, 255, 0.7);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.map-node-a { left: 18%; top: 30%; }
.map-node-b { left: 52%; top: 58%; animation-delay: 0.5s; }
.map-node-c { right: 14%; top: 24%; animation-delay: 1s; }
.map-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(89, 230, 255, 0), rgba(89, 230, 255, 0.72), rgba(245, 211, 138, 0.62));
  transform-origin: left center;
}
.map-line-a { left: 20%; top: 38%; width: 38%; transform: rotate(22deg); }
.map-line-b { left: 54%; top: 59%; width: 34%; transform: rotate(-28deg); }

.metric-card {
  border-color: rgba(89, 230, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(0, 3, 10, 0.4);
}

.metric-card::after,
.glass-card::after,
.data-card::after,
.case-card::after,
.news-card::after,
.contact-panel::after,
.timeline-item::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 46%;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--cyan), transparent);
  opacity: 0.78;
}

.metric-card strong {
  color: var(--champagne);
  text-shadow: 0 0 24px rgba(215, 166, 63, 0.34);
}

.glass-card,
.data-card,
.news-card,
.case-card,
.timeline-item,
.contact-panel {
  border-color: rgba(133, 158, 191, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(59, 126, 191, 0.08), transparent);
  box-shadow:
    0 24px 90px rgba(0, 3, 10, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.capability-card {
  min-height: 330px;
  padding-top: 72px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.capability-card::before {
  opacity: 1;
  background:
    radial-gradient(circle at var(--card-x, 72%) var(--card-y, 20%), rgba(89, 230, 255, 0.16), transparent 14rem),
    linear-gradient(135deg, rgba(59, 126, 191, 0.16), transparent 44%);
}

.capability-card::after {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 211, 138, 0.72), rgba(89, 230, 255, 0.9), transparent);
}

.capability-card .card-icon {
  position: absolute;
  top: 22px;
  left: 24px;
}

.capability-card::marker {
  content: "";
}

.capability-card[data-index] .card-title::before {
  content: none;
}

.capability-card[data-index]::before {
  pointer-events: none;
}

.capability-card[data-index] .card-title {
  position: relative;
}

.capability-card[data-index] .card-title::before {
  position: absolute;
  right: 0;
  top: -52px;
  color: rgba(245, 211, 138, 0.42);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.card-index {
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(245, 211, 138, 0.44);
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  text-shadow: 0 0 28px rgba(215, 166, 63, 0.18);
}

.card-icon {
  color: var(--champagne);
  background:
    linear-gradient(135deg, rgba(245, 211, 138, 0.14), rgba(89, 230, 255, 0.08));
  border-color: rgba(245, 211, 138, 0.26);
  box-shadow: 0 0 26px rgba(215, 166, 63, 0.16);
}

.tag {
  border-color: rgba(89, 230, 255, 0.18);
  background: rgba(89, 230, 255, 0.06);
}

.page-hero {
  min-height: 500px;
}

.page-hero::before {
  background:
    radial-gradient(circle at 76% 22%, rgba(89, 230, 255, 0.18), transparent 22rem),
    radial-gradient(circle at 18% 68%, rgba(59, 126, 191, 0.36), transparent 26rem),
    radial-gradient(circle at 52% 20%, rgba(215, 166, 63, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(0, 3, 10, 0.86), rgba(0, 3, 10, 0.98));
}

.page-hero::after {
  opacity: 0.56;
  background-image:
    linear-gradient(rgba(89, 230, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 126, 191, 0.08) 1px, transparent 1px);
}

.media-panel {
  background:
    radial-gradient(circle at 50% 22%, rgba(245, 211, 138, 0.18), transparent 12rem),
    radial-gradient(circle at 78% 18%, rgba(89, 230, 255, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.visual-block {
  background:
    radial-gradient(circle at 28% 24%, rgba(245, 211, 138, 0.22), transparent 10rem),
    radial-gradient(circle at 70% 28%, rgba(89, 230, 255, 0.18), transparent 11rem),
    linear-gradient(135deg, rgba(59, 126, 191, 0.54), rgba(0, 3, 10, 0.92));
}

.field input,
.field textarea {
  background: rgba(0, 3, 10, 0.56);
  border-color: rgba(133, 158, 191, 0.26);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(215, 166, 63, 0.12);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(59, 126, 191, 0.22), transparent 22rem),
    rgba(0, 3, 10, 0.9);
  border-top-color: rgba(215, 166, 63, 0.18);
}

@media (max-width: 1024px) {
  .hero-visual { min-height: 460px; }
  .tech-console { inset: 0; margin: auto; transform: none; }
}

@media (max-width: 640px) {
  .brand-logo-shell { width: 128px; height: 38px; padding: 6px 10px; }
  .hero-visual { min-height: 420px; }
  .tech-console { inset: 0; margin: auto; min-height: 350px; clip-path: none; transform: none; }
  .console-map { height: 90px; }
  .capability-card { min-height: 280px; clip-path: none; }
}

/* Motion system | UTF-8 */
:root {
  --motion-in: 0.7s;
  --motion-stagger: 80ms;
  --motion-loop-slow: 28s;
  --motion-loop-mid: 8s;
}

@keyframes titleShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cardIndexIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes metricPop {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes mapLineDraw {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes visualScanMove {
  0% { transform: translate(-120%, -30%) rotate(-18deg); opacity: 0; }
  15%, 85% { opacity: 0.45; }
  100% { transform: translate(220%, 30%) rotate(-18deg); opacity: 0; }
}

@keyframes newsBarGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes caseMetaIn {
  from { opacity: 0; letter-spacing: 0.22em; }
  to { opacity: 1; letter-spacing: 0.05em; }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

@keyframes hexDrift {
  to { background-position: 64px 64px; }
}

@keyframes tagFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes iconPulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(89, 230, 255, 0); }
  50% { box-shadow: 0 0 22px rgba(89, 230, 255, 0.45); }
}

@keyframes dataCardFlash {
  0%, 100% { box-shadow: 0 24px 90px rgba(0, 3, 10, 0.28); }
  50% { box-shadow: 0 24px 90px rgba(0, 3, 10, 0.28), 0 0 32px rgba(89, 230, 255, 0.2); }
}

@keyframes featuredBreath {
  0%, 100% { box-shadow: 0 24px 90px rgba(0, 3, 10, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
  50% { box-shadow: 0 24px 90px rgba(0, 3, 10, 0.28), 0 0 28px rgba(89, 230, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
}

@keyframes productCardIn {
  from { opacity: 0; transform: perspective(800px) rotateX(6deg) translateY(16px); }
  to { opacity: 1; transform: perspective(800px) rotateX(0) translateY(0); }
}

@keyframes hudBarGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes qrBracket {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes footerLine {
  0% { transform: translateX(-100%); opacity: 0; }
  20%, 80% { opacity: 0.35; }
  100% { transform: translateX(260%); opacity: 0; }
}

@keyframes navLinkIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes breadcrumbIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mediaOrbitA {
  to { transform: rotate(360deg); }
}

@keyframes mediaOrbitB {
  to { transform: rotate(-360deg); }
}

@keyframes wordFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 80;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--champagne), var(--cyan), var(--primary-2));
  box-shadow: 0 0 12px rgba(89, 230, 255, 0.5);
  pointer-events: none;
}

.hero-stagger > .motion-item {
  opacity: 0;
  animation: heroFadeUp var(--motion-in) var(--ease) forwards;
  animation-delay: var(--motion-delay, 0ms);
}

.hero-stagger.hero-ready > .motion-item,
.no-motion .hero-stagger > .motion-item {
  opacity: 1;
  animation: none;
  transform: none;
}

.title-shine {
  background-size: 200% auto;
  animation: titleShine 1.2s var(--ease) 0.35s 1 forwards;
}

.page-hero { position: relative; }
.page-hero-scan {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-hero-scan::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(89, 230, 255, 0.14), rgba(245, 211, 138, 0.08), transparent);
  animation: scanSweep var(--motion-loop-mid) ease-in-out infinite;
}

.page-hero-hex::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(89, 230, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: hexDrift 24s linear infinite;
}

.hero-radar {
  position: absolute;
  right: 8%;
  top: 50%;
  width: min(220px, 40vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.hero-radar::before,
.hero-radar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(89, 230, 255, 0.22);
}
.hero-radar::before {
  inset: 18%;
  border-color: rgba(245, 211, 138, 0.2);
  animation: orbitSpin 40s linear infinite;
}
.hero-radar::after {
  inset: 0;
  border: none;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(89, 230, 255, 0.35) 42deg, transparent 84deg);
  animation: radarSweep 12s linear infinite;
}

body[data-page="products"] .page-hero-content { position: relative; z-index: 1; }

.trust-pill::before {
  animation: pulseRing 2.8s ease-out infinite;
}

.reveal-visible .metric-card {
  animation: metricPop 0.55s var(--ease) forwards;
}
.reveal-visible .metric-card:nth-child(1) { animation-delay: 0ms; }
.reveal-visible .metric-card:nth-child(2) { animation-delay: 90ms; }
.reveal-visible .metric-card:nth-child(3) { animation-delay: 180ms; }
.reveal-visible .metric-card:nth-child(4) { animation-delay: 270ms; }

.console-map.lines-ready .map-line {
  transform-origin: left center;
  animation: mapLineDraw 0.9s var(--ease) forwards;
}
.console-map.lines-ready .map-line-b { animation-delay: 0.25s; }

.reveal-visible.capability-card .card-index,
.capability-card.reveal-visible .card-index {
  animation: cardIndexIn 0.6s var(--ease) forwards;
}

.capability-card:hover .card-icon {
  transform: rotate(8deg);
  transition: transform 0.28s var(--ease);
}
.capability-card .card-icon { transition: transform 0.28s var(--ease); }

body[data-page="home"] .home-screen:nth-of-type(2) {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(89, 230, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

.visual-block {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), background-position 0.6s var(--ease);
}
.visual-block::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: visualScanMove 6s ease-in-out infinite;
  pointer-events: none;
}
.case-card.reveal-visible .visual-block::after,
.case-card:hover .visual-block::after {
  animation-duration: 4s;
}
.case-card:hover .visual-block {
  transform: scale(1.03);
  background-position: 8% 12%, 72% 18%, 135deg;
}

.visual-hud {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: grid;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}
.visual-hud span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(245, 211, 138, 0.5));
  transform-origin: left center;
  transform: scaleX(0);
}
.case-card.reveal-visible .visual-hud span:nth-child(1) { animation: hudBarGrow 0.5s var(--ease) 0.2s forwards; }
.case-card.reveal-visible .visual-hud span:nth-child(2) { animation: hudBarGrow 0.5s var(--ease) 0.35s forwards; width: 72%; }
.case-card.reveal-visible .visual-hud span:nth-child(3) { animation: hudBarGrow 0.5s var(--ease) 0.5s forwards; width: 48%; }

.news-card {
  position: relative;
  border-left: 0 solid transparent;
  transition: border-left-width 0.55s var(--ease), border-color 0.55s var(--ease);
}
.news-card.reveal-visible {
  border-left-width: 3px;
  border-left-color: var(--cyan);
}

.news-date { font-variant-numeric: tabular-nums; }
.news-card.reveal-visible .news-date {
  animation: heroFadeUp 0.5s var(--ease) forwards;
}

.news-card[data-featured="true"] {
  animation: featuredBreath 4s ease-in-out infinite;
}

.case-meta {
  display: inline-block;
}
.case-card.reveal-visible .case-meta {
  animation: caseMetaIn 0.65s var(--ease) forwards;
}

.timeline {
  padding-left: 8px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), rgba(245, 211, 138, 0.5));
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1.1s var(--ease);
}
.timeline.timeline-active::before {
  transform: scaleY(1);
}
.timeline-item.timeline-active {
  border-color: var(--line-strong);
  box-shadow: 0 0 28px rgba(89, 230, 255, 0.12);
}
.timeline-item.timeline-active .timeline-year {
  animation: nodePulse 2.4s ease-in-out infinite;
}

.media-panel::before {
  animation: mediaOrbitA 40s linear infinite;
}
.media-panel::after {
  animation: mediaOrbitB 48s linear infinite;
}

.media-label .media-word {
  display: inline-block;
  opacity: 0;
}
.media-label.words-ready .media-word {
  animation: wordFade 0.45s var(--ease) forwards;
  animation-delay: calc(var(--word-i, 0) * 60ms);
}

.stat-strip .data-card.reveal-visible {
  animation: dataCardFlash 1.2s var(--ease) 1;
}

.process-rail {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 22px;
  position: relative;
}
.process-rail::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 11px;
  height: 2px;
  background: linear-gradient(90deg, rgba(89, 230, 255, 0.2), rgba(89, 230, 255, 0.5));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1s var(--ease);
}
.process-rail.rail-active::before {
  transform: scaleX(1);
}
.process-step {
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(89, 230, 255, 0.15);
  opacity: 0.35;
  transition: opacity 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.process-step span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.process-rail.rail-active .process-step.step-active::before {
  opacity: 1;
  animation: nodePulse 2.4s ease-in-out infinite;
}
.process-rail.rail-active .process-step.step-active span {
  color: var(--muted-strong);
}

.glass-card.reveal-visible .card-icon {
  animation: iconPulseGlow 2.4s var(--ease) 1;
}
body[data-page="services"] .reveal-visible .tag-list .tag {
  opacity: 0;
  animation: tagFadeUp 0.4s var(--ease) forwards;
}
body[data-page="services"] .reveal-visible .tag-list .tag:nth-child(1) { animation-delay: 0.05s; }
body[data-page="services"] .reveal-visible .tag-list .tag:nth-child(2) { animation-delay: 0.1s; }
body[data-page="services"] .reveal-visible .tag-list .tag:nth-child(3) { animation-delay: 0.15s; }
body[data-page="services"] .reveal-visible .tag-list .tag:nth-child(4) { animation-delay: 0.2s; }

body[data-page="products"] .card-grid > .glass-card.reveal-visible {
  animation: productCardIn 0.65s var(--ease) forwards;
}

.solution-card {
  position: relative;
}
.solution-card .solution-index {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(245, 211, 138, 0.42);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}
.link-arrow {
  position: relative;
}
.link-arrow:hover::after {
  text-shadow: -6px 0 8px rgba(89, 230, 255, 0.45);
}

.qr-placeholder {
  position: relative;
}
.qr-placeholder::before,
.qr-placeholder::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(89, 230, 255, 0.55);
  animation: qrBracket 3s ease-in-out infinite;
  pointer-events: none;
}
.qr-placeholder::before { left: 8px; top: 8px; border-right: none; border-bottom: none; }
.qr-placeholder::after { right: 8px; bottom: 8px; border-left: none; border-top: none; animation-delay: 0.6s; }

.field.field-focus-glow input,
.field.field-focus-glow textarea {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(89, 230, 255, 0.1), 0 0 20px rgba(89, 230, 255, 0.08);
}

body[data-page="contact"] .reveal-visible .tag-list .tag {
  opacity: 0;
  animation: tagFadeUp 0.4s var(--ease) forwards;
}
body[data-page="contact"] .reveal-visible .tag-list .tag:nth-child(1) { animation-delay: 0.05s; }
body[data-page="contact"] .reveal-visible .tag-list .tag:nth-child(2) { animation-delay: 0.12s; }
body[data-page="contact"] .reveal-visible .tag-list .tag:nth-child(3) { animation-delay: 0.19s; }

.btn-primary:hover {
  box-shadow: 0 0 34px rgba(59, 126, 191, 0.35), 0 0 0 1px rgba(89, 230, 255, 0.25);
}
body[data-page="article"] .article-card .btn-primary {
  animation: pulseRing 2.4s ease-out 1;
  animation-delay: 0.8s;
}

.breadcrumb.motion-item {
  opacity: 0;
}
.hero-stagger.hero-ready .breadcrumb,
.breadcrumb.breadcrumb-ready {
  animation: breadcrumbIn 0.55s var(--ease) forwards;
}

.rich-text .reveal-para {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.rich-text .reveal-para.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.brand:hover .brand-logo-shell {
  box-shadow: 0 0 24px rgba(89, 230, 255, 0.22);
  transition: box-shadow 0.3s var(--ease);
}

.site-footer {
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: footerLine 10s ease-in-out infinite;
  opacity: 0.4;
}

#nav-toggle:checked ~ .nav-panel a {
  animation: navLinkIn 0.4s var(--ease) forwards;
  opacity: 0;
}
#nav-toggle:checked ~ .nav-panel a:nth-child(2) { animation-delay: 0.05s; }
#nav-toggle:checked ~ .nav-panel a:nth-child(3) { animation-delay: 0.1s; }
#nav-toggle:checked ~ .nav-panel a:nth-child(4) { animation-delay: 0.15s; }
#nav-toggle:checked ~ .nav-panel a:nth-child(5) { animation-delay: 0.2s; }
#nav-toggle:checked ~ .nav-panel a:nth-child(6) { animation-delay: 0.25s; }
#nav-toggle:checked ~ .nav-panel a:nth-child(7) { animation-delay: 0.3s; }
#nav-toggle:checked ~ .nav-panel a:nth-child(8) { animation-delay: 0.35s; }
#nav-toggle:checked ~ .nav-panel a:nth-child(9) { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .title-shine,
  .hero-stagger > .motion-item,
  .page-hero-scan::before,
  .hero-radar::before,
  .hero-radar::after,
  .page-hero-hex::after,
  .visual-block::after,
  .trust-pill::before,
  .news-card[data-featured="true"],
  .media-panel::before,
  .media-panel::after,
  .site-footer::before,
  .qr-placeholder::before,
  .qr-placeholder::after {
    animation: none !important;
  }
  .reveal-visible .metric-card,
  .console-map.lines-ready .map-line,
  .capability-card.reveal-visible .card-index,
  .case-card.reveal-visible .case-meta,
  .glass-card.reveal-visible .card-icon,
  body[data-page="products"] .card-grid > .glass-card.reveal-visible {
    animation: none !important;
  }
  .timeline::before { transform: scaleY(1); }
  .visual-hud span { transform: scaleX(1); }
  .reading-progress { display: none; }
}
