/* ============================================================
   POWER UP YOUR PRESENTATION — styles.css
   Warm editorial palette: cream/sand + jewel tones
   Fonts: Playfair Display (display) + DM Sans (body)
   WCAG AA accessible contrast throughout
   ============================================================ */

/* ── TOKENS ── */

:root {
  --cream:      #F7F8FF;
  --cream-mid:  #E8EDFF;
  --cream-dark: #D8E4FF;
  --w900: #160A1C;
  --w800: #291131;
  --w600: #4C1036;
  --w300: #C6D8FF;
  --terra:    #71A9F7;
  --terra-lt: #EDF5FF;
  --teal:     #6B5CA5;
  --teal-lt:  #F0EEFA;
  --plum:     #72195A;
  --plum-lt:  #F7ECF4;
  --gold:     #4C1036;
  --gold-lt:  #F2EAF0;
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
}


/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  background: linear-gradient(180deg, #100814 0%, #160A1C 100%);
  font-family: var(--fb);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   STAGE & SLIDES
══════════════════════════════════════════════ */
#pw {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#pres {
  width: 1600px;
  height: 900px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(1);
  overflow: hidden;
}

.s {
  position: absolute;
  inset: 0;
  width: 1600px;
  height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
  transform: translateX(48px);
}
.s.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.s.exit {
  opacity: 0;
  transform: translateX(-48px);
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════════ */
.badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background: currentColor;
  opacity: .55;
}

.h1 { font-family: var(--fd); font-size: 80px; font-weight: 900; line-height: 1.02; margin-bottom: 22px; }
.h2 { font-family: var(--fd); font-size: 54px; font-weight: 700; line-height: 1.08; margin-bottom: 28px; max-width: 1000px; }
.h3 { font-family: var(--fd); font-size: 30px; font-weight: 400; font-style: italic; margin-bottom: 16px; line-height: 1.3; }
.body { font-size: 21px; line-height: 1.65; max-width: 900px; margin-bottom: 14px; }
.sm   { font-size: 15px; line-height: 1.5; }

/* ══════════════════════════════════════════════
   SLIDE TYPES
══════════════════════════════════════════════ */

/* COVER */
.s-cover {
  background: var(--w900);
  color: var(--cream);
  padding: 70px 120px;
  overflow: hidden;
}
.s-cover::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: var(--terra);
  opacity: .1;
  top: -160px; right: -80px;
}
.s-cover::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  background: var(--teal);
  opacity: .1;
  bottom: -90px; right: 260px;
  transform: rotate(25deg);
}
.cover-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--w300);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cover-title {
  font-family: var(--fd);
  font-size: 90px;
  font-weight: 900;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  max-width: 1000px;
}
.cover-title em { color: var(--terra); font-style: normal; }
.cover-sub {
  font-family: var(--fd);
  font-size: 34px;
  font-weight: 400;
  font-style: italic;
  color: var(--w300);
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.cover-meta {
  font-size: 15px;
  color: rgba(245,240,230,.45);
  letter-spacing: .05em;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 36px;
}
.cover-deco {
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.deco-r { height: 6px; background: var(--cream); opacity: .1; }

/* CONTENT SLIDES */
.s-content { background: var(--cream); color: var(--w900); }
.s-content .badge { color: var(--terra); }
.s-content .h2 { color: var(--w900); }
.s-content .body { color: var(--w800); }

/* SECTION BREAKS */
.s-break {
  overflow: hidden;
  padding: 70px 120px;
  justify-content: flex-end;
}
.brk-ghost {
  position: absolute;
  font-family: var(--fd);
  font-size: 360px;
  font-weight: 900;
  line-height: 1;
  top: -40px; left: -10px;
  opacity: .07;
  color: #fff;
  pointer-events: none;
  user-select: none;
}
.brk-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}
.brk-line {
  width: 70px; height: 5px;
  background: rgba(255,255,255,.35);
  margin-bottom: 24px;
}
.brk-title {
  font-family: var(--fd);
  font-size: 96px;
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 16px;
}
.brk-sub {
  font-family: var(--fd);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.65);
}
.s-brk-t  { background: var(--terra); }
.s-brk-tl { background: var(--teal); }
.s-brk-p  { background: var(--plum); }
.s-brk-g  { background: var(--gold); }

