/* =========================================================
   PT Pahala Kencana — Investor Comeback Deck
   Design tokens + slide layouts
   ========================================================= */

:root {
  /* ── Type scale (1920×1080) ─────────────────────── */
  --type-mega:     200px;
  --type-display:  120px;
  --type-title:     76px;
  --type-h2:        52px;
  --type-subtitle:  38px;
  --type-body:      28px;
  --type-small:     24px;
  --type-tiny:      20px;       /* footer chrome only */

  /* ── Spacing ────────────────────────────────────── */
  --pad-top:    100px;
  --pad-bottom:  80px;
  --pad-x:      100px;
  --gap-title:   48px;
  --gap-item:    28px;

  /* ── Color (DARK default) ───────────────────────── */
  --bg:          #0a0e1a;
  --bg-2:        #131826;
  --bg-3:        #1c2236;
  --bg-deep:     #05070d;
  --fg:          #f5f1ea;
  --fg-muted:    #9ba4b8;
  --fg-dim:      #5d6478;
  --line:        rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);

  --accent:      #ec4f3f;       /* Pahala warm red */
  --accent-soft: rgba(236,79,63,0.12);
  --accent-2:    #f0b84a;       /* amber highlight */
  --positive:    #4ade80;
  --negative:    #f87171;

  /* ── Fonts ──────────────────────────────────────── */
  --f-display: "Newsreader", "Times New Roman", Georgia, serif;
  --f-sans:    "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
}

[data-mode="light"] {
  --bg:          #f1ebde;
  --bg-2:        #fcf9f1;
  --bg-3:        #e4dccb;
  --bg-deep:     #ddd2b8;
  --fg:          #0a0e1a;
  --fg-muted:    #4a5267;
  --fg-dim:      #8a93a5;
  --line:        rgba(0,0,0,0.10);
  --line-strong: rgba(0,0,0,0.20);
  --accent-soft: rgba(236,79,63,0.14);
}

/* =========================================================
   Base section reset
   ========================================================= */
deck-stage > section {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-sans);
  font-size: var(--type-body);
  line-height: 1.45;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background-color 600ms ease, color 600ms ease;
}

/* ─── Type primitives ───────────────────────────────── */
.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
}
.eyebrow .pip {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: var(--accent);
  border-radius: 999px;
  margin-right: 0.6em;
  vertical-align: middle;
  transform: translateY(-2px);
}

.slide-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--type-title);
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}
.slide-title em {
  font-style: italic;
  color: var(--accent);
}
.slide-subtitle-en {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--type-subtitle);
  color: var(--fg-muted);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}

.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--type-h2);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
  color: var(--fg);
}

.body { font-size: var(--type-body); color: var(--fg-muted); line-height: 1.45; }
.body strong { color: var(--fg); font-weight: 600; }
.body em { color: var(--accent); font-style: normal; font-weight: 500; }

.mono { font-family: var(--f-mono); font-feature-settings: "ss01","cv11"; }
.num  { font-family: var(--f-mono); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

/* ─── Frame chrome (header + footer) ────────────────── */
.frame-header {
  position: absolute;
  top: 44px; left: var(--pad-x); right: var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: var(--type-small);
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.frame-header .brand { color: var(--fg-muted); display: flex; align-items: center; gap: 12px; }
.frame-header .brand::before {
  content: ""; width: 56px; height: 56px;
  background: url('logopahalabulet.png') no-repeat center / contain;
  flex-shrink: 0;
}
.frame-header .meta { color: var(--fg-dim); }


.frame-footer {
  position: absolute;
  bottom: 36px; left: var(--pad-x); right: var(--pad-x);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--f-mono);
  font-size: var(--type-small);
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.frame-footer .conf { color: var(--accent); }

/* Slide content area */
.slide-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 110px var(--pad-x) 100px;
  min-height: 0;
}

/* ─── Section title block ──────────────────────────── */
.title-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.title-block .eyebrow { margin-bottom: 8px; }

/* =========================================================
   Animation engine
   - Slide becomes .is-active on slidechange
   - Children with .anim animate when section is active
   ========================================================= */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 0ms),
    transform 800ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 0ms);
  will-change: opacity, transform;
}
.is-active .anim {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade { transform: none; }
.anim-scale {
  transform: scale(0.94);
  transform-origin: left center;
}
.is-active .anim-scale { transform: scale(1); }

.anim-bar-fill {
  --w: 0%;
  position: relative;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
  height: 8px;
}
.anim-bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1400ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 200ms);
}
.is-active .anim-bar-fill::after {
  transform: scaleX(var(--scale, 1));
}

