/* ---------- Tokens ---------- */
:root {
  --white: #fff;
  --silver: #bcbcbc;
  --silver-dim: #8a8a8a;
  --bg: #131313;
  --bg-elev: rgba(19, 19, 19, 0.82);
  --granite: #595959;
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.16);
  --gold: #e8d5a3;
  --gold-soft: #c8a96e;
  --gold-faint: rgba(231, 209, 176, 0.15);
  --gold-line: rgba(200, 169, 110, 0.4);
  --gold-line-hover: rgba(200, 169, 110, 0.7);
  --peach: rgba(255, 138, 94, 0.4);
  --pale-yellow: rgba(229, 214, 148, 0.4);
  --deep-gold: rgba(203, 174, 44, 0.4);
}

@font-face {
  font-family: 'Dm sans';
  src: url('https://assets.website-files.com/65dc4e0e18107f1438dea07c/65dc4e0e18107f1438dea0a9_DMSans_18pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dm sans';
  src: url('https://assets.website-files.com/65dc4e0e18107f1438dea07c/65dc4e0e18107f1438dea0ac_DMSans_18pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('https://assets.website-files.com/65dc4e0e18107f1438dea07c/65dc4e0e18107f1438dea0af_Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('https://assets.website-files.com/65dc4e0e18107f1438dea07c/65dc4e0e18107f1438dea0b2_Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}
body {
  min-height: 100vh;
  min-height: 100dvh;
}
button { font-family: inherit; cursor: pointer; }

/* ---------- Orbs background ---------- */
.orbs-container {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  top: 0;
  left: 0;
  will-change: transform;
}
@media (max-width: 768px) {
  .floating-orb { filter: blur(48px); }
}

/* ---------- Side nav (dots) ---------- */
.side-nav {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: transparent;
  padding: 0;
  transition: all 0.3s ease;
}
.nav-dot:hover {
  border-color: var(--gold-line-hover);
  transform: scale(1.2);
}
.nav-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(232, 213, 163, 0.5);
}

/* ---------- Slide counter ---------- */
.slide-counter {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 50;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--silver);
  letter-spacing: 0.08em;
  font-weight: 500;
  font-feature-settings: 'tnum';
}
#currentSlide { color: var(--gold); }
.counter-divider { margin: 0 6px; color: var(--granite); }

/* ---------- Brand mark (small, top-left) ---------- */
.brand-mark {
  position: fixed;
  top: 28px;
  left: 32px;
  z-index: 50;
  font-family: 'Dm sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* ---------- Deck layout ---------- */
.deck {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
.deck::-webkit-scrollbar { display: none; }
.deck { scrollbar-width: none; }

.slide {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
}
.slide-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.slide-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.slide-heading {
  font-family: 'Dm sans', sans-serif;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 960px;
  margin-bottom: 56px;
}

.hl {
  color: var(--gold);
  font-weight: 500;
}

/* ---------- Slide 1: Title ---------- */
.slide-title { flex-direction: column; }
.title-wrap {
  text-align: center;
  animation: fadeIn 1.4s ease both;
}
.brand-title {
  font-family: 'Dm sans', sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--gold);
  margin-bottom: 28px;
  background: linear-gradient(180deg, #f0debf 0%, #c8a96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--silver);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
  animation: fadeIn 2s ease 0.6s both;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--silver-dim), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(1.4); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Slide 2: Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.team-card {
  border: 1px solid var(--hairline-strong);
  border-radius: 18px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%),
    rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.team-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
}
.team-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
.team-initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,213,163,0.18), rgba(232,213,163,0.04));
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Dm sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.team-name {
  font-family: 'Dm sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.team-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--silver);
  padding-left: 18px;
  position: relative;
}
.team-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}
.team-footer {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--silver-dim);
  font-style: italic;
}

/* ---------- Slide 3: Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-item {
  border: 1px solid var(--hairline-strong);
  border-radius: 18px;
  padding: 32px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%),
    rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.problem-item:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
}
.problem-num {
  font-family: 'Dm sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  font-feature-settings: 'tnum';
}
.problem-title {
  font-family: 'Dm sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}
.problem-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--silver);
}

/* ---------- Slide 4: Solution ---------- */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  border: 1px solid var(--hairline-strong);
  border-radius: 18px;
  padding: 32px 28px;
  background:
    linear-gradient(180deg, rgba(232,213,163,0.05) 0%, rgba(232,213,163,0) 100%),
    rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.solution-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
}
.solution-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--gold-line);
  background: rgba(232,213,163,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}
.solution-icon svg {
  width: 22px;
  height: 22px;
}
.solution-title {
  font-family: 'Dm sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}
.solution-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--silver);
}