/* ACTIVITY SLIDES */
.s-act {
  background: var(--teal);
  color: #fff;
  padding: 55px 100px;
}
.act-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}
.act-lbl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.act-lbl-tag,
.act-lbl-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.act-lbl-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.act-lbl-meta {
  color: rgba(255,255,255,.72);
}
.act-title {
  font-family: var(--fd);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  max-width: 940px;
}

/* Timer */
.timer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.timer-ring {
  position: relative;
  width: 148px; height: 148px;
}
.timer-ring svg {
  width: 148px; height: 148px;
  transform: rotate(-90deg);
}
.ring-bg { stroke: rgba(255,255,255,.15); }
.ring-fg {
  stroke: #fff;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}
.timer-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}
.tbts { display: flex; gap: 8px; }
.tbt {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.45);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all .2s;
}
.tbt:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.tbt.run  { background: rgba(255,255,255,.2); border-color: #fff; }
.tbt.done { background: rgba(255,255,255,.3); }

.act-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 980px;
}
.act-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
}
.sn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.act-ext {
  margin-top: 18px;
  padding: 14px 20px;
  background: rgba(255,255,255,.1);
  border-left: 4px solid rgba(255,255,255,.4);
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  color: rgba(255,255,255,.8);
  max-width: 980px;
}
.act-ext strong { color: #fff; }

/* DISCUSSION SLIDES */
.s-disc {
  background: var(--gold);
  color: #fff;
  padding: 60px 100px;
}
.disc-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.disc-ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.disc-q {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.14;
  color: #fff;
  margin-bottom: 32px;
  max-width: 1140px;
}
.disc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1000px;
}
.disc-list li {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  padding-left: 22px;
  position: relative;
}
.disc-list li::before { content: '→'; position: absolute; left: 0; color: rgba(255,255,255,.5); }
.disc-time {
  position: absolute;
  bottom: 56px; right: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
}

/* ══════════════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1400px;
}
.tc-wide { grid-template-columns: 3fr 2fr; }

.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; max-width: 1380px; }
.cg3 { grid-template-columns: 1fr 1fr 1fr; }
.cg4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

/* ══════════════════════════════════════════════
   COMPONENTS
══════════════════════════════════════════════ */

/* Cards */
.card { background: var(--cream-mid); border-radius: 12px; padding: 26px 30px; }
.c-lbl { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--w300); margin-bottom: 8px; }
.c-title { font-family: var(--fd); font-size: 26px; font-weight: 700; color: var(--w900); margin-bottom: 8px; }
.c-body { font-size: 16px; line-height: 1.6; color: var(--w600); }

/* Pills */
.pill { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .05em; padding: 4px 12px; border-radius: 100px; margin: 0 6px 6px 0; }
.pt  { background: var(--terra-lt); color: var(--terra); }
.ptl { background: var(--teal-lt);  color: var(--teal); }
.pp  { background: var(--plum-lt);  color: var(--plum); }
.pg  { background: var(--gold-lt);  color: var(--gold); }

/* Lists */
.ul-check, .ul-x, .ul-dot {
  list-style: none;
  font-size: 18px;
  line-height: 1.6;
  color: var(--w800);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ul-check li::before { content: '✓  '; color: var(--teal); font-weight: 700; }
.ul-x     li::before { content: '✗  '; color: var(--terra); font-weight: 700; }
.ul-dot li { padding-left: 20px; position: relative; }
.ul-dot li::before { content: '◆'; position: absolute; left: 0; font-size: 7px; top: 9px; color: var(--terra); }

/* Quote */
.quote {
  border-left: 5px solid var(--terra);
  padding: 18px 28px;
  background: var(--terra-lt);
  border-radius: 0 10px 10px 0;
  margin: 16px 0;
  max-width: 1000px;
}
.quote blockquote { font-family: var(--fd); font-size: 24px; font-style: italic; line-height: 1.5; color: var(--w800); margin-bottom: 8px; }
.quote cite { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--w300); }

