/* ============================================
   SHIFT AI DESIGN TEAM — Monthly Report Slide
   16:9 / 1920×1080 / cqw scaling
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Inter:wght@300;400;700;900&display=swap');

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

:root {
  --c-base: #FFFFFF;
  --c-main: #333333;
  --c-accent: #a51e6d;

  --c-base-dim: #F8F5F7;
  --c-main-light: rgba(51, 51, 51, 0.06);
  --c-main-mid: rgba(51, 51, 51, 0.5);
  --c-accent-light: rgba(165, 30, 109, 0.08);
  --c-accent-lighter: rgba(165, 30, 109, 0.04);
  --c-text: #1A1A1A;
  --c-text-sub: #777777;
  --c-border: rgba(165, 30, 109, 0.12);
  --c-card-shadow: rgba(165, 30, 109, 0.08);

  --grad-brand: linear-gradient(135deg, #e6033d, #673ba0);
  --grad-brand-b: linear-gradient(135deg, #c06299, #a51e6d);
  --grad-sub: linear-gradient(135deg, #32bed2, #039578);
}

body {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  background: var(--c-main);
  color: var(--c-text);
  overflow: hidden;
  cursor: url('../assets/cursor-icon.png') 48 48, auto !important;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ============================================
   SLIDE STAGE
   ============================================ */
.slide-stage {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  background: var(--c-base);
}

.slide {
  width: 100vw;
  height: 100vh;
  max-width: calc(100vh * 16 / 9);
  max-height: calc(100vw * 9 / 16);
  margin: auto;
  position: relative;
  overflow: hidden;
  background: var(--c-base);
  container-type: inline-size;
  display: none;
}
.slide.active { display: flex; align-items: center; justify-content: center; }

.slide-content {
  padding: 4.2cqw;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* ============================================
   TYPOGRAPHY — cqw
   ============================================ */
.slide-hero   { font-size: 7.2cqw; font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
.slide-h1     { font-size: 4.2cqw; font-weight: 700; line-height: 1.15; }
.slide-h2     { font-size: 3cqw; font-weight: 700; line-height: 1.25; }
.slide-h3     { font-size: 2.4cqw; font-weight: 700; line-height: 1.3; }
.slide-title  { font-size: 2cqw; font-weight: 400; line-height: 1.4; }
.slide-body   { font-size: 1.6cqw; font-weight: 400; line-height: 1.7; letter-spacing: 0.02em; }
.slide-caption { font-size: 1.3cqw; font-weight: 300; line-height: 1.5; }
.slide-micro  { font-size: 1cqw; font-weight: 300; }
.slide-number { font-size: 9cqw; font-weight: 700; line-height: 1; }

.text-accent { color: var(--c-accent); }
.text-main   { color: var(--c-main); }
.text-sub    { color: var(--c-text-sub); }
.text-white  { color: #FFFFFF; }
.text-center { text-align: center; }

/* ============================================
   COVER — Brand Gradient
   ============================================ */
.cover-slide {
  background: var(--grad-brand);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cover-slide::before {
  content: '';
  position: absolute;
  top: -30%; left: -30%;
  width: 160%; height: 160%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(103,59,160,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.cover-slide .cover-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2cqw;
}
.cover-line {
  width: 6cqw;
  height: 0.2cqw;
  background: rgba(255,255,255,0.6);
}
.cover-team-name {
  font-size: 5.5cqw;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.1;
}
.cover-team-name span {
  display: block;
  font-size: 3cqw;
  font-weight: 300;
  letter-spacing: 0.3em;
  margin-top: 0.8cqw;
}
.cover-month {
  font-size: 2.8cqw;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.2em;
}
.cover-tagline {
  font-size: 1.4cqw;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-top: 1cqw;
}
/* Grid pattern overlay */
.cover-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 4cqw 4cqw;
  pointer-events: none;
}

/* ============================================
   SECTION BRIDGE
   ============================================ */
.section-bridge {
  background: var(--c-main);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5cqw;
  position: relative;
}
.section-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: 0.15;
}
.section-bridge .bridge-label {
  font-size: 1.3cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.2em;
  position: relative;
  opacity: 0.7;
}
.section-bridge .bridge-title {
  font-size: 4.5cqw;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.section-bridge .bridge-line {
  width: 5cqw;
  height: 0.2cqw;
  background: var(--c-accent);
  position: relative;
}

/* ============================================
   BIG NUMBER 3-COL
   ============================================ */
/* KGI Center */
.kgi-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
.kgi-slide .section-label {
  font-size: 1.2cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3cqw;
}
.kgi-text {
  font-size: 3.8cqw;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.6;
  max-width: 80%;
}

.big-number-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 3cqw;
}
.big-number-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.big-number-section .section-headline {
  font-size: 3cqw;
  font-weight: 700;
  color: var(--c-text);
}
.big-number-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5cqw;
  flex: 1;
  align-items: center;
}
.big-number-card {
  background: var(--c-base-dim);
  border-radius: 0.25cqw;
  padding: 3cqw 2cqw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-number-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0.3cqw;
  background: var(--grad-brand);
}
.big-number-card .num {
  font-size: 7cqw;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.big-number-card .num-unit {
  font-size: 2.5cqw;
  font-weight: 700;
  -webkit-text-fill-color: var(--c-accent);
  margin-left: 0.3cqw;
}
.big-number-card .num-label {
  font-size: 1.5cqw;
  font-weight: 400;
  color: var(--c-text-sub);
  margin-top: 0.8cqw;
}

/* ============================================
   MEMBER BAR CHART
   ============================================ */
.bar-chart-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2cqw;
}
.bar-chart-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
}
.bar-chart-section .section-headline {
  font-size: 2.6cqw;
  font-weight: 700;
}
.bar-chart-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2cqw;
}
.bar-row {
  display: grid;
  grid-template-columns: 6cqw 1fr 6cqw;
  align-items: center;
  gap: 1.2cqw;
}
.bar-name {
  font-size: 1.4cqw;
  font-weight: 700;
  text-align: right;
  color: var(--c-text);
}
.bar-track {
  height: 2.5cqw;
  background: var(--c-base-dim);
  border-radius: 0.1cqw;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  border-radius: 0.1cqw;
  background: var(--grad-brand);
  transition: width 0.8s ease;
}
.bar-value {
  font-size: 1.3cqw;
  font-weight: 700;
  color: var(--c-accent);
}

