/* ── saltpepper.ai public web overrides ── */

body {
  background: var(--offwhite);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

/* Override deck .slide display rule for scrollable web pages */
.deck, .slide, .slide.active {
  display: block !important;
  height: auto !important;
  min-height: auto !important;
  width: 100% !important;
}

/* ── Site nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--offwhite);
  border-bottom: 1px solid var(--rule);
}
.site-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav .brand {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: var(--dark);
  text-decoration: none;
}
.site-nav .brand .amp { color: var(--saffron-text); font-weight: 900; }
.site-nav .links {
  display: flex;
  gap: 22px;
}
.site-nav .links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.site-nav .links a:hover { opacity: 1; color: var(--saffron-text); }
.site-nav .links a.active { color: var(--saffron-text); opacity: 1; }

/* ── Section layout ── */
.section {
  padding: 72px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.section.dark {
  background: var(--dark);
  color: var(--offwhite);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section.dark .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--offwhite); }
.section.dark p, .section.dark li { color: rgba(245, 242, 238, 0.8); }
.section.dark .eyebrow { color: rgba(245, 242, 238, 0.75); }
.section.dark .hi { color: #FFD580; }

.hero {
  padding: 96px 28px 64px;
}
.hero h1 { max-width: 820px; }
.hero .tagline { max-width: 640px; margin-top: 20px; }

.section h2 { margin-bottom: 14px; }
.section p.lead {
  font-size: 17px;
  line-height: 1.65;
  max-width: 680px;
  opacity: 0.8;
  margin-top: 6px;
}

/* ── CTA ── */
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.1s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--saffron);
  color: var(--dark);
}
.btn-primary:hover { box-shadow: 0 6px 18px rgba(232, 104, 42, 0.3); }
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-ghost:hover { background: var(--dark); color: var(--offwhite); }
.section.dark .btn-ghost { color: var(--offwhite); border-color: var(--offwhite); }
.section.dark .btn-ghost:hover { background: var(--offwhite); color: var(--dark); }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 36px 28px;
  font-size: 12px;
  color: #6B6B6B;
  text-align: center;
}
.site-footer .brand {
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}
.site-footer .brand .amp { color: var(--saffron); }

/* ── Cards tweak for public (lighter cards) ── */
.section .card { background: #fff; }
.section .card.card-dark { background: var(--dark); color: var(--offwhite); }
.section .card.card-accent { background: var(--saffron-text); color: #fff; }
.section .card.card-accent h1,
.section .card.card-accent h2,
.section .card.card-accent h3 { color: #fff; }
.section .card.card-accent p,
.section .card.card-accent li,
.section .card.card-accent span,
.section .card.card-accent a { color: #fff; }

/* When a card-dark sits inside a .section.dark, lift the card background
   slightly so it doesn't vanish into the section. */
.section.dark .card.card-dark {
  background: #2a2a2e;
  border: 1px solid rgba(245, 242, 238, 0.08);
}

/* Blockquote needs different styling on dark vs light sections */
.section.dark blockquote.deck-quote {
  background: rgba(245, 242, 238, 0.05);
  color: var(--offwhite);
  border-top: 1px solid rgba(245, 242, 238, 0.1);
  border-right: 1px solid rgba(245, 242, 238, 0.1);
  border-bottom: 1px solid rgba(245, 242, 238, 0.1);
}

/* ── Founder card ── */
.founder {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--rule);
}
.founder img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--saffron);
}
.founder h3 { margin-bottom: 4px; }
.founder .role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 8px;
}

/* ── Step list ── */
.steps {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--rule);
}
.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--saffron-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.step h3 { margin-bottom: 4px; color: var(--dark); }
.step p { font-size: 14px; color: #3a3a3a; opacity: 0.9; }
.section.dark .step h3 { color: var(--dark); }
.section.dark .step p { color: #3a3a3a; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 64px 22px 48px; }
  .section { padding: 56px 22px; }
  .site-nav-inner { padding: 12px 20px; }
  .site-nav .links { gap: 14px; }
  .site-nav .links a { font-size: 12px; }
  .founder { flex-direction: column; align-items: center; text-align: center; }
}