/* Highlight box */
.hbox { background: var(--w900); color: var(--cream); border-radius: 12px; padding: 24px 32px; margin: 18px 0; max-width: 1000px; }
.hbox h4 { font-family: var(--fd); font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--w300); }
.hbox p  { font-size: 18px; line-height: 1.6; }

/* Stat cards */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin-top: 8px;
}
.stat-card { background: var(--cream-mid); border-radius: 12px; padding: 28px 32px; }
.stat-big { font-family: var(--fd); font-size: 72px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.stat-card.s1 .stat-big { color: var(--terra); }
.stat-card.s2 .stat-big { color: var(--teal); }
.stat-card.s3 .stat-big { color: var(--plum); }
.stat-card.s4 .stat-big { color: var(--gold); }
.stat-desc   { font-size: 17px; line-height: 1.5; color: var(--w600); }
.stat-source { font-size: 12px; color: var(--w300); margin-top: 6px; }

/* Comparison table */
.ctbl { width: 100%; border-collapse: collapse; font-size: 16px; margin-top: 6px; }
.ctbl th {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--w300); text-align: left; padding: 10px 14px;
  border-bottom: 2px solid var(--cream-dark);
}
.ctbl td { padding: 10px 14px; border-bottom: 1px solid var(--cream-dark); color: var(--w800); line-height: 1.4; }
.ctbl tr:last-child td { border-bottom: none; }
.ctbl tr:hover td { background: var(--cream-mid); }
.tag-free { background: var(--teal-lt); color: var(--teal); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.tag-paid { background: var(--plum-lt); color: var(--plum); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.tag-m365 { background: var(--gold-lt); color: var(--gold); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }

/* Workflow */
.wf { display: flex; flex-direction: column; max-width: 1300px; }
.wf-item { display: flex; gap: 24px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--cream-dark); }
.wf-item:last-child { border-bottom: none; }
.wf-n { width: 44px; height: 44px; border-radius: 50%; background: var(--w900); color: var(--cream); font-weight: 700; font-size: 17px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.wf-c h4 { font-family: var(--fd); font-size: 21px; font-weight: 700; color: var(--w900); margin-bottom: 4px; }
.wf-c p  { font-size: 16px; color: var(--w600); line-height: 1.5; }

/* Three-layer stack */
.layers { display: flex; flex-direction: column; max-width: 1000px; }
.layer { padding: 22px 36px; display: flex; align-items: center; gap: 28px; }
.l1 { background: var(--w900); border-radius: 12px 12px 0 0; }
.l2 { background: var(--teal); }
.l3 { background: var(--terra); border-radius: 0 0 12px 12px; }
.l-ico { font-size: 32px; flex-shrink: 0; }
.l-t { font-family: var(--fd); font-size: 24px; font-weight: 700; color: #fff; }
.l-d { font-size: 16px; color: rgba(255,255,255,.72); }

/* Takeaways */
.tks { display: flex; flex-direction: column; gap: 18px; max-width: 1300px; }
.tk  { display: flex; gap: 22px; align-items: flex-start; }
.tk-n { font-family: var(--fd); font-size: 38px; font-weight: 900; color: var(--terra); opacity: .25; line-height: 1; flex-shrink: 0; width: 52px; text-align: right; }
.tk-t { font-family: var(--fd); font-size: 25px; font-weight: 700; color: var(--w900); line-height: 1.35; padding-top: 5px; }

/* Commit cards */
.cc-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; max-width: 1380px; margin-top: 8px; }
.cc { background: var(--cream-mid); border-radius: 14px; padding: 28px 30px; }
.cc.c1 { border-top: 5px solid var(--terra); }
.cc.c2 { border-top: 5px solid var(--teal); }
.cc.c3 { border-top: 5px solid var(--gold); }
.cc-n { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--w300); margin-bottom: 10px; }
.cc-q { font-family: var(--fd); font-size: 22px; font-weight: 700; color: var(--w900); line-height: 1.35; margin-bottom: 16px; }
.cc-line { width: 100%; height: 2px; background: var(--cream-dark); margin-bottom: 10px; border-radius: 1px; }

/* CARP grid */
.carp-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; max-width: 1380px; margin-top: 8px; }
.carp-card { border-radius: 12px; padding: 26px 22px; }
.carp-c { background: var(--terra); }
.carp-a { background: var(--teal); }
.carp-r { background: var(--plum); }
.carp-p { background: var(--gold); }
.carp-letter { font-family: var(--fd); font-size: 80px; font-weight: 900; line-height: 1; margin-bottom: 10px; opacity: .2; color: #fff; }
.carp-word   { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.carp-head   { font-family: var(--fd); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.carp-body   { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.82); }
.carp-rule   { font-size: 13px; font-style: italic; color: rgba(255,255,255,.6); margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.2); }

/* PEQR grid */
.peqr-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px; max-width: 1380px; margin-top: 8px; }
.peqr-card  { border-radius: 12px; padding: 22px 18px; }
.peqr-p { background: var(--terra); }
.peqr-e { background: var(--plum); }
.peqr-q { background: var(--teal); }
.peqr-r { background: var(--gold); }
.peqr-letter { font-family: var(--fd); font-size: 72px; font-weight: 900; line-height: 1; opacity: .18; color: #fff; margin-bottom: 4px; }
.peqr-word   { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.peqr-title  { font-family: var(--fd); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.peqr-body   { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.82); }

/* Tool rows */
.tool-rows { display: flex; flex-direction: column; gap: 12px; max-width: 1380px; }
.tool-row  { display: flex; align-items: flex-start; gap: 18px; padding: 18px 22px; background: var(--cream-mid); border-radius: 10px; }
.tool-name { font-weight: 700; font-size: 16px; color: var(--w900); min-width: 170px; flex-shrink: 0; margin-top: 1px; }
.tool-desc { font-size: 15px; color: var(--w600); line-height: 1.5; flex: 1; }
.tool-tip  { font-size: 13px; color: var(--teal); font-style: italic; margin-top: 4px; }

/* Agenda grid */
.agenda-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1380px; }
.ag-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: var(--cream-mid); border-radius: 12px; }
.ag-num { font-family: var(--fd); font-size: 48px; font-weight: 900; line-height: 1; color: var(--cream-dark); flex-shrink: 0; width: 56px; }
.ag-item.col1 .ag-num { color: var(--terra); }
.ag-c h3 { font-family: var(--fd); font-size: 24px; font-weight: 700; color: var(--w900); margin-bottom: 4px; }
.ag-c p  { font-size: 15px; color: var(--w600); line-height: 1.5; }