/* ============================================
   LINE CHART (SVG-based)
   ============================================ */
.chart-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2cqw;
}
.chart-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
}
.chart-section .section-headline {
  font-size: 2.6cqw;
  font-weight: 700;
}
.chart-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-wrapper svg {
  width: 100%;
  height: 100%;
}
.chart-line {
  fill: none;
  stroke: url(#brandGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chart-area {
  fill: url(#brandGradArea);
}
.chart-dot {
  fill: var(--c-accent);
  stroke: #fff;
  stroke-width: 2;
}
.chart-label {
  font-size: 14px;
  fill: var(--c-text-sub);
  font-family: "Noto Sans JP", sans-serif;
}
.chart-value {
  font-size: 14px;
  fill: var(--c-text);
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.chart-grid-line {
  stroke: var(--c-border);
  stroke-width: 1;
  stroke-dasharray: 4,4;
}

/* Combo chart extras */
.section-subheadline {
  font-size: 1.6cqw;
  font-weight: 400;
  color: var(--c-text-sub);
  margin-top: -1cqw;
}
.combo-legend {
  display: flex;
  gap: 2.5cqw;
  align-items: center;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.6cqw;
  font-size: 1.2cqw;
  font-weight: 700;
  color: var(--c-text);
}
.legend-bar {
  display: inline-block;
  width: 1.8cqw;
  height: 1.2cqw;
  border-radius: 0.1cqw;
  background: linear-gradient(180deg, #c06299, #a51e6d);
}
.legend-line {
  display: inline-block;
  width: 2cqw;
  height: 0.2cqw;
  background: #333;
  position: relative;
}
.legend-line::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0.6cqw;
  height: 0.6cqw;
  border-radius: 50%;
  background: #333;
}

/* ============================================
   PHOTO GRID PLACEHOLDER
   ============================================ */
.works-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2cqw;
}
.works-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
}
.works-section .section-headline {
  font-size: 2.6cqw;
  font-weight: 700;
}
.works-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5cqw;
}
.work-placeholder {
  background: var(--c-base-dim);
  border-radius: 0.1cqw;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.work-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: 0.03;
}
.work-placeholder .placeholder-icon {
  font-size: 3cqw;
  color: var(--c-accent);
  opacity: 0.25;
  position: relative;
}

/* ============================================
   BULLET CARDS
   ============================================ */
.bullets-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2.5cqw;
}
.bullets-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
}
.bullets-section .section-headline {
  font-size: 2.6cqw;
  font-weight: 700;
}
.bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2cqw;
  flex: 1;
  align-items: center;
}
.bullet-card {
  background: var(--c-base);
  border: 1px solid var(--c-border);
  border-radius: 0.25cqw;
  padding: 2.5cqw 2cqw;
  text-align: center;
  box-shadow: 0 0.2cqw 1.2cqw var(--c-card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2cqw;
  position: relative;
  overflow: hidden;
}
.bullet-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0.25cqw;
  background: var(--grad-brand);
}
.bullet-icon {
  font-size: 3.5cqw;
  color: var(--c-accent);
}
.bullet-icon svg {
  width: 3cqw;
  height: 3cqw;
  stroke: var(--c-accent);
}
.bullet-title {
  font-size: 1.8cqw;
  font-weight: 700;
  color: var(--c-text);
}
.bullet-body {
  font-size: 1.3cqw;
  color: var(--c-text-sub);
  line-height: 1.6;
}

