/* ========================================
   PEBBLEWORKS PRESENTATION DECK
   ======================================== */

:root {
  --deep-plum: #402f40;
  --muted-purple: #806a80;
  --lavender: #baa5ba;
  --sage-green: #7EB079;
  --dark-sage: #5a8a55;
  --earth-cream: #E0D6CC;
  --warm-taupe: #A69A8E;
  --near-black: #2A2320;
  --off-white: #FAF8F5;
  --warm-white: #F5F0EB;
  --light-cream: #EDE8E2;
  --font: 'Raleway', sans-serif;
}

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--deep-plum);
  font-family: var(--font);
}

/* ========================================
   SLIDE ENGINE
   ======================================== */

.deck {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  background: var(--off-white);
}

.slide.active {
  opacity: 1;
  pointer-events: all;
}

/* ========================================
   LOGO (top-left on content slides)
   ======================================== */

.slide-logo {
  position: absolute;
  top: 28px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  overflow: visible;
}

.slide-logo img { width: 54px; height: 48px; }

.slide-logo-wordmark {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.slide-logo-wordmark .pebble { color: var(--deep-plum); }
.slide-logo-wordmark .works { color: var(--muted-purple); }

/* Light logo variant for dark slides */
.slide-logo--light .slide-logo-wordmark .pebble { color: rgba(255,255,255,0.9); }
.slide-logo--light .slide-logo-wordmark .works { color: rgba(255,255,255,0.55); }

/* ========================================
   SLIDE COUNTER
   ======================================== */

.slide-counter {
  position: fixed;
  bottom: 24px;
  right: 72px;
  font-size: 12px;
  font-weight: 500;
  color: var(--warm-taupe);
  letter-spacing: 0.06em;
  z-index: 100;
  pointer-events: none;
}

/* ========================================
   NAV DOTS
   ======================================== */

.nav-dots {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 100;
  pointer-events: none;
}

.nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--earth-cream);
  opacity: 0.4;
  transition: opacity 0.3s, background 0.3s;
}

.nav-dot.active {
  background: var(--sage-green);
  opacity: 1;
}

/* ========================================
   SHARED TYPOGRAPHY
   ======================================== */

.section-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-green) !important;
  margin-bottom: 20px;
}

h1, h2 {
  font-family: var(--font);
  color: var(--deep-plum);
  line-height: 1.15;
}

p {
  font-family: var(--font);
  color: var(--muted-purple);
  line-height: 1.65;
}

/* ========================================
   SLIDE 1 — COVER
   ======================================== */

.slide--cover {
  background: var(--deep-plum);
  align-items: center;
  text-align: center;
}

.cover-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
}

.cover-logo svg { width: 64px; height: 64px; }

.cover-wordmark {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.cover-wordmark .pebble { color: var(--earth-cream); }
.cover-wordmark .works { color: var(--lavender); }

.cover-tagline {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: white;
  line-height: 1.25;
  max-width: 820px;
  margin-bottom: 28px;
}

.cover-tagline .accent { color: var(--sage-green); }

.cover-sub {
  font-size: 20px;
  color: var(--lavender);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.cover-line {
  width: 60px;
  height: 3px;
  background: var(--sage-green);
  margin: 32px auto 0;
  border-radius: 2px;
}

/* ========================================
   SLIDE 2 — YOUR CHALLENGE
   ======================================== */

.slide--challenge {
  align-items: flex-start;
}

.challenge-layout {
  width: 100%;
  max-width: 1360px;
}

.challenge-layout h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 40px;
}

.challenge-steps {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.challenge-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  border-top: 4px solid var(--sage-green);
  padding: 36px 32px 40px;
  box-shadow: 0 2px 12px rgba(64,47,64,0.07);
}

.challenge-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--sage-green);
  letter-spacing: 0.08em;
}

.challenge-step strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--deep-plum);
  margin-bottom: 2px;
}

.challenge-step p {
  font-size: 16px;
  color: var(--muted-purple);
  line-height: 1.6;
  max-width: 100%;
}

/* ========================================
   SLIDE 3 — THE COST
   ======================================== */

.slide--cost {
  background: var(--warm-white);
  text-align: center;
}

.cost-layout { max-width: 800px; }

.cost-layout h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 48px;
  color: var(--deep-plum);
}

.cost-number {
  font-size: 80px;
  font-weight: 700;
  color: var(--deep-plum);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cost-number span {
  color: var(--sage-green);
}

.cost-label {
  font-size: 22px;
  color: var(--muted-purple);
  margin-bottom: 40px;
}

.cost-detail {
  font-size: 22px;
  color: var(--warm-taupe);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.cost-footnote {
  display: inline-block;
  font-size: 22px;
  color: var(--deep-plum);
  background: rgba(126, 176, 121, 0.12);
  border-left: 4px solid var(--sage-green);
  padding: 14px 24px;
  border-radius: 0 8px 8px 0;
  margin-top: 8px;
  font-weight: 500;
}

/* ========================================
   SLIDE 4 — OUR ANSWER
   ======================================== */

.slide--answer {
  align-items: flex-start;
}

.answer-layout {
  max-width: 1360px;
  width: 100%;
}

.answer-layout h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 28px;
}

.answer-layout > p {
  font-size: 24px;
  color: var(--muted-purple);
  margin-bottom: 52px;
  max-width: 680px;
}

.answer-pillars {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}

.answer-pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--deep-plum);
  border-radius: 12px;
  border-top: 4px solid var(--sage-green);
  padding: 36px 32px 40px;
  box-shadow: 0 4px 24px rgba(64,47,64,0.18);
}

