:root {
  --bg: #06133f;
  --bg-deep: #020b2a;
  --panel: rgba(8, 20, 71, 0.72);
  --line: rgba(61, 208, 255, 0.7);
  --text: #f8f8fb;
  --muted: #c8d4ff;
  --yellow: #ffc51f;
  --pink: #ff4f97;
  --cyan: #18c6ff;
  --lime: #b6db2a;
  --violet: #8f52ff;
  --coral: #ff6b7d;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 74%, rgba(255, 145, 69, 0.3), transparent 18%),
    radial-gradient(circle at 87% 64%, rgba(255, 76, 145, 0.35), transparent 20%),
    radial-gradient(circle at 79% 85%, rgba(24, 198, 255, 0.2), transparent 18%),
    linear-gradient(180deg, #051142 0%, #081b5a 42%, #04123f 100%);
  color: var(--text);
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  line-height: 1.5;
}

.site-shell {
  position: relative;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 44px clamp(24px, 4vw, 52px) 64px;
  overflow: visible;
}

.glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.45;
  pointer-events: none;
}

.glow-left {
  left: -120px;
  bottom: 200px;
  background: radial-gradient(circle, rgba(255, 189, 63, 0.8), rgba(255, 79, 151, 0.08) 70%);
}

.glow-right {
  width: 520px;
  height: 520px;
  right: -110px;
  top: 320px;
  background: radial-gradient(
    circle,
    rgba(255, 79, 151, 0.62) 0%,
    rgba(255, 79, 151, 0.24) 48%,
    transparent 78%
  );
}

.section {
  position: relative;
  padding: clamp(42px, 6vw, 68px) 0;
}

.section + .section,
.dual-grid + .section {
  border-top: 2px dotted var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  grid-template-areas: "brand copy";
  gap: clamp(42px, 7vw, 80px);
  align-items: center;
  min-height: min(720px, 82vh);
}

.hero-brand {
  grid-area: brand;
  min-width: 0;
  justify-self: center;
  width: min(100%, 340px);
  max-width: 340px;
  text-align: center;
}

.hero-kicker,
.eyebrow,
.panel-heading {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-kicker {
  color: var(--cyan);
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 14px;
}

.logo-lockup {
  position: relative;
  width: 100%;
  max-width: 340px;
  padding: 8px 0 0;
}

.logo-image {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0 auto;
}

.logo-wordmark,
.hero-copy h2,
.section-title h2,
.panel h2,
.prize-copy h2,
.footer p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.logo-wordmark {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5.4rem, 12vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-shadow:
    0 4px 0 #ffffff,
    0 8px 0 #07215d,
    0 14px 22px rgba(0, 0, 0, 0.35);
}

.logo-wordmark .c1 {
  color: var(--yellow);
}

.logo-wordmark .c2 {
  color: var(--cyan);
}

.logo-wordmark .c3 {
  color: var(--pink);
}

.hero-copy {
  grid-area: copy;
  max-width: 640px;
  min-width: 0;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-copy h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.8rem, 8vw, 6.8rem);
  line-height: 0.92;
  color: var(--yellow);
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.24);
}

.paint-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  margin: 20px 0 24px;
  padding: 10px 28px;
  background:
    linear-gradient(90deg, rgba(255, 79, 151, 0.98), rgba(255, 95, 133, 0.98));
  color: #17193f;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.7vw, 2.25rem);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.lede {
  margin: 0;
  max-width: 62ch;
  color: var(--text);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.75;
}

.accent-pink {
  color: var(--pink);
}

.accent-cyan {
  color: var(--cyan);
}

.accent-yellow {
  color: var(--yellow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), #ff9e1f);
  color: #0d1342;
  box-shadow: 0 12px 24px rgba(255, 193, 31, 0.28);
}

