/* =======================================================================
   Claude Code 活用術セミナー — custom overrides / additions to slides.css
   ======================================================================= */

/* Ensure the deck canvas shows the white slide behind shadow DOM */
html, body { margin: 0; background: #000; }

/* -------- Hype cover (情報商材屋風 表紙) -------- */
.slide.hype-cover {
  width: 1920px;
  height: 1080px;
  position: relative;
  background: #000;
  overflow: hidden;
}
.slide.hype-cover .hype-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide.hype-cover .hype-meta {
  position: absolute;
  left: 64px;
  bottom: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.72);
  padding: 14px 24px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.slide.hype-cover .hype-presenter {
  position: absolute;
  right: 64px;
  bottom: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.72);
  padding: 12px 20px;
  border-radius: 999px;
  z-index: 2;
}

/* -------- Intro / profile slide -------- */
.profile-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  height: 100%;
}
.profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(135deg, #A51E6D, #8C52FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 96px;
  font-weight: 900;
  box-shadow: 0 12px 40px rgba(51, 51, 51, 0.18);
}
.profile-body h3 {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  line-height: 1.15;
}
.profile-body .role {
  font-size: 32px;
  color: var(--neutral-2);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.profile-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 28px;
  color: var(--neutral-1);
  line-height: 1.5;
}
.profile-body ul li::before {
  content: "・";
  color: var(--primary-0);
  font-weight: 700;
  margin-right: 8px;
}

/* -------- Agenda row with time stamps -------- */
.agenda-big li { padding: 28px 8px; font-size: 38px; }
.agenda-big .num { font-size: 48px; }
.agenda-big .time { font-size: 26px; }

/* -------- Two column generic layout -------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.card {
  background: #fff;
  border: 1px solid var(--neutral-9);
  border-radius: 24px;
  padding: 48px 48px;
  box-shadow: 0 4px 24px rgba(51, 51, 51, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card.filled {
  background: var(--primary-9);
  border-color: transparent;
}
.card.dark {
  background: var(--neutral-0);
  color: #fff;
  border-color: transparent;
}
.card h4 {
  font-size: 40px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.card .desc {
  font-size: 26px;
  line-height: 1.6;
  color: var(--neutral-1);
  margin: 0;
}
.card.dark .desc { color: rgba(255,255,255,0.88); }

/* -------- Tip slide (BEFORE / AFTER / POINT) -------- */
.tip-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
}
.tip-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF5757, #8C52FF);
  color: #fff;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 32px;
  font-weight: 900;
  flex: none;
  letter-spacing: 0;
}
.tip-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  flex: 1;
}
.tip-subtitle {
  font-size: 26px;
  color: var(--neutral-2);
  margin: 0 0 28px;
  letter-spacing: 0.02em;
}
.tip-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.tip-panel {
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 320px;
}
.tip-panel .t-lbl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tip-panel.before {
  background: var(--neutral-9);
  color: var(--neutral-1);
}
.tip-panel.before .t-lbl { color: var(--neutral-3); }
.tip-panel.after {
  background: var(--primary-0);
  color: #fff;
}
.tip-panel.after .t-lbl { color: rgba(255,255,255,0.7); }
.tip-panel h5 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0;
  line-height: 1.3;
}
.tip-panel ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 22px;
  line-height: 1.5;
}
.tip-panel li { padding-left: 20px; position: relative; }
.tip-panel li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.7;
}
.tip-footer {
  margin-top: 28px;
  padding: 24px 32px;
  background: #fff;
  border: 2px solid var(--primary-0);
  border-radius: 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.tip-footer .f-lbl {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-0);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex: none;
}
.tip-footer .f-body {
  font-size: 24px;
  line-height: 1.55;
  color: var(--neutral-1);
}

/* -------- Code mock block -------- */
.code-mock {
  background: #1f1f1f;
  color: #E0E0E0;
  border-radius: 16px;
  padding: 28px 32px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow: hidden;
}
.code-mock .cm-dim { color: #8A8A8A; }
.code-mock .cm-key { color: #FF8A8A; }
.code-mock .cm-val { color: #A5D7F5; }
.code-mock .cm-ok  { color: #8AF2B5; }
.code-mock .cm-warn { color: #FFD777; }

/* -------- Check / X bullet lists -------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 28px;
  line-height: 1.5;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: var(--primary-9);
  border-radius: 16px;
}
.checklist li.bad { background: var(--neutral-9); }
.checklist .ico {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary-0);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  flex: none;
}
.checklist li.bad .ico { background: var(--neutral-3); }

/* -------- Stat grid (multi KPI) -------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--neutral-9);
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-card .num {
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FF5757, #8C52FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-card .num .u {
  font-size: 40px;
  margin-left: 4px;
}
.stat-card .lbl {
  font-size: 24px;
  color: var(--neutral-2);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* -------- Warning box -------- */
.warn-box {
  background: #FFF1EE;
  border: 2px solid #FF5757;
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.warn-box .w-ico {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #FF5757;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  flex: none;
}
.warn-box h5 {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 12px;
  color: #C93D3D;
  letter-spacing: -0.01em;
}
.warn-box p {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  color: var(--neutral-1);
}

/* -------- Flow / steps -------- */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}
.flow .step {
  background: #fff;
  border: 2px solid var(--primary-0);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flow .step .n {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-0);
}
.flow .step .t {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.flow .step .d {
  font-size: 18px;
  line-height: 1.4;
  color: var(--neutral-2);
  margin: 0;
}

/* -------- Section title helper -------- */
.sect-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 32px;
}
.sect-intro .eyebrow-inline { margin: 0; }
.sect-intro h2 {
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.sect-intro p {
  font-size: 32px;
  line-height: 1.5;
  color: var(--neutral-1);
  margin: 0;
  max-width: 1200px;
  letter-spacing: 0.02em;
}

/* -------- Closing CTA -------- */
.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cta-steps .step {
  background: linear-gradient(135deg, #FF5757, #8C52FF);
  color: #fff;
  border-radius: 24px;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 360px;
  box-shadow: 0 12px 40px rgba(51, 51, 51, 0.16);
}
.cta-steps .step .n {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0.72;
}
.cta-steps .step h4 {
  font-size: 40px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.cta-steps .step p {
  font-size: 24px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.92;
}

/* -------- Utility: small chip -------- */
.chip {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary-0);
  color: #fff;
  margin-right: 8px;
}
.chip.teal  { background: var(--secondary-0); }
.chip.dim   { background: var(--neutral-3); }

/* -------- Table-like 3列リスト -------- */
.row-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.row-list .row {
  display: grid;
  grid-template-columns: 160px 1fr 1.4fr;
  gap: 20px;
  align-items: center;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--neutral-9);
  border-radius: 12px;
  font-size: 20px;
  line-height: 1.45;
}
.row-list .row.head {
  background: var(--neutral-0);
  color: #fff;
  border-color: transparent;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.row-list .row .k {
  font-weight: 700;
  color: var(--primary-0);
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 19px;
  letter-spacing: 0;
}
.row-list .row.head .k { color: #fff; }
/* Compact variant for long tables (e.g. Slide 13 · 11行) */
.row-list.dense .row { padding: 9px 18px; font-size: 19px; }
.row-list.dense .row .k { font-size: 17px; }