.answer-pillar-num {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-green);
}

.answer-pillar-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.answer-pillar-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 100%;
}

/* ========================================
   SLIDE 5 — AI LIFECYCLE WHEEL
   ======================================== */

.slide--wheel {
  background: var(--deep-plum);
  flex-direction: row;
  align-items: center;
  gap: 80px;
  justify-content: center;
}

.wheel-text {
  flex: 0 0 300px;
}

.wheel-text .section-label { color: var(--sage-green); }

.wheel-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.wheel-text p {
  font-size: 17px;
  color: var(--lavender);
  line-height: 1.65;
}

.cycle-wheel-wrap {
  position: relative;
  width: 580px;
  height: 580px;
  flex-shrink: 0;
}

.cycle-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 200px;
  pointer-events: none;
}

.cycle-gear {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cycle-center-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  transition: opacity 0.3s;
}

.cycle-center-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  transition: opacity 0.3s;
}

.cycle-node {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,0.15);
  background: var(--deep-plum);
  cursor: pointer;
  transition: all 0.4s;
}

.cycle-num {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: color 0.4s;
}

.cycle-node.active {
  border-color: var(--sage-green);
  background: rgba(126,176,121,0.12);
  box-shadow: 0 0 20px rgba(126,176,121,0.25);
}

.cycle-node.active .cycle-num { color: white; }

.cycle-node-label {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  pointer-events: none;
  transition: color 0.4s;
}

.cycle-node.active .cycle-node-label { color: var(--sage-green); }

/* ========================================
   SLIDE 6 — TWO LEVELS
   ======================================== */

.slide--levels {
  padding: 0;
  flex-direction: row;
}

.level-panel {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}

.level-panel--light {
  background: var(--off-white);
}

.level-panel--dark {
  background: var(--deep-plum);
}

.level-panel--dark .section-label { color: var(--sage-green) !important; }
.level-panel--dark h3 { color: white !important; }
.level-panel--dark p { color: rgba(255,255,255,0.9) !important; }
.level-panel--dark li { color: rgba(255,255,255,0.9) !important; }
.level-panel--dark .level-divider { background: var(--sage-green); }

.level-panel h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 12px;
}

.level-panel > p {
  font-size: 17px;
  color: var(--muted-purple);
  margin-bottom: 32px;
  line-height: 1.55;
}

.level-divider {
  width: 40px;
  height: 3px;
  background: var(--sage-green);
  border-radius: 2px;
  margin-bottom: 28px;
}

.level-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.level-items li {
  font-size: 17px;
  color: var(--muted-purple);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.level-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-green);
}

.level-divider-vert {
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--earth-cream);
  opacity: 0.4;
  transform: translateX(-50%);
}

/* ========================================
   SLIDE 7 — FULLY MANAGED
   ======================================== */

.slide--managed {
  align-items: flex-start;
}

.managed-layout { max-width: 960px; width: 100%; }

.managed-layout h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
}

.managed-layout > p {
  font-size: 20px;
  color: var(--muted-purple);
  margin-bottom: 48px;
}

.managed-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.managed-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 28px 32px;
}

.managed-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--deep-plum);
  margin-bottom: 8px;
}

.managed-card-desc {
  font-size: 15px;
  color: var(--muted-purple);
  line-height: 1.6;
}

/* ========================================
   SLIDE 8 — THE JOURNEY
   ======================================== */

.slide--agents {
  flex-direction: row;
  align-items: stretch;
  padding: 0;
}

.journey-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 170px 56px 64px;
  position: relative;
}

.journey-panel--light {
  background: var(--warm-white);
}

.journey-panel--dark {
  background: var(--deep-plum);
  justify-content: flex-start;
  align-items: flex-start;
  padding: 170px 56px 64px;
}

.cycle-wheel-wrap--s8 {
  width: 470px;
  height: 470px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-30px);
}

.journey-panel--light .agent-chips {
  margin-top: 80px;
}

/* Brighten all nodes in the static slide-8 wheel */
.cycle-wheel-wrap--s8 .cycle-node {
  border-color: rgba(255,255,255,0.75);
}
.cycle-wheel-wrap--s8 .cycle-num {
  color: #fff;
}
.cycle-wheel-wrap--s8 .cycle-node-label {
  color: rgba(255,255,255,0.9);
}