.btn-secondary {
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.btn-contact {
  color: #06133f;
  cursor: pointer;
  border: 0;
  background: linear-gradient(135deg, var(--cyan), #69ddff);
  box-shadow: 0 12px 24px rgba(24, 198, 255, 0.2);
  font: inherit;
}

.contact-modal {
  width: min(92vw, 680px);
  max-height: min(90vh, 820px);
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  overflow: visible;
}

.contact-modal::backdrop {
  background: rgba(1, 7, 31, 0.82);
  backdrop-filter: blur(6px);
}

.contact-modal-card {
  position: relative;
  max-height: min(90vh, 820px);
  padding: clamp(28px, 5vw, 46px);
  overflow-y: auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 79, 151, 0.2), transparent 36%),
    linear-gradient(145deg, #102b78, #06133f 72%);
  border: 2px solid rgba(24, 198, 255, 0.65);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.contact-kicker {
  margin: 0 48px 4px 0;
  color: var(--cyan);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-modal h2 {
  margin: 0;
  color: var(--yellow);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 8vw, 4.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-intro {
  margin: 10px 0 26px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 14px;
  color: #10183e;
  font: inherit;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  outline: none;
}

.contact-field input {
  min-height: 48px;
}

.contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 197, 31, 0.2);
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.contact-status {
  flex: 1;
  min-height: 1.5em;
  margin: 0;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-status.is-error {
  color: #ff9caf;
}

.contact-submit {
  flex: 0 0 auto;
  cursor: pointer;
  border: 0;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-notice {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.recaptcha-notice a {
  color: var(--cyan);
}

.section-title,
.section-title-left {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.section-title h2,
.panel h2,
.prize-copy h2,
.footer p {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  color: rgba(255, 255, 255, 0.96);
}

.seo-intro-section {
  border-top: 2px dotted var(--line);
}

.seo-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.seo-intro-copy .eyebrow {
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  line-height: 1.2;
}

.seo-intro-copy h1 {
  max-width: 850px;
  margin: 0;
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
}

.seo-intro-lede {
  max-width: 68ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.seo-intro-lede strong {
  color: var(--text);
}

.seo-punch-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 79, 151, 0.32), transparent 42%),
    linear-gradient(145deg, rgba(34, 58, 131, 0.96), rgba(7, 25, 78, 0.98));
  border: 2px solid rgba(24, 198, 255, 0.52);
  border-radius: 28px;
  box-shadow:
    7px 7px 0 rgba(255, 197, 31, 0.92),
    var(--shadow);
}

.seo-punch-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.seo-punch-card > p:not(.seo-punch-kicker) {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
}

.seo-punch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.seo-punch-tags span {
  padding: 7px 12px;
  color: #07133e;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--cyan);
  border-radius: 999px;
}

.seo-punch-tags span:nth-child(2) {
  background: var(--pink);
}

.seo-punch-tags span:nth-child(3) {
  background: var(--yellow);
}

.seo-punch-tags span:nth-child(4) {
  background: var(--lime);
}

.seo-punch-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.seo-punch-link:hover,
.seo-punch-link:focus-visible {
  color: var(--cyan);
  text-decoration: underline;
}

.seo-details {
  margin-top: 30px;
  background: rgba(8, 20, 71, 0.62);
  border: 1px solid rgba(80, 197, 255, 0.34);
  border-radius: 20px;
}

.seo-details summary {
  display: flex;
  min-height: 66px;
  padding: 16px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--cyan);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.seo-details summary::-webkit-details-marker {
  display: none;
}

.seo-details summary:hover,
.seo-details summary:focus-visible {
  color: var(--yellow);
}

.seo-details-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--bg-deep);
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  background: var(--cyan);
  border-radius: 50%;
  transition: transform 180ms ease, background-color 180ms ease;
}

.seo-details[open] .seo-details-icon {
  background: var(--yellow);
  transform: rotate(45deg);
}

.seo-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 4px 22px 26px;
}

.seo-details-grid article {
  padding-top: 22px;
  border-top: 2px dotted rgba(80, 197, 255, 0.42);
}

.seo-details-grid h2 {
  margin: 0;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.seo-details-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.seo-details-grid strong,
.seo-details-grid .seo-details-signature {
  color: var(--text);
}

.seo-details-grid .seo-details-signature {
  font-weight: 800;
}

.concept-video-section {
  border-top: 2px dotted var(--line);
}

.concept-video-section,
.home-events-section,
#deroulement {
  isolation: isolate;
}

.concept-video-section::before,
.home-events-section::before,
#deroulement::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
}

.concept-video-section::before {
  top: 50%;
  left: -180px;
  background: radial-gradient(
    circle,
    rgba(255, 79, 151, 0.28) 0%,
    rgba(255, 79, 151, 0.1) 48%,
    transparent 78%
  );
  transform: translateY(-50%);
}

.home-events-section::before {
  top: 50%;
  right: -170px;
  background: radial-gradient(
    circle,
    rgba(24, 198, 255, 0.42) 0%,
    rgba(24, 198, 255, 0.16) 48%,
    transparent 78%
  );
  transform: translateY(-50%);
}

#deroulement::before {
  top: 50%;
  left: -190px;
  background: radial-gradient(
    circle,
    rgba(255, 158, 31, 0.46) 0%,
    rgba(255, 197, 31, 0.17) 48%,
    transparent 78%
  );
  transform: translateY(-50%);
}

