.eh-home-start,
.eh-home-start * { box-sizing: border-box; }

.eh-home-start {
  --eh-home-purple: #8583f2;
  --eh-home-purple-dark: #51409e;
  --eh-home-yellow: #fab800;
  --eh-home-pink: #e80c50;
  --eh-home-ink: #221d31;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  color: var(--eh-home-ink);
  background: #fff;
  font-family: "Raleway", Arial, sans-serif;
}

.eh-home-hero {
  position: relative;
  min-height: clamp(650px, 82vh, 830px);
  overflow: hidden;
  color: #fff;
  background: #342759;
}

.eh-home-slides,
.eh-home-slide { position: absolute; inset: 0; }

.eh-home-slide {
  z-index: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  background-image: var(--eh-slide-image);
  background-position: var(--eh-slide-position, center);
  background-size: cover;
  transform: scale(1.045);
  transition: opacity .9s ease, transform 7s ease;
}

.eh-home-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.eh-home-slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30,21,52,.88) 0%, rgba(39,25,66,.68) 44%, rgba(38,24,56,.18) 72%, rgba(25,16,45,.24) 100%),
    linear-gradient(0deg, rgba(20,13,38,.45), transparent 46%);
}

.eh-home-slide-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 120px));
  margin: 0 auto;
  padding: 125px 0 80px;
}

