:root {
  --black: #08080a;
  --panel: #111113;
  --panel-line: #232325;
  --gold: #c9a24b;
  --gold-bright: #e0c377;
  --white: #f5f4f0;
  --gray: #8c8a86;
  --gray-dim: #5c5b58;
  --serif-gap: 0.04em;
}

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

html, body {
  height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow: hidden;
}

body {
  position: relative;
  width: 100vw;
  height: 100vh;
}

/* ---------- Progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--panel-line);
  z-index: 100;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  width: 10%;
  transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Deck / Slides ---------- */
.deck {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1),
              transform 0.7s cubic-bezier(0.65, 0, 0.35, 1),
              visibility 0.7s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.slide.exit-prev { transform: translateY(-24px) scale(0.985); }

.slide-inner {
  width: min(1180px, 88vw);
  max-height: 88vh;
  padding: 3vh 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--panel-line) transparent;
}

.slide-inner::-webkit-scrollbar {
  width: 6px;
}

.slide-inner::-webkit-scrollbar-thumb {
  background: var(--panel-line);
  border-radius: 3px;
}

.slide-inner.center,
.center {
  text-align: center;
}

.slide-inner.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head .eyebrow,
.section-head .scenario-disclaimer,
.section-head .scenario-profile {
  text-align: center;
}

.section-head .headline {
  margin-left: auto;
  margin-right: auto;
}

.headline {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  max-width: 15ch;
}

.headline-xl {
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: 12ch;
}

.gold-italic {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.slide-footnote {
  margin-top: 1.4rem;
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.insight-lead {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  max-width: 22ch;
  margin: 0 auto 0.8rem;
}

.insight-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 34ch;
  margin: 0 auto;
  line-height: 1.6;
}

.insight-row { margin-bottom: 3rem; }

.insight-close {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 42ch;
  line-height: 1.65;
  margin-top: 1rem;
}

/* ---------- Wordmark / Logo ---------- */
.wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.2rem;
}

.wordmark-hero .v-mark {
  font-size: clamp(6rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 0.8;
  color: var(--white);
}

.wordmark-small .v-mark {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
}

.v-divider {
  width: 1px;
  align-self: stretch;
  background: var(--gold);
  margin: 0 1.6rem;
}

.wordmark-hero .v-divider { margin: 0.6rem 1.8rem; }
.wordmark-small .v-divider { margin: 0.3rem 1.1rem; }

.v-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.v-vantage {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.22em;
}

.v-financial {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
}

.wordmark-small .v-vantage,
.wordmark-small .v-financial {
  font-size: 1.15rem;
}

.tagline {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.subtagline {
  font-size: 1rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}

.hero-footer {
  font-size: 0.85rem;
  color: var(--gray-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2rem;
}

.dot-sep { margin: 0 0.6rem; color: var(--gold); }

/* ---------- Problem grid ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.problem-card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  text-align: left;
  transition: border-color 0.3s;
}

.problem-card:hover { border-color: var(--gold); }

.problem-num {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.problem-card p {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--white);
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
  text-align: left;
  transition: border-color 0.3s;
}

.pillar:hover { border-color: var(--gold); }

.pillar-index {
  display: block;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.pillar h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}

.pillar p {
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  position: relative;
}

.timeline-step {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  padding: 1.2rem 1.1rem;
  text-align: left;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s;
}

.timeline-step:hover { border-color: var(--gold); }

.timeline-marker {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.timeline-step h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.timeline-step p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ---------- Deliverables ---------- */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem 3rem;
}

.deliverable-item {
  display: flex;
  gap: 1rem;
  border-top: 1px solid var(--panel-line);
  padding-top: 1.1rem;
  text-align: left;
}

.deliverable-check {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
}

.deliverable-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.deliverable-item p {
  color: var(--gray);
  font-size: 0.87rem;
  line-height: 1.5;
}

/* ---------- Mockups ---------- */
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.mockup-card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  padding: 1.4rem 1.3rem;
  position: relative;
  text-align: left;
}

.mockup-tag {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dim);
  border: 1px solid var(--panel-line);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}

.mockup-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.mockup-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--white);
}