/* Resources */
.res-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 36px; max-width: 1400px; }
.res-grp h3 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; padding-bottom: 6px; border-bottom: 2px solid var(--cream-dark); }
.res-grp ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.res-grp li { font-size: 15px; color: var(--w600); line-height: 1.4; }
.res-grp a  { color: var(--teal); text-decoration: none; font-weight: 500; }
.res-grp a:hover { text-decoration: underline; }

/* Example boxes */
.ex-box { background: var(--cream-mid); border-radius: 10px; padding: 18px 22px; margin-top: 10px; }
.ex-bad  { border-left: 4px solid var(--terra); }
.ex-good { border-left: 4px solid var(--teal); }
.ex-lbl  { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
.ex-bad .ex-lbl  { color: var(--terra); }
.ex-good .ex-lbl { color: var(--teal); }
.ex-txt  { font-size: 15px; line-height: 1.5; color: var(--w800); }

/* ══════════════════════════════════════════════
   NAVIGATION UI
══════════════════════════════════════════════ */
#nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 100;
  pointer-events: none;
}
.nav-btn {
  pointer-events: all;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .04em;
}
.nav-prev { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }
.nav-prev:hover { background: rgba(255,255,255,.22); color: #fff; }
.nav-next { background: var(--terra); color: #fff; }
.nav-next:hover { background: #d45030; }
#slide-counter {
  pointer-events: all;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  min-width: 70px;
  text-align: center;
  letter-spacing: .06em;
}

/* PROGRESS BAR */
#prog-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: var(--terra);
  transition: width .3s ease;
  z-index: 200;
}

/* NOTES PANEL */
#notes {
  position: fixed;
  right: 0; top: 0; bottom: 60px;
  width: 340px;
  background: var(--w900);
  color: var(--cream);
  padding: 28px 24px;
  font-size: 14px;
  line-height: 1.65;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 150;
  border-left: 2px solid rgba(255,255,255,.08);
}
#notes.open { transform: translateX(0); }
#notes h4 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--w300);
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 10px;
}
#notes p { margin-bottom: 10px; color: rgba(245,240,230,.85); }

