/* VIBGA — style (支持多主题切换) */

@import url("fonts/baloo-face.css");

/* ========== 暖色主题 (默认) ========== */
:root {
  --bg1: #FFF7EC;
  --bg2: #FFEDF3;
  --bg3: #FFE8E8;
  --ink: #171226;
  --muted: #6b6478;
  --line: rgba(23, 18, 38, 0.10);
  --accent: #E83F6F;
  --yellow: #FFD23F;
  --cyan: #FF9EAA;
  --display: 'Baloo 2', 'Arial Rounded MT Bold', sans-serif;
  --body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --card-r: 22px;
  --maxw: 1180px;
  
  /* 主题特定变量 - 暖色优化 */
  --hero-bg: linear-gradient(168deg, var(--bg1) 0%, var(--bg2) 50%, var(--bg3) 100%);
  --card-bg: rgba(255, 255, 255, 0.82);
  --panel-bg: rgba(255, 255, 255, 0.82);
  --vcard-bg: rgba(255, 252, 250, 0.75);
}

/* ========== 深色区域配色方案 ========== */
/* 暖调深色 (默认) */
:root {
  --footer-bg: linear-gradient(135deg, #2D1B4E 0%, #4A2570 50%, #6B2D5A 100%);
  --careers-bg: linear-gradient(120deg, #2D1B4E 0%, #4A2570 60%, #6B2D5A 100%);
}

/* 棕褐暖色 */
:root[data-dark-style="brown"] {
  --footer-bg: linear-gradient(135deg, #3E2723 0%, #5D4037 50%, #795548 100%);
  --careers-bg: linear-gradient(120deg, #3E2723 0%, #5D4037 60%, #795548 100%);
}

/* 酒红优雅 */
:root[data-dark-style="wine"] {
  --footer-bg: linear-gradient(135deg, #4A1C40 0%, #6D2145 50%, #8B2E4F 100%);
  --careers-bg: linear-gradient(120deg, #4A1C40 0%, #6D2145 60%, #8B2E4F 100%);
}

/* 专业品牌 */
:root[data-dark-style="brand"] {
  --footer-bg: linear-gradient(135deg, #1A237E 0%, #283593 50%, #3949AB 100%);
  --careers-bg: linear-gradient(120deg, #1A237E 0%, #283593 60%, #3949AB 100%);
}

/* ========== 冷色主题 ========== */
:root[data-theme="cool"] {
  --bg1: #F0F4FF;
  --bg2: #E8EEFF;
  --bg3: #DCE4FF;
  --ink: #0F1A2E;
  --muted: #5A6B8A;
  --line: rgba(15, 26, 46, 0.12);
  --accent: #6366F1;
  --yellow: #FBBF24;
  --cyan: #22D3EE;
  
  --hero-bg: linear-gradient(168deg, #F0F4FF 0%, #E0E7FF 50%, #C7D2FE 100%);
  --footer-bg: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  --careers-bg: linear-gradient(120deg, #0F172A 0%, #1E293B 60%, #334155 100%);
  --card-bg: rgba(255, 255, 255, 0.85);
  --panel-bg: rgba(255, 255, 255, 0.85);
  --vcard-bg: rgba(255, 255, 255, 0.75);
}

/* ========== 糖果色主题 ========== */
:root[data-theme="candy"] {
  --bg1: #FFF0F5;
  --bg2: #FFE4EC;
  --bg3: #FFD6E0;
  --ink: #4A2040;
  --muted: #8B5A7C;
  --line: rgba(74, 32, 64, 0.12);
  --accent: #FF6B9D;
  --yellow: #FFB6C1;
  --cyan: #FF85A2;
  
  --hero-bg: linear-gradient(168deg, #FFF0F5 0%, #FFE4EC 50%, #FFD6E0 100%);
  --footer-bg: linear-gradient(135deg, #8B4D6B 0%, #B86B8C 50%, #D4899F 100%);
  --careers-bg: linear-gradient(120deg, #8B4D6B 0%, #B86B8C 60%, #D4899F 100%);
  --card-bg: rgba(255, 255, 255, 0.88);
  --panel-bg: rgba(255, 255, 255, 0.88);
  --vcard-bg: rgba(255, 250, 252, 0.80);
}

/* ========== 自然清新主题 ========== */
:root[data-theme="nature"] {
  --bg1: #F0FFF4;
  --bg2: #E8F5E9;
  --bg3: #DCEDC8;
  --ink: #1B3D1F;
  --muted: #5D7A5F;
  --line: rgba(27, 61, 31, 0.12);
  --accent: #4CAF50;
  --yellow: #8BC34A;
  --cyan: #66BB6A;
  
  --hero-bg: linear-gradient(168deg, #F0FFF4 0%, #E8F5E9 50%, #DCEDC8 100%);
  --footer-bg: linear-gradient(135deg, #1B3D1F 0%, #2E5D33 50%, #3E7B42 100%);
  --careers-bg: linear-gradient(120deg, #1B3D1F 0%, #2E5D33 60%, #3E7B42 100%);
  --card-bg: rgba(255, 255, 255, 0.85);
  --panel-bg: rgba(255, 255, 255, 0.85);
  --vcard-bg: rgba(250, 255, 251, 0.78);
}

/* ========== 明亮活泼主题 ========== */
:root[data-theme="bright"] {
  --bg1: #FFFDE7;
  --bg2: #FFF9C4;
  --bg3: #FFF59D;
  --ink: #1A1A1A;
  --muted: #616161;
  --line: rgba(26, 26, 26, 0.15);
  --accent: #FF6F00;
  --yellow: #FFD600;
  --cyan: #00BCD4;
  
  --hero-bg: linear-gradient(168deg, #FFFDE7 0%, #FFF9C4 50%, #FFF59D 100%);
  --footer-bg: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #404040 100%);
  --careers-bg: linear-gradient(120deg, #1A1A1A 0%, #2D2D2D 60%, #404040 100%);
  --card-bg: rgba(255, 255, 255, 0.90);
  --panel-bg: rgba(255, 255, 255, 0.90);
  --vcard-bg: rgba(255, 255, 253, 0.82);
}

/* ========== 柔和优雅主题 ========== */
:root[data-theme="soft"] {
  --bg1: #FAFAFA;
  --bg2: #F5F5F5;
  --bg3: #E8E8E8;
  --ink: #2C2C2C;
  --muted: #6B6B6B;
  --line: rgba(44, 44, 44, 0.10);
  --accent: #9E9E9E;
  --yellow: #BDBDBD;
  --cyan: #757575;
  
  --hero-bg: linear-gradient(168deg, #FAFAFA 0%, #F5F5F5 50%, #E8E8E8 100%);
  --footer-bg: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 50%, #3E3E3E 100%);
  --careers-bg: linear-gradient(120deg, #1A1A1A 0%, #2C2C2C 60%, #3E3E3E 100%);
  --card-bg: rgba(255, 255, 255, 0.92);
  --panel-bg: rgba(255, 255, 255, 0.92);
  --vcard-bg: rgba(252, 252, 252, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: linear-gradient(168deg, var(--bg1) 0%, var(--bg2) 50%, var(--bg3) 100%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Nav ---------- */
header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 240, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 800; font-size: 24px;
  text-decoration: none; letter-spacing: .01em;
}
.logo .dot { width: 11px; height: 11px; border-radius: 99px; background: var(--yellow); }
.logo .logoImg { height: 34px; width: auto; display: block; }
footer .logo .logoImg { height: 32px; }
.logoImg.white {
  filter: brightness(0) invert(1);
}
.navLinks { display: flex; align-items: center; gap: 28px; }
.navLinks a {
  text-decoration: none; font-size: 15px; font-weight: 600; color: var(--muted);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.navLinks a::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--yellow));
  transition: width .25s ease;
}
.navLinks a:hover { color: var(--ink); }
.navLinks a:hover::after { width: 100%; }
.navCta {
  background: var(--ink); color: #fff; text-decoration: none;
  font-weight: 800; font-size: 14px; padding: 11px 22px; border-radius: 999px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.navCta:hover {
  background: #2c2342;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 18, 38, 0.3);
}
.menuBtn { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 104px 20px 40px; }
.eyebrow,
.secHead .k,
.ctaBand .k {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .22em; font-weight: 800;
  color: var(--accent); text-transform: uppercase;
  background: rgba(232, 63, 111, 0.09);
  border: 1px solid rgba(232, 63, 111, 0.24);
  border-radius: 999px;
  padding: 7px 15px;
}
.eyebrow::before,
.secHead .k::before,
.ctaBand .k::before { content: ""; width: 6px; height: 6px; border-radius: 99px; background: var(--accent); }
.hero h1 {
  font-size: clamp(52px, 8.6vw, 108px);
  line-height: 1.2; letter-spacing: -0.015em; margin-top: 20px;
  font-weight: 800;
}
.hero p { font-size: clamp(17px, 2vw, 20px); color: var(--muted); margin: 24px auto 0; max-width: 720px; }
.acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 800; font-size: 16px;
  padding: 15px 34px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn.primary { background: var(--ink); color: #fff; }
.btn.primary:hover {
  background: #2c2342;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 18, 38, 0.35);
}
.btn.ghost { color: var(--ink); border: 1.5px solid var(--ink); background: transparent; }
.btn.ghost:hover {
  background: rgba(23, 18, 38, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 18, 38, 0.15);
}
.heroStrip {
  margin-top: 46px; display: flex; justify-content: center;
  gap: clamp(20px, 5vw, 60px); flex-wrap: wrap; color: var(--muted);
  font-size: 14px; font-weight: 700;
}
.heroStrip span { display: inline-flex; align-items: center; gap: 8px; }
.heroStrip i { width: 7px; height: 7px; border-radius: 99px; background: var(--accent); display: inline-block; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.wrap:not(.hero) { padding: 76px 28px; }
.panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(23, 18, 38, 0.05);
  padding: 64px 58px;
}
.secHead { text-align: center; margin-bottom: 46px; }
/* 区块标签徽章样式已统一在 .secHead .k / .eyebrow（见 Hero 区） */
.secHead h2 { font-family: var(--display); font-size: clamp(32px, 4.4vw, 48px); line-height: 1.08; margin-top: 10px; font-weight: 800; }
.secHead p { color: var(--muted); margin: 12px auto 0; max-width: 640px; font-size: 17px; }

/* ---------- Games grid ---------- */
.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--line); border-radius: var(--card-r);
  overflow: hidden; box-shadow: 0 16px 40px rgba(23, 18, 38, 0.07);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(23, 18, 38, 0.12); }
.artWrap { position: relative; aspect-ratio: 16 / 10; }
.cardArt { width: 100%; height: 100%; object-fit: cover; display: block; }
.cardArt.grad { display: flex; align-items: center; justify-content: center; }
.cardArt.grad span { font-family: var(--display); font-size: 64px; font-weight: 800; color: rgba(255,255,255,.92); text-shadow: 0 3px 10px rgba(0,0,0,.18); }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--yellow); color: #241245; font-weight: 800; font-size: 11px;
  letter-spacing: .14em; padding: 5px 11px; border-radius: 999px;
}
.meta { padding: 18px 20px 22px; }
.meta h3 { font-family: var(--display); font-size: 22px; font-weight: 800; line-height: 1.1; }
.meta .tag { display: inline-block; margin-top: 6px; font-size: 12px; font-weight: 800; letter-spacing: .12em; color: var(--accent); text-transform: uppercase; }
.meta p { color: var(--muted); font-size: 14.5px; margin-top: 8px; min-height: 42px; }
.storeRow { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.store {
  font-size: 12.5px; font-weight: 800; color: var(--ink);
  border: 1px solid var(--line); background: #fff; text-decoration: none;
  padding: 7px 14px; border-radius: 999px; transition: border-color .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.store:hover { border-color: var(--ink); }
.store svg { width: 14px; height: 14px; flex-shrink: 0; }
.comingSoon {
  font-size: 12.5px; font-weight: 800; color: var(--accent);
  border: 1px solid var(--accent); background: rgba(232, 63, 111, 0.08);
  padding: 7px 14px; border-radius: 999px;
  display: inline-block;
}

/* ---------- Studio ---------- */
.studioCard {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.vCard {
  background: rgba(255, 255, 255, 0.66); border: 1px solid var(--line);
  border-radius: var(--card-r); padding: 30px 28px;
}
.vCard .no { font-family: var(--display); font-size: 34px; font-weight: 800; color: var(--accent); }
.vCard h3 { font-size: 20px; font-weight: 800; margin-top: 10px; }
.vCard p { color: var(--muted); font-size: 15px; margin-top: 8px; }

.navRight { display: flex; align-items: center; gap: 12px; }
.langSw { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.6); }
.langBtn { background: transparent; border: 0; font: inherit; font-weight: 700; font-size: 12.5px; padding: 7px 13px; color: var(--muted); cursor: pointer; }
.langBtn.active { background: var(--ink); color: #fff; }

/* 语言下拉（语言 ≥3 时自动使用：触发器 + 自绘浮层） */
.langSw.langDrop { border: 0; background: none; overflow: visible; }
.langDrop { position: relative; }
.langTrigger { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); background: rgba(255,255,255,.75); border-radius: 999px; padding: 8px 14px; font: inherit; font-weight: 700; font-size: 13px; color: var(--ink); cursor: pointer; box-shadow: 0 2px 10px rgba(23,18,38,.06); transition: border-color .15s, box-shadow .15s; }
.langTrigger:hover { border-color: rgba(23,18,38,.35); }
.langTrigger .globe { font-size: 14px; line-height: 1; }
.langTrigger .chev { font-size: 10px; color: var(--muted); transition: transform .16s; }
.langTrigger.open { border-color: rgba(23,18,38,.4); box-shadow: 0 6px 18px rgba(23,18,38,.1); }
.langTrigger.open .chev { transform: rotate(180deg); }
.langMenu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 178px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 20px 55px rgba(23,18,38,.18); padding: 6px; z-index: 60; display: none; }
.langMenu.open { display: block; animation: langIn .14s ease; }
@keyframes langIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.langOpt { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; text-align: left; border: 0; background: none; padding: 10px 12px; border-radius: 11px; font: inherit; font-size: 14px; font-weight: 700; color: var(--ink); cursor: pointer; }
.langOpt:hover { background: var(--bg3); }
.langOpt .ck { color: var(--accent); font-size: 13px; opacity: 0; }
.langOpt.on { background: rgba(232,63,111,.08); }
.langOpt.on .ck { opacity: 1; }

/* ---------- Careers ---------- */
.ctaBand {
  background: var(--careers-bg);
  color: #fff; border-radius: 28px; text-align: center; padding: 64px 40px;
  box-shadow: 0 30px 80px rgba(74, 31, 142, 0.3);
}
.ctaBand h2 { font-family: var(--display); font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-top: 14px; }
.ctaBand .k { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }
.ctaBand .k::before { background: #FFD23F; }
.ctaBand p { color: #d9ccf5; margin: 14px auto 0; max-width: 620px; font-size: 17px; }
.ctaBand .btn.ghost { color: #fff; border-color: rgba(255,255,255,.7); }
.ctaBand .btn.ghost:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.ctaBand .mail { margin-top: 18px; color: var(--yellow); font-weight: 800; }

/* ---------- Footer ---------- */
footer {
  background: var(--footer-bg);
  color: #fff; padding: 64px 0 48px; margin-top: 60px;
  position: relative; overflow: hidden;
}
footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}
.foot { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; justify-content: space-between; }
.foot .logo { font-size: 22px; }
.foot .logo .dot { background: var(--yellow); }
.footCols { display: flex; gap: 52px; flex-wrap: wrap; }
.footCols > div { min-width: 140px; }
.footCols a { display: block; text-decoration: none; color: rgba(255,255,255,.7); font-size: 14px; padding: 5px 0; transition: color .2s, transform .2s; }
.footCols a:hover { color: #fff; transform: translateX(4px); }
.footCols b { display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; font-weight: 700; }
#socialRow { display: flex; flex-direction: row; gap: 12px; flex-wrap: wrap; align-items: center; }
.social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  text-decoration: none; color: #fff;
  transition: all .2s; backdrop-filter: blur(8px);
  position: relative;
}
.social svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.social:hover {
  background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4);
  transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.copyright { text-align: center; color: rgba(255,255,255,.6); font-size: 13px; }
.bottomRow { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 30px; margin-top: 50px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.15); }
.legalLinks { display: inline-flex; align-items: center; gap: 14px; }
.legalLinks a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 13px; transition: color .2s; }
.legalLinks a:hover { color: #fff; text-decoration: underline; }
.legalLinks i { color: rgba(255,255,255,.3); font-style: normal; }

/* ---------- Legal page ---------- */
.legalHead { padding: 26px 0; }
.legalBack { display: inline-block; margin: 18px 0 8px; color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 600; }
.legalBack:hover { color: var(--ink); }
.legalTabs { display: flex; gap: 10px; margin: 12px 0 26px; flex-wrap: wrap; }
.legalTab { border: 1px solid var(--line); background: rgba(255,255,255,.7); border-radius: 999px; padding: 10px 22px; font-size: 15px; font-weight: 800; color: var(--muted); text-decoration: none; }
.legalTab:hover { color: var(--ink); border-color: var(--ink); }
.legalTab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.legalDoc { background: rgba(255,255,255,.74); border: 1px solid var(--line); border-radius: 24px; padding: 46px 54px; max-width: 880px; margin: 0 auto 90px; }
.legalDoc h1 { font-family: var(--display); font-size: clamp(30px, 4vw, 42px); font-weight: 800; line-height: 1.1; }
.legalDoc .updated { color: var(--muted); font-size: 14px; margin-top: 8px; }
.legalDoc .lead { color: var(--muted); font-size: 16.5px; line-height: 1.65; margin-top: 20px; }
.legalDoc block { display: block; }
.legalDoc h2 { font-size: 20px; font-weight: 800; margin: 30px 0 10px; }
.legalDoc p { color: #3c3650; font-size: 15.5px; line-height: 1.7; margin: 6px 0; }
.legalDoc a { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .navLinks { display: none; }
  .navLinks.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 76px; left: 14px; right: 14px;
    gap: 6px; padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line); border-radius: 22px;
    box-shadow: 0 28px 70px rgba(23, 18, 38, 0.16);
    animation: langIn .16s ease;
  }
  .navLinks.open a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 18px; border-radius: 14px;
    font-size: 17px; font-weight: 800; color: var(--ink);
  }
  .navLinks.open a::after { content: "→"; color: var(--accent); font-size: 15px; }
  .navLinks.open a:hover { background: var(--bg3); }
  .menuBtn { display: block; }
  section { padding: 60px 0; }
  section.wrap:not(.hero) { padding: 52px 22px; }
  .panel { padding: 48px 34px; border-radius: 28px; }
  .navCta { font-size: 13px; padding: 10px 18px; }
  .foot { gap: 36px; }
  .footCols { gap: 36px; }
  .footCols > div { min-width: 120px; }
  .ctaBand { padding: 48px 24px; }
}

@media (max-width: 560px) {
  .hero { padding: 72px 12px 24px; }
  .grid { grid-template-columns: 1fr; }
  .navCta { display: none; }
  .langBtn { padding: 6px 10px; font-size: 12px; }
  .panel { padding: 40px 18px; border-radius: 22px; }
  .panel .secHead { margin-bottom: 34px; }
  .foot { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footCols { flex-direction: column; gap: 28px; }
  .footCols > div { min-width: auto; }
  #socialRow { gap: 10px; }
  .social { width: 36px; height: 36px; }
  .social svg { width: 16px; height: 16px; }
  .ctaBand { padding: 40px 20px; border-radius: 20px; }
  .ctaBand h2 { font-size: 28px; }
  footer { padding: 48px 0 36px; }
  .bottomRow { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
}
