/* ==========================================================================
   Clash Verge 官方网站 - 柔和奶油色风 (Soft Cream & Low Friction Cozy Architecture)
   温暖柔和奶油色系 · 降低技术理解门槛 · 亲和圆角卡片 · 清晰视觉层级 · 舒适无压力浏览
   ========================================================================== */

:root {
  --bg-page: #faf8f5;
  --bg-surface: #f4efe6;
  --bg-card: #ffffff;
  --bg-card-hover: #fdfcfa;
  --bg-subtle: #efe8dc;
  --bg-header: rgba(250, 248, 245, 0.94);
  
  --border-subtle: #e8dfd1;
  --border-strong: #d4c7b2;
  --border-warm: #e07a5f;
  --border-amber: #d97706;
  --border-sage: #81b29a;
  
  --text-main: #2b2d42;
  --text-sub: #5c6274;
  --text-dim: #8d99ae;
  --text-link: #d96b43;
  
  --color-warm: #e07a5f;
  --color-warm-dark: #c85a3d;
  --color-cream: #f4efe6;
  --color-sage: #81b29a;
  --color-amber: #d97706;
  --color-navy: #3d405b;
  
  --gradient-warm: linear-gradient(135deg, #e07a5f 0%, #e29578 100%);
  --gradient-warm-hover: linear-gradient(135deg, #c85a3d 0%, #d97706 100%);
  --gradient-badge: linear-gradient(135deg, rgba(224, 122, 95, 0.12) 0%, rgba(217, 119, 6, 0.1) 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  
  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --max-w: 1200px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-sm: 0 2px 8px rgba(92, 98, 116, 0.06);
  --shadow-md: 0 8px 24px rgba(92, 98, 116, 0.08);
  --shadow-lg: 0 16px 36px rgba(92, 98, 116, 0.12);
  --shadow-warm: 0 8px 20px rgba(224, 122, 95, 0.25);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-page);
  background-image: 
    radial-gradient(circle at 10% 0%, rgba(224, 122, 95, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(129, 178, 154, 0.06) 0%, transparent 45%),
    linear-gradient(to bottom, #faf8f5 0%, #f4efe6 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 顶部亲和状态通知条 */
.cream-top-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.45rem 0;
  font-size: 0.84rem;
  color: var(--text-sub);
}

.cream-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cream-pill-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cream-pill {
  font-size: 0.74rem;
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cream-pill.warm {
  background: rgba(224, 122, 95, 0.15);
  color: #c85a3d;
  border: 1px solid rgba(224, 122, 95, 0.3);
}

.cream-pill.sage {
  background: rgba(129, 178, 154, 0.18);
  color: #2b7a5a;
  border: 1px solid rgba(129, 178, 154, 0.4);
}

/* 顶部导航栏 (柔和奶油风) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: var(--shadow-warm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-sub);
  padding: 0.4rem 0.2rem;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: var(--color-warm-dark);
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-warm);
  border-radius: 3px;
}

.nav-btn-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 1.1rem;
}

/* 柔和亲和风按钮规范 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-warm);
  color: #ffffff;
  border: none;
  box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
  background: var(--gradient-warm-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 122, 95, 0.35);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--color-warm);
  color: var(--color-warm-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1.25rem;
  font-size: 0.86rem;
}

.btn-lg {
  padding: 0.92rem 2.35rem;
  font-size: 1.02rem;
}

/* Hero 首屏 (柔和奶油色风) */
.hero-section {
  padding: 5rem 0 4.25rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-cream-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-badge);
  border: 1px solid rgba(224, 122, 95, 0.3);
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  color: var(--color-warm-dark);
  font-weight: 700;
  margin-bottom: 1.35rem;
}

.hero-heading {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.hero-heading .highlight-warm {
  color: var(--color-warm);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-sub);
  margin-bottom: 1.85rem;
}

.hero-desc strong {
  color: var(--text-main);
}

/* 降低技术门槛体验亮点卡片 (Hero Friendly Feature Card) */
.hero-friendly-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.45rem;
  margin-bottom: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-left: 4px solid var(--color-warm);
  box-shadow: var(--shadow-sm);
}

.hero-friendly-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.hero-friendly-row svg {
  color: var(--color-warm);
  flex-shrink: 0;
}

/* 柔和奶油风视窗展示卡片 (1.webp) */
.cream-window-frame {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition);
}

.cream-window-frame:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.cream-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.35rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.86rem;
  color: var(--text-sub);
}

.cream-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2b7a5a;
  font-weight: 700;
  font-size: 0.8rem;
}

