:root {
  --ink: #1b110d;
  --ink-soft: #5e514a;
  --paper: #fffdfb;
  --paper-soft: #fff4eb;
  --orange: #f47322;
  --orange-soft: #ffad70;
  --red: #ed2634;
  --pink: #fde8e9;
  --line: rgba(48, 28, 18, 0.12);
  --glass: rgba(255, 253, 251, 0.78);
  --shadow: 0 28px 90px rgba(42, 18, 8, 0.2);
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: #f3ede8;
  color: var(--ink);
  font-family:
    Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  transition:
    background 900ms var(--ease),
    color 500ms ease;
}

button,
video {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

#webgl {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#webgl canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.ambient {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.32;
  transition:
    background 800ms var(--ease),
    opacity 800ms var(--ease),
    transform 1200ms var(--ease);
}

.ambient--one {
  width: 42vw;
  height: 42vw;
  top: -22vw;
  right: -10vw;
  background: rgba(244, 115, 34, 0.34);
}

.ambient--two {
  width: 36vw;
  height: 36vw;
  left: -17vw;
  bottom: -22vw;
  background: rgba(237, 38, 52, 0.2);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.presentation {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 72px 1fr 82px;
}

.topbar,
.bottombar {
  width: min(94vw, 1500px);
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.topbar {
  justify-content: space-between;
}

.brand {
  position: relative;
  width: 112px;
  height: 34px;
}

.brand__logo {
  position: absolute;
  inset: 0 auto auto 0;
  max-width: 112px;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
  transition: opacity 400ms ease;
}

.brand__logo--light {
  opacity: 0;
}

.brand__logo--dark {
  opacity: 1;
}

.counter {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(27, 17, 13, 0.58);
  font-variant-numeric: tabular-nums;
  transition: color 400ms ease;
}

.stage {
  width: min(94vw, 1500px);
  height: 100%;
  min-height: 0;
  margin-inline: auto;
  perspective: 1800px;
  display: grid;
  place-items: center;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 850px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 241, 0.87)),
    var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  transform-style: preserve-3d;
  transition:
    background 700ms var(--ease),
    border-color 700ms var(--ease),
    box-shadow 700ms var(--ease);
}

.slide::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -110px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(244, 115, 34, 0.18), rgba(244, 115, 34, 0));
  pointer-events: none;
}

.slide__inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: clamp(28px, 4.2vh, 58px) clamp(30px, 4.6vw, 72px);
  display: flex;
  flex-direction: column;
}

.slide__topline {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(14px, 2vh, 26px);
}

.duration {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(244, 115, 34, 0.11);
  color: #cd5209;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.slide-number {
  color: rgba(27, 17, 13, 0.32);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--orange);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.title {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(29px, 3.15vw, 55px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.lead {
  max-width: 850px;
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.25vw, 21px);
  line-height: 1.55;
}

.content {
  flex: 1;
  min-height: 0;
  margin-top: clamp(22px, 3.6vh, 48px);
}

.grid {
  display: grid;
  gap: clamp(12px, 1.35vw, 22px);
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  min-width: 0;
  padding: clamp(16px, 1.7vw, 27px);
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 13px 35px rgba(46, 24, 14, 0.07);
  overflow: hidden;
}

.card--warm {
  background: linear-gradient(145deg, rgba(255, 247, 239, 0.96), rgba(255, 231, 213, 0.78));
}

.card--orange {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #ff842f, #ed5d13);
}

.card--ink {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, #2a1a14, #130d0a);
}

.card--pink {
  border-color: rgba(237, 38, 52, 0.14);
  background: linear-gradient(145deg, rgba(255, 246, 246, 0.96), rgba(253, 225, 228, 0.84));
}

.card__kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card--orange .card__kicker,
.card--ink .card__kicker {
  color: #ffb47d;
}

.card__title {
  margin: 0;
  font-size: clamp(16px, 1.42vw, 25px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.card__text {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: clamp(12px, 0.92vw, 16px);
  line-height: 1.48;
}

.card--orange .card__text,
.card--ink .card__text {
  color: rgba(255, 255, 255, 0.75);
}

.icon {
  width: clamp(38px, 3.3vw, 54px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), #ff9a52);
  box-shadow: 0 9px 24px rgba(244, 115, 34, 0.25);
}

.icon--red {
  background: linear-gradient(145deg, var(--red), #ff4f5b);
  box-shadow: 0 9px 24px rgba(237, 38, 52, 0.25);
}

.icon svg {
  width: 46%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.number {
  width: clamp(42px, 4vw, 64px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: clamp(17px, 1.6vw, 26px);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(244, 115, 34, 0.24);
}

.list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: clamp(12px, 0.96vw, 16px);
  line-height: 1.45;
}

.list li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 0;
  top: 0.62em;
  border-radius: 50%;
  background: var(--orange);
}

.card--ink .list li,
.card--orange .list li {
  color: rgba(255, 255, 255, 0.82);
}

.slide--objectiveVisual .title {
  font-size: clamp(30px, 2.8vw, 48px);
}

.slide--objectiveVisual .content {
  margin-top: clamp(14px, 2vh, 28px);
}

.objective-visual {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1.56fr);
  gap: clamp(14px, 1.6vw, 26px);
}

.objective-side {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.05vw, 16px);
}

.objective-person {
  position: relative;
  height: clamp(230px, 43vh, 360px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 115, 34, 0.18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(46, 24, 14, 0.1);
}

.objective-person img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
}

.objective-person::before {
  content: "";
  position: absolute;
  inset: auto -12% -20% -12%;
  height: 42%;
  z-index: 2;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
  pointer-events: none;
}

.objective-person__glow {
  position: absolute;
  inset: 12% 18%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 115, 34, 0.22), transparent 66%);
  filter: blur(12px);
}

.objective-map {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.15vw, 16px);
}

.visual-goal {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(14px, 1.45vw, 22px);
  border: 1px solid rgba(48, 28, 18, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(46, 24, 14, 0.07);
  overflow: hidden;
}

.visual-goal::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(244, 115, 34, 0.12), rgba(237, 38, 52, 0.06)),
    repeating-linear-gradient(45deg, transparent 0 9px, rgba(244, 115, 34, 0.08) 10px 11px);
  pointer-events: none;
}

.visual-goal > * {
  position: relative;
  z-index: 1;
}

.visual-goal--2,
.visual-goal--4 {
  background: linear-gradient(145deg, rgba(255, 248, 242, 0.94), rgba(255, 232, 217, 0.8));
}

.visual-goal--4 {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 14% 16%, rgba(244, 115, 34, 0.48), transparent 38%),
    linear-gradient(145deg, #2c1b13, #130d0a);
}

.visual-goal--4::after {
  background:
    radial-gradient(circle, rgba(244, 115, 34, 0.3), transparent 62%),
    repeating-linear-gradient(45deg, transparent 0 9px, rgba(255, 255, 255, 0.08) 10px 11px);
}

.visual-goal__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.visual-goal__number {
  width: clamp(34px, 3vw, 48px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--red));
  font-size: clamp(15px, 1.25vw, 22px);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(244, 115, 34, 0.23);
}

.visual-goal h2 {
  margin: 0;
  font-size: clamp(15px, 1.22vw, 22px);
  line-height: 1.13;
  letter-spacing: -0.025em;
}

.visual-chipset {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: clamp(18px, 3.6vh, 44px);
}

.visual-chipset span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #74311a;
  background: rgba(244, 115, 34, 0.1);
  border: 1px solid rgba(244, 115, 34, 0.14);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 750;
  line-height: 1.1;
}

.visual-goal--2 .visual-chipset span {
  background: rgba(255, 255, 255, 0.68);
}

.mindset-mini {
  display: grid;
  gap: 8px;
  margin-top: clamp(16px, 2.8vh, 34px);
}

