@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Caveat:wght@400;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #FBF4E8;
  --bg-2: #F4EAD5;
  --surface: #FFFCF3;
  --surface-2: #FFFFFF;
  --ink: #1F1B16;
  --ink-2: #5A4F40;
  --ink-3: #9A8E78;
  --accent: #E89A6B;
  --accent-2: #FFD9C2;
  --mint: #B8E6C9;
  --mint-2: #DCF1E2;
  --pink: #F5C2C7;
  --warn: #F5DC8A;
  --warn-2: #FAEEBC;
  --good: #9FD9B0;
  --bad: #E89999;
  --rule: #E5DAC0;
  --shadow: rgba(31,27,22,0.08);
  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.slide {
  width: 1920px;
  height: 1080px;
  position: relative;
  padding: 80px;
  background:
    radial-gradient(circle at 12% 18%, rgba(232,154,107,0.07) 0, rgba(232,154,107,0.07) 280px, transparent 281px),
    radial-gradient(circle at 88% 78%, rgba(184,230,201,0.10) 0, rgba(184,230,201,0.10) 320px, transparent 321px),
    radial-gradient(circle at 50% 110%, rgba(245,220,138,0.08) 0, rgba(245,220,138,0.08) 380px, transparent 381px),
    var(--bg);
  overflow: hidden;
}

.slide-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1.5px dashed var(--rule);
  margin-bottom: 56px;
}

.slide-header .wordmark {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 36px;
  color: var(--ink);
}

.slide-header .pageno {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--ink-3);
}

.slide-title {
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 40px 0;
}

.slide-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.slide-bullets li {
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  display: flex;
  gap: 16px;
}

.slide-bullets li .icon {
  font-size: 32px;
  flex: 0 0 auto;
}

.slide-bullets li strong {
  font-weight: 700;
  color: var(--ink);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1.5px solid var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 500;
}

.asset-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.7px;
  font-weight: 700;
}

@keyframes blink {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: blink 1.2s ease-in-out infinite;
}

.dashed-rule {
  border: none;
  border-top: 1.5px dashed var(--rule);
  margin: 0;
}

.card {
  background: var(--surface);
  border: 1.5px solid var(--ink);
  border-radius: var(--r);
  box-shadow: 0 4px 20px var(--shadow);
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}
