:root {
  --ev-purple: #2e0965;
  --ev-purple-900: #21034b;
  --ev-purple-800: #37106f;
  --ev-teal: #0faaa4;
  --ev-teal-dark: #087b78;
  --ev-gold: #f4bd38;
  --ev-gold-deep: #d9951c;
  --ev-cream: #fffaf0;
  --ev-page: #fffdf8;
  --ev-card: rgba(255, 255, 255, 0.92);
  --ev-text: #3a2947;
  --ev-muted: #6f6179;
  --ev-line: rgba(46, 9, 101, 0.12);
  --ev-shadow: 0 22px 62px rgba(46, 9, 101, 0.11);
  --ev-shadow-soft: 0 14px 38px rgba(46, 9, 101, 0.08);
  --ev-radius: 28px;
  --ev-container: 1188px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ev-page);
  color: var(--ev-text);
  font-family: "Inter", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.events-redesign {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 6%, rgba(255,255,255,.94) 0 16%, rgba(255,250,240,.96) 42%, rgba(255,253,248,1) 74%),
    var(--ev-page);
}

.ev-container {
  width: min(var(--ev-container), calc(100% - 48px));
  margin: 0 auto;
}

.ev-hero-shell {
  position: relative;
  padding: 142px 0 48px;
  overflow: hidden;
  isolation: isolate;
}

.ev-confetti-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/anniversary-background.png");
  background-size: cover;
  background-position: center top;
  opacity: .82;
  pointer-events: none;
}

.ev-hero-shell::before,
.ev-hero-shell::after,
.ev-cta::before,
.ev-cta::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 230px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0 34%, rgba(219,145,25,.55) 35% 48%, #ffd879 49% 62%, rgba(219,145,25,.58) 63% 76%, transparent 77% 100%);
  opacity: .72;
  filter: drop-shadow(0 12px 20px rgba(217,149,28,.18));
  pointer-events: none;
}

.ev-hero-shell::before {
  left: -24px;
  top: 162px;
  transform: rotate(22deg);
}

.ev-hero-shell::after {
  right: -16px;
  top: 158px;
  transform: rotate(-18deg);
}

.ev-hero-intro {
  text-align: center;
}

.ev-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 16px;
  color: var(--ev-teal-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.ev-eyebrow span {
  display: inline-block;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: var(--ev-teal);
}

.ev-hero-intro h1,
.ev-section-head h2,
.ev-copy-card h2,
.ev-cta-copy h2 {
  margin: 0;
  color: var(--ev-purple);
  font-family: "Baloo 2", "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.ev-hero-intro h1 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
}

.ev-lead {
  width: min(660px, 100%);
  margin: 16px auto 0;
  color: var(--ev-muted);
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.65;
}

.ev-countdown-panel {
  width: min(1040px, 100%);
  margin: 34px auto 30px;
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(245, 190, 56, .42);
  border-radius: var(--ev-radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,248,231,.92)),
    radial-gradient(circle at 8% 18%, rgba(245,190,56,.24), transparent 34%);
  box-shadow: var(--ev-shadow-soft);
  text-align: left;
}

.ev-small-label {
  margin: 0 0 8px;
  color: var(--ev-teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ev-countdown-copy h2 {
  margin: 0;
  color: var(--ev-purple);
  font-family: "Baloo 2", "Inter", system-ui, sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.04;
  letter-spacing: -.02em;
}

.ev-countdown-copy p:last-child {
  margin: 8px 0 0;
  color: var(--ev-muted);
  font-size: 15px;
  line-height: 1.55;
}

.ev-countdown-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(74px, 1fr));
  gap: 12px;
}

.ev-countdown-box {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 14px 8px;
  border: 1px solid rgba(46, 9, 101, .09);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(46, 9, 101, .07);
}

.ev-countdown-box strong {
  display: block;
  color: var(--ev-purple);
  font-family: "Baloo 2", "Inter", system-ui, sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.035em;
}

.ev-countdown-box span {
  display: block;
  margin-top: 2px;
  color: var(--ev-teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ev-feature-hero {
  position: relative;
  width: min(1120px, 100%);
  margin: 34px auto 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 121, .42);
  border-radius: 30px;
  box-shadow: var(--ev-shadow);
  background: var(--ev-purple-900);
  text-align: left;
}

.ev-feature-hero img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.ev-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 18, 0.88) 0%,
    rgba(5, 5, 18, 0.82) 45%,
    rgba(5, 5, 18, 0.42) 66%,
    rgba(0, 0, 0, 0) 84%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.ev-feature-content {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  bottom: clamp(22px, 4vw, 54px);
  max-width: 520px;
  color: #fff;
  text-shadow: 0 8px 26px rgba(0, 0, 0, .42);
}

