:root {
  --pe-black: #1d1d1b;
  --pe-black-deep: #10100f;
  --pe-orange: #f58200;
  --pe-orange-soft: rgba(245, 130, 0, 0.22);
  --pe-cream: #fcf1e4;
  --pe-white: #ffffff;
  --pe-muted: rgba(255, 255, 255, 0.76);
  --pe-line: rgba(255, 255, 255, 0.14);
  --pe-shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, var(--pe-orange-soft), transparent 30rem),
    linear-gradient(135deg, var(--pe-black), var(--pe-black-deep));
  color: var(--pe-white);
}

img {
  display: block;
  max-width: 100%;
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.landing-card {
  width: min(100%, 920px);
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 82px);
  border: 1px solid var(--pe-line);
  border-radius: 34px;
  background: rgba(29, 29, 27, 0.84);
  box-shadow: 0 28px 80px var(--pe-shadow);
  text-align: center;
}

.landing-card::before {
  content: "";
  position: absolute;
  top: -145px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 36px solid var(--pe-orange);
  opacity: 0.92;
  pointer-events: none;
}

.landing-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -95px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 26px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.brand-area,
.eyebrow,
h1,
.intro,
.event-links {
  position: relative;
  z-index: 1;
}

.brand-area {
  display: grid;
  place-items: center;
  min-height: 90px;
  margin-bottom: 38px;
}

.main-logo {
  width: min(340px, 78vw);
  height: auto;
}

.main-logo-fallback {
  display: inline-grid;
  gap: 0;
  color: var(--pe-orange);
  font-style: italic;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-align: left;
}

.main-logo-fallback span {
  font-size: clamp(2rem, 7vw, 4rem);
}

.main-logo-fallback strong {
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(1.7rem, 6vw, 3.35rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pe-orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0 auto;
  font-family: Arial Black, Impact, Arial, Helvetica, sans-serif;
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.intro {
  max-width: 620px;
  margin: 24px auto 42px;
  color: var(--pe-muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

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

.event-card {
  min-height: 138px;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--pe-cream);
  color: var(--pe-black);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.event-card:hover,
.event-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(245, 130, 0, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.event-card:focus-visible {
  outline: 3px solid var(--pe-orange);
  outline-offset: 4px;
}

.event-card img {
  max-width: 190px;
  max-height: 76px;
  object-fit: contain;
}

.event-fallback {
  font-family: Arial Black, Impact, Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 760px) {
  .landing {
    padding: 18px;
  }

  .landing-card {
    border-radius: 24px;
  }

  .landing-card::before {
    top: -165px;
    right: -155px;
    width: 285px;
    height: 285px;
    border-width: 30px;
  }

  .brand-area {
    min-height: 72px;
    margin-bottom: 30px;
  }

  .event-links {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 112px;
  }
}
