/* ============================================================
   figures.css — CSS/SVG artwork for the present-as-is decks.
   No image assets: every visual is drawn in the browser.
   Loaded only by day-2 / day-3 (the photo versions don't need it).
   ============================================================ */

.fig { width: 100%; height: auto; display: block; overflow: visible; }

.fig .ln      { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.fig .ln-dim  { fill: none; stroke: var(--line); stroke-width: 2; stroke-linecap: round; }
.fig .ln-dash { fill: none; stroke: var(--ink-faint); stroke-width: 1.5; stroke-dasharray: 6 8; }
.fig .sld     { fill: var(--accent); }
.fig .sld-dim { fill: var(--ink-faint); }
.fig .wash    { fill: var(--accent); opacity: .13; }

.fig text {
  font-family: var(--sans);
  font-size: 14px;
  fill: var(--ink-faint);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.fig text.lg {
  font-size: 19px;
  fill: var(--ink-dim);
  letter-spacing: .02em;
  text-transform: none;
}
.fig text.hi { fill: var(--accent); }

/* framed panel around a figure sitting in a split column */
.fig-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 34px;
  background: linear-gradient(160deg, rgba(255,255,255,.035), transparent 70%);
}
.fig-panel .cap {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-faint);
  text-align: center;
}

/* ---------- poster wordmark ------------------------------- */

.wordmark {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.daytag {
  display: inline-block;
  margin-top: 30px;
  padding: 9px 18px;
  border: 1px solid color-mix(in oklab, var(--accent) 45%, transparent);
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--ink-dim);
}

/* ---------- cover scene: sky, mist, path, figure ---------- */

.scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.scene svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- the breathing ring on the meditation slide ---- */

.ring {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in oklab, var(--accent) 60%, transparent);
  margin: 0 auto;
  position: relative;
  animation: swell 8s ease-in-out infinite;
}
.ring::after {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 34%, transparent), transparent 70%);
}
@keyframes swell {
  0%, 100% { transform: scale(.82); opacity: .55; }
  50%      { transform: scale(1.06); opacity: 1; }
}

/* ---------- the word that proves the point ---------------- */

.shout {
  font-family: var(--serif);
  font-size: 132px;
  line-height: .95;
  letter-spacing: -.03em;
  text-align: center;
  color: #ff9ecd;
  text-shadow: 0 0 90px rgba(255, 158, 205, .35);
}

/* ---------- two-column figure captions -------------------- */

.legend {
  display: flex;
  gap: 34px;
  justify-content: center;
  margin-top: 22px;
  font-size: 16px;
  color: var(--ink-faint);
}
.legend span { display: flex; align-items: center; gap: 10px; }
.legend i {
  width: 22px; height: 0;
  border-top: 2px solid var(--accent);
  display: block;
}
.legend i.d { border-top: 2px dashed var(--ink-faint); }