.ev-feature-content p {
  margin: 0 0 10px;
  color: var(--ev-gold);
  font-size: clamp(18px, 2.6vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.ev-feature-content h2 {
  margin: 0 0 18px;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: .98;
  letter-spacing: -.03em;
}

.ev-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe17e, var(--ev-gold));
  color: #3e2503;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.ev-date-pill i,
.ev-glance-icon i,
.ev-card-badge i,
.ev-timeline-step i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.ev-glance-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.ev-glance-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border: 1px solid rgba(46, 9, 101, .08);
  border-radius: 22px;
  background: var(--ev-card);
  box-shadow: var(--ev-shadow-soft);
}

.ev-glance-icon,
.ev-card-badge,
.ev-timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(46, 9, 101, .11);
  color: var(--ev-purple);
}

.ev-glance-icon--teal { background: rgba(15, 170, 164, .13); color: var(--ev-teal-dark); }
.ev-glance-icon--gold { background: rgba(244, 189, 56, .22); color: var(--ev-gold-deep); }

.ev-glance-card h3 {
  margin: 14px 0 5px;
  color: var(--ev-purple);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.ev-glance-card p {
  margin: 0;
  color: var(--ev-muted);
  font-size: 14px;
  line-height: 1.35;
}

.ev-section { position: relative; padding: 36px 0; }
.ev-founder-section { padding-top: 26px; }
.ev-founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
  gap: 22px;
  align-items: stretch;
}

.ev-founder-video-card,
.ev-copy-card,
.ev-highlight-card,
.ev-timeline-step,
.ev-cta {
  border: 1px solid rgba(46, 9, 101, .09);
  background: var(--ev-card);
  box-shadow: var(--ev-shadow-soft);
}

.ev-founder-video-card {
  position: relative;
  min-height: 332px;
  overflow: hidden;
  border-radius: 26px;
  background: #2b1a25;
}

.ev-founder-video {
  width: 100%;
  height: 100%;
  min-height: 332px;
  object-fit: cover;
}


.ev-video-copy {
  position: absolute;
  left: clamp(22px, 4vw, 48px);
  top: clamp(24px, 4vw, 48px);
  color: #fff;
}

.ev-video-copy p {
  margin: 0 0 6px;
  color: #ffd879;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: .96;
}

.ev-video-copy h2 {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
}



.ev-mute-button {
  position: absolute;
  right: 20px;
  bottom: 22px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  cursor: pointer;
}

.ev-mute-button span::before,
.ev-mute-button span::after {
  content: "";
  position: absolute;
  background: var(--ev-teal-dark);
}
.ev-mute-button span::before { width: 8px; height: 12px; left: 14px; top: 17px; border-radius: 2px 0 0 2px; }
.ev-mute-button span::after { width: 12px; height: 18px; left: 22px; top: 14px; clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 66%); }
.ev-mute-button.is-muted::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  left: 8px;
  top: 22px;
  border-radius: 999px;
  background: #da2e2e;
  transform: rotate(-42deg);
}




.ev-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 332px;
  padding: clamp(28px, 4.2vw, 54px);
  border-radius: 26px;
  text-align: center;
}

.ev-eyebrow--card { font-size: 13px; margin-bottom: 14px; }
.ev-eyebrow--card span { width: 42px; }

.ev-copy-card h2,
.ev-section-head h2 {
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.02;
}

.ev-copy-card p:not(.ev-eyebrow) {
  margin: 18px auto 0;
  max-width: 440px;
  color: var(--ev-muted);
  font-size: 16px;
  line-height: 1.7;
}

.ev-outline-btn,
.ev-gold-btn,
.ev-purple-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.ev-outline-btn {
  align-self: center;
  margin-top: 26px;
  border: 2px solid var(--ev-purple);
  color: var(--ev-purple);
  background: #fff;
}

.ev-outline-btn:hover,
.ev-gold-btn:hover,
.ev-purple-outline:hover { transform: translateY(-2px); }

.ev-section-head {
  margin-bottom: 28px;
  text-align: center;
}

.ev-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ev-highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: #fff;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ev-highlight-card:hover { transform: translateY(-6px); box-shadow: var(--ev-shadow); }

.ev-highlight-media {
  height: 210px;
  overflow: hidden;
  background: #f5f1ea;
}

.ev-highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ev-highlight-card:nth-child(1) .ev-highlight-media img { object-position: center top; }
.ev-highlight-card:nth-child(2) .ev-highlight-media img { object-position: center; }
.ev-highlight-card:nth-child(3) .ev-highlight-media img { object-position: center; }

.ev-card-badge {
  position: absolute;
  left: 50%;
  top: 180px;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
  border: 6px solid #fff;
  background: var(--ev-purple);
  color: #fff;
  box-shadow: 0 12px 24px rgba(46,9,101,.2);
}

.ev-highlight-body {
  padding: 44px 24px 28px;
}

