:root {
  --bg: #fff4f0;
  --ink: #2b1c22;
  --muted: #8a6b6f;
  --hot: #ff5d73;
  --hot-dark: #e0405a;
  --peach: #ffb28a;
  --card: #ffffff;
  --line: #ffd9cf;
  --w: 920px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* blob background decoration */
.blob-a, .blob-b {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.blob-a { width: 340px; height: 340px; background: var(--hot); top: -120px; right: -100px; }
.blob-b { width: 260px; height: 260px; background: var(--peach); bottom: -80px; left: -80px; }

nav.topnav {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--w); margin: 0 auto; padding: 22px 20px;
}
.brand {
  font-size: 1.5rem; font-weight: 900; text-decoration: none; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--hot); display: inline-block; }
nav.topnav .links { display: flex; gap: 22px; font-size: 0.9rem; font-weight: 700; }
nav.topnav .links a { color: var(--muted); text-decoration: none; }
nav.topnav .links a:hover { color: var(--hot-dark); }

main { position: relative; z-index: 2; max-width: var(--w); margin: 0 auto; padding: 20px 20px 70px; }

.hero-bubble {
  background: var(--card);
  border-radius: 32px;
  padding: 44px 40px;
  box-shadow: 0 20px 50px rgba(255, 93, 115, 0.15);
  margin-bottom: 40px;
}
.hero-bubble h1 {
  font-size: 2.4rem; line-height: 1.15; margin: 0 0 16px; font-weight: 900;
}
.hero-bubble h1 .hl { color: var(--hot); }
.hero-bubble .lede { font-size: 1.1rem; color: var(--muted); max-width: 560px; margin-bottom: 26px; }

.pill-btn {
  display: inline-block;
  background: var(--hot);
  color: #fff;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255, 93, 115, 0.35);
}
.pill-btn:hover { background: var(--hot-dark); }
.pill-btn.outline {
  background: transparent; color: var(--hot-dark);
  border: 2px solid var(--hot); box-shadow: none;
}

.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.chip {
  background: #fff0ec; color: var(--hot-dark); font-size: 0.82rem; font-weight: 700;
  padding: 7px 16px; border-radius: 999px; border: 1px solid var(--line);
}

.speech {
  background: var(--card);
  border-radius: 20px;
  padding: 24px 26px;
  margin: 1.6em 0;
  position: relative;
  border: 2px solid var(--line);
}
.speech::after {
  content: "";
  position: absolute; left: 40px; bottom: -14px;
  border-width: 14px 14px 0 0; border-style: solid;
  border-color: var(--card) transparent transparent transparent;
}
.speech p { margin: 0; font-weight: 700; }

section.chunk { padding: 32px 0; }
section.chunk h2 { font-size: 1.5rem; margin: 0 0 14px; font-weight: 900; }
section.chunk p { margin: 0 0 1em; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.grid3 .tile {
  background: var(--card); border-radius: 20px; padding: 20px;
  border: 1px solid var(--line);
}
.tile .emoji { font-size: 1.6rem; }
.tile h3 { font-size: 1rem; margin: 10px 0 6px; }
.tile p { font-size: 0.88rem; color: var(--muted); margin: 0; }
@media (max-width: 700px) { .grid3 { grid-template-columns: 1fr; } }

.read-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
.read-cards a.card {
  display: block; background: var(--card); border-radius: 22px; padding: 22px;
  text-decoration: none; color: var(--ink); border: 1px solid var(--line);
  transition: transform .15s ease;
}
.read-cards a.card:hover { transform: translateY(-4px); }
.read-cards .tag { font-size: 0.72rem; font-weight: 800; color: var(--hot-dark); text-transform: uppercase; letter-spacing: .05em; }
.read-cards h3 { margin: 8px 0 6px; font-size: 1.05rem; }
.read-cards p { font-size: 0.85rem; color: var(--muted); margin: 0; }
@media (max-width: 700px) { .read-cards { grid-template-columns: 1fr; } }

article main.article-main { padding-top: 30px; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 1em; }
.breadcrumb a { color: var(--muted); }
.article-main h1 { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.article-main .meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.8em; }

footer { position: relative; z-index: 2; padding: 30px 20px; text-align: center; }
.footer-inner { font-size: 0.82rem; color: var(--muted); display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.footer-inner a { color: var(--muted); text-decoration: none; }