/* ============================================
   PHOTO ROW (横1列・縦長最大化)
   ============================================ */
.photo-row-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.5cqw;
}
.photo-row-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
}
.photo-row-section .section-headline {
  font-size: 2.6cqw;
  font-weight: 700;
}
.photo-row {
  flex: 1;
  display: flex;
  gap: 1.2cqw;
  align-items: stretch;
  min-height: 0;
}
.photo-row-cell {
  flex: 1;
  border-radius: 0.1cqw;
  overflow: hidden;
  background: var(--c-base-dim);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.photo-row-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ============================================
   PHOTO GRID 4
   ============================================ */
.photo-grid-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.5cqw;
}
.photo-grid-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
}
.photo-grid-section .section-headline {
  font-size: 2.6cqw;
  font-weight: 700;
}
.photo-grid-4 {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2cqw;
  min-height: 0;
}
.photo-cell {
  border-radius: 0.1cqw;
  overflow: hidden;
  background: var(--c-base-dim);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ============================================
   EVENT CARDS
   ============================================ */
.events-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2cqw;
}
.events-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
}
.events-section .section-headline {
  font-size: 2.6cqw;
  font-weight: 700;
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.8cqw;
  align-items: start;
}
.event-card {
  background: var(--c-base);
  border: 1px solid var(--c-border);
  border-radius: 0.25cqw;
  padding: 1.8cqw;
  box-shadow: 0 0.2cqw 1.2cqw var(--c-card-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6cqw;
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0.3cqw;
  background: var(--grad-brand);
}
.event-date {
  font-size: 1.2cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.05em;
}
.event-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--c-accent-light);
  color: var(--c-accent);
  font-size: 0.95cqw;
  font-weight: 700;
  padding: 0.25cqw 0.8cqw;
  border-radius: 0.15cqw;
  letter-spacing: 0.05em;
}
.event-title {
  font-size: 1.7cqw;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.25;
}
.event-org {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-text-sub);
}
.event-desc {
  font-size: 1.05cqw;
  color: var(--c-text-sub);
  line-height: 1.55;
}
.event-link-area {
  display: flex;
  align-items: center;
  gap: 1cqw;
  padding-top: 0.8cqw;
  border-top: 1px solid var(--c-border);
}
.event-qr {
  flex-shrink: 0;
  width: 5.5cqw;
  height: 5.5cqw;
  border-radius: 0.1cqw;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: #fff;
}
.event-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.event-url {
  font-size: 0.85cqw;
  color: var(--c-accent);
  word-break: break-all;
  opacity: 0.7;
}

/* ============================================
   TOOLS SHOWCASE
   ============================================ */
.tools-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2cqw;
}
.tools-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
}
.tools-section .section-headline {
  font-size: 2.6cqw;
  font-weight: 700;
}
.tools-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5cqw;
  align-items: stretch;
}
.tool-card {
  background: var(--c-base);
  border: 1px solid var(--c-border);
  border-radius: 0.25cqw;
  padding: 1.8cqw;
  box-shadow: 0 0.2cqw 1.2cqw var(--c-card-shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0.25cqw;
  background: var(--grad-brand);
}
.tool-card-inner {
  display: flex;
  align-items: center;
  gap: 1.5cqw;
  width: 100%;
  height: 100%;
}
.tool-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6cqw;
  min-width: 0;
}
.tool-name {
  font-size: 1.7cqw;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
}
.tool-desc {
  font-size: 1.15cqw;
  color: var(--c-text-sub);
  line-height: 1.5;
}
.tool-url {
  font-size: 0.9cqw;
  color: var(--c-accent);
  font-weight: 400;
  word-break: break-all;
  opacity: 0.7;
}
.tool-qr {
  flex-shrink: 0;
  width: 8cqw;
  height: 8cqw;
  border-radius: 0.25cqw;
  overflow: hidden;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.tool-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================
   FEATURE HIGHLIGHT
   ============================================ */
.feature-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.5cqw;
}
.feature-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2cqw;
}
.feature-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.6cqw;
}
.feature-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
}
.feature-section .section-headline {
  font-size: 2.6cqw;
  font-weight: 700;
}
.feature-image {
  flex-shrink: 0;
  width: 48cqw;
  border-radius: 0.1cqw;
  overflow: hidden;
  box-shadow: 0 0.3cqw 1.5cqw rgba(0,0,0,0.12);
  border: 1px solid var(--c-border);
}
.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}
.feature-footnote {
  font-size: 1.1cqw;
  color: var(--c-accent);
  font-weight: 700;
  margin-top: 0.3cqw;
}
.feature-status {
  display: inline-block;
  align-self: flex-start;
  font-size: 1.1cqw;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  padding: 0.3cqw 1cqw;
  border-radius: 0.15cqw;
}
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5cqw;
  flex: 1;
  justify-content: center;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 1.8cqw;
  background: var(--c-base-dim);
  border-radius: 0.1cqw;
  padding: 2cqw 2.2cqw;
  border-left: 0.3cqw solid var(--c-accent);
}
.feature-icon {
  font-size: 3cqw;
  flex-shrink: 0;
  color: var(--c-accent);
}
.feature-icon svg {
  width: 2.5cqw;
  height: 2.5cqw;
  stroke: var(--c-accent);
}
.feature-info {
  display: flex;
  flex-direction: column;
  gap: 0.3cqw;
}
.feature-title {
  font-size: 1.7cqw;
  font-weight: 700;
  color: var(--c-text);
}
.feature-body {
  font-size: 1.2cqw;
  color: var(--c-text-sub);
  line-height: 1.5;
}

