/* Enabler-style landscape slide theme — scoped under .hp-slide */
.hp-slide {
  --hp-navy: #0d1b2a;
  --hp-blue: #2563eb;
  --hp-accent: #6366f1;
  --hp-text: #1a1a2e;
  --hp-muted: #5a6270;
  --hp-border: #e2e8f0;
  --hp-bg: #f8fafc;
  --hp-white: #fff;
  --hp-placeholder-from: #dbeafe;
  --hp-placeholder-to: #e2e8f0;
  --hp-bullet-accent: #93c5fd;
  --hp-cta-band-end: #1b2838;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hp-white);
  color: var(--hp-text);
  box-sizing: border-box;
}

.hp-slide-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hp-slide .hp-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-accent);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.hp-slide h1,
.hp-slide .hp-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--hp-navy);
  margin: 0 0 1rem;
}

.hp-slide h2,
.hp-slide .hp-heading {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 650;
  line-height: 1.2;
  color: var(--hp-navy);
  margin: 0 0 0.75rem;
}

.hp-slide p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: var(--hp-muted);
  margin: 0 0 1rem;
}

/* hero intro — split layout */
.hp-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: 100%;
}

.hp-hero-copy {
  text-align: left;
}

.hp-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-hero-media .hp-img-slot {
  width: 100%;
  max-height: min(60vh, 420px);
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--hp-placeholder-from), var(--hp-placeholder-to));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 0.75rem;
  color: var(--hp-muted);
  text-align: center;
  word-break: break-word;
  overflow: hidden;
}

.hp-hero-media .hp-img-slot img,
.pt-img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

/* grid layouts (landscape, readiness, strategy, solutions) */
.hp-grid-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.hp-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hp-tile {
  background: var(--hp-bg);
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  padding: 1.25rem;
}

.hp-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.hp-tile h3 {
  font-size: 1rem;
  font-weight: 650;
  color: var(--hp-navy);
  margin: 0 0 0.35rem;
}

.hp-tile p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.45;
}

/* strategy cards — wider tile column, tighter copy */
.hp-slide[data-page-type="hp_strategy_cards"] .hp-grid-layout {
  grid-template-columns: minmax(200px, 0.68fr) 1.32fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.hp-slide[data-page-type="hp_strategy_cards"] .hp-tile-grid {
  gap: 0.85rem;
}

.hp-slide[data-page-type="hp_strategy_cards"] .hp-tile {
  padding: 1rem 1.15rem;
}

.hp-slide[data-page-type="hp_strategy_cards"] .hp-tile h3 {
  font-size: 0.95rem;
  line-height: 1.25;
}

.hp-slide[data-page-type="hp_strategy_cards"] .hp-tile p {
  font-size: 0.82rem;
  line-height: 1.38;
}

/* problem split */
.hp-problem-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hp-problem-split--copy {
  grid-template-columns: 1fr;
}

.hp-problem-split--conclusion {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.hp-benefit-bullets {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.hp-benefit-bullets li {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: var(--hp-muted);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.hp-benefit-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--hp-accent);
}

/* causes list */
.hp-causes-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  max-width: 100%;
}

.hp-cause-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hp-border);
}

.hp-cause-item:last-child {
  border-bottom: none;
}

.hp-cause-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hp-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.hp-cause-item h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.hp-cause-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* approach steps */
.hp-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.hp-step-card {
  background: var(--hp-bg);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--hp-border);
}

.hp-step-card .hp-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hp-blue);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.hp-step-card h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.hp-step-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* CTA close — navy band */
.hp-cta-band {
  width: 100%;
  background: linear-gradient(135deg, var(--hp-navy) 0%, var(--hp-cta-band-end) 100%);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3rem);
  color: #fff;
}

.hp-cta-band .hp-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.hp-cta-band h2 {
  color: #fff;
}

.hp-cta-band p {
  color: rgba(255, 255, 255, 0.88);
}

/* Beat theme .hp-slide heading/body overrides on dark CTA band */
.hp-slide .hp-cta-band .hp-heading,
.hp-slide .hp-cta-band h2.hp-heading,
.hp-cta-band .hp-heading {
  color: #fff;
}

.hp-slide .hp-cta-band .hp-eyebrow,
.hp-cta-band .hp-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.hp-slide .hp-cta-band p,
.hp-cta-band p {
  color: rgba(255, 255, 255, 0.88);
}

.hp-cta-band .hp-btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--hp-blue, var(--ntw-blue, #2563eb));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Lighter blue than --ntw-blue / CTA-band navy so session CTAs read as the primary action */
.hp-btn.hp-btn-schedule-session,
.ntw-btn.hp-btn-schedule-session,
.hp-cta-band .hp-btn.hp-btn-schedule-session {
  background: #5a9cf8;
  border: 1px solid #5a9cf8;
  color: #111;
  border-radius: var(--ntw-btn-radius, 6px);
  box-shadow: none;
  transition: box-shadow 0.35s ease;
}

.hp-btn.hp-btn-schedule-session:hover,
.ntw-btn.hp-btn-schedule-session:hover,
.hp-cta-band .hp-btn.hp-btn-schedule-session:hover {
  background: #5a9cf8;
  border-color: #5a9cf8;
  color: #111;
  box-shadow: 0 10px 28px rgba(90, 156, 248, 0.4);
}

.hp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.hp-cta-band .hp-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hp-cta-bullets {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.hp-cta-bullets li {
  font-size: clamp(1.5rem, 3vw, 1rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0;
  padding-left: 1.75rem;
  position: relative;
}

.hp-cta-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--hp-bullet-accent);
}

@media (max-width: 900px) {
  .hp-hero-split,
  .hp-grid-layout,
  .hp-problem-split {
    grid-template-columns: 1fr;
  }

  .hp-steps-row {
    grid-template-columns: 1fr;
  }

  .hp-tile-grid {
    grid-template-columns: 1fr;
  }
}

.hp-thanks-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 80;
  width: min(28rem, calc(100vw - 2rem));
  background: #fff;
  color: #1a1a2e;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.22);
  padding: 1.35rem 2.6rem 1.35rem 1.35rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hp-thanks-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hp-thanks-toast.is-fading {
  opacity: 0;
  pointer-events: none;
}

.hp-thanks-toast p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a2e;
}

.hp-thanks-close {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #5a6270;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.hp-thanks-close:hover {
  color: #0d1b2a;
}
