:root {
  --event-black: #080d0b;
  --event-cream: #f7f1e7;
  --event-gold: #f39542;
  --event-rust: #a64520;
}

.event-page {
  background: var(--event-black);
  color: var(--event-cream);
}

.event-balloon-layer {
  position: fixed;
  inset: 0;
  z-index: 6;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.event-balloon-layer.paused {
  opacity: 0;
}

.event-balloon {
  position: absolute;
  left: var(--balloon-x);
  bottom: -8rem;
  width: var(--balloon-size);
  height: calc(var(--balloon-size) * 1.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 52% 48% 48% 52% / 58% 58% 42% 42%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.7) 0 7%, transparent 8%),
    var(--balloon-color);
  box-shadow:
    inset -0.35rem -0.45rem 0.8rem rgba(8, 13, 11, 0.2),
    0 0.5rem 1.4rem rgba(8, 13, 11, 0.12);
  opacity: 0.42;
  animation: event-balloon-float var(--balloon-duration) linear var(--balloon-delay) infinite;
}

.event-balloon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.42rem;
  border-right: 0.25rem solid transparent;
  border-left: 0.25rem solid transparent;
  border-top: 0.5rem solid var(--balloon-color);
  transform: translateX(-50%);
}

.event-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 0.4rem);
  width: 1px;
  height: 5rem;
  background: rgba(247, 241, 231, 0.38);
}

