/* ============================================================
   WIP · July 2026 — bright interactive microsite
   ============================================================ */

:root {
  /* brand */
  --blue: #2334e8;
  --blue-deep: #1a27c9;
  --blue-ink: #141a4d;
  --cyan: #2fd3f7;
  --cyan-soft: #7ee8fb;
  --lilac: #b7a6f7;
  --green: #6fdd85;
  --green-soft: #c9f5d0;
  --yellow: #ffd166;
  --coral: #ff8a5c;
  --pink: #f9bdd9;

  /* surfaces & ink */
  --cream: #f3f0e8;
  --paper: #faf8f2;
  --card: #ffffff;
  --ink: #191c3a;
  --ink-2: #4b4f70;
  --muted: #858aa6;

  /* chart tokens (validated palette) */
  --s-pos: #2a78d6;
  --s-neg: #e34948;
  --s-mute: #c3c2b7;
  --grid: #e7e5dc;
  --axis: #c3c2b7;
  --delta-good: #006300;
  --delta-bad: #b02a2a;

  --radius: 22px;
  --shadow: 0 10px 30px rgba(20, 26, 77, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 26, 77, 0.18);
  --font: "Avenir Next", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.015em; }
kbd {
  background: #eef0ff; border: 1px solid #d5d9ff; border-bottom-width: 3px;
  border-radius: 6px; padding: 1px 7px; font-family: inherit; font-size: 0.85em;
  color: var(--blue-ink); font-weight: 800;
}

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 6px; }

/* ---------- progress bar ---------- */
.progress-track {
  position: fixed; top: 0; left: 0; right: 0; height: 5px; z-index: 120;
  background: transparent;
}
.progress-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--lilac));
  border-radius: 0 99px 99px 0;
  transition: width 0.15s linear;
}

