@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Noto+Sans+SC:wght@500;700;800&family=Space+Grotesk:wght@600;700&display=swap");

/* =====================================================
   Jianliao IM · 88app.im-inspired clean layout
   White + Blue accent · Professional SaaS style
   v2.0 — Enhanced animations, colors, H5 mobile
===================================================== */

/* ============== Reset ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1677ff;
  --blue-hover: #4096ff;
  --blue-light: #e8f4ff;
  --blue-lighter: #f0f7ff;
  --blue-dark: #0958d9;
  --blue-glow: rgba(22,119,255,.15);
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-hero: linear-gradient(180deg, #edf2fb 0%, #f0f4fa 40%, #fff 100%);
  --ink: #1a1a2e;
  --ink-soft: #374151;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-light: #f0f1f3;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 24px rgba(0,0,0,.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.1);
  --shadow-blue: 0 8px 32px rgba(22,119,255,.18);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --pricing-badge-top: -12px;
  --pricing-badge-padding: 4px 14px;
  --pricing-badge-font-size: 12px;
  --pricing-badge-radius: 20px;
  --pricing-ribbon-top: 14px;
  --pricing-ribbon-right: -38px;
  --pricing-ribbon-width: 132px;
  --pricing-ribbon-font-size: 11px;
  --pricing-ribbon-angle: 38deg;
  --pricing-ribbon-bg: linear-gradient(135deg, #f59e0b, #ef4444);
  --pricing-ribbon-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open { overflow: hidden; }

a, button { -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.text-blue { color: var(--blue); }

/* ============== Layout ============== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 80px 0; }

/* ============== Section Headings ============== */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.head-line {
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-hover));
  border-radius: 2px;
  margin: 12px auto 16px;
}

.section-desc {
  color: var(--muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  text-wrap: pretty;
}

/* ============== Header ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-light);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
  background: rgba(255,255,255,.95);
}

body.nav-open .header {
  z-index: 230;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 16px;
}

/* Static header for simple content pages (cases/blog) */
.header-static .nav {
  display: flex;
  margin-left: auto;
}

.header-static .nav-toggle,
.header-static .nav-close {
  display: none !important;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.brand-icon { display: flex; }
.brand-icon img {
  display: block;
  border-radius: 6px;
}
.brand-im { color: var(--blue); margin-left: 2px; }

/* Nav */
.nav {
  display: none;
  margin-left: auto;
}

.nav-close {
  display: none;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s var(--ease), color .2s var(--ease);
  position: relative;
}

.nav a:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--blue-light);
  font-weight: 700;
}

/* Nav Actions */
.nav-actions {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  min-width: 118px;
  justify-content: center;
}

/* Mobile Nav Toggle */
.nav-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .2s;
}

.nav-toggle:active { background: var(--bg-soft); }

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all .3s var(--ease);
}

/* Nav Mask (mobile) */
.nav-mask {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(8, 15, 32, .45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  touch-action: none;
  transition: opacity .2s ease;
  z-index: 220;
}
.nav-mask.show {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .2s ease;
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}

.btn:active::after {
  background: rgba(0,0,0,.06);
}

.btn:active {
  transform: scale(.97);
}

.btn:focus-visible,
.nav a:focus-visible,
.modal-close:focus-visible,
.form-input:focus-visible {
  outline: 2px solid #7db8ff;
  outline-offset: 2px;
}

.btn-icon { font-size: 14px; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(22,119,255,.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-hover), var(--blue));
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0) scale(.97);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-lighter);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 24px;
}

.btn-full { width: 100%; }

/* ============== Hero ============== */
.hero {
  background: var(--bg-hero);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22,119,255,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 24px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,119,255,.15); }
  50% { box-shadow: 0 0 0 8px rgba(22,119,255,0); }
}

.badge-icon { font-size: 14px; }

h1 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
}

/* Checkmarks */
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.icon-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.icon-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Test Account */
.hero-account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s var(--ease);
}

.hero-account:hover {
  box-shadow: var(--shadow-sm);
}

.hero-account strong {
  color: var(--ink);
}

.account-sep {
  color: var(--line);
  margin: 0 4px;
}

/* Hero Right - Platform Cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-spring), box-shadow .3s var(--ease);
  opacity: 0;
  transform: translateY(16px);
}

.platform-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.platform-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.platform-icon { display: flex; }

/* Console Card */
.console-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s var(--ease-spring), box-shadow .3s var(--ease);
  position: relative;
}

.console-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.console-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 42%;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.12), rgba(56, 189, 248, 0));
  opacity: .55;
  pointer-events: none;
  animation: consoleSweep 4.8s ease-in-out infinite;
}

.console-dots {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #fafafa;
  border-bottom: 1px solid var(--line-light);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.console-body {
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.console-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px 110px at 50% 0%, rgba(56, 189, 248, 0.16), transparent 72%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.02), transparent 36%);
  pointer-events: none;
}

.console-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: rgba(239, 246, 255, 0.82);
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.console-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.36);
  animation: consolePulse 1.8s ease-in-out infinite;
}

.console-live-label {
  position: relative;
}

.console-live-chip {
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
}

.console-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.console-desc {
  font-size: 14px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.console-telemetry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.console-telemetry-item {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  padding: 10px 10px 11px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(241, 246, 255, 0.88));
  text-align: left;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.console-telemetry-item:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.34);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.console-telemetry-item span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.console-telemetry-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.console-wave {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 6px;
  height: 28px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.console-wave span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.32), rgba(22, 119, 255, 0.9));
  height: 8px;
  animation: consoleWave 1.8s ease-in-out infinite;
  transition: height .45s ease, opacity .45s ease;
}

.console-wave span:nth-child(2) { animation-delay: .12s; height: 16px; }
.console-wave span:nth-child(3) { animation-delay: .24s; height: 24px; }
.console-wave span:nth-child(4) { animation-delay: .36s; height: 14px; }
.console-wave span:nth-child(5) { animation-delay: .48s; height: 20px; }

.console-track {
  position: relative;
  height: 22px;
  margin-top: 14px;
  z-index: 1;
}

.console-track-line {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.28) 50%, rgba(37, 99, 235, 0.08));
  overflow: hidden;
}

.console-track-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  width: 34%;
  animation: consoleTrackFlow 2.8s linear infinite;
}

.console-track-node {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.22);
  background: linear-gradient(180deg, #93c5fd, #2563eb);
  animation: consoleNodePulse 2.2s ease-in-out infinite;
}

.console-track-node--left { left: 14%; }
.console-track-node--mid { left: 50%; animation-delay: .28s; }
.console-track-node--right { left: 86%; animation-delay: .56s; }

.console-track-packet {
  position: absolute;
  left: 16%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.26) 32%, rgba(37, 99, 235, 0.95) 68%);
  box-shadow:
    0 0 0 5px rgba(37, 99, 235, 0.06),
    0 0 22px rgba(37, 99, 235, 0.35);
  animation: consolePacket 4.8s cubic-bezier(.65, 0, .35, 1) infinite;
}

@keyframes consolePulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.38); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes consoleWave {
  0%, 100% { transform: scaleY(.65); opacity: .72; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes consoleSweep {
  0% { transform: translateY(0); opacity: .26; }
  50% { transform: translateY(260px); opacity: .58; }
  100% { transform: translateY(0); opacity: .26; }
}

@keyframes consoleTrackFlow {
  0% { transform: translateX(-120%); opacity: .45; }
  100% { transform: translateX(320%); opacity: .9; }
}

@keyframes consoleNodePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(.92); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.2); }
  50% { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
}

@keyframes consolePacket {
  0% { left: 16%; opacity: 0; transform: translate(-50%, -50%) scale(.88); }
  8% { opacity: 1; }
  34% { left: 50%; opacity: 1; transform: translate(-50%, -50%) scale(1); }
  66% { left: 84%; opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
  86% { opacity: 0; }
  100% { left: 16%; opacity: 0; transform: translate(-50%, -50%) scale(.88); }
}

/* ============== Stats Strip ============== */
.stats-strip {
  padding: 60px 0;
  border-bottom: 1px solid var(--line-light);
  background: var(--bg);
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.stats-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stats-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.stats-right {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease-spring);
}

.stat-item.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-value {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat animate - scale pop */
.stat-value.stat-animate {
  animation: statPop .6s var(--ease-spring) forwards;
}

@keyframes statPop {
  0% { transform: scale(.5); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* ============== Showcase (Video) ============== */
.showcase {
  background: var(--bg-soft);
}

.video-frame {
  max-width: 960px;
  margin: 0 auto;
  background: #1a1a2e;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.video-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
}

.frame-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #222;
}

.frame-filename {
  margin-left: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-family: ui-monospace, "SF Mono", monospace;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  color: rgba(255,255,255,.6);
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(22,119,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all .35s var(--ease-spring);
  box-shadow: 0 0 0 0 rgba(22,119,255,.3);
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,119,255,.3); }
  50% { box-shadow: 0 0 0 16px rgba(22,119,255,0); }
}

.play-btn:hover {
  background: rgba(22,119,255,.7);
  transform: scale(1.1);
}

.video-placeholder p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

/* ============== Section CTA Strip ============== */
.section-cta-strip {
  padding: 24px 0;
  background: transparent;
}

.section-cta-inner {
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 119, 255, 0.08), rgba(14, 165, 233, 0.06));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}

