/* site.css — yikeqiu.top 统一全屏动态布局 v2 */
:root {
  --bg: #f7f1e8;
  --surface: rgba(255,255,255,0.68);
  --surface-hover: rgba(255,255,255,0.9);
  --border: rgba(180,133,91,0.18);
  --border-hover: rgba(210,132,62,0.42);
  --text: #111111;
  --muted: rgba(17,17,17,0.52);
  --muted2: rgba(17,17,17,0.82);
  --accent: #d68442;
  --accent-deep: #b76127;
  --accent-glow: rgba(214,132,66,0.2);
  --steel: #7ea1b2;
  --shadow: 0 28px 80px rgba(120,83,50,0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --nav-height: 68px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Source Han Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── Animated background ── */
.bg-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 78% 58% at 15% 12%, rgba(222,167,117,0.3) 0%, transparent 52%),
    radial-gradient(ellipse 58% 78% at 82% 86%, rgba(167,194,210,0.28) 0%, transparent 54%),
    linear-gradient(155deg, #fbf6ef 0%, #f6efe6 42%, #edf3f6 100%);
  animation: bgAnim 20s ease-in-out infinite alternate;
}

@keyframes bgAnim {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(8deg); }
}

.bg-orb {
  position: fixed; border-radius: 50%; filter: blur(90px);
  pointer-events: none; z-index: 0;
  animation: orbFloat 28s ease-in-out infinite;
}
.bg-orb-1 {
  width: 700px; height: 700px; top: -250px; left: -250px;
  background: radial-gradient(circle, rgba(220,153,90,0.24) 0%, transparent 70%);
}
.bg-orb-2 {
  width: 550px; height: 550px; bottom: -180px; right: -180px;
  background: radial-gradient(circle, rgba(120,158,185,0.22) 0%, transparent 70%);
  animation-delay: -10s;
}
.bg-orb-3 {
  width: 400px; height: 400px; top: 45%; left: 58%;
  background: radial-gradient(circle, rgba(228,176,127,0.18) 0%, transparent 70%);
  animation-delay: -18s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(50px,-70px) scale(1.08); }
  66%  { transform: translate(-35px,45px) scale(0.94); }
}

/* ── Nav ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-height);
  display: flex; align-items: center;
  padding: 0 clamp(16px,4vw,56px);
  border-bottom: 1px solid var(--border);
  background: rgba(251,246,239,0.78);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
}

.site-nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%; gap: 24px;
}

.brand {
  display: flex; align-items: center; gap: 13px; flex-shrink: 0;
}

.brand-mark {
  width: 44px; height: 44px; border-radius: 13px; overflow: hidden;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 8px 24px rgba(126,91,59,0.16), 0 0 0 1px var(--border);
  flex-shrink: 0;
}
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.brand-sub  { font-size: 11px; color: var(--muted); margin-top: 2px; }

.nav-links {
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.nav-links a {
  display: inline-flex; align-items: center; height: 36px;
  padding: 0 14px; border-radius: 999px; font-size: 13px;
  color: var(--muted2); border: 1px solid transparent;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.nav-links a:hover {
  color: var(--text); background: var(--surface-hover); border-color: var(--border);
}

/* ── Page wrapper ── */
.site-body { position: relative; z-index: 1; padding-top: var(--nav-height); }

/* ── Hero ── */
.hero-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex; align-items: center;
  padding: clamp(48px,8vh,120px) clamp(16px,5vw,64px);
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; width: 100%; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.58);
  color: var(--muted2); font-size: 12px; letter-spacing: 0.05em;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(145,108,74,0.08);
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  animation: pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.65); }
}

.hero-title {
  font-family: "DengXian","Segoe UI Variable Display","PingFang SC",sans-serif;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1.0; letter-spacing: -0.05em; margin: 0 0 24px; color: var(--text);
}

.hero-lead {
  font-size: 16px; color: var(--muted2); line-height: 1.75;
  max-width: 40rem; margin-bottom: 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}