/* ============================================
   LINK STYLES (QR clickable)
   ============================================ */
a.tool-qr,
a.event-link-area {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s ease;
  position: relative;
  z-index: 20;
}
a.tool-qr:hover,
a.event-link-area:hover {
  opacity: 0.75;
}

/* ============================================
   CLOSING
   ============================================ */
.closing-slide {
  background: var(--grad-brand);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2cqw;
  position: relative;
}
.closing-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 4cqw 4cqw;
  pointer-events: none;
}
.closing-title {
  font-size: 6cqw;
  font-weight: 700;
  color: #fff;
  position: relative;
  letter-spacing: 0.05em;
}
.closing-sub {
  font-size: 1.8cqw;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2em;
  position: relative;
}
.closing-line {
  width: 5cqw;
  height: 0.2cqw;
  background: rgba(255,255,255,0.4);
  position: relative;
}

/* ============================================
   ACCENT LINE (top decorator)
   ============================================ */
.accent-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0.3cqw;
  background: var(--grad-brand);
}

/* ============================================
   TIMER
   ============================================ */
.timer {
  position: fixed;
  top: 10px; left: 14px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 3px;
  padding: 3px 6px;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
.timer:hover { opacity: 1; }
.timer-display {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-main);
  min-width: 36px;
  text-align: center;
  user-select: none;
}
.timer-display.warning { color: #e6033d; }
.timer-adj, .timer-toggle {
  border: none;
  background: none;
  cursor: url('../assets/cursor-icon.png') 48 48, pointer;
  font-size: 11px;
  color: var(--c-text-sub);
  padding: 2px 5px;
  border-radius: 2px;
  line-height: 1;
  font-family: "Inter", sans-serif;
  transition: background 0.15s ease;
}
.timer-adj:hover, .timer-toggle:hover {
  background: rgba(0,0,0,0.06);
}
.timer-toggle {
  font-size: 10px;
  color: var(--c-accent);
}

/* ============================================
   UI — Status bar, Nav, Sidebar, Script
   ============================================ */
.slide-nav {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}
.nav-left, .nav-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: url('../assets/cursor-icon.png') 48 48, pointer;
  pointer-events: all;
}
.nav-left { left: 0; cursor: url('../assets/cursor-icon.png') 48 48, auto; }
.nav-right { right: 0; cursor: url('../assets/cursor-icon.png') 48 48, auto; }

/* Status */
.status-bar {
  position: fixed;
  top: 12px; right: 60px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: var(--c-text-sub);
  background: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.status-section { font-weight: 700; color: var(--c-accent); }
.status-count { color: var(--c-text-sub); }

/* Progress */
.progress-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(0,0,0,0.05);
  z-index: 100;
}
.progress-fill {
  height: 100%;
  background: var(--grad-brand);
  transition: width 0.3s ease;
}