.ev-highlight-body h3,
.ev-timeline-step h3 {
  margin: 0;
  color: var(--ev-purple);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.16;
}

.ev-highlight-body p,
.ev-timeline-step p {
  margin: 10px 0 0;
  color: var(--ev-muted);
  font-size: 15px;
  line-height: 1.55;
}

.ev-highlight-body a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--ev-purple);
  font-weight: 900;
}

.ev-program-section { padding-top: 30px; }
.ev-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.ev-timeline::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 9%;
  right: 9%;
  height: 3px;
  border-top: 3px dotted rgba(46,9,101,.42);
  z-index: 0;
}

.ev-timeline-step {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 26px 18px 22px;
  border-radius: 22px;
  text-align: center;
}

.ev-timeline-step > strong {
  position: absolute;
  left: 50%;
  top: -15px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe18b, var(--ev-gold));
  color: #4e2c02;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(217,149,28,.25);
}

.ev-timeline-step span {
  margin: 0 auto 16px;
  background: rgba(46,9,101,.08);
}

.ev-timeline-step span svg { width: 28px; height: 28px; }
.ev-timeline-step h3 { font-size: 17px; }
.ev-timeline-step p { font-size: 13.5px; }

.ev-cta-section { padding: 42px 0 74px; }
.ev-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(250px, .92fr) minmax(320px, 1.24fr);
  align-items: center;
  gap: 22px;
  min-height: 222px;
  padding: 26px clamp(24px, 5vw, 58px);
  border: 1px solid rgba(255, 216, 121, .28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 28%, rgba(255,216,121,.16), transparent 28%),
    linear-gradient(135deg, #2e0965 0%, #45148b 58%, #2a075f 100%);
  color: #fff;
  box-shadow: var(--ev-shadow);
}

.ev-cta::before { left: -34px; top: 18px; height: 190px; transform: rotate(23deg); opacity: .64; }
.ev-cta::after { right: -32px; top: 22px; height: 190px; transform: rotate(-19deg); opacity: .64; }

.ev-cta-art img {
  width: min(350px, 100%);
  max-height: 188px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.2));
}

.ev-cta-copy h2 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1;
}

.ev-cta-copy p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.55;
}

.ev-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.ev-gold-btn {
  background: linear-gradient(180deg, #ffe286, var(--ev-gold));
  color: #392104;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.ev-purple-outline {
  border: 1.8px solid rgba(255,255,255,.72);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.ntk-animate-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--ntk-anim-delay, 0ms);
}
.ntk-animate-on-scroll.ntk-in-view { opacity: 1; transform: translate3d(0,0,0); }
.ntk-value-pop { animation: ntkValuePop .38s ease; }
@keyframes ntkValuePop { 0% { transform: scale(1); } 45% { transform: scale(1.08); } 100% { transform: scale(1); } }

.ev-play-button,
.ev-countdown-box,
.ev-feature-hero,
.ev-glance-card,
.ev-founder-video-card,
.ev-copy-card,
.ev-timeline-step,
.ev-cta {
  will-change: transform;
}

@media (max-width: 1120px) {
  .ev-hero-shell { padding-top: 132px; }
  .ev-countdown-panel { grid-template-columns: 1fr; text-align: center; }
  .ev-countdown-copy p:last-child { max-width: 650px; margin-inline: auto; }
  .ev-founder-grid { grid-template-columns: 1fr; }
  .ev-copy-card { min-height: auto; }
  .ev-timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 36px; }
  .ev-timeline::before { display: none; }
}

@media (max-width: 920px) {
  .ev-container { width: min(100% - 36px, var(--ev-container)); }
  .ev-hero-shell { padding-top: 122px; }
  .ev-feature-hero img { min-height: 360px; }
  .ev-glance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ev-highlight-grid { grid-template-columns: 1fr; max-width: 570px; margin-inline: auto; }
  .ev-highlight-media { height: 250px; }
  .ev-card-badge { top: 220px; }
  .ev-cta { grid-template-columns: 1fr; text-align: center; }
  .ev-cta-art img { margin-inline: auto; object-position: center; }
  .ev-cta-copy p { margin-inline: auto; }
  .ev-cta-actions { justify-content: center; }
}