.stat-card {
  padding: 18px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--surface);
  backdrop-filter: blur(10px);
  transition: border-color .25s, background .25s, transform .25s;
  box-shadow: 0 18px 42px rgba(133,95,61,0.08);
}
.stat-card:hover {
  border-color: var(--border-hover); background: var(--surface-hover);
  transform: translateY(-4px);
}
.stat-num {
  font-size: 20px; font-weight: 800;
  font-family: "DengXian","PingFang SC",sans-serif;
  color: var(--text); display: block; margin-bottom: 5px;
}
.stat-label { font-size: 11px; color: var(--muted); line-height: 1.45; }

/* ── Hero panel ── */
.hero-panel {
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  background: rgba(255,252,247,0.62); backdrop-filter: blur(24px);
  padding: 32px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(170,140,112,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170,140,112,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.panel-title { font-size: 15px; font-weight: 700; }
.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(109,179,125,0.12); border: 1px solid rgba(109,179,125,0.24);
  color: #3f8d58; font-size: 11px;
}
.status-badge::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; animation: pulseDot 2.5s ease-in-out infinite;
}

.panel-items { display: grid; gap: 11px; position: relative; z-index: 1; }
.panel-item {
  padding: 15px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: rgba(255,255,255,0.5);
  transition: border-color .2s, background .2s;
}
.panel-item:hover { border-color: rgba(212,120,58,0.28); background: rgba(255,255,255,0.8); }
.panel-item-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.panel-item-desc  { font-size: 12px; color: var(--muted); line-height: 1.5; }

.panel-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; position: relative; z-index: 1; }
.panel-tag {
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.62);
  font-size: 11px; color: var(--muted2);
}
.panel-note {
  margin-top: 14px; padding: 12px 15px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212,120,58,0.16), rgba(255,255,255,0.55));
  border: 1px solid rgba(212,120,58,0.18);
  font-size: 12px; color: var(--muted2); position: relative; z-index: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 22px; border-radius: 14px;
  font-size: 14px; font-weight: 700; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff; box-shadow: 0 12px 32px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(212,120,58,0.3); }
.btn-ghost {
  background: var(--surface); color: var(--muted2); border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface-hover); color: var(--text); border-color: rgba(255,210,160,0.22); }

/* ── Content sections ── */
.content-section {
  padding: clamp(56px,9vh,110px) clamp(16px,5vw,64px);
}

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-label::before { content: ""; width: 20px; height: 1px; background: var(--accent); }

.section-title {
  font-family: "DengXian","PingFang SC",sans-serif;
  font-size: clamp(30px,4.5vw,54px);
  line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 12px;
}
.section-lead { font-size: 15px; color: var(--muted2); max-width: 44rem; }
.section-header { margin-bottom: 40px; }