/* SVG line draw */
.anim-line {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  transition: stroke-dashoffset 2200ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 200ms);
}
.is-active .anim-line { stroke-dashoffset: 0; }

.anim-line-fast {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1400ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 200ms);
}
.is-active .anim-line-fast { stroke-dashoffset: 0; }

.anim-grow-h {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1200ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 0ms);
  opacity: 1;
}
.is-active .anim-grow-h { transform: scaleX(1); }

.anim-grow-v {
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 1200ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 0ms);
  opacity: 1;
}
.is-active .anim-grow-v { transform: scaleY(1); }

/* =========================================================
   Backgrounds & atmosphere
   ========================================================= */
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 30% 30%, black 0%, transparent 75%);
}

.bg-glow {
  position: absolute;
  width: 1200px; height: 1200px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

/* =========================================================
   Components
   ========================================================= */

/* Card */
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  position: relative;
}
.card.accent { border-color: var(--accent); }
.card .index {
  position: absolute; top: 28px; right: 32px;
  font-family: var(--f-mono);
  font-size: var(--type-tiny);
  color: var(--fg-dim);
  letter-spacing: 0.1em;
}

/* Stat block */
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat .label {
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.stat .value {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--type-display);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.stat .value.accent { color: var(--accent); }
.stat .hint {
  font-size: var(--type-small);
  color: var(--fg-muted);
}

/* Pill / tag */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-3);
  color: var(--fg-muted);
}
.pill.accent { background: var(--accent-soft); color: var(--accent); }
.pill.positive { background: rgba(74,222,128,0.12); color: var(--positive); }
.pill.negative { background: rgba(248,113,113,0.12); color: var(--negative); }

/* Divider */
.div-h { height: 1px; background: var(--line); width: 100%; }

/* =========================================================
   PER-SLIDE LAYOUTS
   ========================================================= */

/* ── Slide 1: Cover ─────────────────────────────────── */
.s-cover { padding: 0; }
.s-cover .cover-inner {
  padding: 80px var(--pad-x) 80px;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.s-cover .bg-glow { top: -200px; right: -300px; }
.s-cover .bg-glow.b { bottom: -300px; left: -200px; background: radial-gradient(circle, rgba(240,184,74,0.10) 0%, transparent 60%); }

.cover-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.cover-top-l {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cover-top-l .brand-mark {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
}
.cover-top-l .brand-mark::before {
  content: "";
  width: 80px; height: 80px;
  background: url('logopahalabulet.png') no-repeat center / contain;
  flex-shrink: 0;
}
.cover-top-l .doc-meta {
  font-family: var(--f-mono);
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.cover-top-l .doc-meta .sep { color: var(--fg-dim); margin: 0 12px; }
.cover-top-l .doc-meta .conf { color: var(--accent); }

.s-cover h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 240px;
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--fg);
}
.s-cover h1 .it { font-style: italic; color: var(--accent); }

.cover-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}
.s-cover .lede-id {
  font-family: var(--f-display);
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg);
  max-width: 1100px;
  letter-spacing: -0.015em;
  margin: 0;
}
.s-cover .lede-en {
  font-family: var(--f-sans);
  font-size: var(--type-body);
  color: var(--fg-muted);
  max-width: 1100px;
  letter-spacing: 0;
  margin: 0;
}

/* KPI block at top-right */
.cover-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.cover-stats .cs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 32px;
  border-right: 1px solid var(--line);
  text-align: left;
  min-width: 180px;
}
.cover-stats .cs:last-child { border-right: 0; padding-right: 0; }
.cover-stats .cs:first-child { padding-left: 0; }
.cover-stats .cs-v {
  font-family: var(--f-display);
  font-size: 60px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.cover-stats .cs-l-id {
  font-family: var(--f-sans);
  font-size: 24px;
  color: var(--fg);
  margin-top: 8px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
}
.cover-stats .cs-l-en {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  color: var(--fg-muted);
  font-weight: 300;
}

.cover-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ── Slide 2: Timeline 4 phases ─────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.tl-phase {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  padding-top: 56px;
}
.tl-phase .dot {
  position: absolute;
  top: 16px; left: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--fg-dim);
}
.tl-phase[data-tone="peak"]    .dot { border-color: var(--positive); }
.tl-phase[data-tone="crisis1"] .dot { border-color: var(--negative); }
.tl-phase[data-tone="recover"] .dot { border-color: var(--accent-2); }
.tl-phase[data-tone="crisis2"] .dot { border-color: var(--accent); background: var(--accent); }