.concept-video-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}

.concept-video-copy .eyebrow {
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  line-height: 1.2;
}

.concept-video-copy .section-title {
  margin: 14px 0 18px;
}

.concept-video-copy .section-title h2 {
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  line-height: 0.88;
  text-wrap: balance;
}

.concept-video-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
}

.concept-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-deep);
  border: 1px solid rgba(80, 197, 255, 0.48);
  border-radius: 24px;
  box-shadow:
    7px 7px 0 var(--pink),
    var(--shadow);
}

.concept-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-testimonials-section { border-top: 2px dotted var(--line); }
.home-testimonials-kicker { margin-bottom: 10px; text-align: center; }
.home-testimonials-title { justify-content: center; text-align: center; }
.home-testimonials-title h2 { max-width: 900px; line-height: .95; }
.home-testimonial-track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.home-testimonial-slider.is-ready .home-testimonial-viewport { position: relative; height: clamp(390px, 34vw, 430px); overflow: hidden; }
.home-testimonial-slider.is-ready .home-testimonial-track { display: block; }
.home-testimonial-slider.is-ready .home-testimonial-card {
  position: absolute;
  inset: 0 auto 0 50%;
  width: min(72%, 790px);
  min-height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(.78);
  transition: transform 550ms cubic-bezier(.22, .61, .36, 1), opacity 420ms ease;
}
.home-testimonial-slider.is-ready .home-testimonial-card.is-current { z-index: 3; opacity: 1; pointer-events: auto; transform: translateX(-50%) scale(1); }
.home-testimonial-slider.is-ready .home-testimonial-card.is-previous { z-index: 1; opacity: .5; transform: translateX(calc(-50% - 82%)) scale(.86); }
.home-testimonial-slider.is-ready .home-testimonial-card.is-next { z-index: 1; opacity: .5; transform: translateX(calc(-50% + 82%)) scale(.86); }
.home-testimonial-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(34, 58, 131, .96), rgba(7, 25, 78, .98));
  border: 1px solid rgba(80, 197, 255, .45);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.home-testimonial-card::before { content: "“"; position: absolute; top: 4px; right: 24px; color: rgba(255, 197, 31, .2); font: 400 8rem/1 "Bebas Neue", sans-serif; }