/* ── Feature grid ── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.feat-card {
  padding: 28px; border-radius: var(--radius-xl);
  border: 1px solid var(--border); background: var(--surface);
  backdrop-filter: blur(12px); position: relative; overflow: hidden;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 18px 48px rgba(126,92,64,0.08);
}
.feat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,120,58,0.55), transparent);
  opacity: 0; transition: opacity .3s;
}
.feat-card:hover {
  border-color: rgba(212,120,58,0.3); background: var(--surface-hover);
  transform: translateY(-7px);
  box-shadow: 0 28px 72px rgba(126,92,64,0.14), 0 0 0 1px rgba(212,120,58,0.15);
}
.feat-card:hover::before { opacity: 1; }

.feat-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 12px;
  background: rgba(212,120,58,0.14); border: 1px solid rgba(212,120,58,0.22);
  color: var(--accent); font-size: 12px; font-weight: 800; margin-bottom: 16px;
}
.feat-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.feat-desc  { font-size: 13px; color: var(--muted2); line-height: 1.65; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  padding: 6px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--border);
  font-size: 11px; color: var(--muted2);
}

/* ── Info grid ── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.info-card {
  padding: 28px; border-radius: var(--radius-xl);
  border: 1px solid var(--border); background: var(--surface);
  backdrop-filter: blur(12px);
  transition: border-color .25s, background .25s;
  box-shadow: 0 18px 48px rgba(126,92,64,0.08);
}
.info-card:hover { border-color: rgba(212,120,58,0.25); background: var(--surface-hover); }
.info-card-title { font-size: 20px; font-weight: 700; margin-bottom: 16px; }

.info-list { display: grid; gap: 9px; }
.info-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; padding: 11px 14px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  transition: background .2s;
}
.info-row:hover { background: rgba(255,255,255,0.08); }
.info-row-label { font-size: 12px; color: var(--muted); flex-shrink: 0; }
.info-row-value { font-size: 12px; font-weight: 600; text-align: right; word-break: break-all; }

.bullet-list { padding-left: 18px; display: grid; gap: 9px; }
.bullet-list li { font-size: 13px; color: var(--muted2); line-height: 1.65; }

/* ── Footer ── */
.site-footer {
  padding: clamp(24px,4vh,44px) clamp(16px,5vw,64px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; position: relative; z-index: 1;
}
.footer-brand { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.footer-copy  { font-size: 11px; color: var(--muted); }

.footer-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-links a {
  display: inline-flex; align-items: center; height: 32px; padding: 0 12px;
  border-radius: 999px; font-size: 11px; color: var(--muted);
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-links a:hover { color: var(--text); border-color: rgba(255,210,160,0.22); background: var(--surface-hover); }
.footer-links a.footer-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px var(--accent-glow);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

/* ── Legal pages ── */
.legal-section {
  padding: clamp(36px,6vh,80px) clamp(16px,5vw,64px) clamp(48px,8vh,96px);
}
.legal-card {
  max-width: 900px; margin: 0 auto;
  padding: clamp(24px,4vw,48px) clamp(24px,5vw,56px);
  border-radius: var(--radius-xl); border: 1px solid var(--border);
  background: var(--surface); backdrop-filter: blur(16px);
}
.eyebrow-tag {
  display: inline-flex; padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  font-size: 11px; color: var(--muted2); letter-spacing: 0.05em;
}
.legal-card h1 {
  font-family: "DengXian","PingFang SC",sans-serif;
  font-size: clamp(26px,3.5vw,40px); letter-spacing: -0.04em; line-height: 1.1;
  margin: 16px 0 18px;
}
.legal-meta { display: grid; gap: 4px; margin-bottom: 22px; }
.legal-meta div { font-size: 12px; color: var(--muted); }
.legal-card h2 {
  font-size: 16px; margin: 26px 0 10px; color: var(--accent);
  font-family: "DengXian","PingFang SC",sans-serif;
}
.legal-card p  { font-size: 13px; color: var(--muted2); line-height: 1.75; margin-bottom: 10px; }
.legal-card li { font-size: 13px; color: var(--muted2); line-height: 1.75; }
.legal-card ol,.legal-card ul { padding-left: 20px; }
.legal-card li + li { margin-top: 8px; }
.legal-card a { color: var(--accent); }
.legal-card a:hover { text-decoration: underline; }

.contact-block {
  margin-top: 14px; padding: 18px 20px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: rgba(255,255,255,0.03);
  display: grid; gap: 8px; font-size: 13px; color: var(--muted2);
}

/* ── Download page ── */
.page-header {
  padding: clamp(52px,9vh,110px) clamp(16px,5vw,64px) clamp(32px,5vh,60px);
}
.page-body { padding: 0 clamp(16px,5vw,64px) clamp(56px,9vh,100px); }

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; margin-bottom: 20px; }
.one-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.dl-card {
  padding: 28px; border-radius: var(--radius-xl);
  border: 1px solid var(--border); background: var(--surface);
  backdrop-filter: blur(12px); transition: border-color .25s;
}
.dl-card:hover { border-color: rgba(212,120,58,0.25); }
.dl-card h2 {
  font-family: "DengXian","PingFang SC",sans-serif;
  font-size: 22px; font-weight: 700; margin-bottom: 12px;
}
.dl-card p { font-size: 13px; color: var(--muted2); margin-bottom: 16px; }
.dl-card-full { grid-column: 1 / -1; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pill {
  display: inline-flex; align-items: center; padding: 7px 13px;
  border-radius: 999px; background: rgba(212,120,58,0.12);
  border: 1px solid rgba(212,120,58,0.2); color: var(--accent);
  font-size: 12px; font-weight: 600;
}
.release-list { padding-left: 20px; display: grid; gap: 8px; margin: 0; color: var(--muted2); font-size: 13px; }

/* APK table */
#apkTableWrap { min-height: 80px; }
#apkTableWrap table { width: 100%; border-collapse: collapse; font-size: 13px; color: var(--muted2); }
#apkTableWrap th {
  padding: 10px 16px; text-align: left; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--border); font-weight: 600;
  background: rgba(255,255,255,0.02);
}
#apkTableWrap td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; }
#apkTableWrap tr:hover td { background: rgba(255,255,255,0.025); }

/* Search */
.search-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 14px; }
.search-input {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-md); background: rgba(255,255,255,0.05);
  color: var(--text); font-size: 13px; outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: rgba(212,120,58,0.42); }