@media (max-width: 680px) {
  .ev-container { width: min(100% - 28px, var(--ev-container)); }
  .ev-hero-shell { padding-top: 112px; padding-bottom: 28px; }
  .ev-eyebrow { gap: 12px; font-size: 12px; }
  .ev-eyebrow span { width: 34px; }
  .ev-hero-intro h1 { font-size: clamp(38px, 13vw, 56px); }
  .ev-lead { font-size: 15px; line-height: 1.55; }
  .ev-countdown-panel { padding: 18px; border-radius: 22px; }
  .ev-countdown-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .ev-countdown-box { min-height: 92px; border-radius: 16px; }
  .ev-countdown-box strong { font-size: 38px; }
  .ev-feature-hero { border-radius: 22px; }
  .ev-feature-hero img { min-height: 420px; object-position: 68% center; }
  .ev-feature-overlay { background: linear-gradient(180deg, rgba(5, 5, 18, 0.96) 0%, rgba(5, 5, 18, 0.86) 48%, rgba(5, 5, 18, 0.58) 100%); }
  .ev-feature-content { left: 20px; right: 20px; bottom: 22px; }
  .ev-feature-content h2 { font-size: 34px; }
  .ev-feature-content p { font-size: 17px; }
  .ev-date-pill { font-size: 14px; padding-inline: 14px; }
  .ev-glance-grid { grid-template-columns: 1fr; }
  .ev-glance-card { min-height: 132px; }
  .ev-founder-video-card,
  .ev-founder-video { min-height: 360px; }
  .ev-video-copy { left: 22px; top: 26px; }
  .ev-play-button { width: 66px; height: 66px; }
  .ev-play-button span { border-top-width: 11px; border-bottom-width: 11px; border-left-width: 17px; }
  .ev-video-controls { right: 78px; left: 18px; bottom: 22px; }
  .ev-copy-card { padding: 28px 20px; }
  .ev-copy-card h2, .ev-section-head h2 { font-size: 36px; }
  .ev-highlight-media { height: 218px; }
  .ev-card-badge { top: 188px; }
  .ev-timeline { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .ev-timeline-step { min-height: 0; }
  .ev-cta { padding: 26px 20px; border-radius: 22px; }
  .ev-cta-actions { flex-direction: column; }
  .ev-gold-btn, .ev-purple-outline, .ev-outline-btn { width: 100%; }
}

@media (max-width: 420px) {
  .ev-container { width: min(100% - 22px, var(--ev-container)); }
  .ev-hero-shell::before,
  .ev-hero-shell::after { opacity: .32; }
  .ev-countdown-panel { margin-top: 24px; }
  .ev-countdown-box strong { font-size: 34px; }
  .ev-feature-hero img { min-height: 380px; }
  .ev-highlight-media { height: 196px; }
  .ev-card-badge { top: 166px; }
  .ev-highlight-body { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ntk-animate-on-scroll,
  .ntk-animate-on-scroll.ntk-in-view,
  .ev-highlight-card,
  .ev-outline-btn,
  .ev-gold-btn,
  .ev-purple-outline {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}



.ev-date-pill i {
  font-size: 20px;
}

.ev-glance-icon i,
.ev-card-badge i,
.ev-timeline-step span i {
  font-size: 26px;
}

.ev-card-badge i {
  font-size: 25px;
}

.ev-timeline-step span i {
  color: currentColor;
}

.ev-gold-btn,
.ev-purple-outline,
.ev-outline-btn {
  white-space: nowrap;
}


/* Cup hero animation: same gentle drift used in the original first section */
@keyframes evHeroDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.075) translate3d(-1.1%, -0.7%, 0);
  }
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
}

.ev-feature-hero img {
  animation: evHeroDrift 18s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

.ev-feature-hero:hover img {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ev-feature-hero img {
    animation: none !important;
    transform: none !important;
  }
}




/* Founder video: clean autoplay player */
.ev-founder-video-card {
  background: #140921;
}

.ev-founder-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  background: #140921;
}

.ev-video-copy {
  max-width: 310px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .46);
  transition: opacity .28s ease, transform .28s ease;
}

.ev-founder-video-card.is-playing .ev-video-copy {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.ev-founder-video-card video::-webkit-media-controls-panel {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, .72));
}


/* Trophy hero image motion */
@keyframes evCupHeroDrift {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.105) translate3d(-1.8%, -1.1%, 0);
  }
  100% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
}

.ev-feature-hero img {
  width: 104%;
  max-width: none;
  animation: evCupHeroDrift 15s ease-in-out infinite !important;
  transform-origin: 58% 50%;
  will-change: transform;
}

.ev-feature-hero:hover img {
  animation-play-state: paused;
}

/* Face of Naijatutors Disney prize badge */
.ev-highlight-media {
  position: relative;
}

.ev-disney-prize-badge {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 14px;
  transform: translate(-50%, -50%) rotate(-3deg);
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 999px;
  background: linear-gradient(135deg, #f7ca4d 0%, #ffd879 48%, #d79729 100%);
  color: #352005;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(46, 9, 101, .22);
}

.ev-disney-prize-badge i {
  font-size: 16px;
  color: #2e0965;
}

.ev-highlight-card--contest .ev-highlight-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.58) 0 38px, rgba(255,255,255,0) 76px);
  pointer-events: none;
}

.ev-highlight-card--contest .ev-highlight-body p {
  min-height: 92px;
}