/* Menu button */
.menu-btn {
  position: fixed;
  top: 10px; right: 14px;
  z-index: 200;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 3px;
  cursor: url('../assets/cursor-icon.png') 48 48, pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.menu-btn span {
  display: block;
  width: 18px; height: 2px;
  background: var(--c-main);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Sidebar */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.sidebar {
  position: fixed;
  top: 0; right: -320px; bottom: 0;
  width: 320px;
  background: #fff;
  z-index: 310;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.sidebar-overlay.open .sidebar {
  right: 0;
}
.sidebar-header {
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--c-border);
}
.sidebar-section {
  padding: 12px 20px 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.1em;
}
.sidebar-item {
  padding: 8px 20px;
  font-size: 13px;
  color: var(--c-text-sub);
  cursor: url('../assets/cursor-icon.png') 48 48, pointer;
  transition: background 0.15s ease;
}
.sidebar-item:hover { background: var(--c-accent-light); }
.sidebar-item.current {
  color: var(--c-accent);
  font-weight: 700;
  background: var(--c-accent-lighter);
}

/* Talk script */
.script-trigger {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  z-index: 50;
}
.script-panel {
  position: fixed;
  bottom: -40vh; left: 0; right: 0;
  max-height: 30vh;
  background: rgba(26,26,26,0.92);
  color: #eee;
  font-size: 15px;
  line-height: 1.8;
  padding: 24px 40px;
  z-index: 60;
  transition: bottom 0.2s ease;
  overflow-y: auto;
  backdrop-filter: blur(12px);
  font-family: "Noto Sans JP", sans-serif;
}
.script-panel.visible {
  bottom: 0;
}

/* ============================================
   WORKFLOW DIAGRAM
   ============================================ */
.workflow-section {
  width: 100%;
  height: 100%;
  padding: 3cqw 2.5cqw 2cqw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.workflow-diagram-wrap {
  width: 100%;
  margin-top: 1.5cqw;
}
.workflow-diagram-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  font-family: "Noto Sans JP", "Inter", sans-serif;
}

/* ============================================
   IDEAL WORKFLOW
   ============================================ */
.iw-section {
  width: 100%;
  height: 100%;
  padding: 3cqw 2.5cqw 2cqw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8cqw;
}
.iw-section .section-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.15em;
}
.iw-section .section-headline {
  font-size: 2.6cqw;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.2cqw;
}
.iw-diagram-wrap {
  width: 100%;
}
.iw-diagram-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  font-family: "Noto Sans JP", "Inter", sans-serif;
}
.iw-req-section {
  display: flex;
  flex-direction: column;
  gap: 0.6cqw;
  margin-top: 0.4cqw;
}
.iw-req-title {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-text-sub);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.iw-req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8cqw;
}
.iw-req-item {
  background: var(--c-base-dim);
  border: 1px solid var(--c-border);
  border-radius: 0.8cqw;
  padding: 0.9cqw 1cqw;
  display: flex;
  flex-direction: column;
  gap: 0.4cqw;
}
.iw-req-label {
  font-size: 1.2cqw;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.iw-req-status {
  display: inline-flex;
  align-items: center;
  font-size: 1.0cqw;
  font-weight: 700;
  padding: 0.2cqw 0.6cqw;
  border-radius: 99px;
  align-self: flex-start;
}
.iw-req-note {
  font-size: 0.95cqw;
  color: var(--c-text-sub);
  line-height: 1.5;
}

/* ============================================
   ART-DIRECTION LAYOUTS (merged)
   ============================================ */

/* ── Shared helpers ── */
.slide-header-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72cqw;
  flex: 0 0 auto;
}
.slide-header-stack.is-centered {
  align-items: center;
  text-align: center;
}
.slide-body-block {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.18cqw 0.7cqw;
  background: rgba(255,255,255,0.82);
  border-radius: 999px;
  color: #8a1859;
  font-size: 0.95cqw;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.5cqw;
}
.slide-h3 {
  font-size: 2.4cqw;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

/* ── AD Cover ── */
.slide-cover {
  background: linear-gradient(155deg, #131426 0%, #1A1A2E 56%, #21233d 100%);
  color: #fff;
}
.slide-cover .slide-content {
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.3cqw;
  padding: 5.2cqw 5cqw;
}
.slide-cover .cover-title {
  font-size: 5.35cqw;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.slide-cover .cover-date {
  order: -1;
  font-size: 1.08cqw;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.14em;
}

/* ── AD Section Divider ── */
.slide-section { background: var(--c-accent); color: #fff; }
.slide-section .slide-content {
  align-items: center;
  text-align: center;
  gap: 1.5cqw;
}
.section-divider-title {
  font-size: 4.5cqw;
  font-weight: 900;
  line-height: 1.2;
}
.section-divider-sub {
  font-size: 1.6cqw;
  color: rgba(255,255,255,0.75);
}
.section-divider-line {
  width: 5cqw; height: 0.2cqw;
  background: rgba(255,255,255,0.4);
}

/* ── AD Split-2 / Split-3 ── */
.slide-split2 .slide-content,
.slide-split3 .slide-content {
  justify-content: flex-start;
  padding-top: 2.6cqw;
}
.slide-split2.is-centered .slide-content,
.slide-split3.is-centered .slide-content {
  justify-content: center;
  align-items: center;
  padding-top: 4.2cqw;
}
.ad-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5cqw;
  align-items: stretch;
  width: 100%;
}
.ad-split-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2cqw;
}
.ad-split-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(165,30,109,0.12);
  border-radius: 0.9cqw;
  padding: 2.5cqw;
  display: flex;
  flex-direction: column;
  gap: 1.2cqw;
  height: 100%;
  box-shadow: 0 0.45cqw 1.4cqw rgba(165,30,109,0.06);
}
.ad-split-card-minimal {
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 18cqw;
}
.ad-split-card-label {
  font-size: 1.1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ad-split-card-title {
  font-size: 2.4cqw;
  font-weight: 700;
  line-height: 1.3;
  white-space: pre-line;
}
.ad-split-card-minimal .ad-split-card-title {
  font-size: 2.35cqw;
}
.ad-split-card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8cqw;
}
.ad-split-card-items li {
  font-size: 1.52cqw;
  line-height: 1.5;
  padding-left: 1.2cqw;
  position: relative;
  color: var(--c-text-sub);
}
.ad-split-card-items li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6cqw;
  width: 0.4cqw; height: 0.4cqw;
  border-radius: 50%;
  background: var(--c-accent);
}