.mockup-title span {
  font-weight: 400;
  color: var(--gray);
}

.mockup-list {
  list-style: none;
}

.mockup-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-top: 1px solid var(--panel-line);
  color: var(--gray);
}

.mockup-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.mockup-list li b {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.mockup-list li b.highlight {
  color: var(--gold);
}

.mockup-footnote {
  color: var(--gray-dim);
  font-size: 0.74rem;
  line-height: 1.4;
  margin-top: 0.9rem;
}

.cc-mock {
  background: linear-gradient(135deg, #1c1c1e, #08080a);
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  padding: 1.1rem 1.1rem 1rem;
  position: relative;
  overflow: hidden;
}

.cc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.cc-chip {
  display: block;
  width: 28px;
  height: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: 3px;
}

.cc-apr {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.cc-limit {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
}

.cc-number {
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}

.cc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  color: var(--gray);
}

.cc-brand {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ---------- PDF report mockups ---------- */
.mockup-card.pdf-card {
  background: transparent;
  border: none;
  padding: 0;
}

.pdf-mockup {
  background: #f7f5f1;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pdf-mockup-bar {
  background: #1a1a1c;
  color: #8c8a86;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdf-mockup-body {
  padding: 1.3rem 1.3rem 1.1rem;
}

.pdf-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.pdf-brand .v {
  font-weight: 900;
  font-size: 1.1rem;
  color: #16151a;
  line-height: 1;
}

.pdf-brand .divider {
  width: 1px;
  height: 14px;
  background: var(--gold);
}

.pdf-brand .word {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #16151a;
}

.pdf-mockup-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a97f2e;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.pdf-mockup-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #16151a;
}

.pdf-mockup-title span {
  font-weight: 400;
  color: #726f68;
}

.pdf-list {
  list-style: none;
}

.pdf-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  padding: 0.38rem 0;
  border-top: 1px solid #e6e2d9;
  color: #55524c;
}

.pdf-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.pdf-list li b {
  color: #16151a;
  font-weight: 700;
  white-space: nowrap;
}

.pdf-list li b.highlight {
  color: #a97f2e;
}

.pdf-footer {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid #e6e2d9;
  font-size: 0.68rem;
  color: #948f85;
  line-height: 1.4;
}

/* ---------- P&L trend mockup ---------- */
.pl-mockup {
  background: #f7f5f1;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.pl-headline {
  max-width: 20ch;
  margin-bottom: 1.2rem;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.pl-mockup .pdf-brand {
  margin-bottom: 0.7rem;
}

.pl-mockup .pdf-mockup-label {
  margin-bottom: 0.3rem;
}

.pl-mockup .pdf-mockup-title {
  margin-bottom: 0.4rem;
}

.pl-mockup-body {
  padding: 1rem 1.4rem 0.9rem;
  overflow-x: auto;
}

.pl-scroll-hint {
  display: none;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--gray-dim);
  text-align: center;
}

.pl-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  margin-top: 0.3rem;
}

.pl-table th {
  text-align: right;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #948f85;
  font-weight: 700;
  padding: 0 0 0.5rem;
}

.pl-table th:first-child {
  text-align: left;
}

.pl-table td {
  font-size: 0.82rem;
  color: #4c4a46;
  text-align: right;
  padding: 0.36rem 0;
  border-top: 1px solid #e6e2d9;
  white-space: nowrap;
}

.pl-table td:first-child {
  text-align: left;
  color: #16151a;
  font-weight: 500;
  white-space: normal;
}

.pl-table td span {
  display: inline-block;
  min-width: 3.4em;
  font-size: 0.72rem;
  color: #a97f2e;
  font-weight: 700;
  margin-left: 0.3rem;
}

.pl-subtotal td {
  font-weight: 700;
  color: #16151a;
}

.pl-flag td {
  background: rgba(169, 127, 46, 0.08);
}

.pl-flag-tag {
  display: inline-block;
  margin-left: 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #a97f2e;
  border: 1px solid #a97f2e;
  border-radius: 2px;
  padding: 0.1rem 0.4rem;
  vertical-align: middle;
}

.pl-total td {
  font-weight: 800;
  color: #16151a;
  font-size: 0.95rem;
  border-top: 2px solid #16151a;
}