@media (max-width: 680px) {
  .ev-hero-intro h1.ev-hero-title {
    font-size: clamp(34px, 11.2vw, 46px);
  }

  .ev-hero-title::after {
    right: -12px;
    transform: scale(.78);
  }

  .ev-feature-hero img {
    width: 108%;
    animation-duration: 16s !important;
  }

  .ev-disney-prize-badge {
    top: 42%;
    font-size: 12px;
    min-height: 34px;
    padding: 7px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ev-feature-hero img {
    animation: none !important;
    transform: none !important;
  }
}


/* Program section spacing + Disney contest badge polish */
.ev-program-section .ev-section-head {
  margin-bottom: 40px;
}

.ev-program-section .ev-section-head h2 {
  margin-top: 10px;
}

.ev-program-section .ev-timeline {
  margin-top: 8px;
}

.ev-disney-prize-badge {
  gap: 8px;
  min-height: 40px;
  padding: 9px 16px;
  font-size: 12.5px;
  letter-spacing: .02em;
  box-shadow: 0 16px 30px rgba(46, 9, 101, .24);
}

.ev-disney-prize-badge i {
  font-size: 17px;
}

@media (max-width: 920px) {
  .ev-program-section .ev-section-head {
    margin-bottom: 34px;
  }
}

@media (max-width: 680px) {
  .ev-program-section .ev-section-head {
    margin-bottom: 28px;
  }

  .ev-disney-prize-badge {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 11.5px;
  }
}


/* Seconds countdown accent only */
.ev-countdown-box strong[data-countdown-value="seconds"] {
  color: #e9599c;
}

.ev-countdown-box:has([data-countdown-value="seconds"]) {
  border-color: rgba(233, 89, 156, .28);
  box-shadow: 0 12px 24px rgba(233, 89, 156, .11);
}

@supports not selector(:has(*)) {
  .ev-countdown-row .ev-countdown-box:last-child {
    border-color: rgba(233, 89, 156, .28);
    box-shadow: 0 12px 24px rgba(233, 89, 156, .11);
  }
}


/* Highlight card copy alignment */
.ev-highlight-card {
  display: flex;
  flex-direction: column;
}

.ev-highlight-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.ev-highlight-body p {
  min-height: calc(1.55em * 3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.ev-highlight-body a {
  margin-top: auto;
  white-space: nowrap;
}


/* Rounded CTA buttons in highlight cards */
.ev-highlights-section .ev-highlight-body > a {
  align-self: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid var(--ev-purple);
  border-radius: 999px;
  background: var(--ev-purple);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .01em;
  text-align: center;
  box-shadow: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.ev-highlights-section .ev-highlight-body > a span {
  transition: transform .2s ease;
}

.ev-highlights-section .ev-highlight-body > a:hover {
  transform: translateY(-1px);
  border-color: var(--ev-purple);
  background: #fff;
  color: var(--ev-purple);
  box-shadow: none;
}

.ev-highlights-section .ev-highlight-body > a:hover span {
  transform: translateX(3px);
}

.ev-highlights-section .ev-highlight-body > a:focus-visible {
  outline: 2px solid var(--ev-purple);
  outline-offset: 3px;
}


/* Hero title: highlight the 5 only */
.ev-title-five {
  display: inline-block;
  color: #b8860b;
  font-size: 1.18em;
  font-weight: 900;
  line-height: 1;
  vertical-align: -0.02em;
  text-shadow: 0 2px 0 rgba(255,255,255,.42), 0 8px 18px rgba(184, 134, 11, .16);
}

@media (max-width: 680px) {
  .ev-title-five {
    font-size: 1.12em;
  }
}


/* Founder video premium gold ribbon decoration */
.ev-founder-video-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 392px;
  padding: clamp(24px, 3.4vw, 38px);
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 216, 121, .18), transparent 28%),
    radial-gradient(circle at 86% 76%, rgba(244, 189, 56, .16), transparent 26%),
    linear-gradient(135deg, #fffdf8 0%, #f7f1e6 100%);
}

.ev-founder-video-card::before,
.ev-founder-video-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: .96;
  filter: drop-shadow(0 12px 16px rgba(158, 105, 14, .18));
}

.ev-founder-video-card::before {
  left: -30px;
  top: -46px;
  width: 150px;
  height: 245px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 22%, #a66b10 23% 34%, #f9d36a 35% 52%, #c89024 53% 66%, transparent 67% 100%);
  transform: rotate(32deg);
}

.ev-founder-video-card::after {
  right: -38px;
  bottom: -56px;
  width: 165px;
  height: 265px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 21%, #b27314 22% 34%, #ffd879 35% 52%, #c68b24 53% 67%, transparent 68% 100%);
  transform: rotate(-34deg);
}

.ev-founder-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 548px);
  margin: 0 auto;
  padding: clamp(18px, 2.8vw, 30px);
  isolation: isolate;
}