.mindset-mini div {
  padding: 10px 12px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.mindset-mini p {
  margin: 0 0 4px;
  color: #ffb47d;
  font-size: clamp(9px, 0.68vw, 11px);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mindset-mini strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(11px, 0.86vw, 15px);
  line-height: 1.28;
}

.objective-takeaway {
  padding: clamp(13px, 1.25vw, 18px) clamp(16px, 1.5vw, 24px);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #f47322, #ed2634);
  box-shadow: 0 16px 38px rgba(237, 38, 52, 0.2);
  font-size: clamp(14px, 1vw, 19px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.slide--objectives .title {
  font-size: clamp(30px, 2.8vw, 48px);
}

.slide--objectives .content {
  margin-top: clamp(14px, 2vh, 30px);
}

.objective-layout {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: clamp(12px, 1.35vw, 22px);
}

.objective-grid,
.objective-focus {
  min-height: 0;
  display: grid;
  gap: clamp(10px, 1.05vw, 16px);
}

.objective-grid {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.objective-focus {
  grid-template-rows: auto minmax(0, 1fr);
}

.objective-card {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(10px, 1vw, 16px);
  padding: clamp(13px, 1.3vw, 20px);
  border: 1px solid rgba(244, 115, 34, 0.17);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 36px rgba(46, 24, 14, 0.07);
  overflow: hidden;
}

.objective-card--mindset {
  background: linear-gradient(145deg, rgba(255, 248, 242, 0.94), rgba(255, 231, 214, 0.78));
}

.objective-card__badge {
  width: clamp(34px, 3vw, 48px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--red));
  font-size: clamp(15px, 1.25vw, 22px);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(244, 115, 34, 0.23);
}

.objective-card h2 {
  margin: 0;
  font-size: clamp(15px, 1.22vw, 22px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.objective-lead {
  margin: 8px 0 0;
  color: #c34f0c;
  font-size: clamp(11px, 0.82vw, 14px);
  font-weight: 850;
}

.objective-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.objective-card:first-child .objective-list {
  grid-template-columns: 1fr;
}

.objective-list li {
  position: relative;
  padding-left: 14px;
  color: var(--ink-soft);
  font-size: clamp(11px, 0.82vw, 14.5px);
  line-height: 1.34;
}

.objective-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.mindset-switch {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.mindset-pill {
  padding: clamp(10px, 1vw, 14px);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(237, 38, 52, 0.11);
}

.mindset-label {
  margin: 0 0 5px;
  color: #c34f0c;
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mindset-text {
  margin: 0;
  color: var(--ink);
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.34;
  font-weight: 780;
}

.final-line {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 1.9vw, 28px);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 115, 34, 0.36), transparent 34%),
    linear-gradient(145deg, #2c1b13, #130d0a);
  box-shadow: 0 18px 48px rgba(27, 17, 13, 0.2);
  overflow: hidden;
}

.final-line__intro {
  margin: 0 0 12px;
  color: #ffb47d;
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-line blockquote {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 22px);
  line-height: 1.38;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.quote {
  position: relative;
  height: 100%;
  min-height: 210px;
  display: flex;
  align-items: center;
  padding: clamp(30px, 4vw, 66px);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #291a14, #140d0a);
  font-size: clamp(21px, 2.25vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 24px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 1;
}

.slide--pain .content {
  margin-top: clamp(18px, 2.6vh, 34px);
}

.pain-layout {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(18px, 2.2vw, 34px);
}

.pain-visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 115, 34, 0.22);
  border-radius: 26px;
  background: #fff3e9;
  box-shadow: 0 22px 62px rgba(46, 24, 14, 0.13);
}

.pain-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 13, 10, 0.82), rgba(20, 13, 10, 0.06) 48%, transparent 72%),
    radial-gradient(circle at 14% 16%, rgba(244, 115, 34, 0.18), transparent 36%);
  pointer-events: none;
}

.pain-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pain-quote {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  left: clamp(18px, 2vw, 30px);
  height: auto;
  min-height: 0;
  padding: clamp(34px, 3vw, 48px) clamp(20px, 2.1vw, 32px) clamp(20px, 2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(28, 17, 12, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(20, 8, 4, 0.28);
  font-size: clamp(21px, 1.95vw, 34px);
  line-height: 1.18;
}

.pain-quote::before {
  top: 8px;
  left: 20px;
  font-size: 62px;
}

.pain-copy {
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(14px, 1.4vw, 22px);
}

.pain-stack {
  align-content: center;
  gap: clamp(12px, 1.2vw, 18px);
}

.pain-row {
  min-height: clamp(96px, 11.5vh, 132px);
  padding: clamp(16px, 1.7vw, 24px);
  border-color: rgba(244, 115, 34, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 36px rgba(46, 24, 14, 0.08);
}

.pain-row .row-card__dot {
  width: clamp(44px, 4vw, 58px);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--orange), var(--red));
  font-size: clamp(12px, 0.9vw, 15px);
  letter-spacing: 0.02em;
}

.pain-row:nth-child(2n) .row-card__dot {
  background: linear-gradient(145deg, #2a1a14, #130d0a);
}

.pain-row .row-card__title {
  font-size: clamp(18px, 1.55vw, 27px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.pain-conclusion {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 1.75vw, 26px) clamp(20px, 2vw, 30px);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 180, 125, 0.34), transparent 34%),
    linear-gradient(145deg, #ff6e22, #ed2634);
  box-shadow: 0 18px 42px rgba(237, 38, 52, 0.2);
  font-size: clamp(18px, 1.65vw, 28px);
  line-height: 1.24;
  font-weight: 880;
  letter-spacing: -0.025em;
}

.pain-conclusion::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.stack {
  display: grid;
  gap: 12px;
}

.row-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 25px rgba(46, 24, 14, 0.05);
}

.row-card__dot {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.row-card:nth-child(2n) .row-card__dot {
  background: var(--red);
}

.row-card__title {
  margin: 0;
  font-size: clamp(14px, 1.08vw, 19px);
  line-height: 1.2;
}

.row-card__text {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: clamp(11px, 0.82vw, 14px);
  line-height: 1.35;
}

.slide--departments .stack {
  gap: 8px;
}

.slide--departments .row-card {
  min-height: 58px;
  padding: 9px 16px;
}

.slide--departments .row-card__dot {
  width: 34px;
}

.slide--departments .row-card__text {
  margin-top: 2px;
}

.slide--departments .content {
  margin-top: clamp(16px, 2.3vh, 30px);
}

.departments-layout {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(16px, 1.9vw, 28px);
}

.department-list {
  min-height: 0;
  display: grid;
  gap: clamp(8px, 0.9vh, 12px);
}

.department-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
  padding: clamp(12px, 1.15vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(48, 28, 18, 0.11);
  border-radius: 18px;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 115, 34, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(46, 24, 14, 0.06);
  cursor: pointer;
  text-align: left;
  transition:
    transform 300ms var(--ease),
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.department-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--red));
  opacity: 0;
  transition: opacity 280ms ease;
}

.department-card:hover,
.department-card:focus-visible,
.department-card.is-active {
  transform: translateX(6px);
  border-color: rgba(244, 115, 34, 0.34);
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 115, 34, 0.15), transparent 36%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(46, 24, 14, 0.11);
}

.department-card:hover::before,
.department-card:focus-visible::before,
.department-card.is-active::before {
  opacity: 1;
}

.department-card:focus-visible {
  outline: 3px solid rgba(244, 115, 34, 0.25);
  outline-offset: 2px;
}

.department-card__number {
  width: clamp(40px, 3.6vw, 54px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--red));
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(244, 115, 34, 0.22);
}