.cream-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-sage);
  box-shadow: 0 0 8px rgba(129, 178, 154, 0.8);
}

/* 数据背书区 */
.endorsement-section {
  padding: 3rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.stat-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.35rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.stat-box:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-val {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--color-warm-dark);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.stat-tit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.stat-inf {
  font-size: 0.84rem;
  color: var(--text-dim);
}

/* 常用 Section 结构 */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-warm-dark);
  background: var(--gradient-badge);
  border: 1px solid rgba(224, 122, 95, 0.3);
  padding: 0.32rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.95rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 0.95rem;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-sub);
  line-height: 1.75;
}

/* 核心能力卡片网格 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.15rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--color-warm);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-warm-dark);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.75;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

.chip {
  font-size: 0.76rem;
  padding: 0.22rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  color: var(--text-sub);
  border: 1px solid var(--border-subtle);
  font-weight: 600;
}

/* 图文展示区 */
.showcase-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.showcase-row.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.showcase-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.15rem;
  line-height: 1.3;
}

.showcase-content p {
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 1.65rem;
  font-size: 1.02rem;
}

.sec-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 1.85rem;
}

.sec-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-main);
}

.sec-check-item svg {
  color: var(--color-warm);
  flex-shrink: 0;
  margin-top: 4px;
}

/* 平台支持区 */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.35rem;
}

.platform-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.platform-card:hover {
  border-color: var(--color-warm);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.platform-icon {
  font-size: 2.3rem;
}

.platform-name {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-main);
}

.platform-meta {
  font-size: 0.84rem;
  color: var(--text-dim);
}

.platform-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-badge);
  color: var(--color-warm-dark);
  border: 1px solid rgba(224, 122, 95, 0.3);
}

/* FAQ 常见问题区 */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.faq-q {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-q .q-tag {
  color: var(--color-warm);
  font-weight: 800;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.75;
}

/* 底部 CTA 横幅 */
.cream-cta-banner {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 4.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--color-warm);
}

.cta-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-sub);
  max-width: 680px;
  margin: 0 auto 2.25rem;
}

/* 内页 Hero 头部 */
.page-hero {
  padding: 4.5rem 0 3.75rem;
  text-align: center;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 {
  font-size: 2.85rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.12rem;
  color: var(--text-sub);
  max-width: 760px;
  margin: 0 auto 1.75rem;
}

/* 教程步骤卡片 */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2.35rem;
  max-width: 940px;
  margin: 0 auto;
}

.step-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.85rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.35rem;
  transition: var(--transition);
  border-left: 4px solid var(--color-warm);
  box-shadow: var(--shadow-sm);
}

.step-box:hover {
  border-color: var(--border-strong);
  border-left: 4px solid var(--color-warm-dark);
  box-shadow: var(--shadow-md);
}

.step-idx {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--color-warm-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  font-weight: 900;
}

.step-main h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.95rem;
}

.step-main p {
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 1.15rem;
  font-size: 0.98rem;
}

.step-pic-box {
  margin-top: 1.35rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

/* 下载卡片矩阵 */
.dl-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
}

.dl-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.35rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--border-strong);
}

.dl-card.featured {
  border-color: var(--color-warm);
  border-top: 3px solid var(--color-warm);
  box-shadow: var(--shadow-md);
}

.dl-hot-badge {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  background: var(--gradient-warm);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.22rem 0.75rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-warm);
}

.dl-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.45rem;
}

.dl-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-warm-dark);
  font-size: 1.6rem;
}

.dl-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
}

.dl-card-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.dl-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.dl-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
}

.dl-spec-k {
  color: var(--text-sub);
}

.dl-spec-v {
  color: var(--text-main);
  font-weight: 700;
}

.dl-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* 对比表格 */
.table-responsive-box {
  width: 100%;
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.client-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.client-compare-table th,
.client-compare-table td {
  padding: 1.35rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.client-compare-table th {
  background: var(--bg-surface);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.client-compare-table tr:last-child td {
  border-bottom: none;
}

.client-compare-table tr:hover td {
  background: var(--bg-surface);
}

/* 页脚 */
.site-footer {
  margin-top: auto;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2.5rem;
  color: var(--text-sub);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.75rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand p {
  color: var(--text-sub);
  line-height: 1.75;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.35rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--text-sub);
}

.footer-links a:hover {
  color: var(--color-warm-dark);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
  color: var(--text-dim);
}

/* 响应式适配 */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
  .dl-matrix-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    gap: 1rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.active { display: flex; }
  .hero-heading { font-size: 2.4rem; }
  .features-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .dl-matrix-grid { grid-template-columns: 1fr; }
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .step-box { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