.section-cta-inner p {
  margin: 0;
  font-size: 14px;
  font-weight: 550;
  color: #0f2f64;
}

.section-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============== Product Gallery ============== */
.product-gallery {
  background: var(--bg);
}

.shot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.shot-card {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(246,250,255,.99));
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  padding: 14px;
  opacity: 1;
  transform: none;
  transition: transform .35s var(--ease-spring), box-shadow .3s var(--ease), opacity .35s var(--ease);
  overflow: hidden;
}

.shot-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-gallery .shot-card {
  opacity: 1 !important;
  transform: none !important;
}

.shot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.shot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px 120px at 92% 0%, rgba(37, 99, 235, 0.06), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.24), transparent 42%);
  pointer-events: none;
}

.shot-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 2px 0 10px;
  position: relative;
  z-index: 1;
}

.shot-card:nth-child(2) .shot-chip {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.shot-card:nth-child(3) .shot-chip {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.shot-window {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.shot-window span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.shot-window span:nth-child(1) { background: #ff5f56; }
.shot-window span:nth-child(2) { background: #ffbd2e; }
.shot-window span:nth-child(3) { background: #27c93f; }

.shot-body {
  border-radius: 12px;
  border: 1px solid #dbe8ff;
  min-height: 180px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.shot-chat {
  background:
    linear-gradient(135deg, rgba(22,119,255,.2), rgba(14,165,233,.12)),
    repeating-linear-gradient(180deg, rgba(255,255,255,.7) 0, rgba(255,255,255,.7) 16px, rgba(232,242,255,.8) 16px, rgba(232,242,255,.8) 32px);
}

.shot-admin {
  background:
    linear-gradient(180deg, rgba(30,64,175,.18), rgba(59,130,246,.08)),
    linear-gradient(90deg, rgba(255,255,255,.8) 36%, rgba(219,234,254,.7) 36%, rgba(219,234,254,.7) 100%);
}

.shot-audit {
  background:
    radial-gradient(circle at 75% 30%, rgba(20,184,166,.25), transparent 48%),
    linear-gradient(180deg, rgba(15,23,42,.06), rgba(14,165,233,.12));
}

.shot-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.shot-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.shot-image {
  width: 100%;
  display: block;
  aspect-ratio: 5 / 3;
  min-height: 180px;
  background: #eef4ff;
  border-radius: 12px;
  border: 1px solid #dbe8ff;
  margin-bottom: 12px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
}

.shot-image:hover {
  transform: scale(1.01);
  border-color: #bcd6ff;
  box-shadow: 0 8px 20px rgba(22,119,255,.12);
}

.shot-image:focus-visible {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

/* ============== Subtabs ============== */
.subtabs-section {
  padding: 16px 0 24px;
  background: transparent;
}

.subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.subtab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s var(--ease);
}

.subtab:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-lighter);
}

.subtab[aria-current="page"] {
  color: #fff;
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

/* ============== Platform Demo ============== */
.platform-demo {
  background: var(--bg);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.demo-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(246,250,255,.99));
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 20px;
  padding: 28px 24px 26px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), border-color .3s;
  opacity: 0;
  transform: translateY(20px);
  overflow: hidden;
}

.demo-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.26);
}

.demo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px 120px at 92% 0%, rgba(37, 99, 235, 0.06), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.24), transparent 42%);
  pointer-events: none;
}

.demo-card--highlight {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.12), 0 14px 30px rgba(15, 23, 42, 0.06);
}

.demo-card--highlight:hover {
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.12), 0 18px 34px rgba(15, 23, 42, 0.08);
}

.demo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.demo-chip--blue { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.demo-chip--amber { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.demo-chip--green { background: rgba(16, 185, 129, 0.1); color: #059669; }

.demo-icon, .demo-card h3, .demo-card p, .demo-credentials, .demo-card .btn-full {
  position: relative;
  z-index: 1;
}

.demo-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s var(--ease-spring);
}

.demo-card:hover .demo-icon {
  transform: scale(1.08);
}

.demo-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.demo-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.demo-credentials {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--blue-lighter);
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--blue);
}

.demo-credentials strong {
  color: var(--blue-dark);
}

/* ============== Features ============== */
.features {
  background: var(--bg-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 22px 22px 24px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), border-color .3s;
  opacity: 0;
  transform: translateY(20px);
  overflow: hidden;
}

.feature-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.26);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px 140px at 50% 0%, rgba(37, 99, 235, 0.06), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 42%);
  pointer-events: none;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-card:nth-child(2) .feature-tag {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.feature-card:nth-child(3) .feature-tag {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.feature-card:nth-child(4) .feature-tag {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform .35s var(--ease-spring);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.12) rotate(-3deg);
}

.feature-icon--blue { background: var(--blue-light); }
.feature-icon--green { background: #ecfdf5; }
.feature-icon--orange { background: #fffbeb; }
.feature-icon--red { background: #fef2f2; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============== Architecture ============== */
.architecture {
  background: var(--bg);
}

.arch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.arch-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 28px 26px 26px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), border-color .3s;
  opacity: 0;
  transform: translateY(20px);
  overflow: hidden;
}

.arch-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.arch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.26);
}

.arch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(240px 120px at 90% 0%, rgba(37, 99, 235, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.24), transparent 40%);
  pointer-events: none;
}

.arch-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.arch-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.arch-badge {
  font-size: 16px;
}

.arch-card h3:first-child { color: var(--blue); }

.arch-list {
  list-style: none;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.arch-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
}

.arch-list .icon-check {
  width: 18px;
  height: 18px;
}
.arch-list .icon-check::after {
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
}

/* ============== Scenarios ============== */
.scenarios {
  background: var(--bg-soft);
}

.scene-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.scene-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 22px 20px 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), border-color .3s;
  opacity: 0;
  transform: translateY(20px);
  overflow: hidden;
}

.scene-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.scene-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.26);
}

.scene-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px 120px at 92% 0%, rgba(37, 99, 235, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.24), transparent 42%);
  pointer-events: none;
}

.scene-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.scene-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform .35s var(--ease-spring);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  position: relative;
  z-index: 1;
}

.scene-card:hover .scene-icon {
  transform: scale(1.08);
}