/* ---------- Slide 5: Competitors ---------- */
.comp-table {
  border: 1px solid var(--hairline-strong);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%),
    rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  margin-bottom: 24px;
}
.comp-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--hairline);
}
.comp-row:last-child { border-bottom: none; }
.comp-cell {
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--hairline);
}
.comp-cell:last-child { border-right: none; }
.comp-feature-cell {
  justify-content: flex-start;
  color: var(--white);
  font-weight: 500;
}
.comp-header-row {
  background: rgba(255,255,255,0.02);
}
.comp-header-row .comp-cell {
  font-family: 'Dm sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--silver);
  letter-spacing: -0.01em;
  text-transform: none;
  padding: 22px;
}
.comp-brand-cell { color: var(--silver); }
.comp-us {
  background: rgba(232,213,163,0.05);
  color: var(--white);
}
.comp-header-row .comp-us {
  color: var(--gold);
  background: rgba(232,213,163,0.08);
}
.comp-text-cell { font-size: 14px; }
.comp-cell-stack {
  flex-direction: column;
  gap: 4px;
}
.comp-note {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--silver-dim);
  font-style: italic;
  letter-spacing: 0.02em;
}
.check {
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}
.x {
  color: var(--granite);
  font-size: 18px;
}
.comp-footer {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--silver-dim);
}

/* ---------- Slide 6: Progress ---------- */
.progress-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.stat-card {
  border: 1px solid var(--hairline-strong);
  border-radius: 18px;
  padding: 30px 32px;
  background:
    linear-gradient(180deg, rgba(232,213,163,0.05) 0%, rgba(232,213,163,0) 100%),
    rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
}
.stat-num {
  font-family: 'Dm sans', sans-serif;
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #f0debf 0%, #c8a96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  font-feature-settings: 'tnum';
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--silver);
  letter-spacing: 0.01em;
}

.prospects-section { margin-bottom: 32px; }
.prospects-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--silver-dim);
  margin-bottom: 14px;
  font-weight: 500;
}
.prospects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.prospect-pill {
  font-family: 'Dm sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  padding: 10px 20px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: rgba(232,213,163,0.06);
  letter-spacing: -0.01em;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.prospect-pill:hover {
  background: rgba(232,213,163,0.12);
  border-color: var(--gold-line-hover);
  transform: translateY(-1px);
}

.progress-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--white);
  padding: 16px 22px;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background: rgba(232,213,163,0.05);
}
.callout-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(232,213,163,0.6);
  animation: calloutPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes calloutPulse {
  0% { box-shadow: 0 0 0 0 rgba(232,213,163,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(232,213,163,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,213,163,0); }
}

/* ---------- Slide 7: Vision ---------- */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.vision-card {
  border: 1px solid var(--hairline-strong);
  border-radius: 18px;
  padding: 28px 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%),
    rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.vision-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
}
.vision-num {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Dm sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.14em;
  padding: 5px 11px;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  background: rgba(232,213,163,0.06);
  margin-bottom: 18px;
}
.vision-title {
  font-family: 'Dm sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
}
.vision-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--silver);
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.vision-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.vision-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: var(--silver);
  padding-left: 18px;
  position: relative;
}
.vision-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}

.vision-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 28px;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background: rgba(232,213,163,0.05);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--silver);
}
.vision-footer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  padding-right: 14px;
  border-right: 1px solid var(--gold-line);
}
.vision-footer-amount {
  font-family: 'Dm sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--gold);
}
.vision-footer-text { color: var(--silver); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .slide { padding: 80px 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .problem-grid, .solution-grid { grid-template-columns: 1fr; gap: 16px; }
  .comp-row { grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr; }
  .comp-cell { padding: 14px 12px; font-size: 13px; }
  .progress-stats { grid-template-columns: 1fr; gap: 16px; }
  .vision-grid { grid-template-columns: 1fr; gap: 16px; }
  .side-nav { right: 16px; }
  .slide-counter { top: 20px; right: 20px; }
}

@media (max-width: 600px) {
  .slide { padding: 64px 20px; }
  .slide-heading { font-size: 30px; margin-bottom: 32px; }
  .team-card { padding: 24px; }
  .team-name { font-size: 20px; }
  .problem-item, .solution-card { padding: 24px 20px; }
  .comp-cell { padding: 12px 8px; font-size: 12px; }
  .comp-header-row .comp-cell { font-size: 14px; padding: 14px 8px; }
  .stat-card { padding: 24px 22px; }
  .stat-num { font-size: 48px; }
  .vision-card { padding: 24px 22px; }
  .prospect-pill { font-size: 14px; padding: 9px 16px; }
  .scroll-hint { display: none; }
}
