body.claude-janggeum {
  --bg: #fff8ef;
  --bg-soft: #fff0dd;
  --surface: #ffffff;
  --surface-2: #eaf8fa;
  --border: rgba(36, 49, 58, 0.14);
  --border-strong: rgba(36, 49, 58, 0.26);
  --text-1: #24313a;
  --text-2: #596872;
  --text-3: #85949c;
  --accent: #2f95a3;
  --accent-2: #6cc7d7;
  --accent-3: #d9774f;
  --good: #4e9a68;
  --warn: #f5a15f;
  --bad: #d95f52;
  --grad: linear-gradient(135deg, #3fa7b5, #6cc7d7 52%, #f5a15f);
  --grad-soft: linear-gradient(135deg, #eaf8fa, #fff0dd);
  --radius: 22px;
  --radius-sm: 16px;
  --radius-lg: 32px;
  --font-sans: "Apple SD Gothic Neo", "Noto Sans KR", "Inter", system-ui, sans-serif;
  --font-display: "Apple SD Gothic Neo", "Noto Sans KR", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.slide {
  background:
    radial-gradient(circle at 9% 18%, rgba(108, 199, 215, 0.24) 0 46px, transparent 47px),
    radial-gradient(circle at 91% 12%, rgba(245, 161, 95, 0.22) 0 40px, transparent 41px),
    radial-gradient(circle at 86% 82%, rgba(78, 154, 104, 0.16) 0 52px, transparent 53px),
    linear-gradient(90deg, rgba(47, 149, 163, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(47, 149, 163, 0.045) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, auto, 56px 56px, 56px 56px, auto;
  padding: 62px 82px;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 12px solid var(--accent);
  border-bottom: 8px solid rgba(108, 199, 215, 0.55);
  pointer-events: none;
}

.slide::after {
  content: "";
  position: absolute;
  right: 48px;
  top: 34px;
  width: 82px;
  height: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18px 14px, #f5a15f 0 8px, transparent 9px),
    radial-gradient(circle at 41px 14px, #6cc7d7 0 8px, transparent 9px),
    radial-gradient(circle at 64px 14px, #4e9a68 0 8px, transparent 9px);
  opacity: 0.7;
  pointer-events: none;
}

.h1 {
  font-size: clamp(58px, 6.9vw, 86px);
  line-height: 1.12;
  letter-spacing: 0;
}

.h2 {
  font-size: clamp(41px, 4.7vw, 60px);
  line-height: 1.16;
  letter-spacing: 0;
}

.h3 {
  font-size: 36px;
  letter-spacing: 0;
}

.kicker {
  color: var(--accent-3);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.lede {
  font-size: 26px;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0;
}

.deck-footer {
  left: 82px;
  right: 82px;
  bottom: 26px;
  color: rgba(78, 90, 99, 0.75);
}

.deck-footer-link {
  position: absolute;
  left: 82px;
  right: 82px;
  bottom: 26px;
  font-size: 14px;
  color: rgba(78, 90, 99, 0.7);
  margin: 0;
}

.deck-footer-link a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(78, 90, 99, 0.4);
}

.slide-figure {
  position: absolute;
  right: 82px;
  bottom: 70px;
  width: 220px;
  margin: 0;
}

.slide-figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  height: 100%;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-image {
  aspect-ratio: 16 / 9;
  border: 5px solid #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(36, 49, 58, 0.16);
  background: var(--surface);
}

.hero-image img,
.visual img,
.mock-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thesis {
  font-size: clamp(43px, 6vw, 77px);
  line-height: 1.15;
  font-weight: 800;
  max-width: 980px;
}

.accent {
  color: var(--accent-3);
}

.accent-teal {
  color: var(--accent);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.two-col-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.visual {
  aspect-ratio: 16 / 9;
  border: 5px solid #fff;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.panel {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  padding: 26px 28px;
  box-shadow: var(--shadow);
}

.flat-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 22px 24px;
}

.problem {
  border-left: 8px solid var(--bad);
}

.success {
  border-left: 8px solid var(--good);
}

.number {
  font-family: var(--font-mono);
  color: var(--accent-3);
  font-size: 24px;
  font-weight: 700;
}

.agenda {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.agenda-row {
  display: grid;
  grid-template-columns: 76px 1fr 180px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.agenda-row b {
  font-size: 29px;
}

.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(47, 149, 163, 0.24);
  background: rgba(108, 199, 215, 0.16);
  color: var(--accent);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 17px;
  font-weight: 700;
}

.tag.warn {
  border-color: rgba(202, 103, 2, 0.35);
  background: rgba(202, 103, 2, 0.08);
  color: var(--accent-3);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.big-line {
  font-size: clamp(43px, 6vw, 77px);
  line-height: 1.14;
  font-weight: 800;
  max-width: 980px;
}

.formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.formula .term,
.formula .plus {
  font-size: 34px;
  font-weight: 800;
}

.formula .term {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}

.formula .plus {
  color: var(--accent-3);
}

.loop-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 34px;
  align-items: center;
  margin-top: 20px;
}

.loop-steps {
  display: grid;
  gap: 12px;
}

.step-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.step-row .num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--accent);
  color: white;
  font-family: var(--font-mono);
  font-weight: 700;
}

.compare-table,
.mode-table,
.feature-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th,
.compare-table td,
.mode-table th,
.mode-table td,
.feature-table th,
.feature-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  font-size: 23px;
}

.compare-table th,
.mode-table th,
.feature-table th {
  color: var(--accent);
  background: rgba(0, 95, 115, 0.07);
  font-weight: 800;
}

.compare-table tr:last-child td,
.mode-table tr:last-child td,
.feature-table tr:last-child td {
  border-bottom: 0;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.usecase {
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  font-size: 20px;
}

.usecase b {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 24px;
}

.terminal {
  background: #24313a;
  color: #fff8ef;
  border-radius: 24px;
  padding: 24px 26px;
  font-family: var(--font-mono);
  font-size: 24px;
  line-height: 1.75;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.24);
  white-space: pre-wrap;
}

.terminal .muted {
  color: #95a3ad;
}

.terminal .cmd {
  color: #8bd3dd;
}

.terminal .ok {
  color: #92d18b;
}

.prompt-box {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 8px solid var(--accent-3);
  border-radius: 24px;
  padding: 24px 28px;
  font-size: 29px;
  line-height: 1.55;
  box-shadow: var(--shadow);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.flow .node {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 18px;
  min-height: 138px;
}

.flow .node b {
  display: block;
  color: var(--accent);
  font-size: 26px;
  margin-bottom: 8px;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.check {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 20px;
  font-size: 26px;
}

.check::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 5px;
  border: 3px solid var(--good);
  border-radius: 8px;
}

.doc-sample {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.doc-sample pre {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 24px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.timeline .item {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 6px solid var(--accent);
  border-radius: 22px;
  padding: 20px 16px;
  min-height: 150px;
}

.timeline .item:nth-child(2) { border-top-color: var(--accent-2); }
.timeline .item:nth-child(3) { border-top-color: var(--accent-3); }
.timeline .item:nth-child(4) { border-top-color: var(--good); }
.timeline .item:nth-child(5) { border-top-color: var(--bad); }

.timeline b {
  display: block;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 8px;
}

.small {
  font-size: 20px;
  line-height: 1.5;
}

.split-image {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  align-items: center;
}

.image-crop {
  height: 354px;
  border: 5px solid #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-crop img {
  width: 300%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.crop-left img { object-position: left center; }
.crop-mid img { object-position: center center; transform: translateX(-33.333%); }
.crop-right img { object-position: right center; transform: translateX(-66.666%); }

.caption {
  color: var(--text-3);
  font-size: 18px;
  margin-top: 10px;
}

.section-strip,
.loop-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.section-strip.compact {
  margin-top: 16px;
}

.section-strip span,
.loop-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-2);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.section-strip .active,
.loop-strip .active {
  color: #fff;
  border-color: rgba(217, 119, 79, 0.42);
  background: var(--accent-3);
}

.story-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  padding: 34px 38px;
  box-shadow: var(--shadow);
}

.permission-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.permission-card {
  min-height: 170px;
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.permission-card b {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 28px;
}

.permission-card span {
  color: var(--text-2);
  font-size: 22px;
  line-height: 1.42;
}

.permission-card.danger {
  border-color: rgba(217, 95, 82, 0.42);
  background: rgba(255, 239, 235, 0.92);
}

.permission-card.danger b {
  color: var(--bad);
}

.slide :is(h1, h2, h3, h4, p, b, span, div, td, th) {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.fit-text {
  --min-font-size: 16;
}

.term,
.tag,
.node,
.usecase,
.check,
.agenda-row,
.step-row,
.section-strip span,
.loop-strip span,
.permission-card,
.timeline .item,
.prompt-box,
.doc-sample,
.terminal,
table {
  min-width: 0;
}

@media (max-width: 900px) {
  .slide {
    padding: 44px 34px;
  }

  .hero,
  .two-col,
  .two-col-visual,
  .loop-grid,
  .split-image {
    grid-template-columns: 1fr;
  }

  .usecase-grid,
  .flow,
  .timeline,
  .checklist,
  .permission-grid {
    grid-template-columns: 1fr;
  }

  .agenda-row {
    grid-template-columns: 54px 1fr;
  }

  .agenda-row .small {
    grid-column: 2;
  }
}