/* ---------- top nav ---------- */
.topnav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 110;
  display: flex; align-items: center; gap: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(20, 26, 77, 0.08);
  border-radius: 99px; padding: 8px 12px 8px 16px;
  box-shadow: var(--shadow);
  max-width: calc(100vw - 24px);
}
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); font-weight: 800; white-space: nowrap; }
.brand em { color: var(--muted); font-style: normal; font-weight: 600; }
.brand-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: conic-gradient(var(--cyan), var(--blue), var(--lilac), var(--cyan));
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.navlinks { display: flex; gap: 2px; }
.navlinks a {
  text-decoration: none; color: var(--ink-2); font-weight: 600; font-size: 14px;
  padding: 7px 13px; border-radius: 99px; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.navlinks a:hover { background: #eef0ff; color: var(--blue); }
.navlinks a.is-active { background: var(--blue); color: #fff; }
.nav-actions { display: flex; gap: 8px; }

.chip-btn {
  border: 1px solid rgba(20, 26, 77, 0.12); background: #fff; color: var(--ink);
  font-weight: 700; font-size: 14px; padding: 7px 14px; border-radius: 99px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  white-space: nowrap;
}
.chip-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.chip-btn.present { background: var(--blue); border-color: var(--blue); color: #fff; }
.chip-btn.small { font-size: 13px; padding: 5px 12px; }
.chip-btn.ghost { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); color: #fff; }
.chip-btn.play { background: var(--yellow); border-color: transparent; font-size: 15px; }

/* ---------- dot nav ---------- */
.dotnav {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  z-index: 110; display: flex; flex-direction: column; gap: 10px;
}
.dotnav button {
  width: 12px; height: 12px; border-radius: 50%; border: none; position: relative;
  background: rgba(20, 26, 77, 0.22);
  transition: transform 0.2s, background 0.2s;
}
.theme-blue-active .dotnav button { background: rgba(255,255,255,0.4); }
.dotnav button:hover { transform: scale(1.5); }
.dotnav button.is-active { background: var(--cyan); transform: scale(1.5); box-shadow: 0 0 0 4px rgba(47,211,247,0.25); }
.dotnav button::after {
  content: attr(data-label);
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--ink); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.15s, transform 0.15s;
}
.dotnav button:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- slide counter ---------- */
.slide-counter {
  position: fixed; left: 18px; bottom: 18px; z-index: 110;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(20,26,77,0.08); border-radius: 99px;
  font-size: 13px; font-weight: 800; color: var(--ink-2);
  padding: 6px 14px; box-shadow: var(--shadow);
  font-variant-numeric: tabular-nums;
}

/* ---------- slides ---------- */
.slide {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  scroll-snap-align: start;
  padding: 110px 24px 60px;
  position: relative;
  overflow: hidden;
}
.slide-inner { width: min(1060px, 100%); margin: 0 auto; position: relative; z-index: 2; }
.slide-inner.wide { width: min(1180px, 100%); }
.slide-inner.center { text-align: center; }

.theme-cream { background: var(--cream); }
.theme-paper { background: var(--paper); }
.theme-blue { background: linear-gradient(160deg, #2334e8 0%, #2b1fd6 55%, #4a3aee 100%); color: #fff; }

.section-head { margin-bottom: 34px; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 800; }
.section-head.light h2 { color: #fff; }
.section-sub { margin-top: 12px; color: var(--ink-2); font-size: 17px; max-width: 720px; }
.theme-blue .section-sub { color: rgba(255,255,255,0.85); }

.kicker {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 99px; margin-bottom: 16px;
}
.kicker-blue { background: #e4e7ff; color: var(--blue); }
.kicker-cyan { background: rgba(126, 232, 251, 0.25); color: var(--cyan-soft); border: 1px solid rgba(126,232,251,0.5); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }

/* ---------- cover ---------- */
.cover { background: linear-gradient(150deg, #1d2be0 0%, #2334e8 40%, #4a3aee 100%); color: #fff; padding-bottom: 90px; }
.cover-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.blob.b1 { width: 480px; height: 480px; background: #37d5f8; top: -140px; right: -100px; animation: drift 11s ease-in-out infinite alternate; }
.blob.b2 { width: 420px; height: 420px; background: #b7a6f7; bottom: -160px; left: -120px; animation: drift 13s ease-in-out infinite alternate-reverse; }
.blob.b3 { width: 260px; height: 260px; background: #ff8a5c; bottom: 10%; right: 16%; opacity: 0.35; animation: drift 9s ease-in-out infinite alternate; }
@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(40px, 30px) scale(1.12); } }
.spark { position: absolute; color: rgba(255,255,255,0.8); animation: twinkle 3s ease-in-out infinite; }
.spark.s1 { top: 22%; left: 12%; font-size: 22px; }
.spark.s2 { top: 30%; right: 18%; font-size: 16px; animation-delay: 0.8s; }
.spark.s3 { bottom: 32%; left: 22%; font-size: 18px; animation-delay: 1.5s; }
.spark.s4 { bottom: 24%; right: 10%; font-size: 24px; animation-delay: 2.2s; }
@keyframes twinkle { 0%, 100% { opacity: 0.2; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.15); } }

.cover-inner { width: min(980px, 100%); margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.eyebrow-pill {
  display: inline-block; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 18px; border-radius: 99px; font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
}
.cover-title { font-size: clamp(34px, 5.6vw, 62px); font-weight: 800; margin: 26px 0 18px; }
.cover-title .hl {
  background: linear-gradient(120deg, var(--cyan-soft), #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cover-sub { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 38px; }

.cover-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cover-card {
  flex: 1 1 300px; max-width: 380px; text-align: left; text-decoration: none;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 24px 26px; color: #fff;
  display: flex; flex-direction: column; gap: 6px; position: relative;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.25s, box-shadow 0.25s;
}
.cover-card:hover { transform: translateY(-8px) rotate(-0.5deg); background: rgba(255,255,255,0.2); box-shadow: var(--shadow-lg); }
.cc-num { position: absolute; top: 18px; right: 22px; font-weight: 800; opacity: 0.5; }
.cc-emoji { font-size: 34px; }
.cc-name { font-size: 24px; font-weight: 800; margin-top: 4px; }
.cc-desc { color: rgba(255,255,255,0.85); font-size: 15px; }
.cc-go { margin-top: 12px; font-weight: 800; color: var(--cyan-soft); transition: transform 0.2s; }
.cover-card:hover .cc-go { transform: translateX(6px); }

.scroll-hint { margin-top: 40px; font-size: 14px; color: rgba(255,255,255,0.7); animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ticker */
.ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(13, 17, 92, 0.55); backdrop-filter: blur(8px);
  padding: 10px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.15);
}
.ticker-track { display: flex; gap: 34px; width: max-content; animation: marquee 30s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.tick { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }
.tick b { font-variant-numeric: tabular-nums; }
.tick .up { color: #8ef5a3; } .tick .down { color: #ff9d9d; }

/* ---------- generic cards ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.big-card {
  background: var(--card); border-radius: var(--radius); padding: 30px 32px;
  box-shadow: var(--shadow); position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.big-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-tag {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 99px; margin-bottom: 14px;
}
.tag-coral { background: #ffe3d6; color: #c4470f; }
.tag-blue { background: #e4e7ff; color: var(--blue); }
.tag-cyan { background: rgba(126,232,251,0.2); color: var(--cyan-soft); border: 1px solid rgba(126,232,251,0.4); }
.lead { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.big-card p:not(.lead) { color: var(--ink-2); }

.doc-doodle { margin-top: 22px; font-size: 34px; display: flex; align-items: center; gap: 14px; }
.doc-arrow { color: var(--muted); font-size: 24px; }
.doc.q { animation: bob 2.4s ease-in-out infinite; }

.pillars { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.pillar {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: var(--paper); border: 2px solid transparent; border-radius: 16px;
  padding: 14px 18px; font-size: 16px; font-weight: 700; color: var(--ink);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.pillar:hover { border-color: var(--blue); background: #eef0ff; transform: translateX(6px); }
.pillar-emoji { font-size: 24px; }
.pillar-hint { margin-left: auto; font-size: 13px; font-weight: 700; color: var(--blue); opacity: 0; transition: opacity 0.2s; }
.pillar:hover .pillar-hint { opacity: 1; }

/* ---------- dashboard ---------- */
.glance-strip { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.glance {
  background: var(--card); border-radius: 99px; padding: 8px 18px;
  box-shadow: var(--shadow); font-size: 15px; color: var(--ink-2); font-weight: 600;
}
.glance b { color: var(--blue); font-size: 18px; font-weight: 800; }
.glance small { color: var(--muted); }

.tabs { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.tab {
  border: 2px solid transparent; background: var(--card); color: var(--ink-2);
  font-size: 17px; font-weight: 800; padding: 11px 26px; border-radius: 99px;
  box-shadow: var(--shadow); transition: all 0.2s;
}
.tab small { font-weight: 700; color: var(--muted); margin-left: 4px; }
.tab:hover { transform: translateY(-3px); color: var(--blue); }
.tab.is-active { background: var(--blue); color: #fff; }
.tab.is-active small { color: rgba(255,255,255,0.7); }

.tabpanel { display: none; }
.tabpanel.is-active { display: block; animation: panelIn 0.45s cubic-bezier(0.2, 0.7, 0.2, 1); }
@keyframes panelIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.story-head { margin-bottom: 22px; }
.story-title { font-size: clamp(24px, 3.2vw, 34px); font-weight: 800; color: var(--blue-ink); }
.story-sub { color: var(--ink-2); margin-top: 6px; max-width: 700px; font-size: 16px; }

.beats { display: flex; align-items: stretch; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.beat {
  flex: 1 1 280px; border-radius: 18px; padding: 16px 20px; background: var(--card); box-shadow: var(--shadow);
  border-top: 5px solid var(--grid);
}
.beat-down { border-top-color: var(--lilac); }
.beat-up { border-top-color: var(--green); }
.beat-when { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.beat p { margin-top: 6px; color: var(--ink-2); font-size: 15px; }
.beat-arrow { align-self: center; font-size: 26px; color: var(--muted); }

.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 22px; }
.kpi-row.two { grid-template-columns: 1fr 1fr; }
.stat-tile {
  background: var(--card); border-radius: 18px; padding: 18px 20px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 4px;
  transition: transform 0.2s;
}
.stat-tile:hover { transform: translateY(-4px); }
.stat-label { font-size: 14px; font-weight: 700; color: var(--ink-2); display: flex; align-items: center; gap: 6px; }
.stat-value { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; }
.stat-value.stat-word { font-size: 26px; padding-top: 4px; }
.delta-up { color: var(--delta-good); }
.delta-down { color: var(--delta-bad); }
.stat-note { font-size: 13px; color: var(--muted); }
.signal { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.sig-emoji { font-size: 18px; }

.info-dot {
  width: 18px; height: 18px; border-radius: 50%; border: none; flex: none;
  background: #e4e7ff; color: var(--blue); font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.15s, background 0.15s;
}
.info-dot:hover { transform: scale(1.25); background: var(--blue); color: #fff; }
.info-dot.light { background: rgba(255,255,255,0.25); color: #fff; }

.meaning-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 22px; }
.mini-card {
  background: var(--card); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow);
  display: flex; gap: 12px; align-items: flex-start; font-size: 15px;
  transition: transform 0.2s;
}
.mini-card:hover { transform: translateY(-3px); }
.mini-card p { color: var(--ink-2); }
.mini-emoji { font-size: 22px; flex: none; }

.action-bar {
  background: linear-gradient(120deg, #eafbe8, #d9f7ee); border-radius: 18px; padding: 18px 22px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 28px;
}
.action-pill {
  background: #fff; border-radius: 99px; padding: 9px 16px; font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 12px rgba(20,26,77,0.08);
}
.action-note { flex-basis: 100%; font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

/* ---------- charts ---------- */
.chart-block { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; margin-bottom: 26px; align-items: start; }
.side-stack { display: flex; flex-direction: column; gap: 14px; }
.wide-card { width: 100%; }

.chart-card {
  background: var(--card); border-radius: var(--radius); padding: 22px 24px;
  box-shadow: var(--shadow); position: relative;
}
.chart-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.chart-head h4 { font-size: 19px; font-weight: 800; }
.chart-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.chart-tools { display: flex; align-items: center; gap: 12px; }
.legend { font-size: 13px; color: var(--ink-2); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.key { width: 12px; height: 12px; border-radius: 4px; display: inline-block; margin-left: 8px; }
.key-pos { background: var(--s-pos); margin-left: 0; }
.key-neg { background: var(--s-neg); }
.chart-foot { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.chart-body { position: relative; }
.chart-body svg { width: 100%; height: auto; display: block; }

.chart-svg-wrap.hidden, .chart-table.hidden { display: none; }
.chart-table { width: 100%; border-collapse: collapse; margin: 8px 0 4px; }
.chart-table th, .chart-table td { text-align: left; padding: 9px 12px; font-size: 14.5px; border-bottom: 1px solid var(--grid); }
.chart-table td.num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 700; }
.chart-table th { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; }

.bar-g { transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1); transform-box: fill-box; }
.chart-label { font-size: 14px; font-weight: 600; fill: var(--ink-2); font-family: var(--font); }
.chart-value { font-size: 14px; font-weight: 700; fill: var(--ink); font-family: var(--font); }
.chart-tick { font-size: 12px; fill: var(--muted); font-family: var(--font); font-variant-numeric: tabular-nums; }
.chart-flag { font-size: 16px; }

.viz-tooltip {
  position: absolute; z-index: 5; pointer-events: none;
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 600;
  border-radius: 10px; padding: 7px 12px; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(4px); transition: opacity 0.12s, transform 0.12s;
  white-space: nowrap;
}
.viz-tooltip.show { opacity: 1; transform: none; }
.viz-tooltip small { color: rgba(255,255,255,0.7); font-weight: 500; }

/* ---------- how ria applies ---------- */
.ria-applies { background: var(--card); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow); margin-bottom: 28px; }
.ria-applies h4 { font-size: 17px; margin-bottom: 14px; }
.asset-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.asset {
  background: #e9fbfe; border: 1px solid #bdeefc; color: var(--blue-ink);
  border-radius: 14px; padding: 12px 18px; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s;
}
.asset:hover { transform: translateY(-3px) rotate(-1deg); }
.asset-note { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* ---------- carousel strips ---------- */
.strip-head h4 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.strip-head small { font-weight: 600; color: var(--muted); font-size: 13px; }
.panel-strip {
  display: flex; gap: 16px; overflow-x: auto; padding: 6px 4px 18px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.panel-card {
  flex: 0 0 180px; scroll-snap-align: start; border: none; padding: 0;
  border-radius: 16px; overflow: hidden; background: var(--card);
  box-shadow: var(--shadow); position: relative; cursor: zoom-in;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s;
}
.panel-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: var(--shadow-lg); }
.panel-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.panel-card .pc-num {
  position: absolute; top: 8px; left: 8px;
  background: rgba(20, 26, 77, 0.75); color: #fff; font-size: 11px; font-weight: 800;
  border-radius: 99px; padding: 3px 9px;
}
.panel-card .pc-zoom {
  position: absolute; right: 8px; bottom: 8px; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.92); display: grid; place-items: center; font-size: 14px;
  opacity: 0; transform: scale(0.7); transition: all 0.2s;
}
.panel-card:hover .pc-zoom { opacity: 1; transform: none; }

/* ---------- june specifics ---------- */
.lang-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.lang-toggle { display: inline-flex; background: var(--card); border-radius: 99px; padding: 4px; box-shadow: var(--shadow); }
.lang {
  border: none; background: transparent; font-weight: 800; font-size: 14px; color: var(--ink-2);
  padding: 7px 16px; border-radius: 99px; transition: all 0.2s;
}
.lang.is-active { background: var(--blue); color: #fff; }
.lang-note { font-size: 13.5px; color: var(--muted); }

.june-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 20px; margin-bottom: 26px; align-items: start; }
.june-left { display: flex; flex-direction: column; gap: 16px; }

.chat-sim { background: var(--card); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; }
.bubble {
  background: #d9f3fe; color: var(--blue-ink); font-weight: 600; font-size: 15px;
  border-radius: 18px 18px 18px 4px; padding: 10px 16px; max-width: 85%;
  opacity: 0; transform: translateY(10px) scale(0.95);
}
.bubble.shown { opacity: 1; transform: none; transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
.bubble:nth-child(2) { align-self: flex-end; border-radius: 18px 18px 4px 18px; background: #ece5ff; }
.bubble.answer {
  align-self: stretch; max-width: 100%; background: var(--paper);
  border: 1.5px dashed var(--axis); border-radius: 14px; font-weight: 700; text-align: center;
}
.chat-sim .replay { align-self: center; margin-top: 4px; }

.high-card { background: var(--card); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); }
.high-card h4 { font-size: 18px; margin-bottom: 10px; }
.high-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.high-list li { background: #d9f3fe; border-radius: 12px; padding: 8px 14px; font-weight: 600; font-size: 14.5px; width: fit-content; }
.high-list li:nth-child(2) { margin-left: 18px; }
.high-list li:nth-child(3) { margin-left: 36px; }
.high-note { margin-top: 12px; font-size: 13.5px; color: var(--muted); }

.auto-labur {
  margin-top: 12px; background: #e9fbfe; border: 1px solid #bdeefc; border-radius: 14px;
  padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--blue-ink);
}

/* ---------- value cards ---------- */
.value-card {
  background: var(--card); border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vc-emoji { font-size: 38px; }
.value-card h3 { font-size: 24px; margin: 12px 0 14px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.check-list li { padding-left: 32px; position: relative; color: var(--ink-2); font-size: 15.5px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%; background: var(--green-soft); color: #157a2e;
  font-size: 13px; font-weight: 800; display: grid; place-items: center;
}
.why-card .check-list li { color: var(--ink-2); }

/* ---------- omnis ---------- */
.challenge-row { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 26px; }
.challenge-stat {
  flex: 1 1 200px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius); padding: 22px 26px; backdrop-filter: blur(6px);
  transition: transform 0.2s, background 0.2s;
}
.challenge-stat:hover { transform: translateY(-5px); background: rgba(255,255,255,0.18); }
.ch-big { display: block; font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; color: var(--cyan-soft); }
.ch-sub { color: rgba(255,255,255,0.85); font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }

.omnis-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.glass-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius); padding: 26px 30px; backdrop-filter: blur(6px);
  transition: transform 0.25s, background 0.25s;
}
.glass-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.16); }
.glass-card .lead { color: #fff; font-size: 18px; }
.glass-card b { color: var(--cyan-soft); }

/* ---------- strategy flow ---------- */
.flow-wrap { background: var(--card); border-radius: 26px; padding: 30px 32px; box-shadow: var(--shadow); }
.flow-wrap .play { margin-bottom: 22px; }
.flow { display: flex; align-items: stretch; gap: 8px; }
.flow-cap {
  flex: none; writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
  background: #6d2f77; color: #fff; font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 8px; padding: 12px 6px; align-self: stretch;
  display: flex; align-items: center; justify-content: center;
}
.flow-cap.cap-paid { background: #4a2a84; }
.fd-tag {
  font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; background: #6d2f77; color: #fff;
  border-radius: 6px; padding: 2px 8px; margin: 0 2px; vertical-align: 1px;
}
.flow-step {
  flex: 1 1 0; min-width: 0; background: var(--paper); border: 2px solid transparent; border-radius: 18px;
  padding: 16px 8px; text-align: center; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.3;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
}
.flow-step:hover { border-color: var(--blue); transform: translateY(-4px); }
.flow-step.is-active { background: var(--blue); color: #fff; transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.flow-step.is-active .fs-num { background: var(--cyan); color: var(--blue-ink); }
.flow-step.lit { border-color: var(--cyan); }
.fs-num {
  width: 26px; height: 26px; border-radius: 50%; background: #e4e7ff; color: var(--blue);
  font-weight: 800; font-size: 13px; display: grid; place-items: center;
  transition: all 0.25s;
}
.fs-emoji { font-size: 26px; }
.flow-arrow { color: var(--muted); font-size: 18px; flex: none; align-self: center; }
.flow-detail {
  margin-top: 22px; background: #eef0ff; border-radius: 16px; padding: 18px 22px;
  font-size: 15.5px; color: var(--ink-2); min-height: 64px;
  display: flex; align-items: center;
  transition: background 0.3s;
}
.flow-detail b { color: var(--blue); }
.flow-detail.pulse { animation: detailPulse 0.45s ease; }
@keyframes detailPulse { 0% { transform: scale(0.985); opacity: 0.6; } 100% { transform: none; opacity: 1; } }

/* ---------- clusters ---------- */
.cluster-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-bottom: 22px; }
.cluster-card {
  text-align: left; border: 2px solid transparent; background: var(--card); border-radius: 18px;
  padding: 20px 22px; box-shadow: var(--shadow); cursor: pointer;
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.cluster-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: var(--shadow-lg); }
.cl-num {
  flex: none; width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center;
  font-weight: 800; font-size: 16px; color: #fff;
}
.cluster-card h5 { font-size: 15.5px; font-weight: 700; line-height: 1.4; font-style: italic; }
.cluster-card .cl-stage { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.why-card {
  background: linear-gradient(120deg, #ece5ff, #e0f7ff); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow);
}
.why-card h4 { font-size: 18px; margin-bottom: 14px; }

/* ---------- value grid (omnis) ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.value-tile {
  background: var(--card); border-radius: var(--radius); padding: 26px 26px; box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-tile:hover { transform: translateY(-6px) rotate(-0.6deg); box-shadow: var(--shadow-lg); }
.vt-emoji { font-size: 32px; }
.value-tile h4 { font-size: 18px; margin: 10px 0 8px; }
.value-tile p { color: var(--ink-2); font-size: 14.5px; }

/* ---------- wrap ---------- */
.wrap-title { font-size: clamp(30px, 5vw, 52px); font-weight: 800; margin: 22px 0 26px; }
.wrap-chips { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.wrap-chip {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.35);
  border-radius: 99px; padding: 12px 22px; font-weight: 700; font-size: 15px;
}
.wrap-cta { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.url-pill {
  background: var(--cyan); color: var(--blue-ink); font-weight: 800; font-size: 17px;
  border-radius: 99px; padding: 12px 26px; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.version-note { margin-top: 34px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ---------- overlays & modals ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13, 15, 60, 0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; gap: 18px;
  animation: fadeIn 0.25s ease;
  padding: 24px;
}
.overlay[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.ov-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.15); color: #fff; font-size: 18px;
  transition: background 0.2s, transform 0.2s;
}
.ov-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }
.ov-close.in-card { position: absolute; top: 14px; right: 14px; background: #eef0ff; color: var(--ink); width: 36px; height: 36px; font-size: 15px; }
.ov-close.in-card:hover { background: #dfe3ff; }

.lb-figure { text-align: center; max-width: min(560px, 82vw); }
.lb-figure img {
  max-height: 76vh; width: auto; max-width: 100%; margin: 0 auto;
  border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: popIn 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes popIn { from { transform: scale(0.92); opacity: 0; } to { transform: none; opacity: 1; } }
.lb-figure figcaption { color: #fff; margin-top: 16px; font-size: 15px; font-weight: 600; display: flex; justify-content: center; gap: 14px; align-items: center; }
.lb-count { background: rgba(255,255,255,0.15); border-radius: 99px; padding: 3px 12px; font-size: 13px; font-variant-numeric: tabular-nums; }
.lb-nav {
  width: 54px; height: 54px; border-radius: 50%; border: none; flex: none;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 30px; line-height: 1;
  transition: background 0.2s, transform 0.2s;
}
.lb-nav:hover { background: var(--cyan); color: var(--blue-ink); transform: scale(1.1); }

.modal-card {
  background: #fff; border-radius: 26px; padding: 38px 40px 34px; max-width: 520px; width: 100%;
  position: relative; box-shadow: var(--shadow-lg);
  animation: popIn 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.modal-emoji { font-size: 40px; display: block; margin-bottom: 12px; }
.modal-card h3 { font-size: 24px; margin-bottom: 12px; }
.modal-card p { color: var(--ink-2); font-size: 16px; }
.keys-list { list-style: none; display: flex; flex-direction: column; gap: 12px; color: var(--ink-2); font-size: 15px; }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 150; background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  max-width: min(560px, calc(100vw - 32px));
  animation: toastIn 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.toast[hidden] { display: none; }
@keyframes toastIn { from { transform: translateX(-50%) translateY(30px); opacity: 0; } to { transform: translateX(-50%); opacity: 1; } }

/* ---------- confetti ---------- */
.confetti-layer { position: fixed; inset: 0; pointer-events: none; z-index: 300; overflow: hidden; }
.confetti-piece {
  position: absolute; top: -20px; width: 10px; height: 14px; border-radius: 3px;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0.7; }
}

/* ---------- monthly rollout ---------- */
.rollout-flow { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch; }
.step-card {
  background: var(--card); border-radius: var(--radius); padding: 26px 28px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-card h3 { font-size: 21px; }
.step-card p { color: var(--ink-2); font-size: 14.5px; }
.step-chip {
  align-self: flex-start; background: #e4e7ff; color: var(--blue);
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 99px; padding: 6px 14px;
}
.step-chip.chip-cyan { background: #d9f6fe; color: #086f8e; }
.rollout-arrow {
  align-self: center; text-align: center; color: var(--muted);
  font-weight: 800; font-size: 20px; display: flex; flex-direction: column; gap: 2px;
}
.rollout-arrow span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }

.shot-grid { display: flex; gap: 12px; }
.shot-grid .mock-shot { flex: 1; }
.mock-shot {
  border: 1px solid var(--grid); border-radius: 16px; overflow: hidden; padding: 0;
  background: var(--card); cursor: zoom-in; text-align: left; position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mock-shot:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.mock-shot img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: top; display: block; }
.shot-grid.two .mock-shot img { aspect-ratio: 4 / 5; }
.shot-cap {
  display: flex; justify-content: space-between; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 12.5px; font-weight: 700; color: var(--ink-2); background: var(--paper);
}

.step-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.step-tag {
  background: #eef0ff; border-radius: 99px; padding: 6px 13px;
  font-size: 12.5px; font-weight: 700; color: var(--blue-ink);
}

/* ---------- creative month blocks ---------- */
.month-block { margin-top: 26px; }
.month-pill {
  display: inline-block; background: var(--blue); color: #fff; font-size: 13px;
  font-weight: 800; border-radius: 99px; padding: 5px 14px; margin-right: 8px;
  vertical-align: 2px;
}

/* ---------- language toggle in nav ---------- */
.nav-lang { padding: 3px; box-shadow: none; border: 1px solid rgba(20, 26, 77, 0.12); }
.nav-lang .lang { padding: 5px 12px; font-size: 13px; }

/* ---------- results section ---------- */
.chart-label-strong { font-weight: 800; fill: var(--ink); }
.insight-strip {
  margin-top: 18px; background: linear-gradient(120deg, #fff3d6, #ffe8d9);
  border-radius: 18px; padding: 16px 22px; font-weight: 700; font-size: 15.5px; color: #6b4a0e;
}

/* ---------- the ask ---------- */
.ask-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ask-card {
  background: var(--card); border-radius: var(--radius); padding: 24px 26px;
  box-shadow: var(--shadow); position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ask-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ask-card h4 { font-size: 18px; margin: 10px 0 8px; }
.ask-card p { color: var(--ink-2); font-size: 14.5px; }
.ask-num {
  position: absolute; top: 18px; right: 20px; width: 28px; height: 28px; border-radius: 50%;
  background: #e4e7ff; color: var(--blue); font-weight: 800; font-size: 14px;
  display: grid; place-items: center;
}
.ask-emoji { font-size: 28px; }
.ask-card.decision { background: linear-gradient(120deg, #2334e8, #4a3aee); color: #fff; }
.ask-card.decision h4 { color: #fff; }
.ask-card.decision p { color: rgba(255, 255, 255, 0.85); }

/* ---------- next cluster topics ---------- */
.next-strip { margin-top: 22px; background: var(--card); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow); }
.next-strip h4 { font-size: 17px; margin-bottom: 14px; }
.next-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.next-chip {
  flex: 1 1 240px; background: #eef0ff; border: 1.5px dashed #b9c0f5; border-radius: 16px;
  padding: 14px 18px; display: flex; flex-direction: column; gap: 4px;
  transition: transform 0.2s, background 0.2s;
}
.next-chip:hover { transform: translateY(-3px); background: #e4e8ff; }
.next-chip b { font-size: 15px; color: var(--blue-ink); }
.next-chip small { color: var(--ink-2); font-size: 12.5px; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .chart-block, .two-col, .omnis-cards { grid-template-columns: 1fr; }
  .ask-grid { grid-template-columns: 1fr 1fr; }
  .rollout-flow { grid-template-columns: 1fr; }
  .rollout-arrow { flex-direction: row; justify-content: center; gap: 8px; }
  .dotnav { display: none; }
  .beat-arrow { display: none; }
}
@media (max-width: 640px) {
  .ask-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .navlinks { display: none; }
  .slide { padding-top: 90px; }
  .kpi-row.two { grid-template-columns: 1fr; }
  .flow { flex-direction: column; align-items: stretch; }
  .flow-arrow { transform: rotate(90deg); text-align: center; }
  .flow-cap { writing-mode: horizontal-tb; transform: none; align-self: center; padding: 6px 16px; }
  .slide-counter { display: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .bubble { opacity: 1; transform: none; }
}