.search-input::placeholder { color: var(--muted); }

/* Products */
.product-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 14px;
}
.product-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface); padding: 14px; display: grid; gap: 8px;
  transition: border-color .2s, transform .2s;
}
.product-item:hover { border-color: rgba(212,120,58,0.32); transform: translateY(-3px); }
.product-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; background: rgba(255,255,255,0.04); }
.product-title { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.4; min-height: 36px; }
.product-meta  { font-size: 12px; color: var(--muted); }
.product-price { font-size: 18px; color: var(--accent); font-weight: 800; }
.muted-text    { font-size: 12px; color: var(--muted); }

/* ── Updates page ── */
.updates-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 20px; }
.highlight-box {
  margin-top: 18px; padding: 16px 18px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212,120,58,0.1), rgba(212,120,58,0.05));
  border: 1px solid rgba(212,120,58,0.15);
}
.highlight-box h3 { font-size: 15px; margin-bottom: 8px; }
.highlight-box p  { font-size: 13px; color: var(--muted2); }
.version-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ── 404 ── */
.page-404 {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 32px clamp(16px,5vw,64px);
  position: relative; z-index: 1;
}
.card-404 {
  max-width: 760px; width: 100%; padding: clamp(28px,5vw,52px);
  border-radius: var(--radius-xl); border: 1px solid var(--border);
  background: var(--surface); backdrop-filter: blur(20px);
}
.card-404 h1 {
  font-family: "DengXian","PingFang SC",sans-serif;
  font-size: clamp(52px,11vw,100px); line-height: 0.95;
  letter-spacing: -0.05em; margin: 18px 0 16px; color: var(--text);
}
.card-404 p { color: var(--muted2); line-height: 1.75; margin-bottom: 28px; }
.card-404 .actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Ad modal ── */
.ad-modal-overlay {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(70,52,34,0.34);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.ad-modal-overlay.is-visible { opacity: 1; visibility: visible; }
.ad-modal {
  position: relative; width: min(92vw, 420px);
  border-radius: var(--radius-xl); border: 1px solid rgba(180,133,91,0.22);
  background: linear-gradient(180deg, rgba(255,250,244,0.96), rgba(245,234,221,0.94));
  box-shadow: 0 28px 72px rgba(63,42,20,0.22);
  padding: 24px; text-align: center;
}
.ad-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border: 1px solid rgba(180,133,91,0.24);
  border-radius: 999px; background: rgba(255,255,255,0.72);
  color: rgba(17,17,17,0.72); font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.ad-modal-close:hover { background: rgba(255,255,255,0.96); color: var(--text); }
.ad-modal-kicker {
  display: inline-flex; align-items: center; padding: 6px 12px;
  border-radius: 999px; background: rgba(212,120,58,0.16);
  color: var(--accent); font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; margin-bottom: 12px;
}
.ad-modal h2 {
  font-size: clamp(20px,5vw,28px); line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 8px;
  font-family: "DengXian","PingFang SC",sans-serif;
}
.ad-modal p { color: var(--muted2); font-size: 13px; }
.ad-modal-qrcode {
  display: block; width: min(100%,260px); margin: 14px auto 12px;
  border-radius: 14px; border: 1px solid rgba(180,133,91,0.18);
  background: rgba(255,255,255,0.88);
}
.ad-modal-contact { display: grid; gap: 2px; margin-top: 10px; color: var(--muted2); font-size: 12px; }
.ad-modal-contact strong { font-size: 14px; color: var(--accent-deep); }
.ad-modal-timer { margin-top: 10px; color: rgba(17,17,17,0.58); font-size: 12px; }

/* ── Divider ── */
.section-divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 clamp(16px,5vw,64px);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid, .info-grid, .two-col, .updates-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .one-col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .feat-grid  { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(38px,10vw,58px); }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .nav-links a.nav-hide-sm { display: none; }
}