.home-testimonial-card > p { position: relative; z-index: 1; max-width: 650px; margin: 0; color: #f7f8ff; font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; line-height: 1.7; }
.home-testimonial-card footer { display: flex; align-items: center; gap: 20px; }
.home-testimonial-card img { width: clamp(104px, 10vw, 132px); height: clamp(104px, 10vw, 132px); flex: 0 0 clamp(104px, 10vw, 132px); object-fit: cover; border: 5px solid var(--cyan); border-radius: 50%; }
.home-testimonial-card:nth-child(2) img { border-color: var(--yellow); }
.home-testimonial-card:nth-child(3) img { border-color: var(--pink); }
.home-testimonial-card:nth-child(4) img { border-color: var(--lime); }
.home-testimonial-card cite { color: var(--text); font: 700 1.3rem/1 "Barlow Condensed", sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.home-testimonial-controls { margin-top: 24px; display: none; align-items: center; justify-content: center; gap: 18px; }
.home-testimonial-slider.is-ready .home-testimonial-controls { display: flex; }
.home-testimonial-arrow { width: 46px; height: 46px; display: grid; place-items: center; color: var(--bg-deep); background: var(--cyan); border: 0; border-radius: 50%; font-size: 1.25rem; font-weight: 800; cursor: pointer; transition: transform 180ms ease, background-color 180ms ease; }
.home-testimonial-arrow:hover, .home-testimonial-arrow:focus-visible { background: var(--yellow); transform: scale(1.08); }
.home-testimonial-dots { display: flex; align-items: center; justify-content: center; gap: 9px; }
.home-testimonial-dots button { width: 10px; height: 10px; padding: 0; background: rgba(255,255,255,.32); border: 0; border-radius: 50%; cursor: pointer; transition: width 180ms ease, background-color 180ms ease; }
.home-testimonial-dots button.is-active { width: 28px; background: var(--pink); border-radius: 999px; }

.home-events-section {
  border-top: 2px dotted var(--line);
}

.home-events-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.home-events-heading .section-title {
  margin-bottom: 22px;
}

.home-events-all {
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.home-events-all:hover,
.home-events-all:focus-visible {
  color: var(--yellow);
  text-decoration: underline;
}

.home-events-list {
  display: grid;
  gap: 12px;
}

.home-event {
  display: grid;
  grid-template-columns: minmax(135px, 0.65fr) minmax(220px, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(8, 20, 71, 0.68);
  border: 1px solid rgba(80, 197, 255, 0.3);
  border-radius: 18px;
}

.home-event-date {
  margin: 0;
  color: var(--cyan);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: capitalize;
}

.home-event-info h3 {
  margin: 0;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.home-event-info p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.home-event-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.home-event-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
}

.home-event-link-primary {
  color: #0d1342;
  background: var(--yellow);
  border-color: var(--yellow);
}

.home-event-link:hover,
.home-event-link:focus-visible {
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.home-event-link-primary:hover,
.home-event-link-primary:focus-visible {
  background: var(--cyan);
}

.home-event-status {
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 800;
}

.home-events-loading,
.home-events-message {
  margin: 0;
  padding: 22px;
  color: var(--muted);
  text-align: center;
  background: rgba(8, 20, 71, 0.5);
  border: 1px solid rgba(80, 197, 255, 0.24);
  border-radius: 18px;
}

.home-events-message a {
  color: var(--cyan);
}

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

.timeline-card,
.panel {
  position: relative;
  background: var(--panel);
  border: 2px solid rgba(80, 197, 255, 0.24);
  border-radius: 28px;
  padding: 30px 28px 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.timeline-card::after,
.panel::after {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  right: 0;
  width: 4px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(24, 198, 255, 0.9) 0 1.5px, transparent 2px) center/4px 12px repeat-y;
  opacity: 0.85;
}

.timeline-card h3 {
  margin: 0 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.timeline-card p,
.text-list li,
.prize-copy p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
}

.timeline-card-pink h3 {
  color: var(--pink);
}

.timeline-card-cyan h3 {
  color: var(--cyan);
}

.timeline-card-lime h3 {
  color: var(--lime);
}

.timeline-card h3,
.timeline-card p {
  position: relative;
  z-index: 1;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.panel-heading {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
}

.panel-rule h2 {
  margin-top: 10px;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 0.9;
  color: var(--yellow);
}

.text-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.text-list li {
  padding-left: 18px;
  position: relative;
}

.text-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.panel-tips h2 {
  font-size: clamp(2.5rem, 3.8vw, 4rem);
}

.panel-tips .section-title {
  margin-bottom: 22px;
}

.panel-tips .text-list {
  margin-top: 0;
}

.prize-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  padding: 32px 36px;
  background:
    linear-gradient(180deg, rgba(6, 19, 63, 0.72), rgba(3, 10, 34, 0.86));
  border: 4px solid rgba(255, 197, 31, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.prize-copy h2 {
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
  color: rgba(255, 255, 255, 0.98);
}

.prize-copy p {
  margin-top: 10px;
  max-width: 72ch;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 58, 131, 0.98), rgba(7, 25, 78, 0.98));
  border: 2px solid rgba(24, 198, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.newsletter-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  min-height: 430px;
  padding: 36px;
  background: radial-gradient(circle, rgba(35, 76, 171, 0.95), #142964 72%);
}

#mlb2-43715355 .newsletter-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
}

.newsletter-content {
  align-self: center;
  width: 100%;
  max-width: 590px;
  padding: 40px clamp(30px, 5vw, 56px);
}

.newsletter-kicker {
  margin: 0 0 4px;
  color: var(--cyan);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter-content h2 {
  margin: 0;
  color: var(--yellow);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.newsletter-content > p:last-of-type {
  margin: 8px 0 24px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.newsletter-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.newsletter-fields .ml-form-fieldRow:last-child {
  grid-column: 1 / -1;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #10183e;
  font: inherit;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 197, 31, 0.2);
}

.newsletter-form .ml-form-embedSubmit {
  margin-top: 14px;
}

.newsletter-form button {
  width: 100%;
  min-height: 50px;
  padding: 12px 22px;
  color: #0d1342;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--yellow), #ff9e1f);
  border: 0;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 193, 31, 0.28);
}

.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: newsletter-spin 0.8s linear infinite;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes newsletter-spin {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  padding: 34px 0 6px;
  text-align: center;
}

.footer p {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  color: rgba(255, 255, 255, 0.98);
}

.footer-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 0;
  padding: 13px 22px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  background: #1877f2;
  border: 1px solid #1877f2;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(24, 119, 242, 0.3);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.footer-social svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  flex: 0 0 auto;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: #fff;
  background: #0f67d8;
  border-color: #0f67d8;
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.4);
  transform: translateY(-2px);
}

.utility-menu {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  color: rgba(190, 187, 198, .58);
  font-size: .72rem;
  line-height: 1.4;
}

.utility-menu a,
.utility-menu button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.utility-menu a:hover,
.utility-menu a:focus-visible,
.utility-menu button:hover,
.utility-menu button:focus-visible {
  color: rgba(255, 255, 255, .88);
  text-decoration: underline;
}

.utility-auth-form { display: inline; margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero,
  .dual-grid,
  .newsletter-card,
  .concept-video-layout,
  .seo-intro-grid {
    grid-template-columns: 1fr;
  }

  .concept-video-copy {
    max-width: 760px;
  }

  .seo-punch-card {
    max-width: 760px;
  }

  .newsletter-visual {
    min-height: 280px;
    max-height: 300px;
    padding: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy";
    gap: 24px;
  }

  .hero-brand {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .logo-lockup {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-copy {
    max-width: 700px;
    margin: 0 auto;
  }

  .home-event {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .home-event-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 24px 18px 44px;
  }

  .section {
    padding: 34px 0;
  }

  .home-testimonial-slider.is-ready .home-testimonial-viewport { height: 500px; }
  .home-testimonial-slider.is-ready .home-testimonial-card { width: 84%; }
  .home-testimonial-slider.is-ready .home-testimonial-card.is-previous { transform: translateX(calc(-50% - 91%)) scale(.88); }
  .home-testimonial-slider.is-ready .home-testimonial-card.is-next { transform: translateX(calc(-50% + 91%)) scale(.88); }

  .seo-details-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-inline: 18px;
  }

  .seo-punch-card {
    border-radius: 22px;
    box-shadow:
      5px 5px 0 rgba(255, 197, 31, 0.92),
      var(--shadow);
  }

  .logo-lockup {
    padding: 8px 0 0;
  }

  .logo-image {
    width: 100%;
    max-width: 320px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .home-events-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }

  .home-events-heading .section-title {
    margin-bottom: 5px;
  }

  .home-event {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .home-event-actions {
    grid-column: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 6px;
  }

  .home-event-status {
    grid-column: 1 / -1;
  }

  .btn {
    width: 100%;
  }

  .contact-modal-card {
    border-radius: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-field-full {
    grid-column: auto;
  }

  .contact-form-footer {
    display: grid;
  }

  .timeline-card,
  .panel,
  .prize-banner,
  .newsletter-card {
    border-radius: 22px;
  }

  .timeline-card,
  .panel,
  .prize-banner {
    padding: 22px 18px 24px;
  }

  .newsletter-content {
    max-width: none;
    padding: 24px 18px 26px;
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .newsletter-fields .ml-form-fieldRow:last-child {
    grid-column: auto;
  }

  .timeline-card::after,
  .panel::after {
    top: auto;
    left: 18px;
    right: 18px;
    bottom: 0;
    width: auto;
    height: 4px;
    background: radial-gradient(circle, rgba(24, 198, 255, 0.9) 0 1.5px, transparent 2px) center/12px 4px repeat-x;
  }
}