.department-card:nth-child(2n) .department-card__number {
  background: linear-gradient(145deg, #2a1a14, #130d0a);
}

.department-card__content {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.department-card__badge {
  color: #c65311;
  font-size: clamp(9px, 0.68vw, 11px);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.department-card strong {
  min-width: 0;
  color: var(--ink);
  font-size: clamp(15px, 1.08vw, 20px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.department-card small {
  min-width: 0;
  color: var(--ink-soft);
  font-size: clamp(11px, 0.78vw, 13.5px);
  line-height: 1.28;
}

.department-card__cue {
  align-self: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(27, 17, 13, 0.5);
  background: rgba(244, 115, 34, 0.09);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 250ms ease,
    background 250ms ease;
}

.department-card.is-active .department-card__cue,
.department-card:hover .department-card__cue {
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--red));
}

.department-preview {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(190px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(48, 28, 18, 0.11);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 115, 34, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 238, 0.78));
  box-shadow: 0 24px 70px rgba(46, 24, 14, 0.13);
}

.department-preview__media,
.department-preview__body {
  transition:
    opacity 260ms ease,
    transform 360ms var(--ease);
}

.department-preview:not(.is-ready) .department-preview__media,
.department-preview:not(.is-ready) .department-preview__body {
  opacity: 0;
  transform: translateY(10px) scale(0.992);
}

.department-preview__media {
  min-height: 0;
  padding: clamp(16px, 1.5vw, 24px);
  background:
    radial-gradient(circle at 22% 22%, rgba(244, 115, 34, 0.2), transparent 34%),
    linear-gradient(145deg, #24140f, #120b08);
}

.department-mockup {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    radial-gradient(circle at 68% 42%, rgba(244, 115, 34, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.department-mockup__flow {
  position: absolute;
  height: 2px;
  left: 20%;
  right: 20%;
  top: 48%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--red), transparent);
  opacity: 0.8;
  filter: drop-shadow(0 0 10px rgba(244, 115, 34, 0.6));
  transform-origin: center;
  animation: departmentFlow 2400ms ease-in-out infinite;
}

.department-mockup__flow--one {
  transform: rotate(-15deg);
}

.department-mockup__flow--two {
  top: 58%;
  transform: rotate(13deg);
  opacity: 0.55;
}

.department-mockup__source-stack {
  position: absolute;
  left: 7%;
  top: 19%;
  width: 25%;
  height: 56%;
}

.department-mockup__source-stack span {
  position: absolute;
  width: 74%;
  height: 38%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  animation: departmentFloat 3600ms ease-in-out infinite;
}

.department-mockup__source-stack span::before,
.department-mockup__source-stack span::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  height: 7px;
  border-radius: 999px;
  background: rgba(27, 17, 13, 0.18);
}

.department-mockup__source-stack span::before {
  top: 32%;
}

.department-mockup__source-stack span::after {
  top: 52%;
  right: 34%;
  background: rgba(244, 115, 34, 0.48);
}

.department-mockup__source-stack span:nth-child(1) {
  left: 0;
  top: 0;
  transform: rotate(-8deg);
}

.department-mockup__source-stack span:nth-child(2) {
  left: 17%;
  top: 26%;
  transform: rotate(4deg);
  animation-delay: 220ms;
}

.department-mockup__source-stack span:nth-child(3) {
  left: 3%;
  top: 52%;
  transform: rotate(-3deg);
  animation-delay: 420ms;
}

.department-mockup__screen {
  position: absolute;
  left: 33%;
  top: 17%;
  width: 38%;
  height: 60%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(18, 11, 8, 0.82);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(244, 115, 34, 0.12);
}

.department-mockup__topbar {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.department-mockup__topbar span {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
}

.department-mockup__body {
  display: grid;
  gap: 9px;
  padding: 15px;
}

.department-mockup__line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.department-mockup__line--wide {
  width: 92%;
  background: rgba(244, 115, 34, 0.55);
}

.department-mockup__line--short {
  width: 58%;
}

.department-mockup__tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 6px;
}

.department-mockup__tiles span {
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.department-mockup__result {
  position: absolute;
  right: 7%;
  top: 24%;
  width: 25%;
  min-height: 48%;
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.department-mockup__result span,
.department-mockup__result strong {
  display: block;
  border-radius: 999px;
}

.department-mockup__result span {
  height: 8px;
  background: rgba(27, 17, 13, 0.16);
}

.department-mockup__result strong {
  height: 12px;
  width: 76%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  animation: departmentResult 1900ms ease-in-out infinite;
}

.department-mockup--sales .department-mockup__tiles span:nth-child(1),
.department-mockup--product .department-mockup__tiles span:nth-child(2),
.department-mockup--marketing .department-mockup__tiles span:nth-child(3) {
  background: rgba(244, 115, 34, 0.26);
}

.department-mockup--tech .department-mockup__line--wide,
.department-mockup--support .department-mockup__result strong {
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.department-preview__body {
  min-height: 0;
  display: grid;
  gap: clamp(11px, 1vw, 16px);
  padding: clamp(16px, 1.65vw, 26px);
}

.department-preview__heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 15px;
}

.department-preview__heading > span {
  width: clamp(45px, 4vw, 62px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--red));
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 950;
}

.department-preview__heading p,
.department-preview__meta span,
.department-preview__scenario span {
  margin: 0 0 6px;
  color: #c65311;
  font-size: clamp(10px, 0.74vw, 12px);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.department-preview__heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.65vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.department-preview__meta {
  padding: clamp(12px, 1.1vw, 16px);
  border: 1px solid rgba(244, 115, 34, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.department-preview__meta strong {
  display: block;
  color: var(--ink);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.25;
}

.department-preview__scenario {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.department-preview__scenario div {
  min-width: 0;
  padding: clamp(12px, 1.15vw, 17px);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 115, 34, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.72);
}

.department-preview__scenario p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(12px, 0.88vw, 15px);
  line-height: 1.4;
}

@keyframes departmentFlow {
  0%,
  100% {
    opacity: 0.46;
    filter: drop-shadow(0 0 7px rgba(244, 115, 34, 0.42));
  }
  50% {
    opacity: 0.94;
    filter: drop-shadow(0 0 16px rgba(244, 115, 34, 0.72));
  }
}

@keyframes departmentFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

@keyframes departmentResult {
  0%,
  100% {
    width: 56%;
  }
  50% {
    width: 84%;
  }
}

.slide--steps .content {
  margin-top: clamp(16px, 2.4vh, 30px);
}

.steps-layout {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(18px, 2vw, 30px);
}

.steps-visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: #120b09;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 54px rgba(244, 115, 34, 0.12);
}

.steps-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(17, 9, 6, 0.86), rgba(17, 9, 6, 0.1) 48%, transparent 72%),
    radial-gradient(circle at 18% 16%, rgba(244, 115, 34, 0.18), transparent 34%);
  pointer-events: none;
}

.steps-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.steps-visual figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(16px, 1.5vw, 24px);
  bottom: clamp(16px, 1.5vw, 24px);
  left: clamp(16px, 1.5vw, 24px);
  display: grid;
  gap: 6px;
  padding: clamp(14px, 1.35vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(24, 13, 9, 0.72);
  backdrop-filter: blur(14px);
}

.steps-visual figcaption span {
  color: #ff9b50;
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.steps-visual figcaption strong {
  color: #fff;
  font-size: clamp(17px, 1.45vw, 25px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.steps-flow {
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr)) auto;
  gap: clamp(9px, 1vh, 13px);
}

.step-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(12px, 1.15vw, 18px);
  padding: clamp(12px, 1.25vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.step-card::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 115, 34, 0.18), transparent 62%);
  pointer-events: none;
}

.step-card__number {
  position: relative;
  z-index: 1;
  width: clamp(42px, 3.65vw, 58px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--red));
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(244, 115, 34, 0.24);
}

.step-card:nth-child(2n) .step-card__number {
  background: linear-gradient(145deg, #2b1a13, #130d0a);
}

.step-card > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.step-card__kicker {
  margin: 0 0 4px;
  color: #ffad70;
  font-size: clamp(9px, 0.72vw, 11px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.16vw, 21px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.step-card p:not(.step-card__kicker) {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(11px, 0.86vw, 14px);
  line-height: 1.34;
}

.steps-result {
  position: relative;
  overflow: hidden;
  padding: clamp(14px, 1.35vw, 20px);
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 182, 119, 0.33), transparent 35%),
    linear-gradient(145deg, #ff6e22, #ed2634);
  box-shadow: 0 18px 40px rgba(237, 38, 52, 0.24);
}

.steps-result::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.steps-result span,
.steps-result strong {
  position: relative;
  z-index: 1;
}

.steps-result span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(10px, 0.74vw, 12px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steps-result strong {
  display: block;
  font-size: clamp(15px, 1.18vw, 21px);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.media-overview-layout,
.tools-layout {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: clamp(18px, 2vw, 30px);
}

.media-overview-visual,
.tools-visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 115, 34, 0.18);
  border-radius: 26px;
  background: #1a100c;
  box-shadow: 0 22px 62px rgba(46, 24, 14, 0.16);
}

.media-overview-visual::after,
.tools-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(19, 11, 8, 0.72), rgba(19, 11, 8, 0.08) 54%, transparent 78%),
    radial-gradient(circle at 16% 14%, rgba(244, 115, 34, 0.14), transparent 34%);
  pointer-events: none;
}

.media-overview-visual img,
.tools-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.media-overview-visual figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(16px, 1.5vw, 24px);
  bottom: clamp(16px, 1.5vw, 24px);
  left: clamp(16px, 1.5vw, 24px);
  display: grid;
  gap: 6px;
  padding: clamp(14px, 1.35vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: #fff;
  background: rgba(24, 13, 9, 0.72);
  backdrop-filter: blur(14px);
}

.media-overview-visual figcaption span {
  color: #ffad70;
  font-size: clamp(10px, 0.74vw, 12px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-overview-visual figcaption strong {
  font-size: clamp(17px, 1.4vw, 25px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.media-overview-panel,
.tools-panel {
  min-height: 0;
  display: grid;
  gap: clamp(12px, 1.1vw, 18px);
}

.media-overview-panel {
  grid-template-rows: repeat(2, minmax(0, 1fr)) auto;
}

.media-feature-card,
.tool-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(13px, 1.25vw, 20px);
  padding: clamp(16px, 1.65vw, 26px);
  border: 1px solid rgba(244, 115, 34, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 94% 14%, rgba(244, 115, 34, 0.12), transparent 33%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 15px 38px rgba(46, 24, 14, 0.08);
}

.media-feature-card::after,
.tool-card::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 38, 52, 0.12), transparent 65%);
  pointer-events: none;
}

.media-feature-card__mark,
.tool-card__index {
  position: relative;
  z-index: 1;
  width: clamp(46px, 4vw, 64px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--red));
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(244, 115, 34, 0.22);
}

.media-feature-card:nth-child(2n) .media-feature-card__mark,
.tool-card:nth-child(2n) .tool-card__index {
  background: linear-gradient(145deg, #2a1a14, #130d0a);
}

.media-feature-card > div,
.tool-card > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.media-feature-card__kicker,
.tool-card p {
  margin: 0 0 7px;
  color: #c65311;
  font-size: clamp(10px, 0.75vw, 12px);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.media-feature-card h2,
.tool-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.6vw, 29px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.media-feature-card p:not(.media-feature-card__kicker),
.tool-card small {
  display: block;
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: clamp(12px, 0.94vw, 16px);
  line-height: 1.43;
}

.media-notice,
.tools-summary {
  position: relative;
  overflow: hidden;
  padding: clamp(15px, 1.45vw, 22px) clamp(18px, 1.8vw, 28px);
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 178, 122, 0.32), transparent 35%),
    linear-gradient(145deg, #2a1a14, #130d0a);
  box-shadow: 0 18px 42px rgba(27, 17, 13, 0.18);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.4;
  font-weight: 740;
}

.tools-panel {
  grid-template-rows: 1fr auto;
}

.slide--habits .content {
  margin-top: clamp(18px, 2.7vh, 34px);
}

.habits-layout {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: clamp(18px, 2.4vw, 36px);
}

.habits-points {
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.15vw, 16px);
}

.habit-point {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(13px, 1.25vw, 20px);
  padding: clamp(15px, 1.45vw, 23px);
  border: 1px solid rgba(244, 115, 34, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 115, 34, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(46, 24, 14, 0.08);
}

.habit-point:nth-child(2) {
  background:
    radial-gradient(circle at 90% 14%, rgba(237, 38, 52, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 251, 248, 0.94), rgba(255, 237, 224, 0.86));
}

.habit-point:nth-child(3) {
  background:
    radial-gradient(circle at 92% 16%, rgba(57, 130, 220, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.86);
}

.habit-point::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 115, 34, 0.12), transparent 65%);
  pointer-events: none;
}

