/* ==========================================================================
   策芒智能助手 CeMang — 官网样式
   ========================================================================== */

:root {
  --bg: #07081a;
  --bg-soft: #0c0d26;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(167, 173, 255, 0.14);
  --text: #eef0ff;
  --text-sub: #a6abc9;
  --text-dim: #7c81a3;
  --indigo: #6d68f5;
  --violet: #a06bf8;
  --lavender: #b9b2ff;
  --gold: #f2b24e;
  --gold-soft: rgba(242, 178, 78, 0.14);
  --grad-main: linear-gradient(120deg, #7f76ff 0%, #a06bf8 55%, #d08bff 100%);
  --grad-gold: linear-gradient(120deg, #f6c15f 0%, #eda23f 100%);
  --radius: 18px;
  --font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Segoe UI",
    system-ui, -apple-system, sans-serif;
  --mono: "Cascadia Code", "JetBrains Mono", Consolas, "Courier New", monospace;
  --nav-h: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(160, 107, 248, 0.45); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.container-narrow { width: min(860px, 92%); }

/* --------------------------------------------------------------------------
   背景特效
   -------------------------------------------------------------------------- */

#bg-particles {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  width: 44vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.4;
  animation: blob-float 22s ease-in-out infinite alternate;
}
.blob-1 { background: #4636c9; top: -14vw; left: -10vw; }
.blob-2 { background: #7a3fd1; top: -8vw; right: -14vw; animation-delay: -7s; }
.blob-3 { background: #3c2a8e; bottom: -20vw; left: 24vw; animation-delay: -14s; opacity: 0.32; }

@keyframes blob-float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4vw, 5vh, 0) scale(1.15); }
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(167, 173, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 173, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 78%);
}

/* --------------------------------------------------------------------------
   按钮
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    background 0.25s ease, opacity 0.25s ease;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 8px 28px rgba(124, 98, 250, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(124, 98, 250, 0.55);
}

.btn-gold {
  background: var(--grad-gold);
  color: #241604;
  box-shadow: 0 8px 28px rgba(242, 178, 78, 0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(242, 178, 78, 0.45); }

.btn-outline {
  border-color: rgba(185, 178, 255, 0.4);
  background: rgba(185, 178, 255, 0.06);
  color: var(--lavender);
}
.btn-outline:hover {
  border-color: rgba(185, 178, 255, 0.75);
  background: rgba(185, 178, 255, 0.12);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--panel);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { background: var(--panel-strong); transform: translateY(-2px); }

.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.btn-lg { padding: 15px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   导航栏
   -------------------------------------------------------------------------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8, 9, 28, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo { display: flex; align-items: center; gap: 11px; }
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 4px 16px rgba(109, 104, 245, 0.45);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text b {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #cfc9ff, #9f8bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-text i {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--text-sub);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-main);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 10px; margin-left: auto; }
.nav-links + .nav-actions { margin-left: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 4% 22px;
  background: rgba(8, 9, 28, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  padding: 12px 10px;
  border-radius: 10px;
  color: var(--text-sub);
  font-size: 0.98rem;
}
.mobile-menu a:hover { background: var(--panel); color: var(--text); }
.mobile-menu.open { display: flex; }
.mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }

/* --------------------------------------------------------------------------
   首屏
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: calc(var(--nav-h) + 76px) 0 60px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(185, 178, 255, 0.28);
  background: rgba(185, 178, 255, 0.07);
  color: var(--lavender);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ff0b4;
  box-shadow: 0 0 0 0 rgba(143, 240, 180, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(143, 240, 180, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(143, 240, 180, 0); }
  100% { box-shadow: 0 0 0 0 rgba(143, 240, 180, 0); }
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.grad-text {
  background: linear-gradient(90deg, #a79bff 0%, #c993ff 45%, #f2b24e 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: grad-shift 7s ease-in-out infinite alternate;
}
@keyframes grad-shift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.hero-sub {
  margin-top: 20px;
  max-width: 560px;
  font-size: 1.06rem;
  color: var(--text-sub);
}

.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-meta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: var(--text-dim);
  font-size: 0.86rem;
}
.hero-meta li { display: flex; align-items: center; gap: 8px; }
.hero-meta li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: none;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%238ff0b4" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>')
    center / 9px no-repeat,
    rgba(143, 240, 180, 0.12);
}

/* 首屏窗口 */

.hero-visual { position: relative; }

.glass-window {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(23, 22, 56, 0.85), rgba(14, 14, 38, 0.9));
  border: 1px solid rgba(185, 178, 255, 0.18);
  box-shadow:
    0 34px 90px rgba(3, 3, 16, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 60px rgba(109, 104, 245, 0.16);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(185, 178, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff6b6b; }
.dot-y { background: #ffd166; }
.dot-g { background: #8ff0b4; }
.window-title {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

.terminal {
  padding: 22px 22px 26px;
  min-height: 320px;
  font-family: var(--mono);
  font-size: 0.84rem;
  line-height: 1.9;
  color: #c8c6ef;
  white-space: pre-wrap;
  word-break: break-all;
}
.terminal .t-cmd { color: #e9e6ff; font-weight: 600; }
.terminal .t-cmd::before { content: "❯ "; color: #a06bf8; }
.terminal .t-ok { color: #8ff0b4; }
.terminal .t-ok::before { content: "✓ "; color: #8ff0b4; }
.terminal .t-run { color: #f2b24e; }
.terminal .t-run::before { content: "… "; color: #f2b24e; }
.terminal .t-done { color: #c993ff; font-weight: 600; }
.terminal .t-done::before { content: "★ "; color: #f2b24e; }
.terminal .caret {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: #a06bf8;
  animation: caret-blink 1s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

.chip-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(20, 19, 51, 0.85);
  border: 1px solid rgba(185, 178, 255, 0.22);
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--lavender);
  box-shadow: 0 14px 40px rgba(3, 3, 16, 0.55);
  animation: chip-float 5.5s ease-in-out infinite alternate;
}
.chip-float svg { width: 17px; height: 17px; }
.chip-1 { top: -18px; right: 6%; color: #f2b24e; border-color: rgba(242, 178, 78, 0.35); }
.chip-2 { bottom: 26%; left: -26px; animation-delay: -2s; }
.chip-3 { bottom: -16px; right: 12%; animation-delay: -3.6s; }

@keyframes chip-float {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

/* --------------------------------------------------------------------------
   数据条
   -------------------------------------------------------------------------- */

.stats-strip { padding: 26px 0 10px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px 12px;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.stat { text-align: center; }
.stat b {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  background: linear-gradient(120deg, #cfc9ff, #9f8bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 0.86rem; color: var(--text-dim); }

/* --------------------------------------------------------------------------
   通用 Section
   -------------------------------------------------------------------------- */

.section { padding: 96px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 60%);
  border-block: 1px solid rgba(167, 173, 255, 0.07);
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--lavender);
  opacity: 0.85;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}
.section-head p { margin-top: 14px; color: var(--text-sub); font-size: 1rem; }

/* --------------------------------------------------------------------------
   产品卡片
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.product-card {
  position: relative;
  padding: 36px 34px 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-main);
  opacity: 0.85;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(3, 3, 16, 0.55);
}
.product-card.personal:hover { border-color: rgba(160, 107, 248, 0.5); box-shadow: 0 30px 70px rgba(3, 3, 16, 0.55), 0 0 46px rgba(140, 110, 250, 0.18); }
.product-card.enterprise::before { background: var(--grad-gold); }
.product-card.enterprise:hover { border-color: rgba(242, 178, 78, 0.45); box-shadow: 0 30px 70px rgba(3, 3, 16, 0.55), 0 0 46px rgba(242, 178, 78, 0.14); }

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.product-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: rgba(160, 107, 248, 0.14);
  border: 1px solid rgba(160, 107, 248, 0.3);
  color: var(--lavender);
}
.product-icon svg { width: 26px; height: 26px; }
.product-card.enterprise .product-icon {
  background: var(--gold-soft);
  border-color: rgba(242, 178, 78, 0.34);
  color: var(--gold);
}

.product-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--lavender);
  background: rgba(160, 107, 248, 0.12);
  border: 1px solid rgba(160, 107, 248, 0.28);
}
.tag-gold {
  color: var(--gold);
  background: var(--gold-soft);
  border-color: rgba(242, 178, 78, 0.3);
}

.product-card h3 { font-size: 1.5rem; font-weight: 800; }

.kernel-badge {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--lavender);
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(160, 107, 248, 0.1);
  border: 1px dashed rgba(160, 107, 248, 0.35);
}
.badge-gold {
  color: var(--gold);
  background: var(--gold-soft);
  border-color: rgba(242, 178, 78, 0.4);
}

.product-desc { margin-top: 16px; color: var(--text-sub); font-size: 0.95rem; }

.product-feats { margin-top: 20px; display: grid; gap: 11px; }
.product-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #cdd0ea;
}
.product-feats svg {
  width: 15px;
  height: 15px;
  flex: none;
  margin-top: 5px;
  color: #8ff0b4;
}
.product-card.enterprise .product-feats svg { color: var(--gold); }

.product-cta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(167, 173, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.product-price { font-size: 1.05rem; font-weight: 700; }
.product-price i { font-style: normal; font-size: 0.8rem; font-weight: 400; color: var(--text-dim); }

.badge-pop {
  position: absolute;
  top: 22px;
  right: -34px;
  transform: rotate(38deg);
  padding: 5px 40px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #241604;
  background: var(--grad-gold);
  box-shadow: 0 4px 16px rgba(242, 178, 78, 0.4);
}
.price-card.featured .badge-pop {
  position: static;
  transform: none;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 14px;
}

/* 行业纵深 */

.industry-strip {
  margin-top: 30px;
  padding: 24px 30px;
  border-radius: 18px;
  border: 1px dashed rgba(167, 173, 255, 0.22);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.industry-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.industry-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-chips span {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--text-sub);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.industry-chips span:hover {
  color: var(--lavender);
  border-color: rgba(160, 107, 248, 0.5);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   对比表
   -------------------------------------------------------------------------- */

.compare-wrap {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.compare-table th,
.compare-table td {
  padding: 17px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(167, 173, 255, 0.09);
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table thead th {
  font-size: 0.98rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(167, 173, 255, 0.16);
}
.compare-table thead th.col-feature { width: 17%; }

.col-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: 2px;
  color: var(--lavender);
  background: rgba(160, 107, 248, 0.12);
  border: 1px solid rgba(160, 107, 248, 0.3);
}
.col-tag.tag-gold {
  color: var(--gold);
  background: var(--gold-soft);
  border-color: rgba(242, 178, 78, 0.3);
}

.compare-table tbody th {
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}
.compare-table td { color: #cdd0ea; }

.ent-col {
  background: rgba(242, 178, 78, 0.045);
  border-left: 1px solid rgba(242, 178, 78, 0.12);
  border-right: 1px solid rgba(242, 178, 78, 0.12);
}
.compare-table thead th.ent-col { background: rgba(242, 178, 78, 0.07); }

/* --------------------------------------------------------------------------
   下载中心
   -------------------------------------------------------------------------- */

.download-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: stretch;
}

.dl-card {
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.dl-card:hover { transform: translateY(-5px); border-color: rgba(160, 107, 248, 0.4); }
.dl-card-gold:hover { border-color: rgba(242, 178, 78, 0.4); }

.dl-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.dl-head h3 { font-size: 1.3rem; font-weight: 800; }
.dl-ver {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--lavender);
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(160, 107, 248, 0.1);
  border: 1px solid rgba(160, 107, 248, 0.28);
}
.dl-card-gold .dl-ver {
  color: var(--gold);
  background: var(--gold-soft);
  border-color: rgba(242, 178, 78, 0.32);
}

.dl-list { display: grid; gap: 12px; }

.dl-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(167, 173, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.dl-item:hover { background: rgba(255, 255, 255, 0.055); border-color: rgba(160, 107, 248, 0.35); }

.dl-os {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  background: rgba(160, 107, 248, 0.12);
  color: var(--lavender);
}
.dl-os svg { width: 21px; height: 21px; }

.dl-info { flex: 1; min-width: 0; }
.dl-info b { display: block; font-size: 0.95rem; }
.dl-info span { font-size: 0.78rem; color: var(--text-dim); }

.dl-btn {
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--lavender);
  border: 1px solid rgba(160, 107, 248, 0.4);
  background: rgba(160, 107, 248, 0.08);
  transition: all 0.2s ease;
}
.dl-btn:hover {
  background: var(--grad-main);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(124, 98, 250, 0.4);
}

.dl-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.portable-highlight {
  display: flex;
  gap: 15px;
  padding: 18px;
  border-radius: 16px;
  background: var(--gold-soft);
  border: 1px solid rgba(242, 178, 78, 0.3);
  color: var(--gold);
}
.portable-highlight svg { width: 30px; height: 30px; flex: none; }
.portable-highlight b { display: block; color: var(--gold); font-size: 0.98rem; }
.portable-highlight span { font-size: 0.84rem; color: #d8cdb4; line-height: 1.65; }

.dl-feats { margin-top: 18px; display: grid; gap: 10px; }
.dl-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #cdd0ea;
}
.dl-feats li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.dl-actions { margin-top: auto; padding-top: 22px; }

/* --------------------------------------------------------------------------
   价格
   -------------------------------------------------------------------------- */

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 42px;
}
.bt-label { font-size: 0.92rem; color: var(--text-dim); transition: color 0.2s ease; }
.bt-label.active { color: var(--text); font-weight: 700; }
.save-tag {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  color: #241604;
  background: var(--grad-gold);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
}

.switch {
  width: 54px;
  height: 29px;
  border-radius: 999px;
  border: 1px solid rgba(160, 107, 248, 0.45);
  background: rgba(160, 107, 248, 0.1);
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease;
}
.switch .knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--lavender);
  transition: transform 0.25s ease, background 0.25s ease;
}
.switch[aria-checked="true"] { background: var(--grad-main); border-color: transparent; }
.switch[aria-checked="true"] .knob { transform: translateX(25px); background: #fff; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(160, 107, 248, 0.4); }
.price-card.featured {
  border-color: rgba(160, 107, 248, 0.55);
  background: linear-gradient(180deg, rgba(109, 104, 245, 0.12), rgba(160, 107, 248, 0.04));
  box-shadow: 0 26px 60px rgba(3, 3, 16, 0.5), 0 0 44px rgba(140, 110, 250, 0.16);
}
.price-card.enterprise:hover { border-color: rgba(242, 178, 78, 0.4); }

.price-card h3 { font-size: 1.2rem; font-weight: 800; }
.price-desc { margin-top: 6px; font-size: 0.86rem; color: var(--text-dim); }

.price { margin-top: 22px; display: flex; align-items: baseline; gap: 4px; }
.price .currency { font-size: 1.2rem; font-weight: 700; color: var(--text-sub); }
.price b {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, #e6e2ff, #b3a6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price .unit { font-size: 0.9rem; color: var(--text-dim); }
.unit-top {
  font-size: 1.7rem !important;
  font-weight: 800;
  background: linear-gradient(120deg, #f6c15f, #eda23f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.save-note { margin-top: 10px; font-size: 0.8rem; color: var(--gold); }

.price-feats { margin: 24px 0 28px; display: grid; gap: 11px; }
.price-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #cdd0ea;
}
.price-feats li::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: none;
  margin-top: 5px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%238ff0b4" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>')
    center / 9px no-repeat,
    rgba(143, 240, 180, 0.12);
}
.price-card.enterprise .price-feats li::before {
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f2b24e" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>')
    center / 9px no-repeat,
    var(--gold-soft);
}

.price-card .btn { margin-top: auto; }

.pricing-note {
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   企业服务
   -------------------------------------------------------------------------- */

.ent-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.step-list { display: grid; gap: 8px; counter-reset: step; }

.step-list li {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(167, 173, 255, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.step-list li:hover { transform: translateX(6px); border-color: rgba(242, 178, 78, 0.35); }

.step-num {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(242, 178, 78, 0.3);
}
.step-list h4 { font-size: 1.04rem; font-weight: 700; }
.step-list p { margin-top: 6px; font-size: 0.89rem; color: var(--text-sub); }

.ent-side { display: grid; gap: 22px; position: sticky; top: calc(var(--nav-h) + 24px); }

.ent-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ent-stat {
  padding: 20px 18px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
}
.ent-stat b {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(120deg, #f6c15f, #eda23f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ent-stat span { font-size: 0.8rem; color: var(--text-dim); }

.ent-cta {
  padding: 30px 28px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(109, 104, 245, 0.2), rgba(160, 107, 248, 0.06));
  border: 1px solid rgba(160, 107, 248, 0.4);
}
.ent-cta h4 { font-size: 1.2rem; font-weight: 800; }
.ent-cta p { margin: 10px 0 20px; font-size: 0.9rem; color: var(--text-sub); }

/* --------------------------------------------------------------------------
   联系我们
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.contact-form {
  padding: 34px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
}

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

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 8px;
}
.form-field label i { font-style: normal; color: #ff8f8f; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(167, 173, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.93rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%), linear-gradient(135deg, var(--text-dim) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-field select option { background: #12132e; color: var(--text); }

.form-field input::placeholder,
.form-field textarea::placeholder { color: #5d6285; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(160, 107, 248, 0.65);
  box-shadow: 0 0 0 3px rgba(160, 107, 248, 0.18);
}

.form-tip { margin-top: 14px; font-size: 0.78rem; color: var(--text-dim); text-align: center; }

.contact-info {
  padding: 34px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
}
.contact-info h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 22px; }
.contact-info ul { display: grid; gap: 18px; }
.contact-info li { display: flex; gap: 14px; }
.contact-info li svg {
  width: 21px;
  height: 21px;
  flex: none;
  margin-top: 3px;
  color: var(--lavender);
}
.contact-info b { display: block; font-size: 0.9rem; }
.contact-info span { font-size: 0.85rem; color: var(--text-sub); }

.contact-guarantee {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(167, 173, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-guarantee span {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(242, 178, 78, 0.28);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list { display: grid; gap: 14px; }

.faq-list details {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.028);
  padding: 0 24px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-list details[open] {
  border-color: rgba(160, 107, 248, 0.4);
  background: rgba(109, 104, 245, 0.06);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }

.faq-arrow {
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.faq-list details[open] .faq-arrow {
  transform: rotate(225deg);
  border-color: var(--lavender);
}

.faq-list details p {
  padding: 0 0 22px;
  color: var(--text-sub);
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   页脚
   -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
  padding: 60px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(167, 173, 255, 0.1);
}

.foot-brand p { margin-top: 18px; font-size: 0.88rem; color: var(--text-dim); }

.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.foot-col a { font-size: 0.87rem; color: var(--text-dim); transition: color 0.2s ease; }
.foot-col a:hover { color: var(--lavender); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.icp { opacity: 0.75; }

/* --------------------------------------------------------------------------
   Toast & 动效
   -------------------------------------------------------------------------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 20px);
  z-index: 200;
  max-width: min(480px, 88vw);
  padding: 14px 26px;
  border-radius: 14px;
  background: rgba(23, 22, 56, 0.92);
  border: 1px solid rgba(160, 107, 248, 0.5);
  box-shadow: 0 18px 50px rgba(3, 3, 16, 0.6);
  color: var(--text);
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   响应式
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero { min-height: 0; padding-bottom: 40px; }
  .hero-visual { max-width: 620px; }
  .product-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .ent-grid { grid-template-columns: 1fr; }
  .ent-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .section { padding: 68px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .chip-float { display: none; }
  .terminal { min-height: 260px; font-size: 0.76rem; padding: 18px 16px 22px; }
  .contact-form, .contact-info, .dl-card { padding: 24px 20px; }
  .industry-strip { padding: 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .badge-pop { display: none; }
}

/* --------------------------------------------------------------------------
   产品卡片配图
   -------------------------------------------------------------------------- */

.product-shot {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
  border-radius: 13px;
  border: 1px solid rgba(167, 173, 255, 0.18);
  margin-bottom: 20px;
  background: #0d0e26;
}

/* --------------------------------------------------------------------------
   产品实拍画廊
   -------------------------------------------------------------------------- */

.showcase { max-width: 980px; margin: 0 auto; }

.show-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.show-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text-sub);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.show-tab:hover { color: var(--text); border-color: rgba(160, 107, 248, 0.4); }
.show-tab.active {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 22px rgba(124, 98, 250, 0.4);
}

.show-frame {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(23, 22, 56, 0.85), rgba(14, 14, 38, 0.92));
  border: 1px solid rgba(185, 178, 255, 0.2);
  box-shadow: 0 34px 90px rgba(3, 3, 16, 0.6), 0 0 60px rgba(109, 104, 245, 0.14);
  overflow: hidden;
}

.show-view { position: relative; }
.show-img { display: none; width: 100%; }
.show-img.active { display: block; animation: shot-fade 0.5s ease; }

@keyframes shot-fade {
  from { opacity: 0; transform: scale(0.995); }
  to { opacity: 1; transform: none; }
}

.show-caption {
  margin-top: 16px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   核心能力 bento
   -------------------------------------------------------------------------- */

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bento-card {
  padding: 28px 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(160, 107, 248, 0.45);
  box-shadow: 0 20px 50px rgba(3, 3, 16, 0.45);
}
.bento-card.b-wide { grid-column: span 2; }

.bento-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(160, 107, 248, 0.13);
  border: 1px solid rgba(160, 107, 248, 0.3);
  color: var(--lavender);
  margin-bottom: 18px;
}
.bento-icon svg { width: 23px; height: 23px; }

.bento-card h3 { font-size: 1.05rem; font-weight: 700; }
.bento-card p { margin-top: 10px; font-size: 0.88rem; color: var(--text-sub); }

/* --------------------------------------------------------------------------
   使用场景
   -------------------------------------------------------------------------- */

.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.uc-card {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.uc-card:hover { transform: translateY(-5px); border-color: rgba(242, 178, 78, 0.4); }

.uc-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(242, 178, 78, 0.3);
  margin-bottom: 16px;
}
.uc-card h4 { font-size: 1.06rem; font-weight: 700; }

.uc-prompt {
  margin-top: 12px;
  font-size: 0.92rem;
  color: #cdd0ea;
  line-height: 1.75;
}

.uc-out {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.82rem;
  color: #8ff0b4;
}

/* --------------------------------------------------------------------------
   三步上手
   -------------------------------------------------------------------------- */

.steps-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.gs-list { display: grid; gap: 16px; }

.gs-list li {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(167, 173, 255, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.gs-list li:hover { transform: translateX(6px); border-color: rgba(160, 107, 248, 0.4); }

.gs-num {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--grad-main);
  box-shadow: 0 6px 18px rgba(124, 98, 250, 0.4);
}
.gs-list h4 { font-size: 1.04rem; font-weight: 700; }
.gs-list p { margin-top: 6px; font-size: 0.89rem; color: var(--text-sub); }

.gs-term { max-width: 620px; justify-self: end; width: 100%; }

.terminal-static { min-height: 0; }
.terminal-static span { display: block; }

/* --------------------------------------------------------------------------
   新增板块响应式
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .gs-term { justify-self: stretch; max-width: none; }
}

@media (max-width: 760px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.b-wide { grid-column: span 1; }
  .uc-grid { grid-template-columns: 1fr; }
  .show-tabs { gap: 8px; }
  .show-tab { padding: 8px 14px; font-size: 0.8rem; }
}
