:root {
  --pitch-black: #0d0d0d;
  --pitch-dark: #1a1a1a;
  --pitch-surface: #222222;
  --pitch-border: #2e2e2e;
  --pitch-yellow: #f5c518;
  --pitch-yellow-dim: #c9a216;
  --pitch-white: #f5f5f5;
  --pitch-muted: #888888;
  --pitch-red: #e63946;
  --pitch-green: #2ecc71;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--pitch-black);
  color: var(--pitch-white);
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pitch-dark); }
::-webkit-scrollbar-thumb { background: var(--pitch-yellow); border-radius: 3px; }

/* ── Navigation bar ── */
.pitch-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 56px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pitch-border);
}

.pitch-nav-brand {
  font-family: 'Oswald', 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pitch-yellow);
  text-decoration: none;
}

.pitch-nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.pitch-nav-links a {
  color: var(--pitch-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.pitch-nav-links a:hover { color: var(--pitch-white); background: var(--pitch-surface); }

/* ── Slides ── */
.slide {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 60px;
  position: relative;
}

.slide-inner {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

/* Slide divider */
.slide + .slide {
  border-top: 1px solid var(--pitch-border);
}

/* ── Title Slide ── */
.slide-title {
  background: linear-gradient(135deg, var(--pitch-black) 0%, #1c1a0a 100%);
  text-align: center;
}

.ct-logo {
  display: inline-block;
  font-family: 'Oswald', 'Outfit', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pitch-yellow);
  line-height: 1;
  margin-bottom: 16px;
}

.ct-tagline {
  font-size: 22px;
  font-weight: 300;
  color: var(--pitch-muted);
  letter-spacing: 0.05em;
}

.ct-by {
  margin-top: 48px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pitch-muted);
}

.ct-by strong { color: var(--pitch-white); }

.ct-yellow-bar {
  width: 80px;
  height: 4px;
  background: var(--pitch-yellow);
  margin: 32px auto;
  border-radius: 2px;
}

/* ── Section headers ── */
.slide-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pitch-yellow);
  font-weight: 600;
  margin-bottom: 12px;
}

.slide-heading {
  font-family: 'Oswald', 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pitch-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.slide-heading em {
  color: var(--pitch-yellow);
  font-style: normal;
}

.slide-body {
  font-size: 17px;
  color: var(--pitch-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ── Cards ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.stat-card {
  background: var(--pitch-surface);
  border: 1px solid var(--pitch-border);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}

.stat-card .stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--pitch-yellow);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pitch-muted);
  margin-top: 8px;
}

.stat-card.highlight {
  border-color: var(--pitch-yellow);
  background: rgba(245, 197, 24, 0.06);
}

/* ── Product slides ── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 36px;
}

.product-renderings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-renderings-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.product-renderings img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--pitch-border);
  transition: transform 0.2s;
}

.product-renderings img:hover { transform: scale(1.03); }

.product-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--pitch-yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.product-info .product-tagline {
  font-size: 16px;
  color: var(--pitch-white);
  font-weight: 500;
  margin-bottom: 20px;
}

.product-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--pitch-muted);
}

.product-info ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--pitch-yellow);
  border-radius: 50%;
  margin-top: 7px;
}

.feature-callout {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid var(--pitch-yellow);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--pitch-white);
}

.callout-badge {
  background: var(--pitch-yellow);
  color: var(--pitch-black);
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}

.product-info .replaces {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--pitch-surface);
  border-left: 3px solid var(--pitch-red);
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  color: var(--pitch-muted);
}

.product-info .replaces strong { color: var(--pitch-white); }

/* ── Investment / Royalty ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.info-card {
  background: var(--pitch-surface);
  border: 1px solid var(--pitch-border);
  border-radius: 8px;
  padding: 28px;
}

.info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pitch-yellow);
  margin-bottom: 16px;
}

.info-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.info-card td {
  padding: 8px 0;
  color: var(--pitch-muted);
  border-bottom: 1px solid var(--pitch-border);
}

.info-card td:last-child {
  text-align: right;
  color: var(--pitch-white);
  font-weight: 500;
}

.info-card tr:last-child td { border-bottom: none; }

.ask-box {
  background: rgba(245,197,24,0.07);
  border: 1px solid var(--pitch-yellow);
  border-radius: 8px;
  padding: 32px;
  margin-top: 32px;
  text-align: center;
}

.ask-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pitch-yellow);
  margin-bottom: 12px;
}

/* ── Projections table ── */
.proj-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-size: 14px;
}

.proj-table th {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--pitch-yellow);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 2px solid var(--pitch-yellow);
}

.proj-table td {
  padding: 12px 16px;
  color: var(--pitch-muted);
  border-bottom: 1px solid var(--pitch-border);
}

.proj-table td:first-child {
  font-weight: 600;
  color: var(--pitch-white);
}

.proj-table tr:nth-child(even) td {
  background: var(--pitch-surface);
}

.proj-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
}

.proj-tag.conservative { background: rgba(88,88,88,0.4); color: var(--pitch-muted); }
.proj-tag.moderate    { background: rgba(245,197,24,0.2); color: var(--pitch-yellow); }
.proj-tag.aggressive  { background: rgba(46,204,113,0.2); color: var(--pitch-green); }

/* ── Competitive advantage ── */
.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.adv-card {
  background: var(--pitch-surface);
  border: 1px solid var(--pitch-border);
  border-radius: 8px;
  padding: 24px;
}

.adv-card .adv-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.adv-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pitch-yellow);
  margin-bottom: 8px;
}

.adv-card p {
  font-size: 14px;
  color: var(--pitch-muted);
  line-height: 1.6;
}

/* ── IP Status ── */
.ip-badge-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.ip-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pitch-surface);
  border: 1px solid var(--pitch-border);
  border-radius: 6px;
  padding: 12px 16px;
}

.ip-badge .check {
  color: var(--pitch-green);
  font-size: 18px;
}

.ip-badge .badge-text strong {
  display: block;
  font-size: 14px;
  color: var(--pitch-white);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ip-badge .badge-text span {
  font-size: 12px;
  color: var(--pitch-muted);
}

/* ── Contact slide ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.contact-card {
  background: var(--pitch-surface);
  border: 1px solid var(--pitch-border);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
}

.contact-card .contact-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pitch-yellow);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--pitch-muted);
  line-height: 1.5;
}

/* ── CTA Button ── */
.btn-yellow {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--pitch-yellow);
  color: var(--pitch-black);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}

.btn-yellow:hover {
  background: var(--pitch-yellow-dim);
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .slide { padding: 72px 24px 48px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid .stat-card:last-child { grid-column: 1 / -1; }
  .product-layout { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pitch-nav-links { display: none; }
  .product-renderings { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .ct-logo { letter-spacing: 0.08em; }
  .stat-grid { grid-template-columns: 1fr; }
}