.habit-point__number {
  position: relative;
  z-index: 1;
  width: clamp(48px, 4.3vw, 68px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--red));
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(244, 115, 34, 0.24);
}

.habit-point:nth-child(2) .habit-point__number {
  background: linear-gradient(145deg, #2a1a14, #130d0a);
  box-shadow: 0 12px 28px rgba(27, 17, 13, 0.14);
}

.habit-point:nth-child(3) .habit-point__number {
  background: linear-gradient(145deg, #245b8f, #2c79d0);
  box-shadow: 0 12px 28px rgba(44, 121, 208, 0.18);
}

.habit-point > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.habit-point h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 27px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.habit-point p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: clamp(12px, 0.96vw, 16px);
  line-height: 1.42;
}

.habits-visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 115, 34, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 115, 34, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 235, 0.86));
  box-shadow:
    0 22px 52px rgba(46, 24, 14, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.habits-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  pointer-events: none;
  z-index: 1;
}

.habits-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.slide--summary .content {
  margin-top: clamp(16px, 2.5vh, 30px);
}

.summary-layout {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(14px, 1.35vw, 20px);
}

.summary-main {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(300px, 0.9fr) minmax(330px, 0.86fr);
  align-items: stretch;
  gap: clamp(14px, 1.8vw, 26px);
}

.summary-panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
}

.summary-panel--done {
  padding: clamp(18px, 1.8vw, 28px);
  border: 1px solid rgba(244, 115, 34, 0.17);
  background:
    radial-gradient(circle at 92% 18%, rgba(244, 115, 34, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(46, 24, 14, 0.08);
}

.summary-panel--done h2,
.summary-panel--week h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(22px, 1.75vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.summary-done-list {
  height: calc(100% - clamp(38px, 3.8vw, 56px));
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 16px);
  margin-top: clamp(16px, 1.45vw, 22px);
}

.summary-done-item {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(13px, 1.3vw, 20px);
  padding-bottom: clamp(10px, 1vw, 15px);
  border-bottom: 1px dashed rgba(48, 28, 18, 0.16);
}

.summary-done-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.summary-item-icon,
.summary-week-goal span,
.summary-week-target span {
  width: clamp(50px, 4.2vw, 68px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--orange);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 178, 122, 0.24), transparent 40%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(244, 115, 34, 0.22);
  box-shadow: 0 12px 26px rgba(244, 115, 34, 0.13);
}

.summary-item-icon svg,
.summary-week-goal svg,
.summary-week-target svg,
.summary-example svg,
.summary-source svg,
.summary-core svg,
.summary-banner svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.summary-done-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.summary-done-item p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: clamp(11px, 0.88vw, 15px);
  line-height: 1.42;
}

.summary-visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.92), transparent 22%),
    radial-gradient(circle at 78% 22%, rgba(255, 184, 126, 0.23), transparent 30%),
    linear-gradient(145deg, rgba(255, 248, 242, 0.72), rgba(255, 237, 221, 0.82));
}

.summary-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.summary-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.summary-source-cloud {
  position: absolute;
  inset: 0;
}

.summary-source-cloud::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 13%;
  top: 16%;
  height: 38%;
  border: 2px dashed rgba(244, 115, 34, 0.18);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.summary-source {
  position: absolute;
  z-index: 3;
  width: clamp(58px, 5.8vw, 78px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 8px;
  border-radius: 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(48, 28, 18, 0.08);
  box-shadow: 0 13px 28px rgba(46, 24, 14, 0.12);
}

.summary-source svg {
  width: 42%;
  height: 42%;
  color: var(--orange);
}

.summary-source strong {
  color: var(--ink);
  font-size: clamp(9px, 0.68vw, 11px);
  font-weight: 850;
}

.summary-source--1 {
  top: 8%;
  left: 20%;
}

.summary-source--2 {
  top: 8%;
  right: 18%;
}

.summary-source--3 {
  top: 32%;
  left: 8%;
}

.summary-source--4 {
  top: 34%;
  right: 6%;
}

.summary-core {
  position: absolute;
  z-index: 4;
  top: 22%;
  left: 50%;
  width: clamp(76px, 7.2vw, 104px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ff7a22;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 48%, rgba(255, 224, 193, 0.9) 49% 64%, transparent 65%),
    rgba(255, 255, 255, 0.7);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.45),
    0 18px 42px rgba(244, 115, 34, 0.22);
  transform: translateX(-50%);
}

.summary-core svg {
  width: 42%;
  height: 42%;
  stroke-width: 1.5;
}

.summary-person {
  position: absolute;
  z-index: 5;
  left: 9%;
  bottom: 3%;
  width: 33%;
  height: 43%;
}

