:root {
  --bg: #06070a;
  --bg-soft: #0d1016;
  --panel: rgba(12, 16, 24, 0.86);
  --panel-strong: rgba(8, 10, 15, 0.94);
  --accent: #c4a574;
  --accent-strong: #e4c692;
  --accent-soft: rgba(196, 165, 116, 0.14);
  --text: #f4f5f7;
  --muted: #a5adba;
  --border: rgba(196, 165, 116, 0.32);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --max-width: 1160px;
  --h1: clamp(2.8rem, 6vw, 5.8rem);
  --h2: clamp(2rem, 4vw, 3.5rem);
  --h3: clamp(1.1rem, 2vw, 1.35rem);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(196, 165, 116, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #050608 0%, #090c12 55%, #050608 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
}

button,
a {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.slideshow {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.75rem 1.5rem 7rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(36px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  overflow-y: auto;
}

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

.slide::before,
.slide::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  z-index: -1;
  opacity: 0.9;
}

.slide::before {
  width: min(32vw, 420px);
  height: min(32vw, 420px);
  top: 8%;
  right: 7%;
  background: radial-gradient(circle, rgba(196, 165, 116, 0.2), transparent 70%);
}

.slide::after {
  width: min(24vw, 300px);
  height: min(24vw, 300px);
  bottom: 12%;
  left: 6%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
}

.slide-shell {
  width: min(var(--max-width), 100%);
  margin: auto;
}

.slide-shell--wide {
  width: min(1240px, 100%);
}

.slide--hero .slide-shell,
.slide--closing .slide-shell {
  max-width: 980px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.slide-kicker {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

.lead {
  margin: 1.35rem auto 0;
  max-width: 760px;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  color: #dbe1ea;
}

.support-copy {
  margin: 1rem auto 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 1rem;
}

.program-grid,
.benefit-grid,
.inclusion-layout,
.current-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
}

.program-grid,
.inclusion-layout,
.current-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-card,
.benefit-card,
.inclusion-panel,
.current-copy,
.current-media,
.story-group {
  background: linear-gradient(180deg, rgba(18, 23, 33, 0.9), rgba(8, 10, 15, 0.95));
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.program-card,
.benefit-card,
.inclusion-panel,
.current-copy,
.story-group {
  padding: 1.45rem 1.5rem;
}

.card-label,
.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: var(--accent-soft);
  border: 1px solid rgba(196, 165, 116, 0.28);
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.program-card h3,
.benefit-card h3,
.inclusion-panel h3,
.group-heading h3,
.current-copy h2 {
  margin-top: 0.9rem;
}

.program-card p,
.benefit-card p,
.inclusion-panel p,
.group-heading p,
.current-copy p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #dfe4ec;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
}

.feature-list--compact {
  gap: 0.65rem;
}

.lead-magnet-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.lead-magnet-label {
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.lead-magnet-input {
  width: 100%;
  border: 1px solid rgba(196, 165, 116, 0.32);
  background: rgba(8, 10, 15, 0.65);
  color: var(--text);
  border-radius: 12px;
  padding: 0.72rem 0.82rem;
}

.lead-magnet-input::placeholder {
  color: rgba(165, 173, 186, 0.75);
}

.lead-magnet-submit {
  justify-self: start;
}

.lead-magnet-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-card {
  background: linear-gradient(180deg, rgba(18, 23, 33, 0.9), rgba(8, 10, 15, 0.95));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.2rem;
}

.faq-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

.story-groups {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.group-heading p {
  max-width: 720px;
}

.pup-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.pup-grid--large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pup-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel-strong);
  aspect-ratio: 3 / 4;
  min-height: 0;
}

.pup-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96);
}

.pup-card span {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.5rem 0.7rem;
  border-radius: 12px;
  background: rgba(6, 7, 10, 0.75);
  backdrop-filter: blur(10px);
  font-weight: 600;
  text-align: center;
}

.current-media {
  overflow: hidden;
  min-height: 100%;
}

.current-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.current-meta {
  color: #d7dce4;
  font-weight: 600;
}

.current-foundations {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: center;
}

.current-foundations-thumb {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
}

.current-foundations h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.current-foundations p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.action-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible,
.nav-button:hover,
.nav-button:focus-visible,
.slide-dot:hover,
.slide-dot:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: #10131a;
  background: var(--accent-strong);
  border: 1px solid transparent;
}

.button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.path-choice-label {
  margin: 1.15rem 0 0;
  color: #d7dce4;
  font-weight: 600;
}

.path-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.path-choice-row .button {
  width: 100%;
  min-width: 0;
}

.closing-meta {
  margin-top: 1.5rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}

.slide-controls {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  background: rgba(7, 8, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  z-index: 20;
}

.nav-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-button[disabled] {
  opacity: 0.45;
  cursor: default;
}

.slide-progress {
  min-width: 72px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.slide-progress-current {
  color: var(--accent-strong);
}

.slide-progress-divider,
.slide-progress-total {
  color: var(--muted);
}

.slide-dots {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.65rem;
  z-index: 20;
}

.slide-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.slide-dot.is-active {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

@media (max-width: 1100px) {
  .program-grid,
  .benefit-grid,
  .inclusion-layout,
  .current-grid,
  .pup-grid--large,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body {
    overflow: auto;
  }

  .slide {
    position: relative;
    min-height: 100vh;
    visibility: visible;
    opacity: 1;
    transform: none;
    padding: 2rem 1rem 6.2rem;
    display: none;
  }

  .slide.is-active {
    display: flex;
  }

  .program-grid,
  .benefit-grid,
  .inclusion-layout,
  .current-grid,
  .pup-grid,
  .pup-grid--large,
  .path-choice-row,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .lead-magnet-submit {
    width: 100%;
  }

  .slide-dots {
    right: 50%;
    top: auto;
    bottom: 5.3rem;
    transform: translateX(50%);
    grid-auto-flow: column;
  }

  .slide-controls {
    width: calc(100% - 1.5rem);
    max-width: 540px;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .nav-button {
    padding-inline: 0.85rem;
  }

  .current-media img {
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