/* NOTES TOGGLE */
#notes-toggle {
  position: fixed;
  right: 20px; top: 20px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  border: none;
  border-radius: 8px;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 160;
  transition: all .2s;
}
#notes-toggle:hover { background: rgba(255,255,255,.2); color: #fff; }

/* HELP MODAL */
#help {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
}
#help.open { display: flex; }
.help-box {
  background: var(--w900);
  border-radius: 16px;
  padding: 40px 48px;
  color: var(--cream);
  max-width: 500px;
  width: 90%;
}
.help-box h3 { font-family: var(--fd); font-size: 28px; font-weight: 700; margin-bottom: 20px; color: var(--w300); }
.help-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.help-box li { display: flex; gap: 20px; font-size: 15px; align-items: center; }
.help-key {
  font-family: var(--fb);
  font-weight: 700;
  background: rgba(255,255,255,.1);
  padding: 3px 12px;
  border-radius: 6px;
  min-width: 90px;
  text-align: center;
  color: #fff;
  flex-shrink: 0;
}
.help-close {
  margin-top: 24px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background .2s;
}
.help-close:hover { background: rgba(255,255,255,.2); }

/* SLIDE NUMBER WATERMARK */
.slide-num-watermark {
  position: absolute;
  bottom: 24px;
  right: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  opacity: .25;
  color: currentColor;
}
.s-content .slide-num-watermark { color: var(--w900); }
.s-cover .slide-num-watermark,
.s-break .slide-num-watermark,
.s-act .slide-num-watermark,
.s-disc .slide-num-watermark { color: #fff; }


/* ============================================================
   QUICK WINS — progress dots, counters, reveal motion, depth
   ============================================================ */

:root {
  --shadow-soft: 0 18px 44px rgba(22, 10, 28, 0.14), 0 6px 18px rgba(22, 10, 28, 0.10);
  --shadow-medium: 0 22px 56px rgba(22, 10, 28, 0.22), 0 10px 24px rgba(22, 10, 28, 0.12);
}

.card,
.stat-card,
.ag-item,
.tool-row,
.ex-box,
.quote,
.hbox,
.cc,
.peqr-card,
.carp-card,
.layer,
.res-grp,
.ctbl {
  box-shadow: var(--shadow-soft);
}

.card,
.stat-card,
.ag-item,
.tool-row,
.ex-box,
.cc,
.peqr-card,
.carp-card,
.layer {
  transition: transform .28s ease, box-shadow .28s ease;
}

.s.active .card,
.s.active .stat-card,
.s.active .ag-item,
.s.active .tool-row,
.s.active .ex-box,
.s.active .cc,
.s.active .peqr-card,
.s.active .carp-card,
.s.active .layer {
  will-change: transform, opacity;
}

#nav {
  bottom: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

#slide-counter.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#dot-progress {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  z-index: 140;
  pointer-events: none;
}

#dot-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 12px;
  border-radius: 22px;
  background: rgba(12, 12, 12, 0.58);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  pointer-events: all;
}

.prog-dot {
  --dot-color: rgba(255,255,255,.35);
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: color-mix(in srgb, var(--dot-color) 42%, #ffffff 12%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  opacity: .78;
  transition: transform .22s ease, opacity .22s ease, background .22s ease, box-shadow .22s ease, height .22s ease;
}

.prog-dot:hover,
.prog-dot:focus-visible {
  transform: translateX(-1px) scale(1.14);
  opacity: 1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.12), 0 0 0 1px rgba(255,255,255,.2) inset;
}