.ev-founder-stage::before,
.ev-founder-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 8px 12px rgba(158, 105, 14, .18));
}

.ev-founder-stage::before {
  right: -14px;
  top: -18px;
  width: 118px;
  height: 118px;
  border: 12px solid transparent;
  border-top-color: #f4c85a;
  border-right-color: #b97816;
  border-radius: 50%;
  transform: rotate(18deg);
}

.ev-founder-stage::after {
  left: -18px;
  bottom: -18px;
  width: 132px;
  height: 132px;
  border: 12px solid transparent;
  border-left-color: #b97816;
  border-bottom-color: #f5cc62;
  border-radius: 50%;
  transform: rotate(-14deg);
}

.ev-founder-stage .ev-founder-video {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(246, 204, 98, .95);
  outline: 1px solid rgba(90, 41, 4, .14);
  background: #1b1520;
  box-shadow:
    0 20px 38px rgba(46, 9, 101, .20),
    0 0 0 10px rgba(255, 255, 255, .72);
}

.ev-video-copy {
  z-index: 4;
  left: clamp(42px, 7vw, 64px);
  top: clamp(40px, 6vw, 58px);
  text-shadow: 0 10px 24px rgba(0,0,0,.36);
}

.ev-founder-orb {
  position: absolute;
  z-index: 5;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fff2b6 0 18%, #f2bf42 42%, #b77916 100%);
  box-shadow: 0 10px 18px rgba(183, 121, 22, .22);
  pointer-events: none;
  animation: evGoldFloat 4.8s ease-in-out infinite;
}

.ev-founder-orb--top {
  top: 2px;
  left: 49%;
  width: 22px;
  height: 22px;
  animation-delay: .1s;
}

.ev-founder-orb--left {
  left: 6px;
  top: 48%;
  animation-delay: .55s;
}

.ev-founder-orb--right {
  right: 6px;
  top: 45%;
  width: 24px;
  height: 24px;
  animation-delay: .95s;
}

.ev-founder-orb--bottom {
  bottom: 2px;
  left: 51%;
  width: 22px;
  height: 22px;
  animation-delay: 1.25s;
}

.ev-founder-stage .ev-founder-orb::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,216,121,.9) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 64%, rgba(255,216,121,.75) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 90%, rgba(255,216,121,.55) 0 1.5px, transparent 2px);
  opacity: .85;
}

@keyframes evGoldFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -8px, 0) scale(1.06);
  }
}

@media (max-width: 920px) {
  .ev-founder-video-card {
    min-height: 360px;
  }

  .ev-founder-stage {
    width: min(100%, 520px);
  }

  .ev-founder-video-card::before {
    left: -44px;
    top: -54px;
  }

  .ev-founder-video-card::after {
    right: -54px;
    bottom: -64px;
  }
}