.pl-total td span {
  color: #a97f2e;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  padding: 1.5rem 1.3rem;
  text-align: left;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,162,75,0.08), rgba(201,162,75,0.02));
}

.price-badge {
  position: absolute;
  top: -0.7rem;
  right: 1.3rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}

.price-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.price-amount {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.price-amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
}

.price-features {
  list-style: none;
  margin-bottom: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--panel-line);
}

.price-features li {
  font-size: 0.9rem;
  padding: 0.26rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.price-features li.included {
  color: var(--white);
}

.price-features li.included::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.price-features li.excluded {
  color: var(--gray-dim);
}

.price-features li.excluded::before {
  content: '\2013';
  position: absolute;
  left: 0.15rem;
  color: var(--gray-dim);
}

.price-detail {
  color: var(--gray);
  font-size: 0.84rem;
  line-height: 1.5;
  padding-top: 0.7rem;
  border-top: 1px solid var(--panel-line);
}

.price-footnote {
  text-align: center;
  color: var(--gray);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

/* ---------- Market stats ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.6rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.stat-label {
  color: var(--gray);
  font-size: 0.92rem;
  max-width: 24ch;
  line-height: 1.5;
}

/* ---------- Business model ---------- */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.model-card {
  text-align: left;
  border-top: 1px solid var(--panel-line);
  padding-top: 1.4rem;
}

.model-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.model-card p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
}

.example-box {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  padding: 1.6rem 2rem;
  text-align: center;
}

.example-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 0.7rem;
}

.example-math {
  font-size: 1.05rem;
  font-weight: 500;
}

/* ---------- Illustrative example ---------- */
.scenario-disclaimer {
  color: var(--gray);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 0.4rem;
  margin-top: -1rem;
}

.scenario-profile {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.scenario-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 1.1rem;
}

.scenario-step {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  padding: 1rem 1.1rem;
  text-align: left;
  transition: border-color 0.3s;
}

.scenario-step:hover { border-color: var(--gold); }

.scenario-marker {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.scenario-step h4 {
  font-size: 1.04rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.scenario-step p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.5;
}

.scenario-stats {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  margin-bottom: 0.7rem;
}

/* ---------- Vision ---------- */
.vision-row {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vision-item {
  border: 1px solid var(--panel-line);
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.92rem;
  color: var(--gray);
}

/* ---------- Closing ---------- */
.closing-headline {
  margin-top: 1rem;
  max-width: 18ch;
}

.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 1rem 2.6rem;
  border-radius: 2px;
  text-decoration: none;
  margin-top: 0.6rem;
  margin-bottom: 2.6rem;
  transition: background 0.25s, transform 0.25s;
}

.cta-button:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

/* ---------- Nav controls ---------- */
.nav-controls {
  position: fixed;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  z-index: 100;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--panel-line);
  background: rgba(17,17,19,0.7);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, color 0.25s;
  backdrop-filter: blur(6px);
}

.nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-dots {
  display: flex;
  gap: 0.5rem;
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--panel-line);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.nav-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.slide-counter {
  position: fixed;
  bottom: 2.4rem;
  right: 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gray-dim);
  z-index: 100;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .slide-inner { width: 92vw; max-height: 82vh; overflow-y: auto; padding-bottom: 5rem; }
  .pl-scroll-hint { display: block; }
  .problem-grid,
  .pillars,
  .pricing-grid,
  .stat-row,
  .model-grid,
  .scenario-timeline,
  .deliverables-grid,
  .mockup-grid {
    grid-template-columns: 1fr;
  }
  .scenario-stats {
    flex-direction: column;
    gap: 1.4rem;
    align-items: center;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .timeline::before { display: none; }
  .headline { max-width: none; }
  .headline-xl { max-width: none; }
  .slide-counter { right: 1.2rem; bottom: 5.6rem; }
  .nav-controls { bottom: 1.2rem; }
}

@media (max-width: 520px) {
  .wordmark-hero { flex-direction: column; }
  .wordmark-hero .v-divider { display: none; }
  .wordmark-hero .v-text { align-items: center; }
  .eyebrow { font-size: 0.68rem; }
}