.prog-dot.active {
  width: 8px;
  height: 24px;
  background: var(--dot-color);
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(255,255,255,.22) inset, 0 8px 18px rgba(0,0,0,.28);
}

.prog-dot.visited:not(.active) {
  background: color-mix(in srgb, var(--dot-color) 72%, #ffffff 8%);
  opacity: .98;
}

.prog-dot.boundary {
  margin-right: 0;
  margin-bottom: 10px;
}

.prog-dot.is-intro  { --dot-color: #C6D8FF; }
.prog-dot.is-design { --dot-color: #71A9F7; }
.prog-dot.is-images { --dot-color: #6B5CA5; }
.prog-dot.is-ai     { --dot-color: #72195A; }
.prog-dot.is-wrap   { --dot-color: #4C1036; }

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(4px);
  transition:
    opacity .52s cubic-bezier(.2,.65,.2,1),
    transform .52s cubic-bezier(.2,.65,.2,1),
    filter .52s cubic-bezier(.2,.65,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

.s.reveal-visible .reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.stat-big {
  letter-spacing: -0.03em;
}

#notes-toggle,
.nav-btn {
  box-shadow: 0 12px 26px rgba(0,0,0,.22);
}



/* BEFORE / AFTER TOGGLE */
.ba-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.ba-toggle-copy {
  font-size: 15px;
  line-height: 1.45;
  color: var(--w600);
  max-width: 760px;
}
.ba-toggle-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--plum) 100%);
  color: #fff;
  font: 700 14px/1 var(--fb);
  letter-spacing: .04em;
  padding: 14px 20px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.ba-toggle-btn:hover,
.ba-toggle-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
  filter: saturate(1.05);
  outline: none;
}
.ba-stage {
  position: relative;
  min-height: 420px;
}
.ba-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px) scale(.985);
  pointer-events: none;
  transition: opacity .32s ease, transform .32s ease;
}
.ba-stage[data-view="before"] .ba-card[data-view="before"],
.ba-stage[data-view="after"] .ba-card[data-view="after"] {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.ba-card-shell {
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.ba-card-shell.before { background: var(--w900); }
.ba-card-shell.after  { background: var(--cream-mid); }
.ba-summary {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.6;
}
.ba-summary.before { background: rgba(113,169,247,.12); color: rgba(247,248,255,.92); }
.ba-summary.after  { background: rgba(107,92,165,.10); color: var(--teal); }

/* FILLABLE COMMIT CARD */
.cc-input {
  width: 100%;
  min-height: 138px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(76,16,54,.14);
  background: rgba(255,255,255,.76);
  color: var(--w800);
  font: 500 16px/1.55 var(--fb);
  resize: none;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.cc-input::placeholder { color: rgba(41,17,49,.48); }
.cc-input:focus {
  border-color: color-mix(in srgb, var(--terra) 52%, #fff 0%);
  background: rgba(255,255,255,.94);
  box-shadow: 0 0 0 4px rgba(113,169,247,.14), inset 0 1px 0 rgba(255,255,255,.7);
}
.cc-footnote {
  font-size: 13px;
  color: rgba(41,17,49,.72);
  margin-top: 10px;
}

/* TIMER CHIME */
.tbts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tbt.cue {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.tbt.cue.on {
  background: linear-gradient(135deg, rgba(113,169,247,.95) 0%, rgba(107,92,165,.95) 100%);
  border-color: transparent;
}
.tbt.cue.warn {
  box-shadow: 0 0 0 4px rgba(113,169,247,.18), 0 10px 26px rgba(0,0,0,.22);
}

@media (prefers-reduced-motion: reduce) {
  .s,
  .reveal-item,
  .nav-btn,
  .prog-dot,
  .card,
  .stat-card,
  .ag-item,
  .tool-row,
  .ex-box,
  .cc,
  .peqr-card,
  .carp-card,
  .layer {
    transition: none !important;
    animation: none !important;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


/* V4 additions: linked examples + added activities */
.s-act.act-plum {
  background: linear-gradient(135deg, rgba(76,16,54,.98), rgba(114,25,90,.94));
}
.s-act.act-gold {
  background: linear-gradient(135deg, rgba(107,92,165,.96), rgba(113,169,247,.92));
}
.source-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  max-width: 1380px;
}
.source-link-card,
.act-source-card,
.tool-link-chip {
  text-decoration: none;
}
.source-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 168px;
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(236,240,255,.92));
  border: 1px solid rgba(76,16,54,.12);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(19,15,24,.12);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.source-link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(113,169,247,.12), transparent 56%);
  pointer-events: none;
}
.source-link-card::after {
  content: '↗';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(76,16,54,.07);
  color: var(--w600);
  font-size: 15px;
  font-weight: 700;
}
.source-link-card:hover {
  transform: translateY(-6px);
  border-color: rgba(113,169,247,.45);
  box-shadow: 0 28px 56px rgba(19,15,24,.18);
}
.source-link-card strong { font-size: 18px; color: var(--w900); line-height: 1.2; max-width: calc(100% - 38px); }
.source-link-card small { font-size: 13px; line-height: 1.45; color: var(--w800); opacity: .86; max-width: 92%; }
.source-link-k {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(76,16,54,.06);
  color: var(--w600);
  border: 1px solid rgba(76,16,54,.1);
}
.source-link-card.stock {
  border-top: 5px solid var(--teal);
}
.source-link-card.stock .source-link-k {
  background: rgba(107,92,165,.10);
  color: var(--teal);
  border-color: rgba(107,92,165,.16);
}
.source-link-card.stock::before {
  background: linear-gradient(135deg, rgba(107,92,165,.14), transparent 58%);
}
.source-link-card.ai {
  border-top: 5px solid var(--plum);
}
.source-link-card.ai .source-link-k {
  background: rgba(114,25,90,.08);
  color: var(--plum);
  border-color: rgba(114,25,90,.16);
}
.source-link-card.ai::before {
  background: linear-gradient(135deg, rgba(114,25,90,.12), transparent 58%);
}

.act-source-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 22px 0 0 50px;
}
.act-source-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  min-height: 142px;
  box-shadow: 0 18px 40px rgba(19,15,24,.18);
  overflow: hidden;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.act-source-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.14), transparent 60%);
  pointer-events: none;
}
.act-source-card::after {
  content: '↗';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.act-source-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.10));
  border-color: rgba(255,255,255,.42);
  box-shadow: 0 26px 48px rgba(19,15,24,.24);
}
.act-source-card.original { cursor: default; }
.act-source-card.original::after { content: '•'; font-size: 18px; }
.act-source-k {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.act-source-card strong { font-size: 18px; line-height: 1.2; max-width: calc(100% - 36px); }
.act-source-card small { font-size: 13px; line-height: 1.45; color: rgba(255,255,255,.78); max-width: 92%; }
.act-source-card.stock { border-top: 4px solid #C6D8FF; }
.act-source-card.ai { border-top: 4px solid #71A9F7; }
.act-source-card.original { border-top: 4px solid #6B5CA5; }

.tool-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.tool-link-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(113,169,247,.12);
  border: 1px solid rgba(113,169,247,.28);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.tool-link-chip:hover {
  transform: translateY(-2px);
  background: rgba(113,169,247,.18);
  border-color: rgba(113,169,247,.48);
}

.card a,
.hbox a,
.sm a,
.c-body a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.card a:hover,
.hbox a:hover,
.sm a:hover,
.c-body a:hover { opacity: .92; }



/* ============================================================
   COLOR THEORY + TYPOGRAPHY ADDITIONS
   ============================================================ */
.color-type-grid {
  align-items: stretch;
}

.color-psych-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.emotion-card {
  border-radius: 18px;
  padding: 22px 22px 24px;
  color: #fff;
  min-height: 170px;
  box-shadow: var(--shadow-soft);
}
.emotion-blue { background: linear-gradient(145deg, #4A7CE8 0%, #71A9F7 100%); }
.emotion-red  { background: linear-gradient(145deg, #8E264A 0%, #D84A4A 100%); }
.emotion-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .72;
  margin-bottom: 14px;
}
.emotion-name {
  font-family: var(--fd);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.emotion-copy {
  font-size: 17px;
  line-height: 1.45;
  opacity: .92;
}

.color-wheel-card,
.type-demo-card {
  background: var(--cream-mid);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.color-wheel-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 18px;
  padding: 24px 24px 22px;
  margin-bottom: 16px;
  align-items: center;
}

.wheel-k,
.type-demo-k,
.mini-scheme-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.wheel-k { color: var(--plum); margin-bottom: 10px; }
.wheel-title {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 700;
  color: var(--w900);
  line-height: 1.1;
  margin-bottom: 10px;
}
.wheel-copy {
  font-size: 16px;
  line-height: 1.55;
  color: var(--w600);
  margin-bottom: 16px;
}
.wheel-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tool-link-chip.light {
  background: rgba(76,16,54,.06);
  color: var(--w900);
  border-color: rgba(76,16,54,.12);
}
.tool-link-chip.light:hover {
  background: rgba(76,16,54,.10);
  border-color: rgba(76,16,54,.22);
}

.wheel-graphic {
  position: relative;
  width: 268px;
  height: 268px;
  margin: 0 auto;
}
.wheel-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(
      #D84A4A 0deg 45deg,
      #F29E4C 45deg 90deg,
      #F4D35E 90deg 135deg,
      #6DB06C 135deg 180deg,
      #4A7CE8 180deg 225deg,
      #6B5CA5 225deg 270deg,
      #8D70C8 270deg 315deg,
      #C4629E 315deg 360deg
    );
  box-shadow: inset 0 0 0 22px rgba(255,255,255,.86), 0 18px 34px rgba(22,10,28,.10);
}
.wheel-center {
  position: absolute;
  inset: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: var(--w900);
  box-shadow: inset 0 0 0 1px rgba(41,17,49,.06);
}
.wheel-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 8px 14px rgba(22,10,28,.20);
}
.dot-primary { background:#4A7CE8; top: 185px; left: 48px; }
.dot-accent { background:#F29E4C; top: 58px; right: 52px; }
.dot-analog-1 { background:#6B5CA5; bottom: 42px; right: 80px; }
.dot-analog-2 { background:#8D70C8; bottom: 62px; right: 34px; }

.mini-scheme-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.mini-scheme-card {
  background: rgba(76,16,54,.04);
  border: 1px solid rgba(76,16,54,.08);
  border-radius: 16px;
  padding: 14px 14px 16px;
}
.mini-scheme-lbl {
  color: var(--w900);
  margin-bottom: 10px;
}
.mini-scheme-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.mini-scheme-strip span {
  display: block;
  height: 20px;
  flex: 1;
  border-radius: 999px;
}
.mini-scheme-note {
  font-size: 14px;
  line-height: 1.45;
  color: var(--w600);
}

.type-demo-card {
  padding: 24px 24px 22px;
}
.type-demo-k {
  color: var(--terra);
  margin-bottom: 10px;
}
.type-demo-display {
  font-family: var(--fb);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--w900);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.type-demo-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--w600);
  margin-bottom: 16px;
}
.type-scale-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.type-scale-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(113,169,247,.12);
  color: var(--w900);
  border: 1px solid rgba(113,169,247,.18);
  font-size: 13px;
  font-weight: 600;
}

.s-disc-design {
  background: linear-gradient(145deg, #4A7CE8 0%, #6B5CA5 100%);
}
.s-disc-design .disc-lbl,
.s-disc-design .disc-time,
.s-disc-design .disc-list li,
.s-disc-design .disc-q {
  color: #fff;
}
.s-disc-design .disc-list li::before {
  color: rgba(255,255,255,.72);
}

/* Activity step readability upgrades */
.act-step-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.act-step-title {
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}
.act-step-copy {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.84);
}
.choice-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.choice-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15,10,20,.14);
}
.choice-chip.link {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.choice-chip.link:hover,
.choice-chip.link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.44);
  outline: none;
}
.choice-chip.static {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.18);
}
.s-act .act-steps li {
  align-items: flex-start;
}