@media (max-width: 680px) {
  .ev-founder-video-card {
    min-height: 302px;
    padding: 18px;
    border-radius: 24px;
  }

  .ev-founder-stage {
    padding: 18px;
  }

  .ev-founder-video-card::before,
  .ev-founder-video-card::after {
    width: 108px;
    height: 190px;
    opacity: .72;
  }

  .ev-founder-stage::before,
  .ev-founder-stage::after {
    width: 82px;
    height: 82px;
    border-width: 9px;
  }

  .ev-founder-stage .ev-founder-video {
    border-radius: 16px;
    box-shadow:
      0 16px 26px rgba(46, 9, 101, .18),
      0 0 0 7px rgba(255, 255, 255, .72);
  }

  .ev-video-copy {
    left: 32px;
    top: 30px;
  }

  .ev-founder-orb {
    width: 13px;
    height: 13px;
  }

  .ev-founder-orb--top,
  .ev-founder-orb--bottom {
    width: 18px;
    height: 18px;
  }

  .ev-founder-orb--right {
    width: 19px;
    height: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ev-founder-orb {
    animation: none;
  }
}


/* Founder video centering and larger video refinements */
.ev-founder-video-card {
  display: grid;
  place-items: center;
}

.ev-founder-stage {
  display: grid;
  place-items: center;
  width: min(100%, 620px);
  padding: clamp(12px, 2vw, 20px);
}

.ev-founder-stage .ev-founder-video {
  width: min(100%, 588px);
  margin: 0 auto;
  aspect-ratio: 16 / 9.6;
  border-radius: 18px;
  box-shadow:
    0 20px 38px rgba(46, 9, 101, .20),
    0 0 0 8px rgba(255, 255, 255, .72);
}

.ev-video-copy {
  left: clamp(36px, 6vw, 56px);
  top: clamp(30px, 5vw, 46px);
}

@media (max-width: 920px) {
  .ev-founder-stage {
    width: min(100%, 560px);
    padding: 16px;
  }

  .ev-founder-stage .ev-founder-video {
    width: min(100%, 530px);
  }
}

@media (max-width: 680px) {
  .ev-founder-stage {
    width: 100%;
    padding: 14px;
  }

  .ev-founder-stage .ev-founder-video {
    width: 100%;
    border-radius: 16px;
    box-shadow:
      0 16px 26px rgba(46, 9, 101, .18),
      0 0 0 6px rgba(255, 255, 255, .72);
  }

  .ev-video-copy {
    left: 26px;
    top: 24px;
  }
}


/* Section title refinements */
@media (min-width: 681px) {
  .ev-highlight-body h3,
  .ev-timeline-step h3,
  .ev-section-head h2 {
    white-space: nowrap;
  }

  .ev-highlight-body h3 {
    font-size: 18px;
  }

  .ev-timeline-step h3 {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .ev-highlight-body h3,
  .ev-timeline-step h3,
  .ev-section-head h2 {
    white-space: normal;
  }
}


/* Hero-only bubbles and one-time celebration confetti */
.ev-hero-shell {
  position: relative;
  overflow: hidden;
}

.ev-hero-bubbles,
.ev-falling-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ev-hero-bubbles {
  z-index: 1;
}

.ev-falling-confetti {
  z-index: 2;
}

.ev-hero-bubbles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%,
      rgba(255, 255, 255, .45) 0 10%,
      rgba(125, 86, 224, .18) 34%,
      rgba(125, 86, 224, .09) 62%,
      rgba(125, 86, 224, 0) 100%);
  border: 1px solid rgba(125, 86, 224, .14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  animation: evHeroBubbleMove 4.6s ease-in-out infinite;
}

.ev-hero-bubbles span:nth-child(1) {
  width: 112px;
  height: 112px;
  left: 4.2%;
  top: 30%;
  animation-delay: 0s;
}

.ev-hero-bubbles span:nth-child(2) {
  width: 84px;
  height: 84px;
  right: 4.4%;
  top: 32%;
  animation-delay: .7s;
}

.ev-hero-bubbles span:nth-child(3) {
  width: 58px;
  height: 58px;
  left: 21%;
  top: 46%;
  animation-delay: 1.1s;
}

.ev-hero-bubbles span:nth-child(4) {
  width: 66px;
  height: 66px;
  right: 19%;
  top: 48%;
  animation-delay: 1.5s;
}

.ev-hero-bubbles span:nth-child(5) {
  width: 42px;
  height: 42px;
  left: 13%;
  top: 62%;
  animation-delay: .35s;
}

.ev-hero-bubbles span:nth-child(6) {
  width: 38px;
  height: 38px;
  right: 13%;
  top: 18%;
  animation-delay: 1.85s;
}

@keyframes evHeroBubbleMove {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .82;
  }
  35% {
    transform: translate3d(7px, -15px, 0) scale(1.04);
    opacity: .96;
  }
  70% {
    transform: translate3d(-5px, -7px, 0) scale(1.02);
    opacity: .9;
  }
}

.ev-falling-piece {
  position: absolute;
  top: -36px;
  width: 9px;
  height: 14px;
  border-radius: 2px;
  opacity: 0;
  transform: translate3d(0, -40px, 0) rotate(0deg);
  animation: evConfettiDrop 2.8s cubic-bezier(.16,.84,.34,1) forwards;
}

.ev-falling-piece.is-gold { background: #f6c75b; }
.ev-falling-piece.is-purple { background: #7d56e0; }
.ev-falling-piece.is-teal { background: #18b8b2; }
.ev-falling-piece.is-pink { background: #f05a9b; }

@keyframes evConfettiDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -44px, 0) rotate(0deg);
  }
  8% {
    opacity: .95;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--ev-x-drift, 0px), var(--ev-drop, 520px), 0) rotate(var(--ev-rotate, 420deg));
  }
}

.ev-hero-shell > .ev-container {
  position: relative;
  z-index: 3;
}

@media (max-width: 920px) {
  .ev-hero-bubbles span:nth-child(1) { width: 78px; height: 78px; left: 1.5%; top: 28%; }
  .ev-hero-bubbles span:nth-child(2) { width: 62px; height: 62px; right: 1.5%; top: 30%; }
  .ev-hero-bubbles span:nth-child(3),
  .ev-hero-bubbles span:nth-child(4) { width: 44px; height: 44px; }
}

