:root {
  --bg: #fff9f4;
  --brand: #ed971b;
  --brand-dark: #ed971b;
  --ink: #1f1f24;
  --muted: #5b5d66;
  --paper: #fff9f4;
  --white: #ffffff;
  --line: #1f1f2414;
  --shadow: 0 16px 50px #00000014;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  overflow: hidden;
  background: #17120d;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

.presentation {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
}

.slide {
  display: none;
  width: min(100vw, calc(100vh * 16 / 9));
  height: min(100vh, calc(100vw * 9 / 16));
  aspect-ratio: 16 / 9;
}

.slide.is-active {
  display: block;
}

.slide-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.slide-image .slide-stage {
  background: #14110d;
  cursor: pointer;
}

.slide-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(#ed971b0c 1px, transparent 1px),
    linear-gradient(90deg, #ed971b0c 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 40% 35%, #000 38%, transparent 86%);
  pointer-events: none;
}

.slide-image .slide-stage::before,
.slide-image .slide-stage::after {
  content: none;
}

.full-slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reveal-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.reveal-mask {
  position: absolute;
  display: block;
  border-radius: 12px;
  background: linear-gradient(90deg, #fbf9f5 0%, #fffdf9 100%);
  box-shadow: 0 0 0 1px rgba(255, 253, 249, 0.84);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.reveal-mask.is-hidden {
  opacity: 0;
  transform: translateX(1.1%);
  visibility: hidden;
}

.slide-02-reveal .reveal-mask {
  left: 43.9%;
  width: 53.7%;
}

.slide-02-reveal .line-1 {
  top: 6.55%;
  height: 5.6%;
}

.slide-02-reveal .line-2 {
  top: 13.05%;
  height: 5.7%;
}

.slide-02-reveal .line-3 {
  top: 19.45%;
  height: 5.6%;
}

.slide-02-reveal .line-4 {
  top: 25.85%;
  height: 5.75%;
}

.slide-02-reveal .line-5 {
  top: 32.2%;
  height: 5.75%;
}

.slide-02-reveal .line-6 {
  top: 38.55%;
  height: 5.8%;
}

.slide-02-reveal .line-7 {
  top: 44.75%;
  height: 8.4%;
}

.slide-02-reveal .line-8 {
  top: 53.35%;
  height: 5.8%;
}

.slide-02-reveal .line-9 {
  top: 59.55%;
  height: 5.85%;
}

.slide-02-reveal .line-10 {
  top: 65.8%;
  height: 5.85%;
}

.slide-02-reveal .line-11 {
  top: 72.25%;
  height: 5.95%;
}

.slide-02-reveal .conclusion {
  left: 42.9%;
  top: 80.3%;
  width: 54.3%;
  height: 16.95%;
  border-radius: 28px;
  background: linear-gradient(90deg, #fbefe1 0%, #fdf6ed 100%);
}

.slide-kilink .slide-stage {
  background: var(--bg);
  cursor: pointer;
}

.kilink-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.orb-a {
  width: 34%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 40% 40%, #ffd08a, #ed971b20 70%);
  top: -15%;
  left: -8%;
}

.orb-b {
  width: 42%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 60% 40%, #ffe7bf, #ed971b14 70%);
  right: -12%;
  bottom: -24%;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ed971b0c 1px, transparent 1px),
    linear-gradient(90deg, #ed971b0c 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 30%, #000 45%, transparent 100%);
}

.slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 5.5%;
}

.slide-content-centered {
  display: grid;
  place-items: center;
}

.slide-content-fit {
  display: grid;
  place-items: center;
  padding: 3.7%;
}

.slide-content-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2%;
  padding: 3.6% 5.5%;
}

.content-banner {
  display: block;
  width: min(88%, 1220px);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 22px 54px #ed971b29;
}

.content-panel-image {
  display: block;
  width: auto;
  max-width: 92%;
  height: auto;
  max-height: 88%;
  border-radius: 20px;
  box-shadow: 0 22px 54px #ed971b29;
}

.content-fragment {
  display: block;
  height: auto;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 22px 54px #ed971b29;
}

.content-fragment-wide {
  width: min(90%, 1320px);
}

.content-fragment-medium {
  width: min(66%, 920px);
}

.content-fragment-recap {
  width: min(66%, 940px);
  box-shadow: 0 12px 28px #ed971b1f;
}

.content-fragment-grid {
  width: min(86%, 1180px);
}

.content-fragment-summary {
  width: min(70%, 1000px);
}

.slide-resources {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6%;
  padding: 6% 7%;
}

.resources-heading {
  max-width: 980px;
}

.resources-heading img {
  display: block;
  width: clamp(140px, 12vw, 220px);
  height: auto;
  margin-bottom: 3%;
}

.resources-heading .eyebrow {
  display: inline-block;
  margin: 0 0 1.2%;
  color: var(--brand);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resources-heading h1 {
  max-width: 15ch;
  margin: 0;
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(48px, 4.4vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2%;
}

.resource-card {
  position: relative;
  min-height: 210px;
  padding: 30px 28px 28px;
  border: 1px solid #ed971b33;
  border-radius: 20px;
  background: linear-gradient(120deg, #ffffffef, #fff8ecf2);
  box-shadow: 0 22px 54px #ed971b29;
  color: var(--ink);
  text-decoration: none;
}

.resource-card strong,
.resource-card span {
  display: block;
}

.resource-card strong {
  margin: 18px 0 12px;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(22px, 1.7vw, 31px);
  line-height: 1.15;
}

.resource-card span:last-child {
  color: var(--muted);
  font-size: clamp(16px, 1.05vw, 21px);
  line-height: 1.35;
  font-weight: 600;
}

.resource-number {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding-left: 1px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: "Sora", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.case-reveal-frame {
  position: relative;
  display: block;
  border-radius: 20px;
}

.case-reveal-frame .content-fragment {
  box-shadow: 0 22px 54px #ed971b29;
}

.case-reveal-frame .case-mask {
  top: 0;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(90deg, #fffdf9 0%, #fbf9f5 100%);
  box-shadow: none;
}

.case-reveal-frame .case-1 {
  left: 0;
  width: 34.1%;
  border-radius: 20px 0 0 20px;
}

.case-reveal-frame .case-2 {
  left: 32.95%;
  width: 34.35%;
}

.case-reveal-frame .case-3 {
  left: 65.8%;
  width: 34.2%;
  border-radius: 0 20px 20px 0;
}

.case-reveal-slide-09 .case-3 {
  left: 60.8%;
  width: 39.2%;
}

.slide-stage::after {
  content: "";
  position: absolute;
  width: 38%;
  aspect-ratio: 1;
  right: -10%;
  bottom: -20%;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #ffe7bf, #ed971b14 70%);
  filter: blur(6px);
  pointer-events: none;
}

.cover-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 249, 244, 0.98) 0%, rgba(255, 249, 244, 0.91) 35%, rgba(255, 249, 244, 0.33) 64%, rgba(31, 31, 36, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 249, 244, 0.56), rgba(255, 249, 244, 0.18));
}

.cover-header {
  position: absolute;
  top: 6.2%;
  left: 5.8%;
  right: 5.8%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cover-logo {
  display: block;
  width: clamp(150px, 13vw, 230px);
  height: auto;
}

.cover-header p {
  margin: 0;
  padding: 0.58em 0.9em;
  border: 1px solid #ed971b30;
  border-radius: 999px;
  background: #ffffffd9;
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(14px, 1vw, 19px);
  font-weight: 700;
  letter-spacing: 0;
}

.cover-content {
  position: absolute;
  left: 5.8%;
  bottom: 8%;
  z-index: 3;
  width: min(760px, 55%);
  padding: clamp(24px, 2.4vw, 42px);
  border: 1px solid #ed971b33;
  border-radius: 20px;
  background: linear-gradient(120deg, #ffffffeb, #fff8ecf2);
  box-shadow: 0 22px 54px #ed971b29;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--brand-dark);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(14px, 1.02vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(48px, 4.55vw, 78px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
  max-width: 12ch;
  text-wrap: balance;
}

.cover-lead {
  max-width: 34ch;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(21px, 1.65vw, 31px);
  line-height: 1.32;
  font-weight: 500;
  text-wrap: balance;
}

.cover-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.cover-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.82rem;
  border: 1px solid #ed971b2e;
  border-radius: 999px;
  background: #ffffffb3;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(15px, 1vw, 19px);
}

@media (max-aspect-ratio: 4 / 3) {
  .cover-overlay {
    background: linear-gradient(180deg, rgba(255, 249, 244, 0.96), rgba(255, 249, 244, 0.72));
  }

  .cover-content {
    width: auto;
    right: 5.8%;
  }

  h1 {
    font-size: clamp(42px, 8vw, 70px);
  }

  .cover-lead {
    font-size: clamp(21px, 3.8vw, 32px);
  }
}