/* slide-share-method overrides */
.slide-share-method .slide-content {
  padding-top: 2.6cqw;
  padding-bottom: 2.8cqw;
  gap: 1.2cqw;
}
.slide-share-method .slide-header-stack {
  align-items: center;
  text-align: center;
  gap: 0.7cqw;
}
.slide-share-method .slide-body {
  max-width: 60cqw;
  text-align: center;
}
.slide-share-method .ad-split-card {
  padding-top: 2.35cqw;
}
.slide-share-method .ad-split-card-title {
  font-size: 1.95cqw;
}
.slide-share-method .ad-split-card-items li {
  font-size: 1.36cqw;
  line-height: 1.56;
}

/* ── AD Table ── */
.slide-table-ad .slide-content {
  justify-content: flex-start;
  padding-top: 2.5cqw;
  gap: 1cqw;
}
.ad-table-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9cqw;
  margin-bottom: 1cqw;
}
.ad-table-highlight {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(165,30,109,0.12);
  border-radius: 0.8cqw;
  padding: 0.8cqw 1cqw;
}
.ad-table-highlight-label {
  font-size: 0.95cqw;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 0.35cqw;
}
.ad-table-highlight-value {
  font-size: 1.22cqw;
  font-weight: 700;
  line-height: 1.3;
}
.ad-table-wrapper {
  flex: 1;
  min-height: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(165,30,109,0.08);
  border-radius: 0.9cqw;
  overflow: hidden;
}
.slide-table-ad table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.slide-table-ad th {
  font-size: 1.2cqw;
  font-weight: 700;
  padding: 1cqw 1.2cqw;
  text-align: left;
  background: #1A1A2E;
  color: #fff;
  border-bottom: 0.15cqw solid var(--c-accent);
}
.slide-table-ad td {
  font-size: 1.15cqw;
  padding: 0.8cqw 1.2cqw;
  line-height: 1.4;
  vertical-align: top;
  white-space: pre-line;
}
.slide-table-ad tbody tr + tr td {
  border-top: 1px solid rgba(26,26,46,0.05);
}
.slide-table-ad tr:nth-child(even) td {
  background: rgba(245,240,243,0.72);
}
.ad-td-rank {
  font-weight: 700;
  color: var(--c-accent);
  font-size: 1.3cqw;
}
/* slide-table-compact */
.slide-table-compact .slide-table-ad .slide-content,
.slide-table-compact.slide-table-ad .slide-content {
  padding-top: 2.5cqw;
  padding-bottom: 2.5cqw;
}
.slide-table-compact .slide-h2 {
  font-size: 2.55cqw;
}
.slide-table-compact .slide-table-ad th {
  font-size: 0.94cqw;
  padding: 0.46cqw 0.7cqw;
}
.slide-table-compact .slide-table-ad td {
  font-size: 0.9cqw;
  line-height: 1.22;
  padding: 0.34cqw 0.7cqw;
}
.slide-table-compact .ad-td-rank { font-size: 0.98cqw; }
/* slide-review-table */
.slide-review-table .slide-content {
  padding-top: 2.5cqw;
  padding-bottom: 2.5cqw;
  gap: 1cqw;
}
.slide-review-table .slide-h2 { font-size: 2.7cqw; }
.slide-review-table .slide-table-ad table { table-layout: fixed; }
.slide-review-table .ad-table-highlights { margin-bottom: 1cqw; }
.slide-review-table .ad-table-highlight-label { font-size: 0.98cqw; }
.slide-review-table .ad-table-highlight-value { font-size: 1.28cqw; }
.slide-review-table .slide-table-ad th {
  font-size: 1.12cqw;
  padding: 0.92cqw 0.9cqw;
}
.slide-review-table .slide-table-ad th:nth-child(1),
.slide-review-table .slide-table-ad td:nth-child(1) { width: 18%; }
.slide-review-table .slide-table-ad th:nth-child(2),
.slide-review-table .slide-table-ad td:nth-child(2) { width: 32%; }
.slide-review-table .slide-table-ad td {
  font-size: 1.12cqw;
  line-height: 1.48;
  padding: 0.82cqw 0.9cqw;
  overflow-wrap: anywhere;
}
.slide-review-table .ad-td-rank { font-size: 1.16cqw; }