.summary-person__head {
  position: absolute;
  top: 0;
  left: 24%;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 42% 46% 45% 42%;
  background:
    radial-gradient(circle at 60% 68%, #f3b080 0 12%, transparent 13%),
    linear-gradient(145deg, #261713, #3b2721);
  box-shadow: 0 10px 18px rgba(27, 17, 13, 0.14);
}

.summary-person__body {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66%;
  height: 74%;
  border-radius: 48% 42% 18px 18px;
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 176, 116, 0.36), transparent 34%),
    linear-gradient(145deg, #ff8a25, #d85a12);
  transform: skewX(-10deg);
  box-shadow: 0 18px 38px rgba(216, 90, 18, 0.18);
}

.summary-laptop {
  position: absolute;
  z-index: 6;
  right: 14%;
  bottom: 12%;
  width: 48%;
  height: 38%;
  transform: rotate(7deg);
}

.summary-laptop__screen {
  height: 78%;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 12px;
  border: 8px solid #2b2624;
  border-radius: 16px 16px 8px 8px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff, #f3f0ed);
  box-shadow: 0 20px 35px rgba(27, 17, 13, 0.2);
}

.summary-laptop__screen span {
  width: 40px;
  aspect-ratio: 1;
  border: 5px solid #1f1713;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.summary-laptop__screen strong {
  font-size: clamp(13px, 1vw, 17px);
  letter-spacing: -0.04em;
  transform: rotate(-2deg);
}

.summary-laptop__base {
  width: 112%;
  height: 22%;
  margin-left: -6%;
  border-radius: 6px 6px 20px 20px;
  background: linear-gradient(180deg, #3a3431, #19120f);
  box-shadow: 0 15px 26px rgba(27, 17, 13, 0.18);
}

.summary-desk-note {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 3%;
  width: 26%;
  height: 18%;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(48, 28, 18, 0.14) 47% 49%, transparent 50%),
    linear-gradient(#fff8f0, #f7ebe0);
  box-shadow: 0 12px 24px rgba(46, 24, 14, 0.08);
  transform: rotate(-7deg);
}

.summary-plant {
  position: absolute;
  z-index: 5;
  right: 4%;
  bottom: 15%;
  width: 10%;
  height: 23%;
}

.summary-plant::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 60%;
  height: 34%;
  border-radius: 4px 4px 12px 12px;
  background: linear-gradient(145deg, #fff, #e8ddd2);
  box-shadow: 0 8px 18px rgba(46, 24, 14, 0.08);
}

.summary-plant span {
  position: absolute;
  bottom: 28%;
  width: 34%;
  height: 55%;
  border-radius: 50% 50% 44% 44%;
  background: linear-gradient(145deg, #4fa354, #2f7935);
  transform-origin: bottom center;
}

.summary-plant span:nth-child(1) {
  left: 12%;
  transform: rotate(-28deg);
}

.summary-plant span:nth-child(2) {
  left: 35%;
  height: 70%;
}

.summary-plant span:nth-child(3) {
  right: 16%;
  transform: rotate(26deg);
}

.summary-panel--week {
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: clamp(7px, 0.65vw, 9px);
  padding: clamp(14px, 1.1vw, 18px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(244, 115, 34, 0.18), transparent 34%),
    linear-gradient(145deg, #2b1711, #130b08);
  box-shadow: 0 22px 58px rgba(27, 17, 13, 0.2);
}

.summary-week-goal {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
  padding-bottom: clamp(8px, 0.8vw, 12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.summary-week-goal span {
  width: clamp(36px, 3vw, 48px);
  color: var(--orange);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.summary-week-goal p,
.summary-week-target p,
.summary-example p {
  margin: 0;
  line-height: 1.34;
}

.summary-week-goal p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(12px, 0.94vw, 15px);
  font-weight: 760;
}

.summary-week-examples {
  display: grid;
  gap: clamp(6px, 0.65vw, 10px);
  padding-bottom: clamp(8px, 0.8vw, 12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.summary-week-examples > strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(11px, 0.84vw, 13px);
}

.summary-example {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.summary-example span {
  width: clamp(27px, 2.25vw, 34px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--orange);
}

.summary-example p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(10.5px, 0.8vw, 13px);
  line-height: 1.25;
}

.summary-example p strong {
  color: #fff;
}

.summary-week-target {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
}

.summary-week-target span {
  width: clamp(38px, 3vw, 48px);
  border-radius: 50%;
  color: var(--orange);
  background: #fff;
  box-shadow: 0 13px 28px rgba(244, 115, 34, 0.16);
}

.summary-week-target p {
  color: #fff;
  font-size: clamp(11px, 0.86vw, 14px);
  line-height: 1.25;
  font-weight: 800;
}

.summary-banner {
  min-height: clamp(72px, 7.6vh, 92px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 1.6vw, 26px);
  padding: clamp(12px, 1vw, 16px) clamp(18px, 2.2vw, 34px);
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 94% 18%, rgba(244, 115, 34, 0.25), transparent 28%),
    linear-gradient(145deg, #2a1710, #130b08);
  box-shadow: 0 18px 46px rgba(27, 17, 13, 0.18);
}

.summary-banner__icon,
.summary-banner__spark {
  width: clamp(46px, 4.2vw, 64px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}

.summary-banner__icon {
  color: #fff;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.13), transparent 52%),
    linear-gradient(145deg, #ff8a25, #2a1710);
  border: 1px solid rgba(244, 115, 34, 0.55);
  box-shadow: 0 0 28px rgba(244, 115, 34, 0.32);
}

.summary-banner__spark {
  color: var(--orange);
}

.summary-banner p {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 26px);
  line-height: 1.28;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.summary-banner strong {
  color: var(--orange);
  font-weight: 950;
}

.tools-grid {
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
}

.tool-card--warm {
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 154, 82, 0.16), transparent 35%),
    linear-gradient(145deg, rgba(255, 250, 246, 0.96), rgba(255, 232, 217, 0.9));
}

.media-frame {
  position: relative;
  width: min(100%, 980px);
  height: 100%;
  min-height: 260px;
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(244, 115, 34, 0.62);
  border-radius: 22px;
  background: #120b09;
  box-shadow:
    0 20px 50px rgba(24, 11, 5, 0.25),
    0 0 50px rgba(244, 115, 34, 0.1);
}

.slide--video .content {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
}

.slide--video .media-link {
  margin-top: 0;
}

.video-player {
  isolation: isolate;
  border-color: rgba(255, 154, 82, 0.44);
  background:
    radial-gradient(circle at 50% 42%, rgba(244, 115, 34, 0.38), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.11), transparent 30%),
    linear-gradient(145deg, #2b1710, #0f0907);
}

.video-player::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.13), transparent 30%),
    radial-gradient(circle at 72% 20%, rgba(244, 115, 34, 0.2), transparent 28%),
    linear-gradient(to top, rgba(15, 8, 5, 0.86), rgba(15, 8, 5, 0.24) 62%, rgba(15, 8, 5, 0.44));
  opacity: 1;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.video-player::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.media-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #100a08;
}

.video-player video {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  filter: saturate(0.9) brightness(0.78);
  transition:
    opacity 260ms ease,
    filter 260ms ease;
}

.video-player.is-playing::before,
.video-player.is-playing::after {
  opacity: 0;
}

.video-player.is-playing video {
  opacity: 1;
  filter: none;
}

.video-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: clamp(86px, 8vw, 122px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    transform 220ms var(--ease),
    opacity 220ms ease;
}

.video-play:hover,
.video-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-play:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 7px;
}

.video-play__ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 58%),
    linear-gradient(145deg, rgba(244, 115, 34, 0.94), rgba(237, 38, 52, 0.92));
  box-shadow:
    0 22px 58px rgba(244, 115, 34, 0.34),
    0 0 0 16px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.video-play__ring::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  animation: playPulse 1800ms ease-out infinite;
}

.video-play__icon {
  position: relative;
  z-index: 1;
  width: 48%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.video-play__icon svg {
  width: 56%;
  height: 56%;
  margin-left: 5%;
  fill: currentColor;
}

.video-poster {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 2.6vw, 42px);
  right: clamp(22px, 2.6vw, 42px);
  bottom: clamp(20px, 2.3vw, 38px);
  max-width: 620px;
  color: #fff;
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease);
}

.video-poster__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffb47d;
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.video-poster h2 {
  margin: 14px 0 0;
  font-size: clamp(24px, 2.4vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.video-poster p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(13px, 1.02vw, 17px);
  line-height: 1.45;
}

.video-player.is-playing .video-play,
.video-player.is-playing .video-poster {
  opacity: 0;
  pointer-events: none;
}

.video-player.is-playing .video-poster {
  transform: translateY(10px);
}

.media-link {
  display: block;
  margin-top: 10px;
  color: var(--orange-soft);
  font-size: 11px;
  text-align: center;
  text-decoration: none;
}

@keyframes playPulse {
  from {
    opacity: 0.72;
    transform: scale(0.86);
  }
  to {
    opacity: 0;
    transform: scale(1.22);
  }
}

.slide__inner--image-slide {
  padding: 0;
  display: grid;
  place-items: center;
}

.sources-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
  background: transparent;
}

.sources-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

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

.source-pill {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 800;
}

.source-pill::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #ffb87f 0 16%, transparent 17%),
    linear-gradient(145deg, var(--orange), #ff9b50);
  box-shadow: 0 7px 17px rgba(244, 115, 34, 0.2);
}