.scene-icon--org { background: linear-gradient(180deg, #3b82f6, #2563eb); }
.scene-icon--cs { background: linear-gradient(180deg, #10b981, #059669); }
.scene-icon--fin { background: linear-gradient(180deg, #f59e0b, #d97706); }
.scene-icon--glb { background: linear-gradient(180deg, #8b5cf6, #7c3aed); }
.scene-icon--dev { background: linear-gradient(180deg, #06b6d4, #0891b2); }
.scene-icon--sec { background: linear-gradient(180deg, #ef4444, #dc2626); }

.scene-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.scene-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============== FAQ ============== */
.faq {
  background: var(--bg);
}

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

.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(249,252,255,.99));
  transition: box-shadow .3s var(--ease), border-color .3s, transform .3s var(--ease-spring);
  opacity: 0;
  transform: translateY(12px);
}

.faq-item.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.faq-item.open {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.12), 0 14px 30px rgba(15, 23, 42, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
  min-height: 58px;
}

.faq-question-text {
  flex: 1;
  min-width: 0;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.16));
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  flex-shrink: 0;
}

.faq-arrow {
  margin-left: auto;
  display: flex;
  color: var(--muted);
  transition: transform .35s var(--ease-spring), color .2s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s var(--ease), opacity .24s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 20px 18px 54px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

/* ============== CTA ============== */
.cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22,119,255,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.cta-sub {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: .02em;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.cta-point {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  backdrop-filter: blur(10px);
}

.cta h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.4;
  text-wrap: balance;
}

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

/* ============== Footer ============== */
.footer {
  background: linear-gradient(180deg, #0b1220 0%, #0a1020 100%);
  padding: 24px 0;
  color: #cbd5e1;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.footer-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.footer-info [data-footer-contact],
.footer-info [data-copy-domain] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: color .2s var(--ease), opacity .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.footer-info [data-footer-contact]:hover,
.footer-info [data-copy-domain]:hover {
  color: #bfdbfe;
  border-color: rgba(125, 211, 252, 0.26);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-1px);
}

.footer-info [data-footer-contact]:focus-visible,
.footer-info [data-copy-domain]:focus-visible {
  outline: 2px solid rgba(191,219,254,.6);
  outline-offset: 2px;
  border-radius: 6px;
}

.footer-copy {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.65;
}

.footer-action-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 8px);
  background: rgba(15,23,42,.92);
  color: #fff;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  z-index: 1200;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.footer-action-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ============== Floating Buttons ============== */
.floating-btns {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 260;
  pointer-events: none;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
  pointer-events: auto;
}

.float-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}

.float-btn:active {
  transform: scale(.95);
}

.float-btn--green { background: linear-gradient(135deg, #25d366, #128c3c); }
.float-btn--yellow { background: linear-gradient(135deg, #f59e0b, #d97706); }
.float-btn--blue { background: linear-gradient(135deg, #0088cc, #006daa); }

/* ============== Modal System ============== */
#modalContainer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  pointer-events: auto;
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.modal.visible {
  opacity: 1;
}

.modal.visible .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal.closing {
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.modal.closing .modal-content {
  transform: translateY(10px) scale(.97);
  opacity: 0;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin-top: 60px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  overflow: hidden;
  transform: translateY(20px) scale(.96);
  opacity: 0;
  transition: transform .35s var(--ease-spring), opacity .3s var(--ease);
}

/* Prevent header/nav toggle from surfacing above modal on mobile */
html.modal-open .header,
body.modal-open .header {
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

body.modal-open .nav-toggle,
body.modal-open .nav,
body.modal-open .nav-actions {
  visibility: hidden !important;
}

body.modal-open .floating-btns {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.modal-open .nav-mask {
  display: none !important;
}

html.modal-open,
body.modal-open {
  overflow: hidden !important;
}

.modal-header {
  padding: 28px;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.modal-subtitle {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 16px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.modal-description {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

.modal-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
}

.modal-close:hover {
  background: var(--bg-soft);
  border-color: var(--muted);
  transform: rotate(90deg);
}

.modal-body {
  padding: 28px;
  max-height: 60vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-form { display: grid; gap: 14px; }

.form-group {
  display: grid;
  gap: 6px;
  position: relative;
}

.form-group.focused .form-label {
  color: var(--blue);
}

.form-group.focused .form-input {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s;
}

.form-input {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  transition: all .25s var(--ease);
}

.form-input:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-input.error {
  border-color: var(--red);
  background: #fef2f2;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
  animation: inputShake .4s ease;
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}

.form-input::placeholder { color: #9ca3af; }

.form-submit {
  margin-top: 8px;
  width: 100%;
}

.form-success {
  padding: 16px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  animation: successFade .4s var(--ease);
}

@keyframes successFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-doc-content p {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.6;
}

.modal-doc-content ul {
  list-style: none;
  padding: 0;
}

.modal-doc-content li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.modal-doc-content strong {
  color: var(--ink);
}

/* ============== Section Reveal Animation ============== */
.js section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.js section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== Reduced motion ============== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js section,
  .platform-card,
  .demo-card,
  .feature-card,
  .scene-card,
  .faq-item,
  .arch-card,
  .stat-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============== Pricing Page Styles ============== */
.pricing-hero {
  background: var(--bg-hero);
  text-align: center;
  padding: 100px 0 60px;
}

.pricing-hero h1 {
  font-size: 32px;
}

.pricing-checks {
  justify-content: center;
  margin-top: 8px;
}

.pricing-checks .check-item {
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(148, 163, 184, .24);
  padding: 8px 12px;
  border-radius: 999px;
}

.pricing-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.pricing { padding: 40px 0 80px; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-xs);
  position: relative;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing-card.highlight {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-sm);
}

.pricing-card.highlight:hover {
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}

.pricing-card .badge {
  position: absolute;
  top: var(--pricing-badge-top);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: var(--pricing-badge-padding);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: var(--pricing-badge-font-size);
  font-weight: 700;
  border-radius: var(--pricing-badge-radius);
  white-space: nowrap;
}

.pricing-card--intl .badge {
  background: linear-gradient(135deg, #64748b, #475569);
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-card--enterprise {
  background: linear-gradient(145deg, #0f1f3a, #1d3f67);
  color: #fff;
  border-color: transparent;
  overflow: hidden;
}

.pricing-card--enterprise .badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.pricing-ribbon {
  position: absolute;
  top: var(--pricing-ribbon-top);
  right: var(--pricing-ribbon-right);
  z-index: 3;
  width: var(--pricing-ribbon-width);
  text-align: center;
  font-size: var(--pricing-ribbon-font-size);
  line-height: 1.9;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: rotate(var(--pricing-ribbon-angle));
  background: var(--pricing-ribbon-bg);
  box-shadow: var(--pricing-ribbon-shadow);
  pointer-events: none;
}

.pricing-card--enterprise h3,
.pricing-card--enterprise .price {
  color: #fff;
}

.pricing-card--enterprise .price-desc {
  color: rgba(255, 255, 255, .74);
}

.pricing-card--enterprise .pricing-features {
  color: rgba(255, 255, 255, .9);
}

.price {
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.price-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--ink-soft);
}

.full { width: 100%; }

.pricing-private {
  background: var(--bg-soft);
}

.ownership {
  background: var(--bg);
}

.private-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.private-item {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s ease;
  overflow: hidden;
}

.private-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.private-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.85), rgba(37, 99, 235, 0.16));
}

.private-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(280px 140px at 92% 0%, rgba(59, 130, 246, 0.06), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 42%);
  pointer-events: none;
}

.private-item--green::before {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.9), rgba(16, 185, 129, 0.18));
}

.private-item--amber::before {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.9), rgba(245, 158, 11, 0.18));
}

.private-item--violet::before {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.9), rgba(139, 92, 246, 0.18));
}

.private-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.private-item--green .private-tag {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.private-item--amber .private-tag {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.private-item--violet .private-tag {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}

.private-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.private-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.private-item .btn-full {
  position: relative;
  z-index: 1;
  min-height: 44px;
}

/* ============== Desktop (960px+) ============== */
@media (min-width: 960px) {
  section { padding: 100px 0; }

  /* Nav inline */
  .nav {
    display: flex;
    gap: 4px;
  }

  .nav-actions {
    display: flex;
    margin-left: 0;
  }

  .nav-actions .btn {
    min-width: 118px;
  }

  .nav-toggle { display: none; }

  /* Hero */
  h1 { font-size: 46px; }

  .hero { padding: 120px 0 100px; }

  .hero-inner {
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
  }

  /* Stats */
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .stats-right { justify-content: flex-end; gap: 48px; }

  /* Demo grid */
  .demo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .shot-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Feature grid */
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* Architecture */
  .arch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Scene grid */
  .scene-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* CTA */
  .cta h2 { font-size: 28px; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .private-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* ============== Tablet (600px - 959px) ============== */
@media (min-width: 600px) and (max-width: 959px) {
  .container { padding: 0 24px; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 220;
    box-shadow: -4px 0 24px rgba(0,0,0,.1);
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
  }

  .nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
  }

  .nav a:active { background: var(--blue-light); }

  .nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    margin-left: auto;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .nav-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
  }

  .nav-close span:first-child { transform: rotate(45deg); }
  .nav-close span:last-child { transform: rotate(-45deg); }

  h1 { font-size: 36px; }

  section { padding: 64px 0; }

  .hero { padding: 80px 0 64px; }

  .hero-inner { gap: 40px; }

  .demo-grid { grid-template-columns: repeat(2, 1fr); }
  .shot-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .private-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-right { gap: 40px; }

  .stat-value { font-size: 34px; }

  .platform-cards { gap: 12px; }
}

/* ============== Mobile (<600px) ============== */
@media (max-width: 599px) {
  .container { padding: 0 16px; }

  /* Keep mobile header always visible at top */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  body {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  /* Mobile Nav Drawer */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 220;
    box-shadow: -4px 0 24px rgba(0,0,0,.1);
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
  }

  .nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav a:active { background: var(--blue-light); }

  .nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    margin-left: auto;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .nav-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
  }

  .nav-close span:first-child { transform: rotate(45deg); }
  .nav-close span:last-child { transform: rotate(-45deg); }

  /* Header */
  .header-inner { height: 56px; }

  /* Typography */
  h1 {
    font-size: 28px;
    letter-spacing: -.02em;
  }

  .section-head h2 { font-size: 24px; }

  .section-head { margin-bottom: 32px; }

  .section-desc { font-size: 14px; }

  /* Sections spacing */
  section { padding: 56px 0; }

  /* Hero */
  .hero {
    padding: 60px 0 40px;
  }

  .hero-inner { gap: 28px; }

  .hero-badge { font-size: 12px; padding: 5px 12px; margin-bottom: 12px; }

  .hero-desc {
    font-size: 15px;
    line-height: 1.64;
  }

  .hero-checks {
    gap: 10px;
    margin-top: 12px;
  }

  .check-item { font-size: 14px; }

  .hero-actions {
    margin-top: 18px;
    gap: 8px;
  }

  .hero-actions .btn-lg {
    padding: 11px 20px;
    font-size: 14px;
    flex: 1;
    min-width: 0;
  }

  .hero-account {
    font-size: 12px;
    padding: 7px 12px;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-right {
    margin-bottom: 12px;
  }

  /* Platform cards mobile */
  .platform-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .platform-card {
    padding: 10px 8px;
    gap: 6px;
    border-radius: var(--radius);
  }

  .platform-card span { font-size: 12px; }

  .platform-card svg { width: 24px; height: 24px; }

  /* Console card mobile */
  .console-body { padding: 14px 12px; }
  .console-title { font-size: 15px; margin-bottom: 6px; }
  .console-desc { font-size: 13px; }
  .console-live {
    margin-bottom: 10px;
    padding: 5px 8px;
    gap: 6px;
  }
  .console-telemetry { margin-top: 12px; }
  .console-telemetry-item {
    padding: 8px 8px 9px;
    border-radius: 12px;
  }
  .console-telemetry-item span { font-size: 10px; margin-bottom: 3px; }
  .console-telemetry-item strong { font-size: 15px; }
  .console-track { margin-top: 10px; }
  .console-wave { margin-top: 8px; height: 18px; }

  /* Stats mobile */
  .stats-strip { padding: 28px 0; }

  .stats-inner { gap: 14px; }

  .stats-title { font-size: 18px; }

  .stats-right {
    gap: 10px;
    justify-content: space-between;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-item {
    padding: 10px 10px 12px;
    border-radius: 14px;
  }

  .stat-value { font-size: 22px; }
  .stat-label { font-size: 11px; }

  /* Video showcase mobile */
  .video-frame { border-radius: var(--radius); }
  .video-placeholder { min-height: 200px; }
  .play-btn { width: 56px; height: 56px; font-size: 20px; }

  /* Demo cards mobile */
  .demo-grid { gap: 16px; }
  .shot-grid { gap: 12px; }

  .section-cta-strip { padding: 12px 0; }
  .section-cta-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
  }
  .section-cta-inner p {
    width: 100%;
    font-size: 13px;
    line-height: 1.55;
  }
  .section-cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 6px;
  }
  .section-cta-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 40px;
    border-radius: 12px;
  }

  .demo-card { padding: 20px 18px 18px; }
  .demo-chip,
  .shot-chip {
    min-height: 20px;
    padding: 0 8px;
    font-size: 10px;
    margin-bottom: 10px;
  }

  .demo-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .demo-card h3 { font-size: 17px; }

  .shot-body {
    min-height: 140px;
  }

  .shot-card {
    padding: 12px;
  }

  .shot-card h3 { font-size: 15px; }
  .shot-card p { font-size: 13px; }

  .subtabs {
    justify-content: flex-start;
    gap: 8px;
  }

  .subtab {
    font-size: 13px;
    padding: 7px 12px;
  }

  /* Feature cards 2-col on mobile */
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feature-card {
    padding: 18px 16px 20px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .feature-tag,
  .arch-chip,
  .scene-chip {
    min-height: 20px;
    padding: 0 8px;
    font-size: 10px;
    margin-bottom: 10px;
  }

  .feature-card h3 { font-size: 16px; }
  .feature-card p { font-size: 13px; }

  /* Architecture mobile */
  .arch-card { padding: 20px 18px 18px; }
  .arch-card h3 { font-size: 16px; margin-bottom: 16px; }
  .arch-list li { font-size: 14px; gap: 8px; }
  .arch-list { gap: 12px; }

  /* Scenarios 2-col on mobile */
  .scene-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .scene-card {
    padding: 18px 14px 16px;
  }

  .scene-icon {
    width: 46px;
    height: 46px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .scene-card h3 { font-size: 14px; }
  .scene-card p { font-size: 13px; }

  /* FAQ mobile */
  .faq-grid { gap: 8px; }

  .faq-item {
    border-radius: 16px;
  }

  .faq-question {
    padding: 13px 14px;
    font-size: 14px;
    gap: 8px;
    min-height: 48px;
    line-height: 1.45;
  }

  .faq-answer p {
    padding: 0 14px 13px 36px;
    font-size: 13px;
    line-height: 1.6;
  }

  /* CTA mobile */
  .cta { padding: 48px 0; }
  .cta h2 { font-size: 20px; }
  .cta-sub { font-size: 12px; padding: 5px 12px; margin-bottom: 10px; }
  .cta-points {
    gap: 8px;
    margin-bottom: 14px;
  }
  .cta-point {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn-lg {
    width: 100%;
    max-width: 280px;
  }

  /* Footer mobile */
  .footer-info { gap: 16px; font-size: 13px; }
  .footer-inner { max-width: none; }

  /* Floating buttons mobile */
  .floating-btns {
    display: none;
  }

  .float-btn {
    width: 38px;
    height: 38px;
    box-shadow: 0 5px 12px rgba(0,0,0,.16);
  }

  .float-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Modal mobile */
  .modal { padding: 12px; align-items: flex-start; }

  .modal-content {
    margin-top: 16px;
    border-radius: var(--radius-lg);
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
  }

  .modal-header { padding: 20px 16px; }
  .modal-title { font-size: 20px; }
  .modal-body { padding: 20px 16px; }
  .form-input { padding: 12px 14px; min-height: 44px; }

  /* Pricing mobile */
  .pricing-hero { padding: 80px 0 40px; }
  .pricing-hero h1 { font-size: 26px; }
  .pricing { padding: 24px 0 60px; }

  .pricing-card {
    padding: 28px 20px;
  }

  .price { font-size: 32px; }

  .private-grid { gap: 12px; }
  .private-item { padding: 14px 14px 16px; }
  .private-item h4 { font-size: 15px; margin-bottom: 6px; }
  .private-item p { font-size: 13px; margin-bottom: 12px; }
  .private-tag { min-height: 22px; padding: 0 8px; font-size: 10px; margin-bottom: 8px; }

  .faq-grid { gap: 10px; }
  .faq-question {
    padding: 14px 16px;
    min-height: 52px;
    font-size: 14px;
    gap: 10px;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  .faq-answer p {
    padding: 0 16px 16px 44px;
    font-size: 13px;
  }
}

/* Unified CTA layout for phone + tablet */
@media (max-width: 959px) {
  .section-cta-strip {
    padding: 12px 0;
  }

  .section-cta-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
  }

  .section-cta-inner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  .section-cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-cta-actions .btn {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    border-radius: 12px;
  }

  .section-cta-strip + section {
    padding-top: 44px;
  }
}

/* ============== Extra small (<375px) ============== */
@media (max-width: 374px) {
  h1 { font-size: 24px; }

  .section-head h2 { font-size: 22px; }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-lg {
    flex: none;
    width: 100%;
  }

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

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

  .platform-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .platform-card { padding: 12px 6px; }

  .stats-right { flex-direction: column; gap: 16px; }

  .stat-value { font-size: 32px; }
}

/* ============== UI Polish v3 ============== */
:root {
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --line-strong: #dbe2ee;
  --hero-glow: rgba(22, 119, 255, 0.18);
  --teal-glow: rgba(16, 185, 129, 0.12);
}

body {
  font-family: "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(900px 400px at -5% -10%, rgba(56, 189, 248, 0.11), transparent 65%),
    radial-gradient(760px 380px at 110% -20%, rgba(22, 119, 255, 0.12), transparent 70%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 18%, #f6f9ff 100%);
  min-height: 100vh;
}

h1,
.section-head h2,
.pricing-hero h1,
.cta h2 {
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", sans-serif;
  letter-spacing: -0.03em;
}

section {
  position: relative;
  isolation: isolate;
}

.header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(204, 217, 235, 0.65);
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.brand {
  letter-spacing: -0.01em;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), #31c4ff);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  transition: left .55s var(--ease);
}

.btn:hover::before {
  left: 150%;
}

.btn-primary {
  box-shadow: 0 10px 26px rgba(22, 119, 255, 0.28);
}

.hero {
  background:
    radial-gradient(540px 260px at 82% 0%, var(--hero-glow), transparent 72%),
    radial-gradient(580px 220px at 20% 10%, var(--teal-glow), transparent 74%),
    linear-gradient(180deg, #f0f7ff 0%, #f7fbff 42%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), transparent 82%);
}

.hero-badge {
  background: linear-gradient(120deg, rgba(22, 119, 255, 0.13), rgba(49, 196, 255, 0.14));
  border: 1px solid rgba(22, 119, 255, 0.2);
  color: #0657c8;
}

.hero-account {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-color: #dde8fa;
}

.stats-strip,
.features,
.scenarios,
.pricing-private {
  background:
    linear-gradient(180deg, rgba(240, 247, 255, 0.5), rgba(255, 255, 255, 0.9));
}

.section-head h2 {
  text-wrap: balance;
}

.head-line {
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #1677ff, #2563eb);
}

.platform-card,
.console-card,
.demo-card,
.feature-card,
.arch-card,
.scene-card,
.faq-item,
.pricing-card,
.private-item {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.98));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 10px 30px rgba(15, 23, 42, 0.06);
}

.platform-card:hover,
.console-card:hover,
.demo-card:hover,
.feature-card:hover,
.arch-card:hover,
.scene-card:hover,
.pricing-card:hover,
.private-item:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 38px rgba(15, 23, 42, 0.12);
}

.demo-card--highlight,
.pricing-card.highlight {
  border-width: 1px;
  border-color: rgba(22, 119, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(22, 119, 255, 0.16),
    0 18px 40px rgba(22, 119, 255, 0.15);
}

.video-frame {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at 20% -30%, rgba(49, 196, 255, 0.25), rgba(22, 22, 40, 0) 60%), #101827;
}

.video-placeholder {
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.82), rgba(15, 23, 42, 0.94));
}

.play-btn {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(22, 119, 255, 0.85));
}

.faq-item.open {
  border-color: rgba(22, 119, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(22, 119, 255, 0.15), 0 8px 24px rgba(22, 119, 255, 0.12);
}

.cta {
  background:
    radial-gradient(700px 280px at 18% 120%, rgba(14, 165, 233, 0.24), transparent 65%),
    linear-gradient(130deg, #0f172a 0%, #102a43 52%, #083e77 100%);
}

.footer {
  background: linear-gradient(180deg, #0d1524 0%, #0b1220 100%);
}

@media (max-width: 959px) {
  .hero::after {
    background-size: 32px 32px;
  }
}

/* ============== Final Polish v2 ============== */
:root {
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
}

h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.18;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.24;
}

.feature-card h3,
.demo-card h3,
.arch-card h3,
.scene-card h3,
.pricing-card h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn {
  min-height: 42px;
}

.btn-lg {
  min-height: 52px;
}

.modal-content,
.console-card,
.video-frame,
.pricing-card,
.feature-card,
.demo-card,
.scene-card,
.arch-card {
  border-radius: 20px;
}

.faq-item {
  border-radius: 14px;
}

/* Prevent hover animation on touch devices */
@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .float-btn:hover {
    transform: translateY(-2px);
  }

  .platform-card:hover,
  .console-card:hover,
  .demo-card:hover,
  .feature-card:hover,
  .arch-card:hover,
  .scene-card:hover,
  .pricing-card:hover,
  .private-item:hover {
    transform: translateY(-8px);
  }

  .demo-card:hover .demo-icon,
  .feature-card:hover .feature-icon,
  .scene-card:hover .scene-icon {
    transform: scale(1.08);
  }
}

@media (hover: none) {
  .btn:hover,
  .float-btn:hover,
  .platform-card:hover,
  .console-card:hover,
  .demo-card:hover,
  .feature-card:hover,
  .arch-card:hover,
  .scene-card:hover,
  .pricing-card:hover,
  .private-item:hover {
    transform: none;
  }
}

@media (max-width: 599px) {
  .header-inner {
    height: 56px;
  }

  .nav-actions .btn {
    min-width: 0;
  }

  .nav {
    padding: 80px var(--space-16) var(--space-16);
  }

  .nav a {
    padding: var(--space-16);
    border-radius: 12px;
  }

  .hero-actions .btn-lg {
    min-height: 48px;
    padding: 12px var(--space-16);
  }

  .faq-question {
    padding: var(--space-16);
    min-height: 48px;
  }

  .faq-answer p {
    padding: 0 var(--space-16) var(--space-16) 40px;
  }
}

/* ============== Final Polish v3 ============== */
.hero-left {
  max-width: 620px;
}

.hero-left h1,
.pricing-hero h1 {
  text-wrap: balance;
}

.hero-desc,
.pricing-hero .section-desc {
  max-width: 56ch;
}

.hero-actions,
.cta-actions {
  align-items: center;
}

.hero-actions .btn,
.cta-actions .btn {
  min-width: 156px;
}

.pricing-hero .container {
  max-width: 920px;
}

.pricing-hero .section-head {
  margin-bottom: 24px;
}

.pricing-checks {
  max-width: 820px;
  margin: 0 auto;
  justify-content: center;
}

.pricing-checks .check-item {
  min-height: 40px;
  padding: 8px 16px;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-features {
  margin-bottom: 24px;
}

.pricing-card .btn-full {
  margin-top: auto;
}

@media (max-width: 959px) {
  .hero-left {
    max-width: 100%;
  }

  .hero-desc,
  .pricing-hero .section-desc {
    max-width: 100%;
  }
}

@media (max-width: 599px) {
  .hero-actions .btn,
  .cta-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .pricing-hero .section-head {
    margin-bottom: 16px;
  }

  .pricing-checks {
    gap: 8px;
  }

  .pricing-checks .check-item {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 599px) {
  .btn {
    border-radius: 10px;
  }

  .section-head h2 {
    letter-spacing: -0.02em;
  }

  .hero {
    background:
      radial-gradient(360px 180px at 80% 0%, rgba(22, 119, 255, 0.18), transparent 70%),
      linear-gradient(180deg, #f0f7ff 0%, #ffffff 70%);
  }
}

/* ============== Final Polish ============== */
:root {
  --motion-fast: 180ms;
  --motion-base: 260ms;
  --motion-slow: 360ms;
  --ease-standard: cubic-bezier(.22, .61, .36, 1);
  --ease-hover: cubic-bezier(.18, .82, .26, 1);
}

body {
  font-weight: 500;
}

h1 {
  font-weight: 800;
}

.section-head h2,
.cta h2,
.pricing-hero h1 {
  font-weight: 700;
}

.hero-desc,
.section-desc,
.feature-card p,
.scene-card p,
.demo-card p,
.arch-list li,
.price-desc,
.private-item p {
  line-height: 1.75;
}

.btn,
.nav-toggle,
.float-btn {
  transition:
    transform var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    background var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard);
}

.btn:hover,
.float-btn:hover {
  transform: translateY(-2px);
}

.btn:active,
.float-btn:active {
  transform: translateY(0) scale(.97);
}

.platform-card,
.console-card,
.demo-card,
.feature-card,
.arch-card,
.scene-card,
.faq-item,
.pricing-card,
.private-item {
  transition:
    transform var(--motion-slow) var(--ease-hover),
    box-shadow var(--motion-slow) var(--ease-hover),
    border-color var(--motion-fast) var(--ease-standard);
}

.platform-card:hover,
.console-card:hover,
.demo-card:hover,
.feature-card:hover,
.arch-card:hover,
.scene-card:hover,
.pricing-card:hover,
.private-item:hover {
  transform: translateY(-8px);
}

.demo-card:hover .demo-icon,
.feature-card:hover .feature-icon,
.scene-card:hover .scene-icon {
  transition: transform var(--motion-slow) var(--ease-hover);
}

@media (max-width: 599px) {
  /* 8pt grid rhythm */
  section {
    padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2 {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
  }

  .head-line {
    margin: 8px auto 16px;
  }

  .section-desc {
    font-size: 14px;
    line-height: 1.75;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 8px;
  }

  .hero-checks {
    margin-top: 16px;
    gap: 8px 16px;
  }

  .platform-cards,
  .demo-grid,
  .feature-grid,
  .scene-grid,
  .private-grid,
  .faq-grid {
    gap: 16px;
  }

  .demo-card,
  .feature-card,
  .arch-card,
  .scene-card,
  .pricing-card,
  .private-item {
    padding: 24px 16px;
  }

  .stats-strip {
    padding: 40px 0;
  }

  .stats-inner {
    gap: 24px;
  }

  .cta {
    padding: 48px 0;
  }

  .cta h2 {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
  }

  .footer {
    padding: 24px 0;
  }

  .floating-btns {
    right: 16px;
    bottom: 24px;
    gap: 8px;
  }

  .platform-card:hover,
  .console-card:hover,
  .demo-card:hover,
  .feature-card:hover,
  .arch-card:hover,
  .scene-card:hover,
  .pricing-card:hover,
  .private-item:hover {
    transform: translateY(-4px);
  }
}

/* ============== Final Polish v4 ============== */
:root {
  --section-space-desktop: 88px;
  --section-space-mobile: 52px;
  --head-gap-desktop: 34px;
  --head-gap-mobile: 24px;
}

section {
  padding: var(--section-space-desktop) 0;
}

.section-head {
  margin-bottom: var(--head-gap-desktop);
}

.section-desc {
  max-width: 64ch;
}

/* calmer section rhythm around hero and pricing */
.hero {
  padding-top: 112px;
  padding-bottom: 78px;
}

.pricing-hero {
  padding-top: 104px;
  padding-bottom: 56px;
}

.pricing {
  padding-top: 36px;
}

/* reduce visual noise from perpetual pulses */
.hero-badge,
.play-btn {
  animation-duration: 3.2s;
  animation-timing-function: var(--ease-standard);
}

.stat-value.stat-animate {
  animation-duration: .5s;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-outline-light:hover {
    transform: translateY(-1px);
  }

  .platform-card:hover,
  .console-card:hover,
  .demo-card:hover,
  .feature-card:hover,
  .arch-card:hover,
  .scene-card:hover,
  .pricing-card:hover,
  .private-item:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 959px) {
  section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .hero {
    padding-top: 82px;
    padding-bottom: 60px;
  }

  .pricing-hero {
    padding-top: 80px;
    padding-bottom: 44px;
  }
}

@media (max-width: 599px) {
  section {
    padding: var(--section-space-mobile) 0;
  }

  .section-head {
    margin-bottom: var(--head-gap-mobile);
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .pricing-hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .pricing {
    padding-top: 24px;
    padding-bottom: 56px;
  }
}

/* ============== Enterprise Detail Polish v5 ============== */
:root {
  --content-max: 1160px;
  --section-space-desktop: 96px;
  --section-space-mobile: 56px;
  --head-gap-desktop: 36px;
  --head-gap-mobile: 24px;
  --radius-btn: 12px;
  --radius-card: 16px;
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 18px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 8px 24px rgba(15, 23, 42, 0.08);
  --line-soft: rgba(148, 163, 184, 0.28);
}

.container {
  max-width: var(--content-max);
}

body {
  font-weight: 400;
  color: #1e293b;
}

h1 {
  font-size: clamp(34px, 4.2vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 750;
}

.section-head h2,
.pricing-hero h1,
.cta h2 {
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 36px);
}

.section-desc,
.hero-desc,
.feature-card p,
.scene-card p,
.demo-card p,
.pricing-sub,
.private-item p {
  font-size: 16px;
  line-height: 1.72;
  color: #64748b;
  max-width: 62ch;
}

section {
  padding: var(--section-space-desktop) 0;
}

.section-head {
  margin-bottom: var(--head-gap-desktop);
}

.head-line {
  width: 52px;
  height: 4px;
  margin: 12px auto 18px;
}

.btn {
  min-height: 44px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn-lg {
  min-height: 48px;
  border-radius: 14px;
}

.btn-primary {
  box-shadow: 0 6px 16px rgba(22, 119, 255, 0.2);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    box-shadow: 0 10px 22px rgba(22, 119, 255, 0.24);
  }

  .btn-outline:hover,
  .btn-outline-light:hover {
    border-color: #1d4ed8;
  }
}

.demo-card,
.feature-card,
.arch-card,
.scene-card,
.faq-item,
.pricing-card,
.private-item,
.shot-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  background: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .demo-card:hover,
  .feature-card:hover,
  .arch-card:hover,
  .scene-card:hover,
  .pricing-card:hover,
  .private-item:hover,
  .shot-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
  }
}

.section-cta-inner {
  border-color: rgba(37, 99, 235, 0.2);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.9), rgba(248, 251, 255, 0.9));
}

.section-cta-inner p {
  color: #1e3a8a;
  font-weight: 600;
  line-height: 1.6;
}

/* Fallback for browsers without backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header {
    background: rgba(255, 255, 255, 0.98);
  }
}

@media (max-width: 959px) {
  section {
    padding: 80px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-desc,
  .hero-desc,
  .pricing-sub {
    font-size: 15px;
    line-height: 1.68;
  }
}

@media (max-width: 599px) {
  section {
    padding: var(--section-space-mobile) 0;
  }

  .section-head {
    margin-bottom: var(--head-gap-mobile);
  }

  h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .section-head h2,
  .cta h2,
  .pricing-hero h1 {
    font-size: 24px;
    line-height: 1.28;
  }

  .section-desc,
  .hero-desc,
  .feature-card p,
  .scene-card p,
  .demo-card p,
  .private-item p {
    font-size: 14px;
    line-height: 1.7;
  }

  .btn {
    min-height: 42px;
    font-size: 15px;
  }

  .btn-lg {
    min-height: 46px;
  }

  .demo-card,
  .feature-card,
  .arch-card,
  .scene-card,
  .pricing-card,
  .private-item,
  .shot-card {
    padding: 20px 14px;
  }
}

/* ============== Enterprise Detail Polish v5.1 ============== */
.btn {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.btn-full {
  min-height: 44px;
}

.shot-card h3,
.demo-card h3,
.feature-card h3,
.arch-card h3,
.scene-card h3,
.pricing-card h3 {
  line-height: 1.34;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.shot-card h3,
.demo-card h3,
.feature-card h3,
.scene-card h3 {
  min-height: 2.68em;
}

@media (max-width: 959px) {
  .shot-card h3,
  .demo-card h3,
  .feature-card h3,
  .scene-card h3 {
    min-height: 2.5em;
  }
}

@media (max-width: 599px) {
  .btn-full {
    min-height: 42px;
  }

  .shot-card h3,
  .demo-card h3,
  .feature-card h3,
  .scene-card h3 {
    min-height: 0;
  }
}

/* Contact panel modal */
.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.contact-item h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e1e6ef;
  background: #f3f6fb;
  border-radius: 14px;
  padding: 14px 16px;
}

.contact-link {
  text-decoration: none;
}

.contact-main {
  font-size: 22px;
  font-weight: 700;
  color: #1d4ed8;
  line-height: 1.25;
}

.contact-side {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
  white-space: nowrap;
}

.contact-copy-btn {
  min-height: 40px;
  padding: 8px 18px;
}

.contact-panel-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 2px;
}

@media (max-width: 599px) {
  .modal.modal-contact-panel {
    padding: 10px;
    align-items: flex-start;
  }

  .modal.modal-contact-panel .modal-content {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    max-height: calc(100dvh - 20px);
    height: auto;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
    display: flex;
    flex-direction: column;
  }

  .modal.modal-contact-panel .modal-header {
    padding: 18px 16px;
  }

  .modal.modal-contact-panel .modal-body {
    padding: 12px 12px 16px;
    max-height: calc(100dvh - 132px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .contact-item {
    border-radius: 14px;
    padding: 12px;
  }

  .contact-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .contact-row {
    border-radius: 12px;
    padding: 12px;
  }

  .contact-main {
    font-size: 18px;
  }

  .contact-side {
    font-size: 12px;
  }
}

/* Demo hub modal */
.modal-subtitle:empty,
.modal-description:empty {
  display: none;
}

.modal.modal-demo-hub .modal-content {
  max-width: 760px;
}

.modal.modal-demo-hub .modal-header {
  padding: 22px 26px;
}

.modal.modal-demo-hub .modal-body {
  padding: 18px 24px 24px;
}

.demo-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.demo-hub-card {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid #d5dae3;
  border-radius: 18px;
  background: #fdfdff;
  padding: 18px 14px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  height: 100%;
}

.demo-hub-card:hover {
  transform: translateY(-2px);
  border-color: #c5d2e9;
  box-shadow: 0 10px 26px rgba(31, 50, 95, 0.12);
}

.demo-hub-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-logo {
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}

.demo-logo--demo {
  background: #eef2fb;
  border: 1px solid #c5d2ea;
  color: #2a4aa5;
  font-size: 16px;
}

.demo-logo--apple {
  background: #1297ec;
  color: #fff;
}

.demo-logo--huawei {
  color: #e11d2e;
  font-size: 28px;
}

.demo-logo--qq {
  color: #2691f0;
}

.demo-logo--mi {
  background: #ff7f4a;
  color: #fff;
  font-size: 20px;
}

.demo-logo--vivo {
  background: #4b61f2;
  color: #fff;
  font-size: 16px;
}

.demo-logo--honor {
  background: #40c0dc;
  color: #fff;
  font-size: 16px;
}

.demo-hub-card h4 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.demo-hub-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 599px) {
  .modal.modal-demo-hub {
    padding: 10px !important;
    align-items: flex-start !important;
    inset: 0;
  }

  .modal.modal-demo-hub .modal-content {
    max-width: 100%;
    width: 100%;
    max-height: calc(100dvh - 20px);
    height: auto;
    margin-top: 0 !important;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2);
    display: flex;
    flex-direction: column;
    transform: none !important;
  }

  .modal.modal-demo-hub .modal-header {
    padding: 18px 18px 16px;
    border-bottom: 1px solid #e5e7eb;
  }

  .modal.modal-demo-hub .modal-title {
    font-size: 18px;
  }

  .modal.modal-demo-hub .modal-body {
    padding: 14px;
    max-height: calc(100dvh - 130px);
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .demo-hub-grid {
    gap: 12px;
  }

  .demo-hub-card {
    min-height: 150px;
    padding: 14px 10px;
    border-radius: 16px;
  }

  .demo-hub-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .demo-hub-card h4 {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .demo-hub-card p {
    font-size: 12px;
    line-height: 1.35;
  }
}

/* ============== Design Tokens v6 (Unified) ============== */
:root {
  --t-content-max: 1160px;
  --t-section-y-desktop: 96px;
  --t-section-y-mobile: 56px;
  --t-head-gap-desktop: 36px;
  --t-head-gap-mobile: 24px;

  --t-fs-h1: clamp(34px, 4vw, 44px);
  --t-fs-h2: clamp(28px, 3.1vw, 36px);
  --t-fs-h3: 20px;
  --t-fs-body: 16px;
  --t-fs-body-sm: 14px;

  --t-lh-h: 1.24;
  --t-lh-body: 1.72;
  --t-lh-body-sm: 1.68;

  --t-radius-btn: 12px;
  --t-radius-btn-lg: 14px;
  --t-radius-card: 16px;

  --t-line-soft: rgba(148, 163, 184, 0.28);
  --t-shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 18px rgba(15, 23, 42, 0.04);
  --t-shadow-card-hover: 0 8px 24px rgba(15, 23, 42, 0.08);
  --t-shadow-btn: 0 6px 16px rgba(22, 119, 255, 0.2);
  --t-shadow-btn-hover: 0 10px 22px rgba(22, 119, 255, 0.24);

  --t-motion-fast: 180ms;
  --t-motion-base: 240ms;
  --t-ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
}

.container {
  max-width: var(--t-content-max);
}

section {
  padding: var(--t-section-y-desktop) 0;
}

.section-head {
  margin-bottom: var(--t-head-gap-desktop);
}

h1 {
  font-size: var(--t-fs-h1);
  line-height: var(--t-lh-h);
  letter-spacing: -0.02em;
  font-weight: 750;
}

.section-head h2,
.pricing-hero h1,
.cta h2 {
  font-size: var(--t-fs-h2);
  line-height: var(--t-lh-h);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-desc,
.section-desc,
.feature-card p,
.scene-card p,
.demo-card p,
.private-item p,
.pricing-sub {
  font-size: var(--t-fs-body);
  line-height: var(--t-lh-body);
  color: #64748b;
}

.btn {
  min-height: 44px;
  border-radius: var(--t-radius-btn);
  font-weight: 600;
  line-height: 1.2;
  transition:
    transform var(--t-motion-base) var(--t-ease-standard),
    box-shadow var(--t-motion-base) var(--t-ease-standard),
    border-color var(--t-motion-fast) var(--t-ease-standard),
    background var(--t-motion-fast) var(--t-ease-standard),
    color var(--t-motion-fast) var(--t-ease-standard);
}

.btn-lg {
  min-height: 48px;
  border-radius: var(--t-radius-btn-lg);
}

.btn-primary {
  box-shadow: var(--t-shadow-btn);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    box-shadow: var(--t-shadow-btn-hover);
    transform: translateY(-1px);
  }
}

.demo-card,
.feature-card,
.arch-card,
.scene-card,
.faq-item,
.pricing-card,
.private-item,
.shot-card {
  border-radius: var(--t-radius-card);
  border: 1px solid var(--t-line-soft);
  box-shadow: var(--t-shadow-card);
  background: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .demo-card:hover,
  .feature-card:hover,
  .arch-card:hover,
  .scene-card:hover,
  .pricing-card:hover,
  .private-item:hover,
  .shot-card:hover {
    box-shadow: var(--t-shadow-card-hover);
    transform: translateY(-4px);
  }
}

@media (max-width: 959px) {
  section {
    padding: 80px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .hero-desc,
  .section-desc,
  .pricing-sub {
    font-size: 15px;
    line-height: var(--t-lh-body-sm);
  }
}

@media (max-width: 599px) {
  section {
    padding: var(--t-section-y-mobile) 0;
  }

  .section-head {
    margin-bottom: var(--t-head-gap-mobile);
  }

  h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .section-head h2,
  .cta h2,
  .pricing-hero h1 {
    font-size: 24px;
    line-height: 1.28;
  }

  .hero-desc,
  .section-desc,
  .feature-card p,
  .scene-card p,
  .demo-card p,
  .private-item p {
    font-size: var(--t-fs-body-sm);
    line-height: 1.7;
  }

  .btn {
    min-height: 42px;
    font-size: 15px;
  }

  .btn-lg {
    min-height: 46px;
  }
}

/* ============== Uiverse-Inspired Micro Upgrade ============== */
:root {
  --ux-glow-blue: rgba(37, 99, 235, 0.22);
  --ux-glow-cyan: rgba(6, 182, 212, 0.16);
  --ux-card-line: rgba(148, 163, 184, 0.28);
  --ux-card-line-hover: rgba(59, 130, 246, 0.42);
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: opacity .22s ease;
}

.btn-primary {
  background-image: linear-gradient(135deg, #3b82f6 0%, #2563eb 48%, #1d4ed8 100%);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -35%;
  width: 46%;
  height: 340%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .34), rgba(255, 255, 255, 0));
  transition: left .55s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover::after {
    opacity: 1;
  }

  .btn-primary:hover::before {
    left: 105%;
  }
}

.btn:active {
  transform: translateY(0) scale(.985);
}

.demo-card,
.feature-card,
.pricing-card,
.shot-card,
.scene-card,
.private-item,
.arch-card {
  position: relative;
  overflow: hidden;
  border-color: var(--ux-card-line);
  transition:
    transform .28s cubic-bezier(.22,.61,.36,1),
    border-color .22s ease,
    box-shadow .28s cubic-bezier(.22,.61,.36,1);
}

.demo-card::before,
.feature-card::before,
.pricing-card::before,
.shot-card::before,
.scene-card::before,
.private-item::before,
.arch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 120px at -15% -30%, rgba(255,255,255,.7), transparent 62%),
    radial-gradient(420px 120px at 120% -40%, rgba(59,130,246,.08), transparent 62%);
  opacity: .66;
}

@media (hover: hover) and (pointer: fine) {
  .demo-card:hover,
  .feature-card:hover,
  .pricing-card:hover,
  .shot-card:hover,
  .scene-card:hover,
  .private-item:hover,
  .arch-card:hover {
    border-color: var(--ux-card-line-hover);
    box-shadow:
      0 18px 42px rgba(15, 23, 42, 0.10),
      0 0 0 1px rgba(59, 130, 246, 0.08);
  }
}

.modal-content {
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.form-input,
.contact-row {
  transition:
    border-color .2s ease,
    background-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.form-input:focus,
.contact-link:focus-visible,
.contact-link:hover {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px var(--ux-glow-cyan);
  background: #fff;
}

.contact-link:hover .contact-main {
  color: #1d4ed8;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .demo-card,
  .feature-card,
  .pricing-card,
  .shot-card,
  .scene-card,
  .private-item,
  .arch-card,
  .form-input,
  .contact-row {
    transition: none !important;
  }
}

/* ============== Micro Polish Round 2 ============== */
:root {
  --ux-nav-bg: rgba(255, 255, 255, 0.78);
  --ux-nav-line: rgba(148, 163, 184, 0.24);
  --ux-title: #0f172a;
  --ux-body: #5b667a;
}

/* Header clarity */
.header {
  background: var(--ux-nav-bg);
  border-bottom-color: var(--ux-nav-line);
}

.header.scrolled {
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.09);
}

.brand-name {
  letter-spacing: -0.012em;
}

.nav a {
  font-weight: 600;
  color: #1f2a44;
}

.nav a[aria-current="page"] {
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
}

/* Typographic hierarchy */
h1,
.section-head h2,
.pricing-hero h1 {
  color: var(--ux-title);
  text-wrap: balance;
}

.hero-desc,
.section-desc,
.feature-card p,
.demo-card p,
.scene-card p,
.pricing-sub {
  color: var(--ux-body);
}

/* Section rhythm */
section {
  scroll-margin-top: 86px;
}

.section-head {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.head-line {
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #38bdf8);
}

/* CTA block alignment */
.section-cta-inner,
.cta-inner {
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.section-cta-actions,
.cta-actions {
  gap: 12px;
}

/* Modal close affordance */
.modal-close {
  border-color: rgba(148, 163, 184, 0.32);
  background: #f8fafc;
}

.modal-close:hover {
  background: #eff6ff;
  border-color: rgba(59, 130, 246, 0.34);
}

/* Mobile density and touch comfort */
@media (max-width: 599px) {
  .hero-actions,
  .section-cta-actions,
  .cta-actions,
  .pricing-mid-actions,
  .cases-mid-actions,
  .download-hero-actions {
    gap: 8px;
  }

  .hero-actions .btn,
  .section-cta-actions .btn,
  .cta-actions .btn,
  .pricing-mid-actions .btn,
  .cases-mid-actions .btn,
  .download-hero-actions .btn,
  .download-platforms .demo-card .btn,
  .pricing-card .btn.full,
  .pricing-card .btn.btn-full,
  .cases-card .btn-full,
  .btn-full {
    min-height: 46px;
    min-width: 0;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
  }

  .section-cta-inner,
  .cta-inner {
    padding: 14px;
    border-radius: 16px;
  }

  .modal-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .demo-hub-card,
  .contact-item {
    border-radius: 14px;
  }
}

/* ============== Micro Polish Round 3 (Hero + Modals) ============== */
:root {
  --ux-btn-h: 46px;
  --ux-btn-h-lg: 50px;
  --ux-radius-card-2: 16px;
  --ux-radius-modal-2: 20px;
  --ux-line-2: rgba(148, 163, 184, 0.28);
  --ux-shadow-2: 0 14px 34px rgba(15, 23, 42, 0.10);
}

/* Hero first-screen consistency */
.hero-badge {
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
}

.hero-left h1 {
  max-width: 14ch;
  line-height: 1.16;
}

.pricing-hero h1,
.download-hero h1,
.hero-desc,
.pricing-hero .section-desc,
.download-hero .section-desc {
  text-wrap: balance;
}

.hero-desc {
  max-width: 54ch;
}

.hero-actions .btn {
  min-height: var(--ux-btn-h-lg);
}

/* Unified card shell (homepage major modules) */
.demo-card,
.feature-card,
.shot-card,
.scene-card,
.pricing-card,
.arch-card,
.private-item {
  border-radius: var(--ux-radius-card-2);
  border: 1px solid var(--ux-line-2);
  box-shadow: var(--ux-shadow-2);
}

/* Contact modal + Demo modal alignment */
.modal.modal-contact-panel .modal-content,
.modal.modal-demo-hub .modal-content {
  border-radius: var(--ux-radius-modal-2);
  border: 1px solid var(--ux-line-2);
}

.modal.modal-contact-panel .modal-header,
.modal.modal-demo-hub .modal-header {
  min-height: 78px;
  align-items: center;
}

.modal.modal-contact-panel .modal-title,
.modal.modal-demo-hub .modal-title {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.modal.modal-contact-panel .modal-description,
.modal.modal-demo-hub .modal-description {
  margin-top: 6px;
}

.contact-item,
.demo-hub-card {
  border-radius: var(--ux-radius-card-2);
  border: 1px solid var(--ux-line-2);
}

.contact-row {
  min-height: var(--ux-btn-h);
}

.contact-copy-btn,
#contactCloseBtn {
  min-height: var(--ux-btn-h);
}

/* Mobile 8pt rhythm */
@media (max-width: 599px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .hero-left h1 {
    max-width: none;
    line-height: 1.18;
  }

  .hero-desc {
    margin-top: 16px;
  }

  .hero-actions .btn {
    min-height: 48px;
  }

  .console-body {
    padding: 18px 16px;
  }

  .console-live {
    margin-bottom: 12px;
  }

  .console-telemetry {
    gap: 8px;
    margin-top: 14px;
  }

  .console-telemetry-item {
    padding: 9px 9px 10px;
  }

  .console-telemetry-item strong {
    font-size: 16px;
  }

  .console-wave {
    margin-top: 12px;
    gap: 5px;
    height: 24px;
  }

  .console-track {
    margin-top: 12px;
    height: 20px;
  }

  .console-track-node {
    width: 8px;
    height: 8px;
  }

  .console-track-packet {
    width: 12px;
    height: 12px;
  }

  .console-card::after {
    animation-duration: 5.6s;
  }

  .modal.modal-contact-panel .modal-content,
  .modal.modal-demo-hub .modal-content {
    border-radius: 16px;
  }

  .modal.modal-contact-panel .modal-header,
  .modal.modal-demo-hub .modal-header {
    min-height: 64px;
    padding: 16px;
  }

  .modal.modal-contact-panel .modal-title,
  .modal.modal-demo-hub .modal-title {
    font-size: 24px;
  }

  .modal.modal-contact-panel .modal-body,
  .modal.modal-demo-hub .modal-body {
    padding: 16px;
  }

  .demo-hub-grid {
    gap: 8px;
  }

  .contact-panel {
    gap: 8px;
  }

  .contact-item,
  .demo-hub-card {
    border-radius: 12px;
  }
}

/* ============== Micro Polish Round 4 (Launch QA) ============== */
/* 1) Card internals: stabilize heights and button baselines */
.demo-card,
.pricing-card {
  display: flex;
  flex-direction: column;
}

.demo-card h3 {
  min-height: 2.6em;
}

.demo-card p {
  min-height: 4.8em;
}

.demo-card .btn,
.pricing-card .btn.full,
.pricing-card .btn.btn-full {
  margin-top: auto;
}

.pricing-card h3 {
  min-height: 2.6em;
}

.pricing-card .pricing-features {
  min-height: 9.5em;
}

/* 2) Feature/scenario text rhythm */
.feature-card,
.scene-card {
  display: flex;
  flex-direction: column;
}

.feature-card h3,
.scene-card h3 {
  min-height: 2.5em;
}

.feature-card p,
.scene-card p {
  min-height: 4.6em;
}

/* 3) CTA readability */
.section-cta-inner p,
.cta p {
  max-width: 62ch;
}

/* 4) Mobile launch polish */
@media (max-width: 599px) {
  .hero-actions .btn-lg {
    min-height: 48px;
    font-weight: 700;
  }

  .demo-card h3,
  .pricing-card h3,
  .feature-card h3,
  .scene-card h3 {
    min-height: 0;
  }

  .demo-card p,
  .feature-card p,
  .scene-card p {
    min-height: 0;
  }

  .pricing-card .pricing-features {
    min-height: 0;
  }

  .pricing-ribbon {
    --pricing-ribbon-top: 10px;
    --pricing-ribbon-right: -42px;
    --pricing-ribbon-width: 126px;
    --pricing-ribbon-font-size: 10px;
  }

  .section-cta-actions .btn,
  .cta-actions .btn {
    min-height: 44px;
  }
}

/* ============== Bottom Theme Final (CTA + Footer) ============== */
.cta {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.cta h2,
.cta .section-head h2 {
  color: #eaf2ff;
  text-shadow: 0 2px 10px rgba(2, 6, 23, 0.35);
}

.cta p,
.cta .section-desc {
  color: rgba(219, 234, 254, 0.84);
}

.cta-inner,
.section-cta-inner {
  border: none;
  background: rgba(15, 23, 42, 0.08);
}

.footer {
  background: linear-gradient(180deg, #0b1220 0%, #0a1020 100%);
  color: #cbd5e1;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer .footer-info {
  color: #cbd5e1;
}

.footer .footer-copy {
  color: #94a3b8;
}

.footer .footer-info [data-footer-contact],
.footer .footer-info [data-copy-domain] {
  color: #dbeafe;
}

.footer .footer-info [data-footer-contact]:hover,
.footer .footer-info [data-copy-domain]:hover {
  color: #ffffff;
  opacity: 1;
}