/* ── AD Flow-H ── */
.slide-flow-ad .ad-flow-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5cqw;
}
.ad-flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8cqw;
  text-align: center;
  padding: 1.5cqw 0.9cqw 1.4cqw;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(165,30,109,0.12);
  border-radius: 0.9cqw;
  min-height: 14.4cqw;
}
.ad-flow-step-circle {
  width: 5cqw; height: 5cqw;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8cqw;
  font-weight: 700;
}
.ad-flow-step-label {
  font-size: 1.4cqw;
  font-weight: 700;
  line-height: 1.3;
  white-space: pre-line;
}
.ad-flow-step-desc {
  font-size: 1.1cqw;
  color: var(--c-text-sub);
  line-height: 1.4;
  white-space: pre-line;
}
.ad-flow-arrow {
  font-size: 2cqw;
  color: var(--c-accent);
  flex-shrink: 0;
}
/* slide-large overrides */
.slide-large .slide-flow-ad .slide-content {
  padding-top: 3cqw;
  padding-bottom: 3cqw;
  gap: 1.2cqw;
}
.slide-large .slide-flow-ad .slide-h2 {
  font-size: 4.15cqw;
  line-height: 1.15;
}
.slide-large .slide-flow-ad .slide-body {
  font-size: 1.84cqw;
  line-height: 1.42;
}
.slide-large .slide-flow-ad .ad-flow-container { gap: 0.9cqw; }
.slide-large .slide-flow-ad .ad-flow-step { gap: 0.5cqw; min-height: 15cqw; }
.slide-large .slide-flow-ad .ad-flow-step-circle {
  width: 6.4cqw; height: 6.4cqw; font-size: 2.65cqw;
}
.slide-large .slide-flow-ad .ad-flow-step-label { font-size: 2.05cqw; }
.slide-large .slide-flow-ad .ad-flow-step-desc { font-size: 1.62cqw; }
.slide-large .slide-flow-ad .ad-flow-arrow { font-size: 2.9cqw; }
.slide-review-flow .slide-flow-ad .ad-flow-step-desc { text-wrap: balance; }

/* ── AD Gantt ── */
.slide-gantt-ad .slide-content {
  justify-content: center;
  padding-top: 1.6cqw;
  padding-bottom: 1.6cqw;
  gap: 0.9cqw;
}
.ad-gantt-board {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid rgba(165,30,109,0.12);
  background: rgba(255,255,255,0.92);
  overflow: hidden;
  border-radius: 0.9cqw;
}
.ad-gantt-head-row,
.ad-gantt-task-row {
  display: grid;
  grid-template-columns: 21.5cqw 1fr;
}
.ad-gantt-task-head {
  padding: 0.55cqw 0.75cqw;
  background: #1A1A2E;
  color: rgba(255,255,255,0.9);
  font-size: 0.78cqw;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.ad-gantt-weeks {
  display: grid;
  grid-template-columns: repeat(var(--gantt-cols), minmax(0, 1fr));
  background: #1A1A2E;
}
.ad-gantt-week {
  padding: 0.4cqw 0.15cqw;
  color: rgba(255,255,255,0.72);
  font-size: 0.62cqw;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  border-right: 1px dashed rgba(255,255,255,0.15);
  white-space: pre-line;
}
.ad-gantt-phase {
  padding: 0.36cqw 0.75cqw;
  background: rgba(165,30,109,0.08);
  color: var(--c-accent);
  font-size: 0.76cqw;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(165,30,109,0.12);
}
.ad-gantt-task-label {
  display: flex;
  align-items: center;
  padding: 0.4cqw 0.7cqw;
  border-top: 1px solid rgba(165,30,109,0.12);
  border-right: 1px solid rgba(165,30,109,0.12);
  font-size: 0.78cqw;
  font-weight: 600;
  line-height: 1.35;
}
.ad-gantt-track {
  position: relative;
  min-height: 1.75cqw;
  border-top: 1px solid rgba(165,30,109,0.12);
  overflow: hidden;
}
.ad-gantt-track-grid,
.ad-gantt-track-bars {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--gantt-cols), minmax(0, 1fr));
}
.ad-gantt-grid-cell {
  border-right: 1px dashed rgba(165,30,109,0.10);
}
.ad-gantt-track-bars { padding: 0.14cqw 0; }
.ad-gantt-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.12cqw;
  border-radius: 0.16cqw;
  font-size: 0.52cqw;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
}
.ad-gantt-bar-dark      { background: var(--c-accent); }
.ad-gantt-bar-mid       { background: #1A1A2E; }
.ad-gantt-bar-light     { background: rgba(26,26,46,0.36); color: #333; }
.ad-gantt-bar-neutral   { background: rgba(26,26,46,0.14); color: var(--c-text-sub); }
.ad-gantt-bar-milestone { background: #e5484d; }
.ad-gantt-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8cqw;
  margin-top: 0.55cqw;
}
.ad-gantt-legend-item {
  display: flex;
  align-items: center;
  gap: 0.45cqw;
  font-size: 0.72cqw;
  color: var(--c-text-sub);
}
.ad-gantt-legend-swatch {
  width: 0.9cqw;
  height: 0.55cqw;
  border-radius: 0.1cqw;
}
/* slide-large gantt overrides */
.slide-large .slide-gantt-ad .slide-content {
  padding-top: 1.6cqw;
  padding-bottom: 1.6cqw;
}
.slide-large .slide-gantt-ad .slide-h2 { font-size: 4.5cqw; }
.slide-large .ad-gantt-head-row,
.slide-large .ad-gantt-task-row { grid-template-columns: 27cqw 1fr; }
.slide-large .ad-gantt-task-head { padding: 0.7cqw 0.9cqw; font-size: 1.15cqw; }
.slide-large .ad-gantt-week { padding: 0.55cqw 0.12cqw; font-size: 0.94cqw; }
.slide-large .ad-gantt-phase { padding: 0.5cqw 0.9cqw; font-size: 1.08cqw; }
.slide-large .ad-gantt-task-label { padding: 0.58cqw 0.78cqw; font-size: 1.14cqw; }
.slide-large .ad-gantt-track { min-height: 2.4cqw; }
.slide-large .ad-gantt-track-bars { padding: 0.18cqw 0; }
.slide-large .ad-gantt-bar { font-size: 0.74cqw; }
.slide-large .ad-gantt-legend { justify-content: center; gap: 1.05cqw; margin-top: 0.7cqw; }
.slide-large .ad-gantt-legend-item { gap: 0.5cqw; font-size: 0.96cqw; }
.slide-large .ad-gantt-legend-swatch { width: 1.15cqw; height: 0.72cqw; }

/* ── AD Photo Analysis ── */
.ad-pa-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2cqw;
  flex: 1;
  min-height: 0;
}
.ad-pa-image {
  border-radius: 0;
  overflow: hidden;
  min-height: 0;
  background: var(--c-base-dim);
}
.ad-pa-cards {
  display: flex;
  flex-direction: column;
  gap: 1cqw;
  justify-content: center;
}
.ad-pa-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(165,30,109,0.12);
  border-radius: 0.9cqw;
  padding: 1.2cqw 1.5cqw;
}
.ad-pa-card-label {
  font-size: 1cqw;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.3cqw;
}
.ad-pa-card-text {
  font-size: 1.25cqw;
  line-height: 1.5;
  white-space: pre-line;
}