.note-bar {
  margin-top: 14px;
  padding: 15px 20px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(100deg, #2a1a14, #160e0b);
  font-size: clamp(11px, 0.9vw, 15px);
  line-height: 1.45;
}

.note-bar strong {
  color: var(--orange);
}

.notice {
  margin-top: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(237, 38, 52, 0.13);
  border-radius: 13px;
  color: #8b1720;
  background: rgba(253, 232, 233, 0.86);
  font-size: clamp(11px, 0.9vw, 15px);
  line-height: 1.45;
}

.practice {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}

.practice__orb {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  box-shadow:
    0 18px 42px rgba(237, 38, 52, 0.35),
    0 0 0 14px rgba(255, 255, 255, 0.1);
  font-size: 30px;
  font-weight: 900;
}

.practice__title {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.practice__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(91, 30, 0, 0.2);
}

.practice__cta strong {
  color: var(--red);
}

.slide--cover,
.slide--dark,
.slide--practice,
.slide--end {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 86% -10%, rgba(244, 115, 34, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(38, 24, 18, 0.98), rgba(18, 11, 8, 0.97));
  box-shadow: 0 32px 110px rgba(16, 8, 4, 0.42);
}

.slide--practice {
  background:
    radial-gradient(circle at 92% -5%, rgba(255, 255, 255, 0.13), transparent 25%),
    radial-gradient(circle at 4% 105%, rgba(255, 255, 255, 0.11), transparent 29%),
    linear-gradient(145deg, #ff7e29, #ec5a16);
}

.slide--cover .slide__inner,
.slide--end .slide__inner {
  justify-content: center;
}

.cover-layout {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
}

.cover-copy {
  position: relative;
  z-index: 2;
}

.slide--cover .eyebrow {
  color: #ff9c56;
}

.cover-title {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 5.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.cover-subtitle {
  width: fit-content;
  max-width: 680px;
  margin: 26px 0 0;
  padding: clamp(14px, 1.25vw, 20px) clamp(16px, 1.45vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 8% 22%, rgba(244, 115, 34, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-size: clamp(18px, 1.65vw, 28px);
  line-height: 1.25;
  font-weight: 790;
  letter-spacing: -0.025em;
}

.cover-info {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 48px;
}

.cover-speaker,
.cover-meta {
  width: fit-content;
  min-height: 64px;
  display: grid;
  align-content: center;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.cover-speaker span {
  color: #ffad70;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cover-speaker strong {
  margin-top: 4px;
  color: #fff;
  font-size: clamp(16px, 1.24vw, 22px);
  line-height: 1.1;
}

.cover-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.visual-layout {
  height: 100%;
  min-height: 0;
  display: grid;
  align-items: stretch;
  gap: clamp(16px, 2vw, 30px);
}

.visual-layout--concept {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.visual-layout--zones,
.visual-layout--studio {
  grid-template-columns: minmax(0, 1.36fr) minmax(270px, 0.64fr);
}

.visual-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.visual-frame {
  position: relative;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 115, 34, 0.2);
  border-radius: 23px;
  background: #f4e8df;
  box-shadow:
    0 24px 50px rgba(55, 25, 10, 0.15),
    inset 0 1px rgba(255, 255, 255, 0.72);
  transform: translateZ(22px) rotateY(-1.2deg);
  transform-origin: center;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(244, 115, 34, 0.12), transparent 28%);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 7s ease-out;
  animation: visualBreath 9s ease-in-out infinite alternate;
}

.visual-frame--hero {
  height: min(64vh, 590px);
  border-color: rgba(255, 135, 55, 0.28);
  background: #160c08;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(244, 115, 34, 0.13);
  transform: perspective(1100px) rotateY(-5deg) rotateX(1deg);
}

.visual-frame--hero::before {
  content: "";
  position: absolute;
  inset: auto 8% -10% 8%;
  height: 22%;
  z-index: 2;
  border-radius: 50%;
  background: rgba(244, 115, 34, 0.25);
  filter: blur(40px);
}

.visual-frame--dark {
  background: #130b08;
}

.quote--compact {
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  padding: 42px 24px 24px;
  font-size: clamp(16px, 1.5vw, 25px);
}

.quote--compact::before {
  top: 4px;
  left: 17px;
  font-size: 58px;
}

.visual-points,
.visual-legend,
.output-legend {
  min-height: 0;
  display: grid;
  gap: 10px;
}

.visual-points {
  grid-template-columns: 1fr;
}

.visual-point,
.visual-legend__item,
.output-legend__item {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 9px 24px rgba(48, 22, 9, 0.05);
}

.visual-point > span,
.visual-legend__number,
.output-legend__item > span {
  width: 31px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--red));
  font-size: 12px;
  font-weight: 900;
}

.visual-point h2,
.visual-legend__item h2,
.output-legend__item h2 {
  margin: 0;
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.15;
}

.visual-point p,
.output-legend__item p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1.25;
}

.visual-legend {
  align-content: center;
}

.visual-legend__item {
  padding: 14px;
}

.visual-legend__item p {
  margin: 0 0 3px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.visual-legend__item small {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: clamp(9px, 0.66vw, 11px);
  line-height: 1.35;
}

.output-legend {
  grid-template-columns: 1fr;
  align-content: center;
  gap: 8px;
}

.output-legend__item {
  padding: 9px 11px;
}

@keyframes visualBreath {
  from {
    transform: scale(1.01);
  }
  to {
    transform: scale(1.055);
  }
}

.end {
  text-align: center;
}

.end__orb {
  width: 84px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 45px rgba(244, 115, 34, 0.3);
  font-size: 30px;
}

.end__title {
  margin: 0;
  font-size: clamp(45px, 5.4vw, 88px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.end__text {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.25vw, 21px);
}

.end__meta {
  margin: 56px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.dark-slide {
  background: #170e0b;
  color: #fff;
}

.dark-slide .brand__logo--light {
  opacity: 1;
}

.dark-slide .brand__logo--dark {
  opacity: 0;
}

.dark-slide .counter {
  color: rgba(255, 255, 255, 0.55);
}

.dark-slide .timeline {
  background: rgba(255, 255, 255, 0.14);
}

.dark-slide .control {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.dark-slide .dot {
  background: rgba(255, 255, 255, 0.24);
}

.dark-slide .ambient--one {
  opacity: 0.5;
  background: rgba(244, 115, 34, 0.28);
  transform: translate(-4vw, 3vw);
}

.dark-slide .ambient--two {
  opacity: 0.34;
  background: rgba(237, 38, 52, 0.23);
  transform: translate(5vw, -2vw);
}

.bottombar {
  position: relative;
  justify-content: space-between;
  gap: 18px;
}

.timeline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(27, 17, 13, 0.1);
  transition: background 400ms ease;
}

.timeline__progress {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--red));
  transition: width 700ms var(--ease);
}

.dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(27, 17, 13, 0.21);
  cursor: pointer;
  transition:
    width 350ms var(--ease),
    background 350ms ease,
    transform 250ms ease;
}

.dot:hover {
  transform: scale(1.5);
}

.dot.is-active {
  width: 25px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

.control {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(27, 17, 13, 0.1);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    transform 250ms ease,
    background 250ms ease,
    color 250ms ease,
    opacity 250ms ease;
}

.control:hover {
  transform: translateY(-2px);
}

.control:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

.control--accent {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--orange), #ef5f18);
  box-shadow: 0 10px 26px rgba(244, 115, 34, 0.28);
}

.control svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slide.is-leaving-next {
  animation: leaveNext 430ms var(--ease) forwards;
}

.slide.is-leaving-prev {
  animation: leavePrev 430ms var(--ease) forwards;
}

.slide.is-entering-next {
  animation: enterNext 700ms var(--ease) both;
}

.slide.is-entering-prev {
  animation: enterPrev 700ms var(--ease) both;
}

.slide__inner > * {
  animation: rise 720ms var(--ease) both;
}

.slide__inner > :nth-child(2) {
  animation-delay: 60ms;
}

.slide__inner > :nth-child(3) {
  animation-delay: 110ms;
}

.card,
.row-card,
.source-pill {
  animation: rise 620ms var(--ease) both;
}

.grid > :nth-child(2),
.stack > :nth-child(2),
.source-pill-grid > :nth-child(2) {
  animation-delay: 50ms;
}

.grid > :nth-child(3),
.stack > :nth-child(3),
.source-pill-grid > :nth-child(3) {
  animation-delay: 100ms;
}

.grid > :nth-child(4),
.stack > :nth-child(4),
.source-pill-grid > :nth-child(4) {
  animation-delay: 150ms;
}

.grid > :nth-child(5),
.source-pill-grid > :nth-child(5) {
  animation-delay: 200ms;
}

.grid > :nth-child(6),
.source-pill-grid > :nth-child(6) {
  animation-delay: 250ms;
}

.source-pill-grid > :nth-child(7) {
  animation-delay: 300ms;
}

.source-pill-grid > :nth-child(8) {
  animation-delay: 350ms;
}

@keyframes leaveNext {
  to {
    opacity: 0;
    transform: translate3d(-8%, 0, -240px) rotateY(5deg);
    filter: blur(8px);
  }
}

@keyframes leavePrev {
  to {
    opacity: 0;
    transform: translate3d(8%, 0, -240px) rotateY(-5deg);
    filter: blur(8px);
  }
}

@keyframes enterNext {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, -300px) rotateY(-6deg);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes enterPrev {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, -300px) rotateY(6deg);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .presentation {
    grid-template-rows: 58px 1fr 68px;
  }

  .slide {
    border-radius: 22px;
  }

  .slide__inner {
    padding: 24px;
  }

  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cover-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
  }

  .visual-layout--concept,
  .visual-layout--zones,
  .visual-layout--studio {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .objective-layout {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.9fr);
    gap: 12px;
  }

  .objective-grid,
  .objective-focus {
    gap: 9px;
  }

  .objective-card {
    padding: 12px;
  }

  .objective-list {
    gap: 4px 9px;
  }

  .objective-visual {
    grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1.56fr);
    gap: 12px;
  }

  .objective-person {
    height: clamp(220px, 36vh, 310px);
  }

  .visual-goal {
    padding: 12px;
  }

  .visual-chipset {
    gap: 5px;
    margin-top: 10px;
  }

  .visual-chipset span {
    min-height: 22px;
    padding: 4px 8px;
  }

  .mindset-mini {
    gap: 6px;
    margin-top: 10px;
  }

  .mindset-mini div {
    padding: 8px 10px;
  }

  .content {
    margin-top: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .pain-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
    gap: 16px;
  }

  .pain-quote {
    padding: 34px 18px 20px;
    font-size: clamp(18px, 2.3vw, 28px);
  }

  .pain-row {
    min-height: 86px;
  }

  .pain-row .row-card__title {
    font-size: clamp(16px, 1.9vw, 22px);
  }

  .steps-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(310px, 1.05fr);
    gap: 14px;
  }

  .steps-flow {
    gap: 8px;
  }

  .step-card {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .step-card__number {
    width: 42px;
    border-radius: 14px;
  }

  .step-card h2 {
    font-size: clamp(14px, 1.65vw, 18px);
  }

  .step-card p:not(.step-card__kicker) {
    font-size: clamp(10.5px, 1.2vw, 13px);
  }

  .steps-result {
    padding: 12px 14px;
  }

  .departments-layout {
    grid-template-columns: minmax(285px, 0.9fr) minmax(0, 1.1fr);
    gap: 14px;
  }

  .department-list {
    gap: 8px;
  }

  .department-card {
    grid-template-columns: auto 1fr;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .department-card__number {
    width: 40px;
    border-radius: 14px;
  }

  .department-card__cue {
    display: none;
  }

  .department-preview {
    grid-template-rows: minmax(160px, 0.82fr) minmax(0, 1.18fr);
    border-radius: 20px;
  }

  .department-preview__media {
    padding: 14px;
  }

  .department-preview__body {
    padding: 14px;
    gap: 10px;
  }

  .department-preview__heading {
    gap: 12px;
  }

  .department-preview__heading > span {
    width: 42px;
    border-radius: 14px;
  }

  .department-preview__heading h2 {
    font-size: clamp(17px, 1.9vw, 22px);
  }

  .department-preview__scenario {
    gap: 9px;
  }

  .department-preview__scenario div {
    padding: 11px;
  }

  .department-preview__scenario p {
    font-size: clamp(11px, 1.12vw, 13px);
  }

  .media-overview-layout,
  .tools-layout {
    grid-template-columns: minmax(0, 0.98fr) minmax(300px, 1.02fr);
    gap: 14px;
  }

  .media-overview-panel,
  .tools-grid {
    gap: 10px;
  }

  .media-feature-card,
  .tool-card {
    padding: 13px 14px;
    border-radius: 17px;
  }

  .media-feature-card__mark,
  .tool-card__index {
    width: 44px;
    border-radius: 15px;
  }

  .media-feature-card h2,
  .tool-card h2 {
    font-size: clamp(17px, 1.85vw, 22px);
  }

  .media-feature-card p:not(.media-feature-card__kicker),
  .tool-card small {
    margin-top: 6px;
    font-size: clamp(11px, 1.18vw, 13.5px);
  }

  .media-notice,
  .tools-summary {
    padding: 12px 14px;
    font-size: clamp(11px, 1.12vw, 13.5px);
  }

  .habits-layout {
    grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
    gap: 14px;
  }

  .habits-points {
    gap: 9px;
  }

  .habit-point {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 17px;
  }

  .habit-point__number {
    width: 44px;
    border-radius: 15px;
  }

  .habit-point h2 {
    font-size: clamp(16px, 1.75vw, 21px);
  }

  .habit-point p {
    margin-top: 6px;
    font-size: clamp(11px, 1.16vw, 13.5px);
  }

  .habits-visual {
    border-radius: 20px;
  }

  .summary-main {
    grid-template-columns: minmax(250px, 0.9fr) minmax(220px, 0.8fr) minmax(260px, 0.9fr);
    gap: 12px;
  }

  .summary-panel--done,
  .summary-panel--week {
    padding: 14px;
    border-radius: 20px;
  }

  .summary-panel--done h2,
  .summary-panel--week h2 {
    font-size: clamp(19px, 2.15vw, 25px);
  }

  .summary-done-list {
    margin-top: 12px;
    gap: 8px;
  }

  .summary-done-item {
    gap: 10px;
    padding-bottom: 8px;
  }

  .summary-item-icon {
    width: 44px;
    border-radius: 15px;
  }

  .summary-done-item h3 {
    font-size: clamp(13px, 1.42vw, 16px);
  }

  .summary-done-item p {
    margin-top: 4px;
    font-size: clamp(10px, 1.08vw, 12.5px);
  }

  .summary-source {
    width: 54px;
    border-radius: 15px;
  }

  .summary-core {
    width: 76px;
  }

  .summary-laptop__screen {
    border-width: 6px;
  }

  .summary-panel--week {
    gap: 10px;
  }

  .summary-week-goal,
  .summary-week-target {
    gap: 10px;
  }

  .summary-week-goal span,
  .summary-week-target span {
    width: 38px;
  }

  .summary-week-goal p,
  .summary-week-target p {
    font-size: clamp(11px, 1.14vw, 13px);
  }

  .summary-week-examples {
    gap: 7px;
  }

  .summary-week-examples > strong,
  .summary-example p {
    font-size: clamp(10px, 1.06vw, 12px);
  }

  .summary-example {
    gap: 8px;
  }

  .summary-example span {
    width: 30px;
  }

  .summary-banner {
    min-height: 68px;
    padding: 11px 16px;
    border-radius: 18px;
  }

  .summary-banner__icon,
  .summary-banner__spark {
    width: 44px;
  }

  .summary-banner p {
    font-size: clamp(14px, 1.62vw, 18px);
  }

  .dots {
    max-width: 45vw;
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  .presentation {
    grid-template-rows: 52px 1fr 64px;
  }

  .topbar,
  .bottombar,
  .stage {
    width: calc(100vw - 22px);
  }

  .brand {
    width: 88px;
    height: 27px;
  }

  .brand__logo {
    max-width: 88px;
    max-height: 27px;
  }

  .slide {
    border-radius: 18px;
  }

  .slide__inner {
    padding: 20px 18px;
  }

  .slide__topline {
    margin-bottom: 12px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .source-pill-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cover-layout {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .cover-copy {
    padding-top: 8px;
  }

  .cover-title {
    font-size: clamp(42px, 13vw, 62px);
  }

  .cover-subtitle {
    margin-top: 14px;
    padding: 13px 15px;
    border-radius: 18px;
  }

  .cover-info {
    margin-top: 24px;
    gap: 9px;
  }

  .cover-speaker,
  .cover-meta {
    min-height: 56px;
    padding: 11px 13px;
  }

  .visual-frame--hero {
    height: 32vh;
    min-height: 190px;
    transform: none;
  }

  .visual-layout--concept,
  .visual-layout--zones,
  .visual-layout--studio {
    height: auto;
    grid-template-columns: 1fr;
  }

  .visual-layout .visual-frame {
    min-height: 250px;
    transform: none;
  }

  .visual-layout--concept .visual-frame {
    order: -1;
  }

  .objective-layout {
    height: auto;
    grid-template-columns: 1fr;
  }

  .objective-grid,
  .objective-focus {
    display: grid;
    grid-template-rows: none;
  }

  .objective-list {
    grid-template-columns: 1fr;
  }

  .final-line {
    min-height: 230px;
  }

  .objective-visual {
    height: auto;
    grid-template-columns: 1fr;
  }

  .objective-side {
    display: grid;
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
    align-items: stretch;
  }

  .objective-person {
    height: 220px;
    min-height: 0;
  }

  .objective-map {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .card {
    padding: 16px;
  }

  .quote {
    min-height: 170px;
    padding: 38px 24px 24px;
  }

  .dots {
    display: none;
  }

  .control {
    width: 39px;
  }

  .media-frame {
    min-height: 190px;
  }

  .video-player::after {
    inset: 10px;
    border-radius: 14px;
  }

  .video-play {
    width: 76px;
  }

  .video-play__ring {
    box-shadow:
      0 16px 36px rgba(244, 115, 34, 0.3),
      0 0 0 10px rgba(255, 255, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .video-play__ring::after {
    inset: -12px;
  }

  .video-poster {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .video-poster__tag {
    min-height: 25px;
    padding: 5px 9px;
    font-size: 9px;
  }

  .video-poster h2 {
    margin-top: 9px;
    font-size: 22px;
  }

  .video-poster p {
    display: none;
  }

  .pain-layout {
    height: auto;
    grid-template-columns: 1fr;
  }

  .pain-visual {
    height: 360px;
  }

  .pain-quote {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 30px 16px 18px;
    border-radius: 18px;
    font-size: clamp(17px, 5.2vw, 22px);
  }

  .pain-quote::before {
    left: 16px;
    font-size: 52px;
  }

  .pain-copy {
    gap: 12px;
  }

  .pain-row {
    min-height: 78px;
    padding: 12px 14px;
    gap: 13px;
    border-radius: 16px;
  }

  .pain-row .row-card__dot {
    width: 42px;
    border-radius: 14px;
  }

  .pain-row .row-card__title {
    font-size: 16px;
  }

  .pain-conclusion {
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 17px;
  }

  .steps-layout {
    height: auto;
    grid-template-columns: 1fr;
  }

  .steps-visual {
    height: 310px;
    min-height: 0;
    border-radius: 20px;
  }

  .steps-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .steps-visual figcaption strong {
    font-size: 17px;
  }

  .steps-flow {
    grid-template-rows: none;
    gap: 10px;
  }

  .step-card {
    min-height: 78px;
    padding: 12px;
    gap: 12px;
    border-radius: 16px;
  }

  .step-card__number {
    width: 42px;
    border-radius: 14px;
  }

  .step-card h2 {
    font-size: 16px;
  }

  .step-card p:not(.step-card__kicker) {
    font-size: 12px;
  }

  .steps-result {
    padding: 16px;
    border-radius: 18px;
  }

  .steps-result strong {
    font-size: 16px;
  }

  .departments-layout {
    height: auto;
    grid-template-columns: 1fr;
  }

  .department-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .department-card {
    min-height: 84px;
    transform: none;
  }

  .department-card:hover,
  .department-card:focus-visible,
  .department-card.is-active {
    transform: none;
  }

  .department-card strong {
    font-size: 16px;
  }

  .department-card small {
    font-size: 12px;
  }

  .department-preview {
    grid-template-rows: 260px auto;
  }

  .department-preview__media {
    padding: 12px;
  }

  .department-mockup {
    border-radius: 18px;
  }

  .department-mockup__source-stack {
    left: 5%;
    width: 28%;
  }

  .department-mockup__screen {
    left: 31%;
    width: 42%;
  }

  .department-mockup__result {
    right: 5%;
    width: 28%;
    padding: 10px;
  }

  .department-preview__body {
    padding: 15px;
  }

  .department-preview__heading h2 {
    font-size: 19px;
  }

  .department-preview__scenario {
    grid-template-columns: 1fr;
  }

  .media-overview-layout,
  .tools-layout {
    height: auto;
    grid-template-columns: 1fr;
  }

  .media-overview-visual,
  .tools-visual {
    height: 300px;
    border-radius: 20px;
  }

  .media-overview-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .media-overview-visual figcaption strong {
    font-size: 17px;
  }

  .media-overview-panel,
  .tools-panel,
  .tools-grid {
    grid-template-rows: none;
    gap: 10px;
  }

  .media-feature-card,
  .tool-card {
    min-height: 108px;
    padding: 13px;
    gap: 12px;
    border-radius: 16px;
  }

  .media-feature-card__mark,
  .tool-card__index {
    width: 42px;
    border-radius: 14px;
  }

  .media-feature-card h2,
  .tool-card h2 {
    font-size: 18px;
  }

  .media-feature-card p:not(.media-feature-card__kicker),
  .tool-card small {
    font-size: 12px;
  }

  .media-notice,
  .tools-summary {
    padding: 15px;
    border-radius: 17px;
    font-size: 13px;
  }

  .slide--habits .content {
    margin-top: 14px;
  }

  .habits-layout {
    height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .habits-visual {
    order: -1;
    height: clamp(190px, 28vh, 230px);
    border-radius: 20px;
  }

  .habits-points {
    grid-template-rows: none;
    gap: 8px;
  }

  .habit-point {
    min-height: 80px;
    padding: 11px;
    gap: 10px;
    border-radius: 16px;
  }

  .habit-point__number {
    width: 38px;
    border-radius: 13px;
  }

  .habit-point h2 {
    font-size: 16px;
  }

  .habit-point p {
    margin-top: 5px;
    font-size: 11.5px;
    line-height: 1.34;
  }

  .slide--summary .content {
    margin-top: 14px;
  }

  .summary-layout {
    height: auto;
    grid-template-rows: none;
    gap: 10px;
  }

  .summary-main {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .summary-visual {
    order: -1;
    height: 210px;
    border-radius: 20px;
  }

  .summary-panel--done,
  .summary-panel--week {
    padding: 13px;
    border-radius: 18px;
  }

  .summary-panel--done h2,
  .summary-panel--week h2 {
    font-size: 21px;
  }

  .summary-done-list {
    height: auto;
    grid-template-rows: none;
    gap: 8px;
    margin-top: 11px;
  }

  .summary-done-item {
    min-height: 68px;
    gap: 10px;
    padding-bottom: 8px;
  }

  .summary-item-icon {
    width: 40px;
    border-radius: 14px;
  }

  .summary-done-item h3 {
    font-size: 15px;
  }

  .summary-done-item p {
    font-size: 11.5px;
    line-height: 1.32;
  }

  .summary-source-cloud::before {
    left: 15%;
    right: 12%;
    top: 13%;
  }

  .summary-source {
    width: 48px;
    padding: 6px;
    border-radius: 14px;
  }

  .summary-source strong {
    font-size: 8px;
  }

  .summary-core {
    top: 20%;
    width: 64px;
    box-shadow:
      0 0 0 8px rgba(255, 255, 255, 0.44),
      0 14px 30px rgba(244, 115, 34, 0.2);
  }

  .summary-person {
    left: 10%;
    bottom: 3%;
    height: 40%;
  }

  .summary-laptop {
    right: 13%;
    bottom: 11%;
    width: 46%;
    height: 34%;
  }

  .summary-laptop__screen {
    border-width: 5px;
    border-radius: 12px 12px 7px 7px;
  }

  .summary-laptop__screen span {
    width: 26px;
    border-width: 4px;
  }

  .summary-laptop__screen strong {
    font-size: 10px;
  }

  .summary-plant,
  .summary-desk-note {
    display: none;
  }

  .summary-panel--week {
    gap: 10px;
  }

  .summary-week-goal,
  .summary-week-target {
    gap: 10px;
  }

  .summary-week-goal span,
  .summary-week-target span {
    width: 38px;
  }

  .summary-week-goal p,
  .summary-week-target p {
    font-size: 12px;
  }

  .summary-week-examples {
    gap: 7px;
  }

  .summary-week-examples > strong,
  .summary-example p {
    font-size: 11.5px;
  }

  .summary-example span {
    width: 28px;
  }

  .summary-banner {
    min-height: 72px;
    grid-template-columns: auto 1fr;
    padding: 12px;
    gap: 10px;
    border-radius: 18px;
  }

  .summary-banner__icon {
    width: 42px;
  }

  .summary-banner__spark {
    display: none;
  }

  .summary-banner p {
    font-size: 13.5px;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* Detailed Comparison Table Styles (Slide 6) */
.compare-table-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.compare-table-grid {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  justify-content: space-between;
  gap: clamp(4px, 0.6vh, 10px);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr clamp(120px, 11vw, 170px) 1fr;
  column-gap: clamp(12px, 1.5vw, 24px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(3px, 0.4vh, 8px);
}

.compare-row--header {
  border-bottom: 2px solid var(--ink);
  padding-bottom: clamp(6px, 0.8vh, 12px);
}

.compare-row--data:last-child {
  border-bottom: none;
}

.compare-cell {
  display: flex;
  align-items: center;
  min-width: 0;
}

.compare-cell--left {
  justify-content: flex-start;
}

.compare-cell--right {
  justify-content: flex-start;
}

.compare-cell--center {
  justify-content: center;
}

.compare-cell--header {
  padding-block: 4px;
}

.compare-cell--header.compare-cell--center {
  justify-content: center;
}

.center-criteria-label {
  font-size: 11px;
  font-weight: 900;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.header-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(6px, 0.6vw, 10px) clamp(12px, 1.2vw, 20px);
  border-radius: 999px;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 850;
  box-shadow: 0 4px 15px rgba(27, 17, 13, 0.08);
}

.header-pill svg {
  width: clamp(16px, 1.4vw, 22px);
  height: clamp(16px, 1.4vw, 22px);
}

.header-pill--chatgpt {
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-pill--chatgpt svg {
  color: #19c37d !important;
}

.header-pill--notebooklm {
  background: linear-gradient(135deg, var(--orange), #ed5d13);
  color: #fff;
}

.header-pill--notebooklm svg {
  color: #fff !important;
}

.cell-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.cell-icon {
  width: clamp(26px, 2.2vw, 34px);
  height: clamp(26px, 2.2vw, 34px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex: 0 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.compare-cell--left .cell-icon {
  color: var(--ink);
  background: rgba(27, 17, 13, 0.07);
  border: 1px solid rgba(27, 17, 13, 0.05);
}

.compare-cell--right .cell-icon {
  color: var(--orange);
  background: rgba(244, 115, 34, 0.1);
  border: 1px solid rgba(244, 115, 34, 0.08);
}

.cell-icon svg {
  width: 55%;
  height: 55%;
}

.cell-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cell-title {
  font-size: clamp(11.5px, 0.95vw, 14px);
  font-weight: 750;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cell-desc {
  font-size: clamp(9.5px, 0.8vw, 11.5px);
  color: var(--ink-soft);
  line-height: 1.3;
}

.criteria-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: clamp(4px, 0.4vh, 8px) clamp(10px, 0.9vw, 16px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 17, 13, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  color: var(--ink);
}

.criteria-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.criteria-icon svg {
  width: 100%;
  height: 100%;
}

.criteria-name {
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 800;
  white-space: nowrap;
}

.compare-conclusion {
  margin-top: clamp(12px, 1.8vh, 24px);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.conclusion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(8px, 0.8vh, 12px) clamp(14px, 1.3vw, 22px);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 8px 22px rgba(237, 38, 52, 0.22);
  flex-shrink: 0;
}

.conclusion-badge-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conclusion-badge-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.conclusion-badge-label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.conclusion-box {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(8px, 0.8vh, 12px) clamp(16px, 1.5vw, 24px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(46, 24, 14, 0.04);
}

.conclusion-text {
  flex: 1;
  font-size: clamp(11.5px, 0.95vw, 14px);
  color: var(--ink-soft);
  line-height: 1.35;
}

.conclusion-text strong {
  font-weight: 850;
}

.conclusion-text--left strong {
  color: var(--ink);
}

.conclusion-text--right strong {
  color: var(--orange);
}

.conclusion-vertical-line {
  width: 1px;
  height: 24px;
  background: var(--line);
  margin-inline: clamp(12px, 1.5vw, 24px);
  flex-shrink: 0;
}

/* Slide 6 Mobile Responsiveness */
@media (max-width: 680px) {
  .compare-table-grid {
    overflow-y: auto;
    max-height: 52vh;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: flex-start;
  }
  
  .compare-row--header {
    display: none;
  }
  
  .compare-row--data {
    grid-template-columns: 1fr;
    gap: 8px;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 12px;
  }
  
  .compare-cell--center {
    justify-content: flex-start;
  }
  
  .compare-cell--left {
    padding-left: 10px;
    border-left: 3px solid var(--ink-soft);
  }
  
  .compare-cell--right {
    padding-left: 10px;
    border-left: 3px solid var(--orange-soft);
  }
  
  .compare-conclusion {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .conclusion-badge {
    align-self: flex-start;
  }
  
  .conclusion-box {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 12px 16px;
  }
  
  .conclusion-vertical-line {
    display: none;
  }
  
  .conclusion-text {
    width: 100%;
  }
}