.cycle-center-static {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

.journey-panel--light .slide-logo {
  position: absolute;
  top: 28px;
  left: 32px;
}

.journey-label {
  font-size: 32px;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 32px;
  line-height: 1.2;
}

.journey-panel--dark .journey-label {
  color: rgba(255,255,255,0.9);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}

.journey-heading {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.journey-desc {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 36px;
}

.journey-footnote {
  font-size: 15px;
  font-weight: 500;
  color: var(--sage-green);
  letter-spacing: 0.03em;
}

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

.agent-chip {
  background: white;
  border: 1.5px solid var(--earth-cream);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-plum);
  letter-spacing: 0.02em;
}

.agent-chip--dark {
  background: var(--deep-plum);
  border-color: var(--deep-plum);
  color: rgba(255,255,255,0.9);
}

/* ========================================
   SLIDE 9 — PRICING
   ======================================== */

.slide--pricing {
  align-items: flex-start;
}

.pricing-layout { max-width: 960px; width: 100%; }

.pricing-layout h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-layout > p {
  font-size: 18px;
  color: var(--muted-purple);
  margin-bottom: 40px;
  max-width: 660px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.pricing-card {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1.5px solid var(--light-cream);
}

.pricing-weeks {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 44px;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 12px;
  line-height: 1;
}

.pricing-detail {
  font-size: 14px;
  color: var(--muted-purple);
  line-height: 1.55;
}

.pricing-footnote {
  font-size: 14px;
  color: var(--warm-taupe);
}

/* ========================================
   SLIDE 10 — ABOUT
   ======================================== */

.slide--about {
  align-items: flex-start;
  background: var(--warm-white);
}

.about-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
}

.about-left { flex: 1; }

.about-left h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.25;
}

.about-left p {
  font-size: 18px;
  color: var(--muted-purple);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-left p:last-child { margin-bottom: 0; }

.about-highlight {
  color: var(--deep-plum);
  font-weight: 600;
}

.about-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-bullets li {
  font-size: 24px;
  color: var(--deep-plum);
  line-height: 1.5;
  padding: 14px 0 14px 28px;
  position: relative;
  border-bottom: 1px solid rgba(64,47,64,0.1);
}

.about-bullets li:last-child { border-bottom: none; }

.about-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 23px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage-green);
}

.about-right {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.about-stat {
  font-size: 130px;
  font-weight: 700;
  line-height: 1;
  color: var(--deep-plum);
  letter-spacing: -4px;
}

.about-stat-label {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-green);
  margin-top: 8px;
}

.about-stat-sub {
  font-size: 15px;
  color: var(--muted-purple);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ========================================
   SLIDE 11 — THREE MONTHS
   ======================================== */

.slide--three-months {
  background: var(--deep-plum);
  justify-content: center;
  align-items: flex-start;
  padding: 80px 100px;
}

.three-months-layout {
  display: flex;
  flex-direction: column;
  gap: 52px;
  width: 100%;
  max-width: 1160px;
}

.three-months-headline {
  font-size: 68px;
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}

.three-months-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  line-height: 1.6;
}

.three-months-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.three-month-col {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
}

.three-month-num {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--sage-green);
  margin-bottom: 12px;
}

.three-month-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.three-month-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.three-month-list li {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.three-month-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-green);
  opacity: 0.7;
}

.three-months-bottom {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  text-align: center;
}

/* ========================================
   SLIDE 12 — CLOSE

   ======================================== */

.slide--close {
  background: var(--deep-plum);
  text-align: center;
}

.close-layout { max-width: 700px; }

.close-layout .section-label { font-size: 22px; letter-spacing: 0.2em; }

.close-layout h2 {
  font-size: 48px;
  font-weight: 300;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.close-layout h2 .accent { color: var(--sage-green); }

.close-sub {
  font-size: 22px;
  color: var(--lavender);
  margin-bottom: 48px;
  line-height: 1.5;
}

.close-cta {
  display: inline-block;
  background: var(--sage-green);
  color: white;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.close-cta:hover { background: var(--dark-sage); }

.close-contact {
  margin-top: 28px;
  font-size: 15px;
  color: var(--muted-purple);
}

.close-contact a {
  color: var(--lavender);
  text-decoration: none;
}

.close-contact a:hover { color: white; }


/* ========================================
   PRINT / PDF
   ======================================== */

@media print {

  @page {
    size: landscape;
    margin: 0;
  }

  /* Force backgrounds to print */
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Reset body/html overflow so all slides render */
  html, body {
    width: 100%;
    height: auto;
    overflow: visible;
    background: #fff;
  }

  /* Deck: block flow instead of fixed overlay */
  .deck {
    position: static;
    width: 100%;
    height: auto;
    display: block;
  }

  /* Every slide: full page, visible */
  .slide {
    position: relative !important;
    width: 100vw !important;
    height: 100vh !important;
    opacity: 1 !important;
    pointer-events: none !important;
    display: flex !important;
    page-break-after: always;
    break-after: page;
  }

  /* Last slide: no trailing blank page */
  .slide:last-child {
    page-break-after: avoid;
    break-after: avoid;
  }

  /* Hide chrome — dots, counter */
  .nav-dots,
  .slide-counter {
    display: none !important;
  }

  /* Wheel slide: freeze the active node label in center,
     hide the auto-cycle animation artifacts */
  .wheel-info {
    opacity: 1 !important;
  }

  /* Suppress transitions */
  * {
    transition: none !important;
    animation: none !important;
  }

}
