/* ---------- Reset & tokens ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

:root {
  --bg: #07060a;
  --bg-2: #0d0a14;
  --ink: #fff5e6;
  --ink-dim: #c9b89a;
  --red: #e10600;
  --red-deep: #8a0500;
  --red-dark: #4a0200;
  --gold: #ffd24a;
  --gold-deep: #c79100;
  --ton: #0098ea;
  --line: rgba(255, 215, 74, 0.18);
  --card: rgba(255, 255, 255, 0.03);
  --card-strong: rgba(255, 255, 255, 0.06);
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 10px;
  --shadow: 0 30px 80px -30px rgba(225, 6, 0, 0.45);
  --max: 1180px;
  --font-cn: 'Noto Serif SC', 'PingFang SC', 'Microsoft YaHei', serif;
  --font-cn-fun: 'ZCOOL KuaiLe', 'Noto Serif SC', sans-serif;
  --font-en: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-display: 'Bagel Fat One', cursive;
}

body {
  font-family: var(--font-cn), var(--font-en);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(225,6,0,0.30), transparent 60%),
    radial-gradient(900px 600px at -5% 30%, rgba(255,210,74,0.10), transparent 60%),
    radial-gradient(700px 500px at 50% 110%, rgba(0,152,234,0.10), transparent 60%),
    var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Background grid + lanterns ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,215,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,74,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 80%);
}

.lanterns { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.lantern {
  position: absolute; bottom: -80px; left: var(--x);
  width: calc(28px * var(--s)); height: calc(36px * var(--s));
  background: radial-gradient(circle at 50% 35%, #ffb84a, #e10600 60%, #6a0200 100%);
  border-radius: 50% 50% 45% 45%;
  box-shadow: 0 0 24px rgba(225,6,0,0.55), inset -4px -6px 10px rgba(0,0,0,0.4);
  animation: rise 24s linear infinite;
  animation-delay: var(--d);
  opacity: 0.5;
}
.lantern::before, .lantern::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  background: var(--gold);
}
.lantern::before { top: -6px; width: 60%; height: 4px; border-radius: 2px; }
.lantern::after  { bottom: -8px; width: 2px; height: 14px; box-shadow: 0 6px 0 var(--gold); }
@keyframes rise {
  0%   { transform: translate(0, 0) rotate(-2deg); opacity: 0; }
  10%  { opacity: 0.55; }
  50%  { transform: translate(20px, -55vh) rotate(3deg); }
  90%  { opacity: 0.55; }
  100% { transform: translate(-10px, -110vh) rotate(-2deg); opacity: 0; }
}

/* ---------- Ticker ---------- */
.ticker {
  position: relative; z-index: 2;
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep));
  border-bottom: 1px solid rgba(0,0,0,0.4);
  overflow: hidden;
  padding: 9px 0;
  font-family: var(--font-cn);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
