body.event-websites-page-body {
  --website-teal: #11b8b3;
  --website-teal-dark: #0d9e99;
  --website-orange: #ff6f3d;
  --website-orange-dark: #ef5f2c;
  --website-ink: #0c1b47;
  --website-muted: #5e6b8a;
  --website-line: #dce6f3;
  --website-surface: #ffffff;
  --website-shadow: 0 24px 68px rgba(8, 30, 74, 0.09);
  background:
    radial-gradient(circle at 10% 10%, rgba(17, 184, 179, 0.09), transparent 22%),
    radial-gradient(circle at 92% 28%, rgba(47, 124, 246, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: var(--website-ink);
}

body.event-websites-page-body .site-header .mega-link.is-current {
  background: #f7fbff;
  border-color: #dce8f8;
  box-shadow: 0 10px 22px rgba(16, 31, 77, 0.06);
}

body.event-websites-page-body .site-header .mega-link.is-current .mega-icon {
  background: #effaf7;
  border-color: #ccefe6;
  color: #0ea37a;
}

.website-page {
  width: 100%;
  overflow: hidden;
  padding: clamp(116px, 10vw, 150px) 0 clamp(54px, 7vw, 110px);
}

.website-page * {
  box-sizing: border-box;
}

.website-wrap {
  width: min(1540px, calc(100% - clamp(24px, 5vw, 96px)));
  margin: 0 auto;
  display: grid;
  gap: clamp(22px, 3vw, 46px);
}

.website-hero,
.website-showcase,
.website-section-card,
.website-cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 234, 244, 0.96);
  border-radius: clamp(22px, 2.4vw, 40px);
  background:
    radial-gradient(circle at 92% 84%, rgba(17, 184, 179, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.94));
  box-shadow: var(--website-shadow);
}

.website-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.04fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
}

.website-copy,
.website-section-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.website-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--website-teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.website-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--website-teal);
  box-shadow: 0 0 0 6px rgba(17, 184, 179, 0.12);
}

.website-copy h1,
.website-section-copy h2,
.website-showcase h2,
.website-cta-band h2 {
  margin: 0;
  color: var(--website-ink);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 800;
  text-wrap: balance;
}

.website-copy h1 {
  max-width: 620px;
  font-size: clamp(38px, 4vw, 47px);
}

.website-section-copy h2,
.website-showcase h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.4vw, 48px);
}

.website-highlight {
  color: var(--website-teal-dark);
}

.website-copy p,
.website-section-copy p,
.website-showcase p,
.website-cta-band p {
  margin: 18px 0 0;
  max-width: 560px;
  color: var(--website-muted);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.64;
  letter-spacing: -0.02em;
  font-weight: 500;
}

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

.website-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  border: 1.5px solid transparent;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.website-btn:hover {
  transform: translateY(-2px);
}

.website-btn-primary {
  background: linear-gradient(180deg, var(--website-orange), var(--website-orange-dark));
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 111, 61, 0.26);
}

.website-btn-secondary {
  background: #fff;
  border-color: #b8cdf3;
  color: var(--website-ink);
  box-shadow: 0 12px 28px rgba(10, 29, 74, 0.06);
}

.website-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 34px;
}

.website-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--website-ink);
  font-size: 15px;
  font-weight: 700;
}

.website-benefit-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(17, 184, 179, 0.1);
  border: 1px solid rgba(17, 184, 179, 0.18);
  color: var(--website-teal-dark);
}

.website-benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.website-frame {
  border-radius: clamp(20px, 2vw, 30px);
  border: 1px solid rgba(12, 27, 71, 0.08);
  background: #fff;
  padding: clamp(12px, 1.4vw, 18px);
  box-shadow: 0 18px 44px rgba(8, 30, 74, 0.08);
}

.website-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(16px, 1.8vw, 24px);
}

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

.website-feature-card {
  min-height: 214px;
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid var(--website-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(8, 30, 74, 0.04);
}

.website-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(17, 184, 179, 0.1);
  color: var(--website-teal-dark);
  margin-bottom: 16px;
}

.website-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.website-feature-card h3 {
  margin: 0 0 10px;
  color: var(--website-ink);
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.website-feature-card p {
  margin: 0;
  color: var(--website-muted);
  font-size: 15px;
  line-height: 1.55;
}

.website-showcase {
  padding: clamp(34px, 4vw, 56px);
  text-align: center;
}

.website-showcase .website-eyebrow {
  justify-content: center;
}

.website-showcase h2 {
  margin-left: auto;
  margin-right: auto;
}

.website-showcase p {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.website-showcase .website-frame {
  margin-top: 30px;
  padding: clamp(14px, 1.8vw, 22px);
}

.website-pill-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.website-pill {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid #cfe3f7;
  background: #fff;
  color: var(--website-ink);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(8, 30, 74, 0.04);
}

.website-section-card {
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 50px);
}

.website-section-card.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.04fr);
}

.website-section-card.reverse .website-frame {
  order: 2;
}

.website-section-card.reverse .website-section-copy {
  order: 1;
}

.website-check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.website-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--website-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.58;
}

.website-check {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(17, 184, 179, 0.12);
  border: 1px solid rgba(17, 184, 179, 0.18);
  color: var(--website-teal-dark);
  font-size: 15px;
  font-weight: 800;
}

.website-cta-band {
  text-align: center;
  padding: clamp(38px, 4vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  background: #000;
  box-shadow: 0 28px 80px rgba(3, 10, 26, 0.34);
  isolation: isolate;
}

.website-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(23deg, rgba(45, 214, 197, 0.94), rgba(0, 169, 156, 0.92) 15%, rgba(0, 169, 156, 0) 38%);
  opacity: 0.58;
  pointer-events: none;
  z-index: 0;
}

.website-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.website-cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.website-cta-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.website-cta-band h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 62px);
  max-width: 1100px;
  margin: 0 auto;
}

.website-cta-band p {
  max-width: 760px;
  margin: 16px auto 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
}

.website-cta-band .website-btn-primary {
  background: linear-gradient(135deg, #ffffff, #d6fff8);
  color: #052638;
  box-shadow: 0 18px 34px rgba(0, 154, 145, 0.22);
}

.website-cta-band .website-btn-primary:hover {
  box-shadow: 0 22px 42px rgba(0, 154, 145, 0.28);
}

.website-page .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1100px) {
  .website-hero,
  .website-section-card,
  .website-section-card.reverse {
    grid-template-columns: 1fr;
  }

  .website-section-card.reverse .website-frame,
  .website-section-card.reverse .website-section-copy {
    order: initial;
  }

  .website-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .website-benefits {
    grid-template-columns: 1fr;
  }

  .website-cta-band {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .website-wrap {
    width: min(100% - 24px, 1540px);
  }

  .website-page {
    padding-top: 104px;
  }

  .website-hero,
  .website-showcase,
  .website-section-card,
  .website-cta-band {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .website-copy p,
  .website-section-copy p,
  .website-showcase p,
  .website-cta-band p {
    font-size: 17px;
  }

  .website-feature-grid {
    grid-template-columns: 1fr;
  }

  .website-feature-card {
    min-height: auto;
  }

  .website-pill-row {
    justify-content: flex-start;
  }

  .website-btn {
    width: 100%;
  }

  .website-hero-actions {
    width: 100%;
  }

  .website-copy,
  .website-section-copy {
    align-items: stretch;
  }
}