.tl-phase .yr {
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}
.tl-phase .label {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.tl-phase[data-tone="crisis2"] .label { color: var(--accent); }
.tl-phase .desc {
  font-size: var(--type-small);
  color: var(--fg-muted);
  line-height: 1.4;
}
.tl-phase .micro {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 24px;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.tl-phase .micro .lbl { font-size: 24px; color: var(--fg-dim); letter-spacing: 0.05em; text-transform: uppercase; }

.tl-takeaway {
  margin-top: 32px;
  padding: 24px 36px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-family: var(--f-display);
  font-size: 32px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 1500px;
}
.tl-takeaway .en { display: block; font-size: 24px; color: var(--fg-muted); margin-top: 8px; font-weight: 300; }

/* ── Slide 3: 2019 hero stats ───────────────────────── */
.s-2019-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  margin-top: 40px;
  flex: 1;
  min-height: 0;
}
.stat-stack { display: flex; flex-direction: column; }
.stat-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: baseline;
  gap: 32px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.stat-row:first-child { border-top: 1px solid var(--line); }
.stat-row .v {
  font-family: var(--f-display);
  font-size: 64px;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.stat-row .v.accent { color: var(--accent); }
.stat-row .l-id {
  font-size: 26px;
  color: var(--fg);
}
.stat-row .l-en {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.stat-row .delta {
  font-family: var(--f-mono);
  font-size: 24px;
  color: var(--fg-dim);
  text-align: right;
  letter-spacing: 0.06em;
}

.why-matters {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  height: fit-content;
  align-self: start;
}
.why-matters .h {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  color: var(--fg);
  line-height: 1.1;
}
.why-matters .h .en { display: block; font-size: 24px; color: var(--fg-muted); font-style: italic; font-weight: 300; margin-top: 4px; }
.why-matters ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.why-matters li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  font-size: var(--type-small);
  color: var(--fg-muted);
  line-height: 1.4;
}
.why-matters li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 24px;
  line-height: 1.4;
}
.why-matters li strong { color: var(--fg); font-weight: 500; }

/* ── Slide 4: 2020 survival ─────────────────────────── */
.survival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: center;
  flex: 1;
}
.survival-bigstat .label {
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.survival-bigstat .vbox {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.survival-bigstat .vbox .v {
  font-family: var(--f-display);
  font-size: 240px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.survival-bigstat .vbox .unit {
  font-family: var(--f-display);
  font-size: 80px;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.survival-bigstat .sub {
  margin-top: 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 36px;
  color: var(--fg);
  line-height: 1.15;
  max-width: 700px;
}
.survival-bigstat .sub .en { display: block; font-size: 24px; color: var(--fg-muted); font-weight: 300; margin-top: 4px; }

.compare-bars {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.cbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cbar .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-sans);
  font-size: var(--type-body);
}
.cbar .head .name { color: var(--fg); font-weight: 500; }
.cbar .head .val {
  font-family: var(--f-mono);
  font-size: 32px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.cbar .track {
  height: 18px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.cbar .fill {
  height: 100%;
  background: var(--fg-muted);
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 4px;
  transition: transform 1600ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 200ms);
}
.is-active .cbar .fill { transform: scaleX(var(--scale, 1)); }
.cbar.us .fill { background: linear-gradient(to right, var(--accent), #ff8167); }
.cbar .sub { font-size: var(--type-small); color: var(--fg-muted); }

.lowpoint {
  margin-top: 40px;
  padding: 24px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: var(--type-small);
  color: var(--fg-muted);
  line-height: 1.45;
}
.lowpoint strong { color: var(--accent); font-weight: 600; }

/* ── Slide 5: Revenue line chart ────────────────────── */
.chart-frame {
  margin-top: 48px;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}
.chart-svg { width: 100%; height: 360px; }

.chart-legend {
  display: flex;
  gap: 36px;
  margin-bottom: 24px;
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.chart-legend .item { display: inline-flex; align-items: center; gap: 10px; }
.chart-legend .swatch { width: 24px; height: 4px; background: var(--accent); border-radius: 2px; }

.chart-captions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.chart-captions .cc .yr { font-family: var(--f-mono); font-size: 24px; color: var(--accent); letter-spacing: 0.06em; }
.chart-captions .cc .ti { font-family: var(--f-display); font-size: 28px; color: var(--fg); margin: 4px 0 6px; line-height: 1.1; }
.chart-captions .cc .desc { font-size: 24px; color: var(--fg-muted); line-height: 1.4; }

/* ── Slide 6: Honest 2023-2025 ──────────────────────── */
.events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  flex: 1;
  min-height: 0;
}
.event {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.event .yr {
  font-family: var(--f-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.event[data-sev="high"] .yr { color: var(--accent); }
.event .tag {
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 999px;
  align-self: flex-start;
}
.event .label-id {
  font-family: var(--f-display);
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.event .label-en {
  font-family: var(--f-display);
  font-style: italic;
  font-size: var(--type-small);
  color: var(--fg-muted);
  margin-top: -8px;
  line-height: 1.2;
}
.event .desc {
  font-size: var(--type-small);
  color: var(--fg-muted);
  line-height: 1.45;
  margin-top: auto;
}
.event .desc .en { display: block; font-style: italic; font-family: var(--f-display); color: var(--fg-dim); margin-top: 6px; font-size: 24px; }

.honest-note {
  margin-top: 28px;
  padding: 20px 28px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  font-size: var(--type-body);
  color: var(--fg);
  font-family: var(--f-display);
  font-style: italic;
  line-height: 1.3;
  border-radius: 0 12px 12px 0;
}
.honest-note .en { display: block; font-size: 24px; color: var(--fg-muted); font-style: italic; margin-top: 6px; font-weight: 300; }

/* ── Slide 7: 89% lost capacity ─────────────────────── */
.s-lost {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}
.lost-display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lost-display .pct {
  font-family: var(--f-display);
  font-size: 300px;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.lost-display .pct .pp { font-size: 120px; vertical-align: top; line-height: 1; }
.lost-display .caption {
  font-family: var(--f-display);
  font-size: 30px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.2;
  max-width: 600px;
}
.lost-display .caption .en {
  display: block;
  font-size: 24px;
  color: var(--fg-muted);
  margin-top: 6px;
  font-weight: 300;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 6px;
}
.fleet-grid .cell {
  aspect-ratio: 1.6;
  border-radius: 2px;
  background: var(--fg-dim);
  opacity: 0.18;
  transition: opacity 600ms ease, background-color 600ms ease;
  transition-delay: calc(var(--i, 0) * 8ms);
}
.fleet-grid .cell.lost {
  background: var(--accent);
  opacity: 0;
}
.is-active .fleet-grid .cell.lost { opacity: 0.85; }

.fleet-legend {
  margin-top: 24px;
  display: flex;
  gap: 36px;
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.fleet-legend .item { display: flex; align-items: center; gap: 12px; }
.fleet-legend .sw { width: 16px; height: 10px; border-radius: 2px; }
.fleet-legend .sw.now { background: var(--fg-dim); opacity: 0.4; }
.fleet-legend .sw.lost { background: var(--accent); }

.refuel-line {
  margin-top: 24px;
  padding: 22px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.refuel-line .txt {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: var(--fg);
  line-height: 1.2;
}
.refuel-line .txt .en { display: block; font-size: 24px; color: var(--fg-muted); margin-top: 4px; font-weight: 300; }
.refuel-line .pill { white-space: nowrap; }

/* ── Slide 8: Outperform industry 2020 ──────────────── */
.outperform-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  flex: 1;
}
.versus-chart {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  background: var(--bg-2);
  border-radius: 18px;
  border: 1px solid var(--line);
}
.vbar-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vbar-row .head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.vbar-row .name {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.vbar-row .name .en {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  color: var(--fg-muted);
  font-weight: 300;
}
.vbar-row .v {
  font-family: var(--f-mono);
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.vbar-row .v.bad { color: var(--negative); }
.vbar-row .v.ok { color: var(--accent); }
.vbar-row .track {
  height: 24px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
}
.vbar-row .fill {
  height: 100%;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1600ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 200ms);
}
.is-active .vbar-row .fill { transform: scaleX(var(--scale)); }
.vbar-row.us .fill { background: linear-gradient(to right, var(--accent), #ff8a70); }
.vbar-row.them .fill { background: var(--fg-dim); }
.versus-foot {
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.versus-foot .gap { color: var(--positive); }

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.reasons-list .h {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 36px;
  color: var(--fg);
  line-height: 1.1;
}
.reasons-list .h .en { display: block; font-size: 24px; color: var(--fg-muted); font-weight: 300; margin-top: 4px; }
.reasons-list .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.reasons-list .reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.reasons-list .reason .check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid; place-items: center;
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 24px;
  line-height: 1;
}
.reasons-list .reason .t {
  font-size: var(--type-body);
  color: var(--fg);
  font-weight: 500;
}
.reasons-list .reason .te {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  color: var(--fg-muted);
  font-weight: 300;
  margin-top: 2px;
}

/* ── Slide 9: Pasar masih percaya (4 proofs) ────────── */
.proofs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
  flex: 1;
  min-height: 0;
}
.proof {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.proof .pid {
  font-family: var(--f-mono);
  font-size: var(--type-small);
  color: var(--accent);
  letter-spacing: 0.12em;
}
.proof .pname {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.proof .pname .en {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  color: var(--fg-muted);
  font-weight: 300;
  margin-top: 4px;
}
.proof .pviz { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.proof .pval {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--positive);
  font-variant-numeric: tabular-nums;
}
.proof .pcap {
  font-family: var(--f-mono);
  font-size: var(--type-small);
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

/* gauge */
.gauge { width: 100%; height: 130px; }

/* mini bar viz */
.proof-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 160px;
}
.proof-bars .b {
  flex: 1;
  background: var(--fg-dim);
  opacity: 0.4;
  border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
  transform: scaleY(0);
  transition: transform 1200ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 200ms);
}
.is-active .proof-bars .b { transform: scaleY(var(--scale, 1)); }
.proof-bars .b.h { background: var(--accent); opacity: 1; }
.proof-bar-labels {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 24px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}
.proof-bar-labels .l { flex: 1; text-align: center; }

/* ── Slide 10: Bandung-Bali top 5 ───────────────────── */
.routes-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  margin-top: 36px;
  flex: 1;
  min-height: 0;
}
.routes-table {
  display: flex;
  flex-direction: column;
}
.route-row {
  display: grid;
  grid-template-columns: 120px 1fr 180px 100px 160px;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.route-row.head {
  padding: 0 0 16px;
  font-family: var(--f-mono);
  font-size: var(--type-small);
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.route-row .code {
  font-family: var(--f-mono);
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.route-row .od {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.route-row .od .arrow { color: var(--fg-dim); margin: 0 8px; }
.route-row .rev {
  font-family: var(--f-mono);
  font-size: 26px;
  color: var(--fg);
  letter-spacing: -0.01em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.route-row .mg {
  font-family: var(--f-mono);
  font-size: 24px;
  color: var(--positive);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.route-row .lftrack {
  background: var(--bg-3);
  border-radius: 4px;
  height: 14px;
  overflow: hidden;
  position: relative;
}
.route-row .lffill {
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1400ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 300ms);
  border-radius: 4px;
}
.is-active .route-row .lffill { transform: scaleX(var(--scale)); }

.routes-insights {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
}
.routes-insights .h {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 30px;
  line-height: 1.1;
}
.routes-insights .h .en { display: block; font-size: 24px; color: var(--fg-muted); font-weight: 300; margin-top: 4px; }
.routes-insights .insight {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.routes-insights .insight:last-child { border-bottom: 0; padding-bottom: 0; }
.routes-insights .insight .v {
  font-family: var(--f-mono);
  font-size: 24px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.routes-insights .insight .t { font-size: var(--type-small); color: var(--fg); }
.routes-insights .insight .te { font-family: var(--f-display); font-style: italic; font-size: 24px; color: var(--fg-muted); }

/* ── Slide 11: Game Plan 3 Tahun ────────────────────── */
.gp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  flex: 1;
}
.gp-pillar {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.gp-pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1200ms cubic-bezier(0.22,0.61,0.36,1) var(--delay, 200ms);
}
.is-active .gp-pillar::before { transform: scaleX(1); }
.gp-pillar .gpn {
  font-family: var(--f-mono);
  font-size: 24px;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.gp-pillar .gph {
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.gp-pillar .gphe {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.1;
  margin-top: -12px;
}
.gp-pillar .gpd {
  font-size: var(--type-small);
  color: var(--fg-muted);
  line-height: 1.45;
}
.gp-pillar .gpd .en {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--fg-dim);
  margin-top: 8px;
}
.gp-pillar .gpmetric {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.gp-pillar .gpmetric .v {
  font-family: var(--f-mono);
  font-size: 36px;
  color: var(--positive);
  letter-spacing: -0.01em;
}
.gp-pillar .gpmetric .l {
  font-family: var(--f-mono);
  font-size: 24px;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Slide 12: 4 Scenarios ──────────────────────────── */
.scen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
  flex: 1;
  min-height: 0;
}
.scen {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  line-height: 1.15;
  transition: transform 400ms ease, border-color 400ms ease;
}
.scen[data-key="D"] { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%); border-color: var(--accent); }
.scen .badge {
  font-family: var(--f-mono);
  font-size: 24px;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
}
.scen[data-key="D"] .badge { color: var(--accent); }
.scen .name {
  font-family: var(--f-display);
  font-size: 36px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.scen[data-key="D"] .name { color: var(--accent); }
.scen .ne {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  color: var(--fg-muted);
  font-weight: 300;
  margin-top: -10px;
}
.scen .blurb {
  font-size: 24px;
  color: var(--fg-muted);
  line-height: 1.3;
}
.scen .invest {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  line-height: 1.1;
}
.scen .invest .ilbl {
  font-family: var(--f-mono);
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.scen .invest .iv {
  font-family: var(--f-mono);
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
}
.scen[data-key="D"] .invest .iv { color: var(--accent); }
.scen .invest .iu {
  font-family: var(--f-mono);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-top: 4px;
}
.scen .metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  line-height: 1.15;
}
.scen .met {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scen .met .l {
  font-family: var(--f-mono);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.scen .met .v {
  font-family: var(--f-mono);
  font-size: 26px;
  color: var(--positive);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.scen .payback {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  line-height: 1.1;
}
.scen .payback .l { font-family: var(--f-mono); font-size: 24px; color: var(--fg-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.scen .payback .v { font-family: var(--f-mono); font-size: 28px; color: var(--accent-2); font-variant-numeric: tabular-nums; }

/* ── Slide 13: Trajectory chart ─────────────────────── */
.traj-frame {
  margin-top: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.traj-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-family: var(--f-mono);
  font-size: var(--type-small);
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}
.traj-legend .item { display: inline-flex; align-items: center; gap: 10px; }
.traj-legend .sw { width: 24px; height: 4px; border-radius: 2px; }
.traj-legend .sw.peak19 { background: var(--positive); }
.traj-legend .sw.peak22 { background: var(--accent-2); }
.traj-legend .sw.actual { background: var(--fg-muted); }
.traj-legend .sw.A { background: #6b8cff; }
.traj-legend .sw.B { background: #9d6bff; }
.traj-legend .sw.C { background: #ec4f3f; }
.traj-legend .sw.D { background: #f0b84a; }

.traj-footnote {
  margin-top: 12px;
  padding: 14px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: var(--type-small);
  color: var(--fg-muted);
  line-height: 1.35;
}
.traj-footnote strong { color: var(--fg); }
.traj-footnote .en { display: block; font-style: italic; font-family: var(--f-display); color: var(--fg-dim); margin-top: 4px; font-size: 24px; }

/* ── Slide 14: The Ask ──────────────────────────────── */
.s-ask { padding-bottom: 60px; }
.ask-range {
  margin: 36px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ask-range .lbl {
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.ask-range .rng {
  font-family: var(--f-display);
  font-size: 140px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 28px;
}
.ask-range .rng .num { color: var(--accent); font-variant-numeric: tabular-nums; }
.ask-range .rng .sep { color: var(--fg-dim); font-size: 80px; }

.ask-uses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.use {
  padding: 22px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.use .n {
  font-family: var(--f-mono);
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 0.15em;
}
.use .t {
  font-family: var(--f-display);
  font-size: 28px;
  margin: 8px 0 4px;
  line-height: 1.1;
}
.use .te {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 10px;
}
.use .d {
  font-size: 24px;
  color: var(--fg-muted);
  line-height: 1.35;
}

.ask-structure {
  margin-top: 22px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: var(--fg);
  line-height: 1.2;
}
.ask-structure .en { font-style: italic; font-size: 24px; color: var(--fg-muted); display: block; margin-top: 4px; font-weight: 300; }

/* ── Slide 15: Why now / Closing ────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.why-card .nn {
  font-family: var(--f-mono);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.why-card .ti {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.why-card .te {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 24px;
  color: var(--fg-muted);
  margin-top: -4px;
  font-weight: 300;
}
.why-card .desc {
  font-size: 24px;
  color: var(--fg-muted);
  line-height: 1.4;
  margin-top: 4px;
}

.closing {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.closing .cta {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 56px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 1100px;
}
.closing .cta .accent { color: var(--accent); font-style: italic; }
.closing .cta .en {
  display: block;
  font-size: 28px;
  color: var(--fg-muted);
  margin-top: 8px;
  font-weight: 300;
}
.closing .contact {
  font-family: var(--f-mono);
  font-size: var(--type-small);
  letter-spacing: 0.06em;
  color: var(--fg);
  text-align: right;
}
.closing .contact .lbl {
  display: block;
  color: var(--fg-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 6px;
}

/* =========================================================
   Slide 16: Terima Kasih (Closing Note)
   ========================================================= */
.s-thanks { padding: 0; }
.s-thanks .bg-glow {
  top: -260px; left: -300px;
  width: 900px; height: 900px;
}
.s-thanks .bg-glow.b {
  top: auto; left: auto;
  bottom: -380px; right: -260px;
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(240,184,74,0.12) 0%, transparent 60%);
}

.s-thanks .thanks-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 110px var(--pad-x) 80px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 28px;
  max-width: 1920px;
}

/* ── Hero title ─────────────────────────────────────── */
.thanks-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 260px;
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: center;
}
.thanks-title .l1 {
  display: inline-block;
  position: relative;
}
.thanks-title .l1::before {
  content: "";
  position: absolute;
  left: -44px; top: 0.46em;
  width: 26px; height: 1px;
  background: var(--accent);
  opacity: 0.9;
}
.thanks-title .l2 {
  display: inline-block;
  font-style: italic;
  color: var(--accent);
  padding-left: 0.34em;
  position: relative;
}
.thanks-title .l2 .dot {
  display: inline-block;
  width: 0.18em; height: 0.18em;
  border-radius: 999px;
  background: var(--accent-2);
  margin-left: 0.06em;
  vertical-align: baseline;
  transform: translateY(-0.04em);
  box-shadow: 0 0 32px rgba(240,184,74,0.55);
}

/* ── Bilingual lede ─────────────────────────────────── */
.thanks-lede {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 1200px;
}
.thanks-lede-id {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.18;
  color: var(--fg);
  letter-spacing: -0.015em;
  margin: 0;
}
.thanks-lede-en {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 24px;
  color: var(--fg-muted);
  margin: 0;
  letter-spacing: 0;
}

/* ── Signature bar (2 columns) ──────────────────────── */
.thanks-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
  margin-top: 4px;
}
.thanks-foot .sig {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thanks-foot .sig-r { text-align: right; }
.thanks-foot .sig-l {
  font-family: var(--f-mono);
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.thanks-foot .sig-v {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--fg);
}
.thanks-foot .sig-v em {
  font-style: italic;
  color: var(--accent);
}
.thanks-foot .sig-v .at {
  color: var(--accent);
  font-style: italic;
}
.thanks-foot .sig-v .arr {
  color: var(--accent);
  font-family: var(--f-mono);
  margin: 0 8px;
}

/* ── Decorative postage seal (top-right) ────────────── */
.thanks-seal {
  position: absolute;
  top: 150px;
  right: 110px;
  width: 190px;
  height: 190px;
  color: var(--accent);
  z-index: 2;
  pointer-events: none;
  opacity: 0.92;
}
.thanks-seal-rot,
.thanks-seal-center {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.thanks-seal-rot {
  animation: thanks-seal-spin 42s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes thanks-seal-spin {
  to { transform: rotate(360deg); }
}
.thanks-seal-text {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  fill: var(--accent);
  font-weight: 500;
}
.thanks-seal-c1 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  fill: var(--fg-dim);
}
.thanks-seal-c2 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 46px;
  font-weight: 400;
  fill: var(--accent);
}
.thanks-seal-c3 {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  fill: var(--fg);
}

/* =========================================================
   Print
   ========================================================= */
@media print {
  deck-stage > section { background: white !important; color: black !important; }
  .thanks-seal { animation: none; }
}