.event-header {
  background: rgba(8, 13, 11, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
}

.event-header nav {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.event-header nav a {
  color: var(--event-cream);
}

.event-hero {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(20rem, 1.18fr);
  min-height: calc(100vh - 5rem);
  align-items: center;
}

.event-poster-wrap {
  align-self: stretch;
  overflow: hidden;
}

.event-poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-intro {
  padding: clamp(3rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(243, 149, 66, 0.22), transparent 35%),
    linear-gradient(145deg, #111814, var(--event-black));
}

.event-kicker {
  color: var(--event-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-intro h1 {
  margin: 0 0 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 10vw, 9.5rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.07em;
}

.event-intro h1 em {
  color: var(--event-gold);
  font-weight: 400;
}

.event-lead {
  max-width: 34rem;
  color: #d8d0c5;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 2rem;
}

.event-facts span {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  color: #d8d0c5;
  font-size: 0.88rem;
}

.event-facts .date-fact {
  border-color: var(--event-gold);
  background: var(--event-gold);
  color: #17100a;
  font-weight: 800;
}

.date-fact strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 0.8;
}

.zoom-fact {
  background: rgba(45, 140, 255, 0.16);
  color: #dcecff !important;
}

.zoom-fact svg,
.feature-zoom svg {
  width: 1.35rem;
  fill: #2d8cff;
}

.event-button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--event-gold);
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  background: var(--event-gold);
  color: #17100a;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.event-manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 9rem) clamp(1rem, 9vw, 10rem);
  background: var(--event-cream);
  color: #17100a;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.event-manifesto::before,
.event-manifesto::after {
  position: absolute;
  color: rgba(166, 69, 32, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 24vw, 24rem);
  line-height: 1;
  pointer-events: none;
}

.event-manifesto::before {
  content: "C";
  top: 1rem;
  left: -0.08em;
}

.event-manifesto::after {
  content: "KQ";
  right: -0.12em;
  bottom: 0;
}

.event-manifesto > p {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  line-height: 1.45;
}

.truth-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 76rem;
  margin: 0 auto clamp(4rem, 9vw, 8rem);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: left;
}

.truth-cards article,
.contrast-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.truth-cards article {
  display: flex;
  min-height: clamp(19rem, 35vw, 28rem);
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.2rem;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 50% -15%, rgba(243, 149, 66, 0.32) 0 28%, transparent 28.5%),
    repeating-linear-gradient(45deg, transparent 0 0.8rem, rgba(166, 69, 32, 0.055) 0.8rem 0.9rem),
    var(--event-cream);
  box-shadow: 0 18px 45px rgba(23, 16, 10, 0.2);
  color: #17100a;
}

.truth-cards article:nth-child(1) {
  transform: rotate(-2deg);
}

.truth-cards article:nth-child(2) {
  background:
    radial-gradient(circle at 50% -15%, rgba(166, 69, 32, 0.24) 0 28%, transparent 28.5%),
    radial-gradient(circle, rgba(166, 69, 32, 0.09) 0 0.14rem, transparent 0.17rem),
    var(--event-cream);
  background-size: auto, 1.4rem 1.4rem, auto;
  transform: translateY(1.5rem);
}

.truth-cards article:nth-child(3) {
  background:
    radial-gradient(circle at 50% -15%, rgba(243, 149, 66, 0.32) 0 28%, transparent 28.5%),
    linear-gradient(90deg, rgba(166, 69, 32, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(166, 69, 32, 0.07) 1px, transparent 1px),
    var(--event-cream);
  background-size: auto, 1.5rem 1.5rem, 1.5rem 1.5rem, auto;
  transform: rotate(2deg);
}

.truth-cards article:hover,
.truth-cards article:focus-visible,
.truth-cards article.active,
.contrast-grid article:hover,
.contrast-grid article:focus-visible,
.contrast-grid article.active {
  outline: none;
  transform: translateY(-0.7rem) rotate(0) scale(1.02);
  box-shadow: 0 26px 60px rgba(23, 16, 10, 0.3);
}

.truth-cards article::after {
  content: "+";
  position: absolute;
  z-index: -1;
  right: 1rem;
  top: 0.5rem;
  color: rgba(166, 69, 32, 0.42);
  font-size: 2.5rem;
  transition: transform 260ms ease;
}

.truth-cards article.active::after,
.truth-cards article:hover::after {
  transform: rotate(45deg);
}

.truth-cards span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: var(--event-gold);
  color: #17100a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.truth-cards p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.truth-cards strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--event-rust);
  font-weight: 400;
  font-style: italic;
}

.event-manifesto .fit-in-line {
  max-width: 48rem;
}

.fit-in-line span {
  display: inline-block;
  border: 1px solid rgba(23, 16, 10, 0.22);
  border-radius: 999px;
  padding: 0.04em 0.28em 0.12em;
  text-decoration: line-through;
  transform: rotate(-4deg);
}

.event-manifesto .gold-line {
  color: var(--event-rust);
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.contrast-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 70rem;
  margin: clamp(3rem, 8vw, 7rem) auto;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.contrast-grid article {
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(23, 16, 10, 0.14);
  border-radius: 50% 50% 1.2rem 1.2rem;
  padding: 1.5rem;
  background:
    linear-gradient(rgba(247, 241, 231, 0.9), rgba(247, 241, 231, 0.96)),
    url("../assets/crowned-not-cloned.webp") center / cover;
  box-shadow: 0 14px 34px rgba(23, 16, 10, 0.09);
}

.contrast-grid article:nth-child(2) {
  transform: translateY(1.5rem);
}

.contrast-grid span,
.contrast-grid em {
  color: #6e6258;
}

.contrast-grid strong {
  margin: 0.3rem 0;
  color: var(--event-rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.contrast-grid small {
  position: absolute;
  right: 1.1rem;
  bottom: 0.7rem;
  color: rgba(166, 69, 32, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.event-manifesto blockquote {
  position: relative;
  z-index: 1;
  max-width: 58rem;
  margin: 0 auto clamp(3rem, 8vw, 7rem);
  border-block: 1px solid rgba(23, 16, 10, 0.18);
  padding: clamp(2rem, 6vw, 5rem) 0;
  color: var(--event-rust);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1.12;
}

.raise-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 3rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.raise-list span {
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  background: #17100a;
  color: var(--event-cream);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.raise-list span:nth-child(even) {
  background: var(--event-rust);
  transform: rotate(3deg);
}

.raise-list span:nth-child(odd) {
  transform: rotate(-3deg);
}

.raise-list span:hover {
  background: var(--event-gold);
  color: #17100a;
  transform: translateY(-0.35rem) rotate(0);
}

.registration-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(20rem, 1.2fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 9vw, 10rem);
  background:
    radial-gradient(circle at 0 100%, rgba(166, 69, 32, 0.45), transparent 35rem),
    #111814;
}

.registration-copy h2 {
  color: var(--event-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.registration-copy p:last-child {
  color: #cfc6ba;
  font-size: 1.1rem;
  line-height: 1.65;
}

.registration-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  padding: clamp(1.2rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.06);
}

.registration-card form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.registration-card label {
  display: grid;
  gap: 0.45rem;
  color: #e6ddd1;
  font-size: 0.9rem;
  font-weight: 800;
}

.registration-card label span {
  color: #a99f92;
  font-weight: 500;
}

.registration-card input,
.registration-card select {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.7rem;
  padding: 0.7rem 0.8rem;
  background: #202820;
  color: white;
  font: inherit;
}

.registration-card input:focus,
.registration-card select:focus {
  outline: 2px solid var(--event-gold);
  outline-offset: 2px;
}

.registration-card .consent,
.registration-card .event-button,
.form-message {
  grid-column: 1 / -1;
}

.registration-card .consent {
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.45;
}

.registration-card .consent input {
  width: 1.15rem;
  min-height: auto;
  margin-top: 0.18rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-message {
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  padding: 1rem;
  line-height: 1.45;
}

.form-message strong,
.form-message span {
  display: block;
}

.form-message.success {
  background: #dff4db;
  color: #173b1a;
}

.form-message.error {
  background: #ffe1dc;
  color: #612116;
}

.form-message ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.event-footer {
  background: #080d0b;
  color: #a99f92;
}

.event-footer a {
  color: var(--event-gold);
  font-weight: 900;
  text-decoration: none;
}

@keyframes event-balloon-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(var(--balloon-drift), -55vh, 0) rotate(4deg);
  }
  100% {
    transform: translate3d(0, calc(-100vh - 14rem), 0) rotate(-4deg);
  }
}

@media (max-width: 880px) {
  .event-hero,
  .registration-section {
    grid-template-columns: 1fr;
  }

  .event-poster-wrap img {
    max-height: 85vh;
    object-fit: contain;
  }

  .contrast-grid {
    grid-template-columns: 1fr;
  }

  .truth-cards {
    grid-template-columns: 1fr;
  }

  .truth-cards article,
  .truth-cards article:nth-child(1),
  .truth-cards article:nth-child(2),
  .truth-cards article:nth-child(3),
  .contrast-grid article:nth-child(2) {
    min-height: 20rem;
    transform: none;
  }
}

@media (max-width: 620px) {
  .event-intro {
    padding: 3rem 1rem 4rem;
  }

  .event-intro h1 {
    font-size: clamp(3.7rem, 22vw, 6rem);
  }

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

@media (prefers-reduced-motion: reduce) {
  .event-balloon-layer {
    display: none;
  }
}
