/* ========================================================
   ZiBit — proposal deck
   Design tokens
======================================================== */
:root{
  --bg: #0c0c0e;
  --bg-elev: #141416;
  --surface: #1a1a1d;
  --surface-2: #202023;
  --text: #f4f3ef;
  --text-muted: #9b9ba1;
  --text-dim: #6c6c72;
  --accent: #00ff9c;
  --accent-bright: #6dffc2;
  --accent-dim: rgba(0, 255, 156, 0.10);
  --accent-line: rgba(0, 255, 156, 0.40);
  --accent-glow: rgba(0, 255, 156, 0.28);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --orange: #ff5e1a;
  --orange-bright: #ff8a4d;
  --orange-dim: rgba(255, 94, 26, 0.12);
  --orange-line: rgba(255, 94, 26, 0.45);
  --orange-glow: rgba(255, 94, 26, 0.30);
  --danger: #ff6b5b;
  --danger-dim: rgba(255, 107, 91, 0.12);
  --warning: #ffb84d;
  --warning-dim: rgba(255, 184, 77, 0.12);
  --neutral-dim: rgba(255, 255, 255, 0.06);

  --font-base: "Vazirmatn", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --topbar-h: 68px;
  --progress-h: 3px;
  --pad-x: clamp(24px, 6vw, 96px);
  --pad-y: clamp(96px, 12vh, 140px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-base);
  height: 100%;
  overflow: hidden;
}

body{
  font-feature-settings: "ss01" on, "tnum" on;
}

::selection{
  background: var(--accent);
  color: #0c0c0e;
}

/* ========================================================
   Progress bar
======================================================== */
.progress-track{
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: var(--progress-h);
  background: var(--border);
  z-index: 60;
}
.progress-fill{
  height: 100%;
  width: 0%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow), 0 0 28px var(--accent-glow);
  transition: width 0.25s var(--ease);
}