.ticker__track {
  display: inline-flex; gap: 28px; white-space: nowrap;
  animation: tick 32s linear infinite;
  padding-left: 28px;
}
.ticker__track span:nth-child(even) { color: rgba(255,255,255,0.55); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 6, 10, 0.75);
  border-bottom: 1px solid var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.logo-cube {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, #ffb84a, #e8780b 50%, #b34a00);
  box-shadow:
    inset 0 -6px 0 rgba(0,0,0,0.25),
    inset 0 6px 0 rgba(255,255,255,0.18),
    0 0 0 2px rgba(255,210,74,0.25);
}
.logo-text {
  font-family: var(--font-cn);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.logo-text span {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--red);
  margin: 0 4px;
  vertical-align: -1px;
}
.nav__cta-group { margin-left: auto; display: flex; gap: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-cn);
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary {
  background: linear-gradient(180deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255,210,74,0.4),
    0 10px 30px -10px rgba(225,6,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--primary:hover {
  box-shadow:
    0 0 0 1px var(--gold),
    0 16px 40px -10px rgba(225,6,0,0.9),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--ghost {
  background: var(--card-strong);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: rgba(255,210,74,0.08); border-color: var(--gold); }
.btn--big { padding: 18px 30px; font-size: 16px; }
.btn--sm { padding: 9px 14px; font-size: 13px; }
@media (max-width: 480px) {
  .btn--sm { padding: 8px 12px; font-size: 12px; }
  .nav { gap: 10px; }
  .logo-text { font-size: 16px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 100px) clamp(20px, 4vw, 40px) 60px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 920px) { .hero__inner { grid-template-columns: 1fr; } }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(0, 152, 234, 0.1);
  border: 1px solid rgba(0, 152, 234, 0.4);
  color: #7ed1ff;
  font-family: var(--font-cn);
  font-size: 13px; font-weight: 500;
  margin-bottom: 22px;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #1d9bf0;
  box-shadow: 0 0 0 4px rgba(29, 155, 240, 0.25);
  animation: pulse 1.8s ease-in-out infinite;
}
.badge b { color: #fff; font-weight: 700; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(29, 155, 240, 0); } }

.hero__title {
  font-family: var(--font-cn);
  font-weight: 900;
  font-size: clamp(64px, 12vw, 148px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--red);
  text-shadow: 0 6px 0 var(--red-dark), 0 18px 50px rgba(225,6,0,0.45);
}
.hero__title .cn {
  display: inline-block;
}
.hero__title .en {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--gold);
  display: inline-block;
  transform: translateY(-0.04em);
  margin: 0 0.04em;
  text-shadow: 0 6px 0 var(--gold-deep), 0 18px 40px rgba(255,210,74,0.4);
  letter-spacing: -0.01em;
}
.hero__title .hero__tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.16em;
  font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: 0.3em;
  margin-top: 22px;
  text-shadow: none;
}

.hero__quote {
  font-family: var(--font-cn);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 22px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(225,6,0,0.20), rgba(255,210,74,0.07));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  line-height: 1.5;
}
.quote-mark { color: var(--gold); font-size: 1em; vertical-align: -0.05em; }
.quote-source {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.quote-source:hover { color: var(--gold); }

.hero__sub {
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0 0 32px;
  line-height: 1.75;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

/* CA box */
.ca {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  max-width: 100%;
  overflow: hidden;
}
.ca__label {
  font-family: var(--font-cn);
  font-size: 12px; font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(255,210,74,0.12);
  padding: 5px 10px; border-radius: 6px;
  flex-shrink: 0;
}
.ca code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca__copy {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #1a0e00;
  font-family: var(--font-cn);
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ca__copy:hover { background: #ffe27a; }
.ca__copy.is-copied { background: #6dd158; color: #052b00; }

/* ---------- Tweet card ---------- */
.tweet {
  display: block;
  position: relative;
  background: #15161b;
  border: 1px solid #2a2c33;
  border-radius: 18px;
  padding: 22px;
  color: #e7e9ea;
  font-family: var(--font-en);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
.tweet:hover { transform: rotate(0); border-color: #1d9bf0; }
.tweet__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; position: relative; }
.tweet__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffb84a, #e8780b 55%, #8a3a00 100%);
  flex-shrink: 0;
  border: 2px solid #1d9bf0;
}
.tweet__name { font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 4px; }
.tweet__handle { font-size: 13px; color: #71767b; }
.tweet__x {
  position: absolute; right: 0; top: 0;
  font-size: 22px; font-weight: 900;
  color: #e7e9ea;
}
.tweet__body {
  font-family: var(--font-cn);
  font-size: 30px; font-weight: 900;
  margin: 8px 0 14px;
  line-height: 1.3;
}
.tweet__meta {
  font-size: 13px; color: #71767b;
  border-bottom: 1px solid #2a2c33;
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-family: var(--font-en);
}
.tweet__meta b { color: #e7e9ea; }
.tweet__bar {
  display: flex; justify-content: space-between;
  color: #71767b;
  font-size: 18px;
  padding: 0 4px;
}
.tweet__cta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #2a2c33;
  font-family: var(--font-cn);
  font-size: 13px;
  font-weight: 700;
  color: #1d9bf0;
  text-align: right;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.tweet:hover .tweet__cta { color: #7ed1ff; }
.tweet__sticker {
  position: absolute;
  top: -16px; right: -12px;
  background: var(--gold);
  color: #1a0e00;
  font-family: var(--font-cn);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 999px;
  transform: rotate(8deg);
  box-shadow: 0 4px 0 var(--gold-deep);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ---------- Stats ---------- */
.stats {
  margin-top: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(255,210,74,0.04);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 50px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 3px 0 var(--gold-deep);
}
.stat__lbl {
  font-family: var(--font-cn);
  font-size: 13px;
  color: var(--ink-dim);
  font-weight: 500;
}

/* ---------- Sections ---------- */
.section {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--line);
}
.section__head { margin-bottom: 48px; }
.section__kicker {
  font-family: var(--font-cn);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: none;
}
.section__title {
  font-family: var(--font-cn);
  font-weight: 900;
  font-size: clamp(44px, 6.5vw, 80px);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
}
.section__title .hl {
  color: var(--red);
  text-shadow: 0 4px 0 var(--red-dark);
  display: inline-block;
  position: relative;
}
.section__title .hl::after {
  content: '';
  position: absolute;
  left: 6%; right: 6%;
  bottom: -6px;
  height: 6px;
  background: var(--gold);
  border-radius: 4px;
  opacity: 0.85;
}
.section__lede {
  font-family: var(--font-cn);
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-dim);
  max-width: 60ch;
  margin: 0;
  line-height: 1.85;
}

/* ---------- Blessing grid ---------- */
.bless-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .bless-grid { grid-template-columns: 1fr; } }
.bless-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.bless-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  opacity: 0;
  transition: opacity 0.3s;
}
.bless-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(255,210,74,0.04);
}
.bless-card:hover::before { opacity: 1; }
.bless-card__icon { font-size: 40px; margin-bottom: 16px; line-height: 1; }
.bless-card h3 {
  font-family: var(--font-cn);
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.bless-card p {
  margin: 0;
  color: var(--ink-dim);
  font-family: var(--font-cn);
  font-size: 15px;
  line-height: 1.85;
}

/* ---------- CTA frame ---------- */
.section--cta { text-align: center; padding-bottom: clamp(80px, 12vw, 140px); }
.cta-frame {
  position: relative;
  padding: clamp(50px, 8vw, 100px) clamp(20px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(225,6,0,0.12), transparent 70%),
    var(--card);
  overflow: hidden;
}
.cta-frame__bg {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
  user-select: none;
}
.cta-han {
  font-family: var(--font-cn);
  font-weight: 900;
  font-size: clamp(280px, 50vw, 520px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 210, 74, 0.10);
  text-stroke: 2px rgba(255, 210, 74, 0.10);
  transform: rotate(-6deg);
  animation: hanFloat 14s ease-in-out infinite;
}
@keyframes hanFloat {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50%      { transform: rotate(-3deg) scale(1.04); }
}
.cta-frame > *:not(.cta-frame__bg) { position: relative; z-index: 1; }
.section--cta .section__kicker { margin-bottom: 14px; }
.section--cta .section__title { margin-left: auto; margin-right: auto; }
.section--cta .section__lede {
  margin-left: auto; margin-right: auto;
  margin-bottom: 36px;
  text-align: center;
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}

/* ---------- Footer ---------- */
.foot {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.5);
  padding: 44px clamp(20px, 4vw, 40px);
}
.foot__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 18px;
}
.foot__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-cn);
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
}
.foot__disc {
  font-family: var(--font-cn);
  font-size: 13px;
  color: var(--ink-dim);
  max-width: 80ch;
  margin: 0;
  line-height: 1.8;
}
.foot__ca {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  word-break: break-all;
}
.foot__ca code { color: var(--gold); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translate(-50%, 30px);
  background: var(--gold);
  color: #1a0e00;
  font-family: var(--font-cn);
  font-weight: 900;
  padding: 12px 26px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 10px 40px rgba(255,210,74,0.4);
  z-index: 100;
}
.toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Mobile polish ---------- */
@media (max-width: 760px) {
  body { line-height: 1.6; }

  .ticker { padding: 7px 0; font-size: 11px; }
  .ticker__track { gap: 18px; animation-duration: 24s; }

  .nav { padding: 10px 14px; gap: 10px; }
  .nav__cta-group { gap: 6px; }
  .logo-cube { width: 24px; height: 24px; border-radius: 6px; }
  .logo-text { font-size: 15px; }

  .hero { padding: 32px 18px 40px; }
  .hero__inner { gap: 28px; }
  .badge { font-size: 12px; padding: 6px 12px; margin-bottom: 16px; }
  .hero__title {
    font-size: clamp(52px, 14vw, 84px);
    margin-bottom: 22px;
    text-shadow: 0 4px 0 var(--red-dark), 0 10px 28px rgba(225,6,0,0.4);
  }
  .hero__title .hero__tag { font-size: 13px; letter-spacing: 0.22em; margin-top: 14px; }
  .hero__quote { font-size: 17px; padding: 16px 18px; margin-bottom: 18px; }
  .quote-source { font-size: 12px; }
  .hero__sub { font-size: 15px; line-height: 1.7; margin-bottom: 24px; }

  .hero__cta { gap: 8px; }
  .hero__cta .btn {
    flex: 1 1 auto;
    justify-content: center;
    padding: 13px 18px;
    font-size: 14px;
  }

  .ca { padding: 10px; gap: 8px; flex-wrap: wrap; }
  .ca__label { font-size: 11px; padding: 4px 8px; }
  .ca code { font-size: 11px; flex-basis: 100%; order: 3; padding-top: 4px; }
  .ca__copy { padding: 7px 12px; font-size: 12px; }

  .tweet { padding: 18px; transform: rotate(0.5deg); }
  .tweet__body { font-size: 24px; }
  .tweet__sticker {
    font-size: 11px; padding: 6px 12px;
    top: -12px; right: 6px;
    transform: rotate(6deg);
  }

  .stats { gap: 10px; margin-top: 36px; }
  .stat { padding: 16px 10px; }
  .stat__num { font-size: 34px; }
  .stat__lbl { font-size: 12px; }

  .section { padding: 56px 18px; }
  .section__head { margin-bottom: 28px; }
  .section__kicker { font-size: 12px; letter-spacing: 0.3em; }
  .section__title { font-size: clamp(38px, 11vw, 56px); margin-bottom: 14px; }
  .section__title .hl::after { bottom: -3px; height: 4px; }
  .section__lede { font-size: 15px; line-height: 1.75; }

  .bless-grid { gap: 12px; }
  .bless-card { padding: 22px; }
  .bless-card__icon { font-size: 32px; margin-bottom: 10px; }
  .bless-card h3 { font-size: 20px; margin-bottom: 8px; }
  .bless-card p { font-size: 14px; line-height: 1.7; }

  .section--cta { padding-bottom: 70px; }
  .cta-frame { padding: 44px 20px; border-radius: 22px; }
  .cta-han { font-size: 75vw; -webkit-text-stroke-width: 1.5px; }
  .section--cta .section__lede { margin-bottom: 28px; }
  .cta-row { flex-direction: column; gap: 10px; }
  .cta-row .btn { width: 100%; justify-content: center; padding: 16px 22px; font-size: 15px; }

  .foot { padding: 32px 18px; }
  .foot__brand { font-size: 16px; }
  .foot__disc { font-size: 12px; line-height: 1.7; }
  .foot__ca { font-size: 11px; }

  .toast { bottom: 16px; padding: 10px 20px; font-size: 13px; }

  /* Calm down floating lanterns on mobile */
  .lantern:nth-child(n+5) { display: none; }
}

@media (max-width: 380px) {
  .nav { padding: 9px 12px; }
  .logo-text { font-size: 14px; }
  .btn--sm { padding: 7px 10px; font-size: 11px; gap: 4px; }
  .nav__cta-group .btn--sm svg { width: 12px; height: 12px; }
  .hero { padding: 24px 14px 32px; }
  .hero__title { font-size: 48px; }
  .section { padding: 48px 14px; }
  .tweet__sticker { font-size: 10px; padding: 5px 10px; }
}

/* Sharper tap targets */
@media (hover: none) and (pointer: coarse) {
  .btn, .ca__copy, .nav__cta-group .btn { min-height: 44px; }
  .tweet:hover { transform: rotate(0.5deg); border-color: #2a2c33; }
  .bless-card:hover { transform: none; }
  .stat:hover { transform: none; }
}