.eh-home-eyebrow,
.eh-home-section-label {
  margin: 0 0 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.eh-home-eyebrow { color: #ffd559; }

.eh-home-slide-title {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-family: "Poppins", "Raleway", Arial, sans-serif;
  font-size: clamp(42px, 5.15vw, 76px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.eh-home-lead {
  max-width: 690px;
  margin: 25px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 500;
  line-height: 1.6;
}

.eh-home-actions,
.eh-home-mission-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.eh-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 55px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.eh-home-button svg { width: 20px; height: 20px; fill: currentColor; }
.eh-home-button:hover, .eh-home-button:focus-visible { transform: translateY(-2px); }

.eh-home-button-primary {
  color: #fff;
  background: var(--eh-home-pink);
  box-shadow: 0 12px 28px rgba(116,0,44,.3);
}
.eh-home-button-primary:hover, .eh-home-button-primary:focus-visible { color: #fff; background: #fb155d; box-shadow: 0 16px 34px rgba(116,0,44,.4); }

.eh-home-button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(8px);
}
.eh-home-button-secondary:hover, .eh-home-button-secondary:focus-visible { color: #302449; border-color: #fff; background: #fff; }

.eh-home-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(32,22,58,.25);
  backdrop-filter: blur(7px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color .25s ease, transform .25s ease;
}
.eh-home-arrow:hover, .eh-home-arrow:focus-visible { background: var(--eh-home-purple); transform: translateY(-50%) scale(1.08); }
.eh-home-arrow svg { width: 23px; height: 23px; fill: currentColor; }
.eh-home-arrow-prev { left: 25px; }
.eh-home-arrow-next { right: 25px; }

.eh-home-slider-nav {
  position: absolute;
  right: 60px;
  bottom: 38px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
}

.eh-home-dots { display: flex; align-items: center; gap: 8px; }
.eh-home-dots button {
  width: 9px;
  height: 9px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: rgba(255,255,255,.56);
  cursor: pointer;
  transition: width .3s ease, background-color .3s ease;
}
.eh-home-dots button.is-active { width: 32px; background: #fff; }

.eh-home-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  background: rgba(35,24,59,.24);
  cursor: pointer;
}
.eh-home-pause span { width: 3px; height: 12px; border-radius: 3px; background: #fff; }
.eh-home-pause.is-paused span:first-child { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 9px solid #fff; border-radius: 0; background: transparent; }
.eh-home-pause.is-paused span:last-child { display: none; }

.eh-home-progress { position: absolute; right: 0; bottom: 0; left: 0; z-index: 4; height: 4px; background: rgba(255,255,255,.18); }
.eh-home-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--eh-home-yellow), #ffd765); }
.eh-home-progress span.is-running { animation: eh-home-progress 6.5s linear forwards; }
@keyframes eh-home-progress { from { width: 0; } to { width: 100%; } }

.eh-home-now {
  position: relative;
  padding: 95px 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(250,184,0,.16), transparent 24%),
    linear-gradient(135deg, #f8b600 0%, #ffc42a 100%);
}
.eh-home-now::before { content: ""; position: absolute; left: -90px; bottom: -100px; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.eh-home-now-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); gap: 85px; width: min(1220px, 100%); margin: 0 auto; }
.eh-home-section-label { color: var(--eh-home-purple-dark); }
.eh-home-now h2,
.eh-home-mission h2 { margin: 0; color: var(--eh-home-ink); font-family: "Poppins", "Raleway", Arial, sans-serif; font-size: clamp(34px, 3.4vw, 50px); font-weight: 500; line-height: 1.18; letter-spacing: -.025em; }
.eh-home-now-copy > p:not(.eh-home-section-label) { max-width: 620px; margin: 23px 0 0; font-size: 18px; line-height: 1.68; }
.eh-home-text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: #33265d !important; font-size: 15px; font-weight: 800; text-decoration: none !important; }
.eh-home-text-link svg { width: 20px; height: 20px; fill: currentColor; transition: transform .25s ease; }
.eh-home-text-link:hover svg { transform: translateX(4px); }

.eh-home-needs { display: grid; gap: 12px; }
.eh-home-needs article { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 20px 22px; border: 1px solid rgba(255,255,255,.48); border-radius: 17px; background: rgba(255,255,255,.73); box-shadow: 0 13px 30px rgba(112,76,0,.08); backdrop-filter: blur(8px); transition: transform .25s ease, box-shadow .25s ease; }
.eh-home-needs article:hover { transform: translateX(-5px); box-shadow: 0 17px 34px rgba(112,76,0,.14); }
.eh-home-need-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; color: #fff; border-radius: 50%; background: var(--eh-home-purple); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.eh-home-needs h3 { margin: 0; color: #33265d; font-size: 18px; font-weight: 800; }
.eh-home-needs p { margin: 5px 0 0; color: #524b5f; font-size: 14px; line-height: 1.5; }

.eh-home-mission { position: relative; padding: 115px 30px 125px; background: #fff; }
.eh-home-mission::after { content: ""; position: absolute; top: 60px; right: -130px; width: 380px; height: 380px; border: 52px solid rgba(133,131,242,.07); border-radius: 50%; }
.eh-home-mission-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(420px, .95fr) minmax(0, 1.05fr); align-items: center; gap: 95px; width: min(1220px, 100%); margin: 0 auto; }
.eh-home-mission-photo { position: relative; min-height: 610px; }
.eh-home-mission-photo::before { content: ""; position: absolute; top: -22px; left: -22px; width: 65%; height: 52%; border-radius: 28px 8px 28px 8px; background: #ecebff; }
.eh-home-mission-photo img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 28px 8px 28px 8px; object-fit: cover; box-shadow: 0 25px 60px rgba(51,38,93,.19); }
.eh-home-mission-stamp { position: absolute; right: -30px; bottom: 42px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 135px; height: 135px; padding: 16px; color: #fff; border: 8px solid #fff; border-radius: 50%; background: var(--eh-home-purple); box-shadow: 0 15px 35px rgba(51,38,93,.22); text-align: center; }
.eh-home-mission-stamp strong { font-size: 21px; line-height: 1; }
.eh-home-mission-stamp span { margin-top: 6px; font-size: 10px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.eh-home-mission-copy { max-width: 620px; }
.eh-home-mission-rule { width: 86px; height: 4px; margin: 23px 0 29px; border-radius: 4px; background: linear-gradient(90deg, var(--eh-home-purple), var(--eh-home-yellow)); }
.eh-home-mission-copy > p:not(.eh-home-section-label) { margin: 0 0 18px; color: #45404f; font-size: 17px; line-height: 1.75; }
.eh-home-mission-copy strong { color: #33265d; }
.eh-home-button-purple { color: #fff; background: var(--eh-home-purple); box-shadow: 0 12px 25px rgba(81,64,158,.22); }
.eh-home-button-purple:hover, .eh-home-button-purple:focus-visible { color: #fff; background: var(--eh-home-purple-dark); }
.eh-home-inline-heart { display: inline-flex; align-items: center; gap: 9px; padding: 13px 5px; color: var(--eh-home-pink) !important; font-size: 15px; font-weight: 800; text-decoration: none !important; }
.eh-home-inline-heart svg { width: 21px; height: 21px; fill: currentColor; transition: transform .25s ease; }
.eh-home-inline-heart:hover svg { transform: scale(1.14); }

.eh-home-start.is-enhanced .eh-home-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease var(--eh-reveal-delay, 0ms), transform .75s cubic-bezier(.22,1,.36,1) var(--eh-reveal-delay, 0ms);
}
.eh-home-start.is-enhanced .eh-home-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .eh-home-slide-inner { width: min(100% - 100px, 850px); }
  .eh-home-slide-title { max-width: 720px; }
  .eh-home-arrow { width: 42px; height: 42px; }
  .eh-home-arrow-prev { left: 16px; }
  .eh-home-arrow-next { right: 16px; }
  .eh-home-now-inner { grid-template-columns: 1fr; gap: 48px; }
  .eh-home-needs { grid-template-columns: repeat(3, 1fr); }
  .eh-home-needs article { grid-template-columns: 1fr; align-content: start; }
  .eh-home-mission-inner { grid-template-columns: .9fr 1.1fr; gap: 55px; }
  .eh-home-mission-photo { min-height: 540px; }
}

@media (max-width: 760px) {
  .eh-home-hero { min-height: 690px; }
  .eh-home-slide { background-position: center center; }
  .eh-home-slide-shade { background: linear-gradient(0deg, rgba(25,16,45,.9) 0%, rgba(31,20,55,.65) 55%, rgba(25,16,45,.3) 100%); }
  .eh-home-slide-inner { width: 100%; padding: 150px 26px 120px; align-self: flex-end; }
  .eh-home-eyebrow { font-size: 11px; }
  .eh-home-slide-title { font-size: clamp(34px, 10vw, 49px); line-height: 1.1; }
  .eh-home-lead { margin-top: 19px; font-size: 16px; line-height: 1.55; }
  .eh-home-actions { align-items: stretch; gap: 9px; margin-top: 25px; }
  .eh-home-button { min-height: 50px; padding: 11px 15px; font-size: 13px; }
  .eh-home-arrow { top: auto; bottom: 29px; width: 39px; height: 39px; transform: none; }
  .eh-home-arrow:hover, .eh-home-arrow:focus-visible { transform: scale(1.06); }
  .eh-home-arrow-prev { left: 20px; }
  .eh-home-arrow-next { right: 20px; }
  .eh-home-slider-nav { right: 50%; bottom: 32px; transform: translateX(50%); }
  .eh-home-pause { display: none; }
  .eh-home-progress { height: 3px; }
  .eh-home-now { padding: 75px 22px; }
  .eh-home-now h2, .eh-home-mission h2 { font-size: 34px; }
  .eh-home-now-copy > p:not(.eh-home-section-label) { font-size: 16px; }
  .eh-home-needs { grid-template-columns: 1fr; gap: 10px; }
  .eh-home-needs article { grid-template-columns: 46px 1fr; padding: 17px; }
  .eh-home-need-icon { width: 46px; height: 46px; }
  .eh-home-mission { padding: 80px 22px 90px; }
  .eh-home-mission-inner { grid-template-columns: 1fr; gap: 60px; }
  .eh-home-mission-photo { min-height: min(118vw, 560px); margin-right: 12px; }
  .eh-home-mission-stamp { right: -12px; bottom: -25px; width: 112px; height: 112px; border-width: 6px; }
  .eh-home-mission-copy > p:not(.eh-home-section-label) { font-size: 16px; line-height: 1.7; }
}

@media (max-width: 420px) {
  .eh-home-slide-inner { padding-right: 20px; padding-left: 20px; }
  .eh-home-actions { display: grid; grid-template-columns: 1fr; }
  .eh-home-button { width: 100%; }
  .eh-home-dots button.is-active { width: 23px; }
  .eh-home-mission-photo { min-height: 450px; }
  .eh-home-mission-actions { align-items: stretch; }
  .eh-home-inline-heart { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .eh-home-start *, .eh-home-start *::before, .eh-home-start *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