/* ========================================================
   Top navigation bar
======================================================== */
.topbar{
  position: fixed;
  top: var(--progress-h);
  inset-inline: 0;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(12, 12, 14, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  direction: rtl;
}

.brand-mark{
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-mark .accent{ color: var(--accent); }

.topbar-center{
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  padding: 0 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-right{
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
}

.toc-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.15s var(--ease);
}
.toc-btn:hover{ border-color: var(--accent-line); background: var(--accent-dim); }
.toc-btn:active{ transform: scale(0.97); }
.toc-icon{
  display: inline-block;
  width: 14px;
  height: 10px;
  position: relative;
}
.toc-icon::before, .toc-icon::after, .toc-icon{
  content: "";
}
.toc-icon::before, .toc-icon::after{
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  background: currentColor;
}
.toc-icon{ background: currentColor; height: 2px; top: 4px; }
.toc-icon::before{ top: -4px; }
.toc-icon::after{ top: 4px; width: 70%; }

.page-counter{
  font-family: var(--font-base);
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.page-counter #pageCurrent{ color: var(--text); font-weight: 600; }
.page-sep{ margin: 0 4px; color: var(--text-dim); }

.nav-buttons{
  display: flex;
  gap: 6px;
  /* Deck advances left-to-right; pin button order regardless of RTL header
     so prev (left arrow) sits left and next (right arrow) sits right. */
  direction: ltr;
}
.nav-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease), opacity 0.2s var(--ease);
}
.nav-btn:hover{ border-color: var(--accent-line); }
.nav-btn:active{ transform: scale(0.94); }
.nav-btn--primary{
  background: var(--accent);
  border-color: var(--accent);
  color: #0c0c0e;
}
.nav-btn--primary:hover{ background: var(--accent-bright); border-color: var(--accent-bright); }
.nav-btn[disabled]{
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ========================================================
   Deck / horizontal scroll
======================================================== */
.deck{
  direction: ltr;
  display: flex;
  height: 100dvh;
  width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.deck::-webkit-scrollbar{ display: none; }

.slide{
  direction: rtl;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.slide-inner{
  width: 100%;
  height: 100%;
  padding: calc(var(--topbar-h) + var(--progress-h) + clamp(16px, 3vh, 40px)) var(--pad-x) clamp(20px, 4vh, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 2.4vh, 28px);
  /* No vertical scrolling — slides are fitted, never scrolled */
  overflow: hidden;
}

/* ========================================================
   Typography
======================================================== */
.h2{
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
.h2-cont{
  font-weight: 500;
  font-size: 0.5em;
  color: var(--text-muted);
  margin-inline-start: 8px;
}
.h3{
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 700;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.h3-sm{
  font-size: 1.02rem;
  font-weight: 700;
  margin: 14px 0 8px;
}
.num{
  font-family: var(--font-mono);
  font-size: 0.78em;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.lead{
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 70ch;
  margin: 0;
}
.lead--sm{
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  line-height: 1.85;
  max-width: 85ch;
}
.lead strong{ color: var(--text); font-weight: 700; }

.footnote{
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 80ch;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ========================================================
   Lists
======================================================== */
.list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.list li{
  position: relative;
  padding-inline-start: 22px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.list li::before{
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: translateY(-50%);
}
.list--num{ counter-reset: step; }
.list--num li{ padding-inline-start: 30px; }
.list--num li::before{
  content: counter(step);
  counter-increment: step;
  width: auto;
  height: auto;
  background: none;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  top: 0;
  transform: none;
}

/* ========================================================
   Layout grids
======================================================== */
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
.grid-3{
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(24px, 3.5vw, 56px);
}
.block{ min-width: 0; }

/* ========================================================
   Callouts
======================================================== */
.callout{
  border: 1px solid var(--border-strong);
  border-inline-start: 3px solid var(--accent);
  background: var(--surface);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 90ch;
}
.callout--accent{ border-inline-start-color: var(--accent); }
.callout--warn{ border-inline-start-color: var(--warning); }
.callout-tag{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.callout--warn .callout-tag{ color: var(--warning); }
.callout p{
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.95;
  color: var(--text-muted);
}

/* ========================================================
   Buttons
======================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn--primary{
  background: var(--accent);
  color: #0c0c0e;
}
.btn--primary:hover{ background: var(--accent-bright); }
.btn--primary:active{ transform: scale(0.98) translateY(1px); }
.btn--ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover{ border-color: var(--accent-line); color: var(--accent); }
.btn--ghost:active{ transform: scale(0.98); }

/* ========================================================
   01 — Cover
======================================================== */
.slide--cover{ background: var(--bg); }
.cover-grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 35%, black 0%, transparent 65%);
  mask-image: radial-gradient(ellipse at 70% 35%, black 0%, transparent 65%);
  opacity: 0.6;
}
.cover-glow{
  position: absolute;
  width: min(60vw, 720px);
  height: min(60vw, 720px);
  inset-inline-end: -10%;
  top: -10%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.16;
  filter: blur(40px);
  border-radius: 50%;
}
.cover-inner{
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: calc(var(--topbar-h) + var(--progress-h) + 56px);
}
.cover-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.cover-logo{
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cover-version{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.cover-main{
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 980px;
}
.cover-title{
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
}
.cover-sub{
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.7;
  margin: 0;
}
.cover-foot{
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 8px;
}

/* ========================================================
   02 — TOC
======================================================== */
.toc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 8px;
}
.toc-item{
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(20px, 2.4vw, 32px);
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  min-height: 140px;
}
.toc-item--wide{ grid-column: span 1; }
.toc-item:hover{
  background: var(--surface);
}
.toc-item:hover .toc-num{ color: var(--accent); }
.toc-num{
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: color 0.25s var(--ease);
  flex-shrink: 0;
}
.toc-text{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toc-text strong{
  font-size: 1.02rem;
  font-weight: 700;
}
.toc-text small{
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================================
   03 — Executive summary
======================================================== */
.summary-stack{
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 92ch;
}

/* ========================================================
   06 — Statement grid (2.1)
======================================================== */
.statement-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.statement{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border-strong);
}
.statement--accent{ border-top-color: var(--accent); }
.statement-mark{
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-dim);
}
.statement--accent .statement-mark{ color: var(--accent); }
.statement p{
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.75;
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* ========================================================
   Footnote variants
======================================================== */
.footnote--tight{ margin-top: -8px; padding-top: 0; border-top: none; }
.footnote-pos{ color: var(--accent); }
.footnote-neg{ color: var(--danger); }
.badge--off{ color: var(--text-dim); border-color: var(--border); }

/* ========================================================
   Wide slide inner (chart-heavy slides)
======================================================== */
.slide-inner--wide{ gap: 18px; }

/* ========================================================
   Iran entity-type cards (1.1) — three columns
======================================================== */
.entity-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}
.entity-card{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(20px, 2.4vw, 30px);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--border-strong);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.entity-card:hover{ transform: translateY(-4px); }
.entity-card--rank1{ border-top-color: var(--accent); }
.entity-card--rank1:hover{ box-shadow: 0 14px 36px rgba(0,0,0,0.45), 0 0 18px rgba(0,255,156,0.10); }
.entity-card--rank2{ border-top-color: var(--orange); }
.entity-card--rank2:hover{ box-shadow: 0 14px 36px rgba(0,0,0,0.45), 0 0 18px rgba(255,94,26,0.10); }
.entity-card--rank3{ opacity: 0.82; }
.entity-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.entity-icon{
  width: 44px;
  height: 44px;
  color: var(--text-muted);
  transition: color 0.3s var(--ease), transform 0.4s var(--ease), filter 0.3s var(--ease);
}
.entity-card:hover .entity-icon{ transform: translateY(-2px) rotate(-4deg); }
.entity-card--rank1 .entity-icon{ color: var(--accent); filter: drop-shadow(0 0 8px var(--accent-glow)); }
.entity-card--rank2 .entity-icon{ color: var(--orange); filter: drop-shadow(0 0 8px var(--orange-glow)); }
.entity-name{
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 800;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.entity-en{
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.entity-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.entity-stats > div{
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  background: var(--bg);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  box-shadow: inset 0 0 0 1px var(--border);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.entity-stats > div:hover{ transform: translateY(-2px); }
.entity-card--rank1 .entity-stats > div:hover{ box-shadow: inset 0 0 0 1px var(--accent-line); }
.entity-card--rank2 .entity-stats > div:hover{ box-shadow: inset 0 0 0 1px var(--orange-line); }
.entity-card--rank3 .entity-stats > div:hover{ box-shadow: inset 0 0 0 1px var(--border-strong); }
.entity-k{
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.entity-v{
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
}
.entity-note{
  margin: 0;
  margin-top: auto;
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ========================================================
   Iran regulatory requirement cards (1.2)
======================================================== */
.req-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.req-card{
  background: var(--bg);
  padding: clamp(16px, 2vw, 22px);
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.req-card:hover{ background: var(--surface); }
.req-num{
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.req-card .h3-sm{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Full text lives in the fixed detail panel below — never expands inline */
.req-card p{ display: none; }
.req-card.is-active{
  background: var(--accent-dim);
  box-shadow: inset 0 0 0 1px var(--accent-line);
}
.req-card.is-active .req-num{ text-shadow: 0 0 10px var(--accent-glow); }

/* ========================================================
   Jurisdiction comparison table (1.3)
======================================================== */
.data-table--juris th, .data-table--juris td{ font-size: 0.85rem; }
.juris-row{ cursor: pointer; }
.juris-row td:first-child{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.juris-row--top td{ color: var(--text); }
/* Detail rows are data-only; their text renders in the fixed panel below */
.juris-detail{ display: none; }
.juris-row.is-active{ background: var(--surface); }
.juris-row.is-active .td-label{ color: var(--accent); }

/* ========================================================
   Halving cycle chart (section 03)
======================================================== */
.cycle-wrap{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cycle-chart-wrap{
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(12px, 1.5vw, 24px);
}
.cycle-chart{
  width: 100%;
  height: auto;
  display: block;
  max-height: clamp(200px, 38vh, 360px);
  overflow: visible;
}
.cycle-grid line{
  stroke: var(--border);
  stroke-width: 1;
  stroke-dasharray: 2 6;
}
.cycle-axis-labels text{
  font-family: var(--font-mono);
  font-size: 13px;
  fill: var(--text-dim);
  text-anchor: end;
}
.halving-line{
  stroke: var(--border-strong);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}
.halving-line--predict{ stroke: var(--accent-line); }
.halving-label{
  font-family: var(--font-mono);
  font-size: 12px;
  fill: var(--text-dim);
  text-anchor: middle;
}
.halving-label--predict{ fill: var(--accent); }
.cycle-price-line{
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
}
.slide.is-active .cycle-price-line{
  animation: drawCycleLine 1.8s var(--ease) forwards;
}
@keyframes drawCycleLine{ to{ stroke-dashoffset: 0; } }
.cycle-points circle{
  fill: var(--bg);
  stroke: var(--accent);
  stroke-width: 2;
  cursor: pointer;
  opacity: 0;
  transition: r 0.15s var(--ease), fill 0.15s var(--ease);
}
.slide.is-active .cycle-points circle{
  animation: fadeInPoint 0.5s var(--ease) forwards;
  animation-delay: 1.6s;
}
@keyframes fadeInPoint{ to{ opacity: 1; } }
.cycle-points circle:hover{ r: 8; fill: var(--accent); }
.cycle-point--now{
  stroke: var(--accent);
  stroke-width: 3;
}
.slide.is-active .cycle-point--now{
  animation: fadeInPoint 0.5s var(--ease) forwards, pulseNow 2s ease-in-out infinite 2.2s;
}
@keyframes pulseNow{
  0%, 100%{ stroke-opacity: 1; }
  50%{ stroke-opacity: 0.35; }
}
.cycle-markers .now-line{ stroke: var(--accent); stroke-width: 1.5; }
.cycle-markers .ready-line{ stroke: var(--text-dim); stroke-width: 1.5; stroke-dasharray: 3 5; }
.cycle-markers text{
  font-family: var(--font-mono);
  font-size: 12px;
  text-anchor: middle;
  fill: var(--text-muted);
}
.cycle-markers text:first-of-type{ fill: var(--accent); font-weight: 700; }
.cycle-tooltip{
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 0.15s var(--ease);
  background: var(--bg-elev);
  border: 1px solid var(--accent-line);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  white-space: nowrap;
  color: var(--text);
  z-index: 5;
}
.cycle-tooltip.is-visible{ opacity: 1; }

/* ========================================================
   Phase legend + detail
======================================================== */
.phase-legend{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.phase-chip{
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-strong);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.phase-chip:hover{ border-color: var(--accent-line); color: var(--text); }
.phase-chip.is-active{ background: var(--accent); border-color: var(--accent); color: #0c0c0e; }
.phase-hint{
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-inline-start: auto;
}
.phase-detail{
  border: 1px solid var(--border);
  border-inline-start: 3px solid var(--accent);
  background: var(--surface);
  padding: 12px 20px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  height: clamp(64px, 10vh, 92px);
  flex-shrink: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

/* ========================================================
   Risk matrix (4.1)
======================================================== */
.risk-matrix{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
}
.risk-matrix-yaxis{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
  padding-bottom: 32px;
}
.risk-matrix-body{ display: flex; flex-direction: column; gap: 10px; }
.risk-matrix-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  min-height: clamp(200px, 34vh, 320px);
}
.risk-cell{
  background: var(--bg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.risk-cell--hot{ background: var(--danger-dim); }
.risk-chip{
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: start;
  background: transparent;
  border: 1px solid var(--border-strong);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s var(--ease);
}
.risk-chip:hover{ transform: translateY(-1px); }
.risk-chip--critical{ border-color: var(--danger-dim); color: var(--danger); }
.risk-chip--critical:hover{ background: var(--danger-dim); }
.risk-chip--high{ border-color: var(--warning-dim); color: var(--warning); }
.risk-chip--high:hover{ background: var(--warning-dim); }
.risk-chip--medium{ border-color: var(--border-strong); color: var(--text-muted); }
.risk-chip--medium:hover{ background: var(--neutral-dim); }
.risk-chip.is-active{ background: var(--accent); border-color: var(--accent); color: #0c0c0e; }
.risk-matrix-xaxis{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
}

/* ========================================================
   Shared interactive table detail panel
======================================================== */
.td-clickable{
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  position: relative;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.td-clickable:hover{ color: var(--accent); background: var(--accent-dim); }
.td-clickable.is-active{ color: var(--accent); background: var(--accent-dim); }
.table-detail{
  border: 1px solid var(--border);
  border-inline-start: 3px solid var(--accent);
  background: var(--surface);
  padding: 12px 20px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  /* Fixed height: detail text changes never move the layout */
  height: clamp(64px, 10vh, 92px);
  flex-shrink: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

/* ========================================================
   09 / 11 / 13 — Data tables
======================================================== */
.table-wrap{
  overflow-x: auto;
  border: 1px solid var(--border);
}
.data-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 0.9rem;
}
.data-table th, .data-table td{
  text-align: start;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.7;
}
.data-table thead th{
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  background: var(--surface);
  border-bottom: 1px solid var(--border-strong);
}
.data-table tbody tr:last-child td{ border-bottom: none; }
.data-table tbody tr:hover{ background: var(--surface); }
.td-label{
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.td-trend{ color: var(--text-muted); font-size: 0.85rem; }
.td-muted{ color: var(--text-dim); text-align: center; }

.badge{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}
.badge--critical{ color: var(--danger); border-color: var(--danger-dim); background: var(--danger-dim); }
.badge--high{ color: var(--warning); border-color: var(--warning-dim); background: var(--warning-dim); }
.badge--medium{ color: var(--text-muted); border-color: var(--border-strong); background: var(--neutral-dim); }
.badge--accent{ color: #0c0c0e; background: var(--accent); border-color: var(--accent); }
.badge--orange{ color: #0c0c0e; background: var(--orange); border-color: var(--orange); animation: badgePulseOrange 2.4s ease-in-out infinite; }
@keyframes badgePulseOrange{
  0%, 100%{ box-shadow: 0 0 0 rgba(255,94,26,0); }
  50%{ box-shadow: 0 0 14px var(--orange-glow); }
}

/* ========================================================
   10 — Path steps
======================================================== */
.path-steps{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.path-step{
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.path-step:last-child{ border-bottom: none; padding-bottom: 0; }
.path-label{
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent);
}
.path-step p{
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ========================================================
   12 — Opportunity grid
======================================================== */
.opp-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.opp-card{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(22px, 2.6vw, 36px);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.opp-card::before{
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border-strong);
}
.opp-card--feature{
  border-color: var(--accent-line);
  background: linear-gradient(135deg, var(--accent-dim) 0%, var(--surface) 60%);
}
.opp-card--feature::before{ background: var(--accent); }
.opp-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.opp-num{
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dim);
}
.opp-card--feature .opp-num{ color: var(--accent); }
.opp-scale{
  flex: 1;
  height: 4px;
  background: var(--neutral-dim);
  max-width: 140px;
  overflow: hidden;
}
.opp-scale-fill{
  display: block;
  height: 100%;
  background: var(--text-dim);
  transform-origin: right;
}
.opp-card--feature .opp-scale-fill{ background: var(--accent); }
.opp-card p{
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-muted);
  flex: 1;
}
.opp-tag{
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  padding: 4px 12px;
  border-radius: 999px;
}
.opp-card--feature .opp-tag{ color: var(--accent); border-color: var(--accent-line); }

/* ========================================================
   15 — Blind spots grid
======================================================== */
.blindspot-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.blindspot-card{
  background: var(--bg);
  padding: clamp(18px, 2vw, 26px);
  display: flex;
  flex-direction: column;
}
.blindspot-num{
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
}
.blindspot-card p{
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ========================================================
   16 — Conclusion
======================================================== */
.steps-list{
  display: flex;
  flex-direction: column;
  max-width: 92ch;
}
.step-row{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.step-row:first-child{ border-top: 1px solid var(--border); }
.step-row--accent .step-num{ color: var(--accent); }
.step-num{
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dim);
}
.step-row p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}
.end-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ========================================================
   17 — Timeline
======================================================== */
.timeline{
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding-top: 28px;
  margin-top: 8px;
}
.timeline-track{
  position: absolute;
  top: 7px;
  right: calc(100% / 12);
  left: calc(100% / 12);
  height: 2px;
  background: var(--border);
}
.timeline-item{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.timeline-item::before{
  content: '';
  position: absolute;
  top: -27px;
  right: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--text-dim);
  z-index: 1;
}
.timeline-month{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}
.timeline-item h4{
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.timeline-item p{
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.timeline-item--marketing{ border-color: var(--accent-line); }
.timeline-item--marketing::before{
  border-color: var(--accent);
  background: rgba(0,255,156,0.15);
}
.timeline-item--launch{
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0,255,156,0.08), var(--surface));
  animation: launchGlow 2.6s ease-in-out infinite;
}
.timeline-item--launch::before{
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,255,156,0.18), 0 0 18px var(--accent-glow);
}
@keyframes launchGlow{
  0%,100%{ box-shadow: 0 0 0 rgba(0,255,156,0); }
  50%{ box-shadow: 0 0 26px rgba(0,255,156,0.18); }
}
.timeline-item--launch .timeline-month{ color: var(--accent); }

/* ========================================================
   Grain overlay
======================================================== */
.grain{
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========================================================
   Cyberpunk motion layer
======================================================== */

/* Staggered slide-in for every slide's content */
.slide .slide-inner > *{
  opacity: 0;
  transform: translateY(26px);
}
.slide.is-active .slide-inner > *{
  animation: riseIn 0.7s var(--ease) forwards;
}
.slide.is-active .slide-inner > *:nth-child(1){ animation-delay: 0.05s; }
.slide.is-active .slide-inner > *:nth-child(2){ animation-delay: 0.16s; }
.slide.is-active .slide-inner > *:nth-child(3){ animation-delay: 0.27s; }
.slide.is-active .slide-inner > *:nth-child(4){ animation-delay: 0.38s; }
.slide.is-active .slide-inner > *:nth-child(5){ animation-delay: 0.49s; }
.slide.is-active .slide-inner > *:nth-child(n+6){ animation-delay: 0.6s; }
@keyframes riseIn{
  to{ opacity: 1; transform: translateY(0); }
}

/* Heading neon flicker on slide entry */
.slide.is-active .h2{
  animation: riseIn 0.7s var(--ease) forwards, neonFlicker 1.6s steps(1) 0.2s 1;
}
@keyframes neonFlicker{
  0%{ text-shadow: none; }
  8%{ text-shadow: 0 0 18px var(--accent-glow); }
  12%{ text-shadow: none; }
  20%{ text-shadow: 0 0 22px var(--accent-glow); }
  40%{ text-shadow: 0 0 14px var(--accent-glow); }
  100%{ text-shadow: 0 0 10px rgba(0,255,156,0.12); }
}

/* Cover ambience */
.cover-glow{
  animation: glowFloat 9s ease-in-out infinite alternate;
}
@keyframes glowFloat{
  from{ transform: translate(0, 0) scale(1); opacity: 0.16; }
  to{ transform: translate(-6%, 8%) scale(1.12); opacity: 0.24; }
}
.cover-grid{
  animation: gridPan 24s linear infinite;
}
@keyframes gridPan{
  from{ background-position: 0 0, 0 0; }
  to{ background-position: 0 64px, 64px 0; }
}
.cover-title{
  background: linear-gradient(100deg, var(--text) 40%, var(--accent) 50%, var(--text) 60%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleSheen 5.5s ease-in-out infinite;
}
@keyframes titleSheen{
  0%, 100%{ background-position: 100% 0; }
  50%{ background-position: 0% 0; }
}

/* Primary buttons & badges breathe */
.btn--primary, .nav-btn--primary{
  box-shadow: 0 0 14px var(--accent-glow);
  animation: btnBreathe 2.8s ease-in-out infinite;
}
@keyframes btnBreathe{
  0%, 100%{ box-shadow: 0 0 10px var(--accent-glow); }
  50%{ box-shadow: 0 0 26px var(--accent-glow); }
}
.btn--primary:hover, .nav-btn--primary:hover{ transform: translateY(-2px); }
.badge--accent{ animation: badgePulse 2.4s ease-in-out infinite; }
@keyframes badgePulse{
  0%, 100%{ box-shadow: 0 0 0 rgba(0,255,156,0); }
  50%{ box-shadow: 0 0 14px var(--accent-glow); }
}

/* Micro-motion on every interactive element */
.toc-item:hover{ transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--accent-line), 0 8px 28px rgba(0,0,0,0.45); }
.toc-item{ transition: background 0.25s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.req-card{ transition: background 0.2s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.req-card:hover{ transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--accent-line); }
.blindspot-card{ transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.blindspot-card:hover{ transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--accent-line); }
.opp-card{ transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.opp-card:hover{ transform: translateY(-4px); border-color: var(--accent-line); box-shadow: 0 14px 36px rgba(0,0,0,0.5), 0 0 18px rgba(0,255,156,0.10); }
.statement{ transition: transform 0.3s var(--ease), border-top-color 0.3s var(--ease); }
.statement:hover{ transform: translateY(-3px); border-top-color: var(--accent); }
.timeline-item:hover{ transform: translateY(-4px); border-color: var(--accent-line); }
.path-step{ transition: transform 0.3s var(--ease); }
.path-step:hover{ transform: translateX(-4px); }
.step-row{ transition: background 0.25s var(--ease), transform 0.25s var(--ease); }
.step-row:hover{ background: var(--accent-dim); transform: translateX(-4px); }
.risk-chip:hover{ transform: translateY(-2px) scale(1.03); box-shadow: 0 0 14px rgba(0,255,156,0.10); }
.phase-chip:hover{ transform: translateY(-2px); }
.phase-chip.is-active{ box-shadow: 0 0 16px var(--accent-glow); }
.nav-btn:hover{ transform: translateY(-2px); }
.toc-btn:hover{ transform: translateY(-1px); box-shadow: 0 0 14px rgba(0,255,156,0.12); }
.juris-row{ transition: background 0.25s var(--ease); }
.data-table tbody tr{ transition: background 0.25s var(--ease); }
.callout--accent{ box-shadow: inset 3px 0 0 var(--accent), 0 0 0 rgba(0,255,156,0); animation: calloutPulse 3.2s ease-in-out infinite; }
@keyframes calloutPulse{
  0%, 100%{ box-shadow: 0 0 0 rgba(0,255,156,0); }
  50%{ box-shadow: 0 0 22px rgba(0,255,156,0.08); }
}
.opp-scale-fill{ transition: width 1.2s var(--ease); }
.cycle-points circle{ filter: drop-shadow(0 0 6px var(--accent-glow)); }
.cycle-price-line{ filter: drop-shadow(0 0 8px var(--accent-glow)); }

/* Persian numerals — render with Vazirmatn, not the mono fallback */
.page-counter, .toc-num, .req-num, .blindspot-num, .step-num,
.opp-num, .num, .timeline-month, .step-row .step-num{
  font-family: var(--font-base);
  font-feature-settings: "tnum" on;
}

/* ========================================================
   Reduced motion
======================================================== */
@media (prefers-reduced-motion: reduce){
  .deck{ scroll-behavior: auto; }
  .progress-fill, .nav-btn, .toc-btn, .btn, .toc-item{ transition: none; }
  .cycle-price-line{ animation: none; stroke-dashoffset: 0; }
  .cycle-points circle{ animation: none; opacity: 1; }
  .cycle-point--now{ animation: none; }
  .timeline-item{ transition: none; }
  .slide .slide-inner > *{ opacity: 1; transform: none; animation: none !important; }
  body::after, .cover-glow, .cover-grid, .cover-title,
  .btn--primary, .nav-btn--primary, .badge--accent,
  .callout--accent, .timeline-item--launch{ animation: none !important; }
}

/* ========================================================
   Height-aware compaction — keep every slide inside 100dvh
======================================================== */
@media (max-height: 860px){
  .h2{ font-size: clamp(1.5rem, 3.2vw, 2.3rem); }
  .lead{ font-size: clamp(0.92rem, 1.2vw, 1.05rem); line-height: 1.8; }
  .lead--sm{ font-size: clamp(0.86rem, 1vw, 0.95rem); line-height: 1.7; }
  .data-table th, .data-table td{ padding: 10px 14px; }
  .list{ gap: 8px; }
  .list li{ line-height: 1.7; }
  .footnote{ line-height: 1.65; padding-top: 10px; }
  .callout{ padding: 14px 20px; gap: 8px; }
  .callout p{ line-height: 1.75; font-size: 0.9rem; }
  .toc-item{ min-height: 104px; padding: 16px 20px; }
  .timeline-item{ padding: 14px 12px 12px; }
  .blindspot-card, .req-card{ padding: 14px; }
  .entity-card{ padding: 18px 20px; gap: 12px; }
  .opp-card{ padding: 18px 22px; gap: 12px; }
  .cover-title{ font-size: clamp(2rem, 6vw, 4.2rem); }
}
@media (max-height: 720px){
  .h2{ font-size: clamp(1.3rem, 2.8vw, 1.9rem); }
  .data-table{ font-size: 0.82rem; }
  .data-table th, .data-table td{ padding: 8px 12px; line-height: 1.55; }
  .table-detail, .phase-detail{ height: 56px; padding: 8px 16px; font-size: 0.82rem; line-height: 1.7; }
  .statement p{ font-size: 0.95rem; line-height: 1.6; }
  .timeline-item p, .blindspot-card p{ font-size: 0.76rem; line-height: 1.6; }
  .entity-stats > div{ padding: 9px; }
  .entity-note{ font-size: 0.78rem; line-height: 1.65; padding-top: 8px; }
}

/* ========================================================
   Responsive — collapse to single column under 1024px
======================================================== */
@media (max-width: 1024px){
  .grid-3{ grid-template-columns: 1fr; gap: 32px; }
  .grid-2{ grid-template-columns: 1fr; gap: 32px; }
  .toc-grid{ grid-template-columns: repeat(3, 1fr); }
  .statement-grid{ grid-template-columns: 1fr; gap: 20px; }
  .entity-grid{ grid-template-columns: 1fr; }
  .req-grid{ grid-template-columns: repeat(2, 1fr); }
  .risk-matrix{ grid-template-columns: 1fr; }
  .risk-matrix-yaxis{ flex-direction: row; justify-content: space-between; }
  .opp-grid{ grid-template-columns: 1fr; }
  .blindspot-grid{ grid-template-columns: repeat(2, 1fr); }
  .timeline{ grid-template-columns: repeat(3, 1fr); gap: 16px 12px; padding-top: 0; }
  .timeline-track{ display: none; }
  .timeline-item::before{ display: none; }
  .data-table--juris{ font-size: 0.85rem; }
}

@media (max-width: 640px){
  :root{
    --topbar-h: 60px;
  }
  .topbar-center{ display: none; }
  .toc-btn span:last-child{ display: none; }
  .toc-grid{ grid-template-columns: 1fr; }
  .req-grid{ grid-template-columns: 1fr; }
  .entity-stats{ grid-template-columns: 1fr; }
  .cycle-chart-wrap{ overflow-x: auto; }
  .cycle-chart{ min-width: 720px; }
  .phase-legend{ flex-wrap: wrap; }
  .risk-matrix-grid{ grid-template-columns: 1fr; }
  .risk-matrix-xaxis{ display: none; }
  .blindspot-grid{ grid-template-columns: 1fr; }
  .path-step{ grid-template-columns: 1fr; gap: 6px; }
  .step-row{ grid-template-columns: 40px 1fr; gap: 14px; }
  .slide-inner{ gap: 14px; padding-bottom: 28px; }
  .cover-foot{ flex-direction: column; }
  .timeline{ grid-template-columns: repeat(2, 1fr); }
  .data-table--juris{ display: block; overflow-x: auto; white-space: nowrap; }
}