@media (max-width: 680px) {
  .ev-hero-bubbles span:nth-child(1) { width: 54px; height: 54px; left: -10px; top: 21%; }
  .ev-hero-bubbles span:nth-child(2) { width: 44px; height: 44px; right: -8px; top: 24%; }
  .ev-hero-bubbles span:nth-child(3) { width: 30px; height: 30px; left: 7%; top: 40%; }
  .ev-hero-bubbles span:nth-child(4) { width: 34px; height: 34px; right: 8%; top: 44%; }
  .ev-hero-bubbles span:nth-child(5),
  .ev-hero-bubbles span:nth-child(6) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ev-hero-bubbles span,
  .ev-falling-piece {
    animation: none;
  }
}


/* Stronger, more visible hero confetti */
.ev-falling-confetti {
  z-index: 4;
}

.ev-falling-piece {
  top: -42px;
  width: 12px;
  height: 18px;
  border-radius: 3px;
  opacity: 0;
  box-shadow: 0 6px 10px rgba(0, 0, 0, .08);
  will-change: transform, opacity;
}

.ev-falling-piece.is-gold { background: #f5c84c; }
.ev-falling-piece.is-purple { background: #7d56e0; }
.ev-falling-piece.is-teal { background: #18b8b2; }
.ev-falling-piece.is-pink { background: #f05a9b; }

@keyframes evConfettiDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -52px, 0) rotate(0deg) scale(.9);
  }
  6% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  100% {
    opacity: .05;
    transform: translate3d(var(--ev-x-drift, 0px), var(--ev-drop, 560px), 0) rotate(var(--ev-rotate, 420deg)) scale(1.06);
  }
}

@media (max-width: 680px) {
  .ev-falling-piece {
    width: 10px;
    height: 14px;
  }
}


/* Founder lower-third and hero date/time refinements */
.ev-video-copy {
  right: clamp(18px, 4vw, 40px);
  bottom: clamp(22px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  max-width: 420px;
  min-height: min(100%, 300px);
}

.ev-video-copy-top h2 {
  max-width: 270px;
}

.ev-video-credit {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  max-width: min(100%, 360px);
}

.ev-video-credit h3,
.ev-video-credit p {
  margin: 0;
}

.ev-video-credit h3 {
  display: inline-block;
  padding: 8px 14px 9px;
  background: rgba(67, 17, 112, .96);
  color: #fff6df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .26);
}

.ev-video-credit p {
  display: inline-block;
  padding: 5px 12px 6px;
  border-top: 4px solid #fff;
  background: rgba(0, 0, 0, .70);
  color: #f3edda;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13px, 1.5vw, 16px);
  font-style: italic;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.ev-date-pill {
  flex-wrap: wrap;
  row-gap: 6px;
}

.ev-date-pill span {
  display: inline-flex;
  align-items: center;
}

.ev-date-pill-divider {
  opacity: .72;
}

@media (max-width: 680px) {
  .ev-video-copy {
    right: 18px;
    bottom: 18px;
    gap: 14px;
    min-height: 220px;
  }

  .ev-video-copy-top h2 {
    max-width: 220px;
  }

  .ev-video-credit h3 {
    padding: 7px 10px 8px;
    font-size: 13px;
  }

  .ev-video-credit p {
    padding: 4px 9px 5px;
    font-size: 11px;
    border-top-width: 3px;
  }

  .ev-date-pill {
    font-size: 13px;
    gap: 6px;
  }
}


/* Refinement: founder lower-third name only + separate date/time frames */
.ev-video-credit {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: min(100%, 360px);
}

.ev-video-credit h3 {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: clamp(15px, 1.9vw, 20px);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(0, 0, 0, .45);
  box-shadow: none;
}

.ev-date-pill-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ev-date-pill {
  flex-wrap: nowrap;
}

.ev-date-pill--time {
  background: rgba(255, 255, 255, .96);
  color: #2e0965;
}

.ev-date-pill--time i {
  color: #2e0965;
}

@media (max-width: 680px) {
  .ev-date-pill-group {
    gap: 10px;
  }

  .ev-date-pill--time span {
    white-space: nowrap;
  }
}


/* Final founder name placement: name only above video controls */
.ev-video-copy {
  left: clamp(36px, 6vw, 56px);
  top: clamp(30px, 5vw, 46px);
  right: auto;
  bottom: auto;
  display: block;
  min-height: 0;
  max-width: 310px;
}

.ev-video-copy-top {
  position: static;
  max-width: 310px;
}

.ev-founder-name-overlay {
  position: absolute;
  left: clamp(36px, 6vw, 56px);
  bottom: 94px;
  z-index: 5;
  max-width: calc(100% - 120px);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .58);
  pointer-events: none;
}

.ev-founder-video-card.is-playing .ev-founder-name-overlay {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

@media (max-width: 680px) {
  .ev-video-copy {
    left: 26px;
    top: 24px;
    max-width: 220px;
  }

  .ev-video-copy-top {
    max-width: 220px;
  }

  .ev-founder-name-overlay {
    left: 26px;
    bottom: 86px;
    max-width: calc(100% - 82px);
    font-size: 13px;
  }
}