/* ── AD Reference Gallery ── */
.ad-rg-grid {
  display: grid;
  gap: 1.5cqw;
  flex: 1;
  min-height: 0;
  align-content: center;
}
.ad-rg-grid-dense { gap: 1cqw; }
.ad-rg-card {
  display: flex;
  flex-direction: column;
  gap: 0.6cqw;
  min-height: 0;
}
.ad-rg-img-wrap {
  flex: 1;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(165,30,109,0.12);
}
.ad-rg-img-wrap img { display: block; }
.ad-rg-card-info {
  display: flex;
  align-items: baseline;
  gap: 0.8cqw;
}
.ad-rg-card-label {
  font-size: 1.2cqw;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}
.ad-rg-grid-dense .ad-rg-card-label { font-size: 1cqw; }
.ad-rg-card-desc {
  font-size: 1.1cqw;
  color: var(--c-text-sub);
  line-height: 1.4;
}
.ad-rg-grid-dense .ad-rg-card-desc { font-size: 0.9cqw; }
.ad-rg-insights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4cqw 1.2cqw;
  justify-content: center;
  margin-top: 0.8cqw;
}
.ad-rg-insight-tag {
  display: inline-block;
  font-size: 0.85cqw;
  line-height: 1.5;
  color: var(--c-text-sub);
}

/* ===== DONUT COMPARE ===== */
.dc-slide { display:flex; flex-direction:column; height:100%; padding:3cqw 4cqw 2.5cqw; box-sizing:border-box; }
.dc-body { display:flex; align-items:center; gap:4cqw; flex:1; min-height:0; }
.dc-charts { display:flex; gap:3cqw; align-items:center; }
.dc-chart-wrap { display:flex; flex-direction:column; align-items:center; gap:0.6cqw; }
.dc-svg { width:24cqw; height:24cqw; }
.dc-num { font-size:2.2cqw; font-weight:700; fill:var(--c-main); font-family:inherit; }
.dc-unit { font-size:1cqw; fill:#666; font-family:inherit; }
.dc-month-label { font-size:1.4cqw; font-weight:700; color:var(--c-main); letter-spacing:.05em; }
.dc-legend { flex:1; display:flex; flex-direction:column; gap:0.5cqw; }
.dc-legend-header, .dc-legend-row { display:grid; grid-template-columns:1.2cqw 1fr 3.5cqw 3.5cqw; align-items:center; gap:0.6cqw; }
.dc-legend-header { margin-bottom:0.3cqw; }
.dc-dot { width:1.2cqw; height:1.2cqw; border-radius:50%; flex-shrink:0; }
.dc-cat { font-size:1.1cqw; color:var(--c-main); }
.dc-val { font-size:1.1cqw; font-weight:700; color:var(--c-main); text-align:right; }
.dc-hdr { font-size:0.95cqw; font-weight:700; color:#888; text-align:right; }
