.hero-panel {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  color: var(--hero-text);
  --offset-shadow: var(--hero-shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -20vw;
  background-image: url("/static/imgs/indiana.svg");
  background-repeat: no-repeat;
  background-position: 80% 55%;
  background-size: clamp(700px, 80vh, 1500px);
  pointer-events: none;
  z-index: 0;
}

.kickoff-hero-panel::before {
  background-position: 50% 55%;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.layered-title {
  position: relative;
  display: inline-block;
}

.title-main {
  position: relative;
  font-size: clamp(3.5rem, 12vw, 6.8rem);
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
  line-height: 0.95;
  text-shadow: 6px 6px 0 var(--hero-shadow);
}

.hero-panel .title-main {
  color: var(--hero-text);
  text-shadow: 6px 6px 0 var(--hero-shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.hero-panel .hero-copy p {
  color: #fff;
}

.hero-kickoff-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.hero-kickoff-cta {
  position: relative;
  z-index: 1;
  animation: hero-kickoff-wiggle 3.2s ease-in-out infinite;
  transform-origin: 50% 100%;
}

.hero-kickoff-cta::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 3px solid #ffe15a;
  background: rgba(255, 225, 90, 0.2);
  box-shadow: 0 0 0 0 rgba(255, 225, 90, 0.55);
  pointer-events: none;
  z-index: 0;
  animation: hero-kickoff-pulse 1.8s ease-out infinite;
}

.hero-kickoff-badge {
  position: absolute;
  top: -24px;
  right: -28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 3px solid var(--line);
  background: #ffe15a;
  color: #8b1818;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(7deg);
  animation: hero-kickoff-badge-bob 1.8s ease-in-out infinite;
}

.hero-intro {
  font-size: 22px;
  font-weight: 700;
}

@keyframes hero-kickoff-wiggle {
  0%, 82%, 100% { transform: rotate(0deg) translateY(0); }
  85% { transform: rotate(-2deg) translateY(-1px); }
  89% { transform: rotate(2.25deg) translateY(-2px); }
  93% { transform: rotate(-1.5deg) translateY(-1px); }
  97% { transform: rotate(1deg) translateY(0); }
}

@keyframes hero-kickoff-pulse {
  0% {
    opacity: 0.95;
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(255, 225, 90, 0.55);
  }
  70% {
    opacity: 0;
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(255, 225, 90, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
    box-shadow: 0 0 0 0 rgba(255, 225, 90, 0);
  }
}

@keyframes hero-kickoff-badge-bob {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kickoff-cta,
  .hero-kickoff-cta::after,
  .hero-kickoff-badge {
    animation: none;
  }
}

@media (max-width: 640px) {
  .hero-kickoff-wrap {
    display: flex;
    width: 100%;
  }

  .hero-kickoff-cta {
    width: 100%;
  }

  .hero-kickoff-cta .btn__face {
    width: 100%;
    text-align: center;
  }
}

.hero-card {
  color: var(--ink);
  border: 4px solid var(--line);
  border-radius: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kickoff-hero-grid {
  align-items: start;
}

.kickoff-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kickoff-live-stream-cta {
  position: relative;
  z-index: 1;
}

.kickoff-live-stream-cta::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 3px solid #ffe15a;
  background: rgba(255, 225, 90, 0.2);
  box-shadow: 0 0 0 0 rgba(255, 225, 90, 0.55);
  pointer-events: none;
  z-index: 0;
  animation: hero-kickoff-pulse 1.8s ease-out infinite;
}

.kickoff-share-link {
  --btn-shadow-x: 4px;
  --btn-shadow-y: 4px;
  --btn-lift: 4px;
}

.kickoff-share-icon {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.kickoff-share-link .btn__face {
  width: 64px;
  height: 64px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.kickoff-side {
  display: grid;
  gap: 24px;
  align-content: start;
}

.kickoff-map-card {
  border: 4px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

.kickoff-map-link {
  width: 100%;
  text-align: center;
}

.kickoff-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .kickoff-share-links {
    gap: 10px;
  }

  .kickoff-share-link .btn__face {
    width: 58px;
    height: 58px;
  }

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

.hero-card-title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
}

.kickoff-venue-title {
  color: var(--hero-text);
  text-shadow: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  line-height: 1.1;
}

.hero-points {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 18px;
}

.hero-panel .hero-points {
  color: var(--hero-text);
}

.punchlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.punchlist span {
  background: var(--surface);
  color: var(--ink);
  border: 4px solid var(--line);
  padding: 12px 16px;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.hero-panel:not(.kickoff-hero-panel) .punchlist span {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.party-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 24px;
  position: relative;
}

.debs-figure {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.debs-img {
  width: 100%;
  max-width: 850px;
  height: auto;
  filter: grayscale(12%);
  transform-origin: 50% 70%;
  animation: debs-wiggle 3s ease-in-out infinite;
}

.debs-caption {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--muted);
}

@keyframes debs-wiggle {
  0%, 100% { transform: rotate(0deg) translateZ(0); }
  20% { transform: rotate(-1.5deg) translateX(-2px); }
  40% { transform: rotate(1.3deg) translateX(3px); }
  60% { transform: rotate(-0.8deg) translateX(-2px); }
  80% { transform: rotate(1deg) translateX(2px); }
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.dunces-panel {
  padding-top: 30px;
}

.dunces-panel .panel-inner {
  align-items: center;
  text-align: center;
  gap: 20px;
}

.dunces-title {
  color: #fff;
  font-size: clamp(4rem, 20vw, 7rem);
  text-shadow: 8px 8px 0 var(--line);
}

.dunces-row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
}

.dunces-row img {
  height: auto;
  border: none;
  box-shadow: none;
  background: transparent;
  width: clamp(280px, 28vw, 520px);
}

.dunces-row .micah {
  animation: micah-wiggle 2.4s ease-in-out infinite;
  transform-origin: 50% 90%;
}

.dunces-row .braun {
  animation: braun-bob 2s ease-in-out infinite;
  transform-origin: 50% 100%;
  position: relative;
  left: 60px;
}

.dunces-row .diego {
  animation: diego-stretch 2.6s ease-in-out infinite;
  transform-origin: 50% 80%;
  position: relative;
  left: 30px;
}

.dunce-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.dunce-wrapper .frustration-bubble {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: auto;
}

.dunce-chip {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 4px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: auto;
  color: var(--primary-text);
}

.dunce-card {
  max-width: 900px;
  margin: 28px auto 0;
  gap: 12px;
  text-align: left;
}

.dunce-card p {
  margin: 0;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.01em;
}

@keyframes micah-wiggle {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(-1.6deg) translateY(-1px); }
  50% { transform: rotate(1.4deg) translateY(1px); }
  75% { transform: rotate(-1deg) translateY(-2px); }
}

@keyframes braun-bob {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  60% { transform: translateY(2px); }
}

@keyframes diego-stretch {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.02, 1.05); }
  70% { transform: scale(0.99, 0.98); }
}

.frustration-bubble {
  width: 80px;
  height: auto;
  overflow: visible;
  animation: rage-shake 1.8s infinite;
}

.cloud-shape {
  fill: #ffffff;
  stroke: #000000;
  stroke-width: 3px;
  stroke-linejoin: round;
}

.scribble-spiral {
  fill: none;
  stroke: #000000;
  stroke-width: 3.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: scribbling-action 1.5s ease-out infinite;
}

@keyframes scribbling-action {
  to { stroke-dashoffset: 0; }
}

@keyframes rage-shake {
  0% { transform: translate(0, 0) rotate(0deg); }
  3% { transform: translate(-2px, 1px) rotate(-1deg); }
  6% { transform: translate(1px, -2px) rotate(1deg); }
  9% { transform: translate(2px, 1px) rotate(0deg); }
  12% { transform: translate(-1px, -1px) rotate(-1deg); }
  15% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.something-new-panel {
  padding-bottom: 150px;
}

.something-new-panel .panel-inner {
  max-width: 940px;
  position: relative;
  isolation: isolate;
}

.something-new-hero {
  position: relative;
  margin-top: 10px;
  padding: 30px 0;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 0;
}

.something-new-title-card {
  position: relative;
  z-index: 2;
  width: min(760px, 92%);
  text-align: center;
}

.something-new-title-card h2 {
  margin: 0;
  font-size: clamp(3.2rem, 8.5vw, 6.8rem);
  line-height: 0.95;
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
}

.something-new-title-card p {
  margin: 8px 0 0;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 700;
}

.something-new-bg-icon {
  position: absolute;
  top: 50%;
  width: clamp(200px, 33vw, 460px);
  height: auto;
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

.something-new-bg-icon-left {
  left: -10vw;
}

.something-new-bg-icon-right {
  right: -10vw;
}

.something-new-panel .something-new-card {
  max-width: 940px;
  width: 100%;
}

.something-new-panel .something-new-card p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.join-panel .panel-inner,
.donate-panel .panel-inner {
  max-width: 900px;
}

.donate-panel .section-lede p {
  color: #fff;
}

.join-form {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.join-fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 20px;
  border: 4px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, #fff 12%);
}

.join-fieldset legend {
  padding: 0 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}

.join-fieldset > div:not(.join-field-grid):not(.join-check-grid):not(.join-select-wrap) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kickoff-rsvp-card {
  max-width: 760px;
  border: 4px solid var(--primary);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 24px;
}

.kickoff-rsvp-card .join-form {
  margin-top: 0;
}

.signature-training-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.signature-training-hero .section-lede {
  flex: 1 1 560px;
}

.signature-training-art {
  flex: 0 0 clamp(180px, 24vw, 300px);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.signature-training-art__image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  filter: none;
}

.signature-training-signup-card .join-form input:not([type="checkbox"]),
.signature-training-signup-card .join-form textarea,
.signature-training-signup-card .join-form .join-select,
.signature-training-signup-card .join-fieldset,
.signature-training-signup-card .join-check-option {
  background: #fff;
}

.join-form > div:not(.cta-row):not(.login-action-stack):not(.join-field-grid):not(.join-check-grid):not(.join-select-wrap) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-form label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}

.join-form input {
  padding: 16px;
  border-radius: 0;
  border: 4px solid var(--line);
  font-size: 18px;
  font-family: inherit;
  outline: none;
  background: var(--surface);
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.12s ease;
}

.join-form textarea {
  padding: 16px;
  border-radius: 0;
  border: 4px solid var(--line);
  font-size: 18px;
  font-family: inherit;
  outline: none;
  background: var(--surface);
  min-height: 140px;
  resize: vertical;
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.12s ease;
}

.join-form input:focus {
  background: #fdf7e6;
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-lg);
}

.join-form textarea:focus {
  background: #fdf7e6;
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-lg);
}

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

.join-field-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-field-grid--address {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.join-field-grid--required {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.join-form-help {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.join-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.join-check-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 4px solid var(--line);
  background: var(--surface);
  padding: 14px 16px;
  cursor: pointer;
}

.join-check-option span {
  font-size: 16px;
  line-height: 1.3;
}

.join-check-option input {
  width: 20px;
  height: 20px;
  margin: 0;
  transform: none;
  box-shadow: none;
}

.join-check-option input:focus {
  transform: none;
  box-shadow: none;
}

.join-select-wrap {
  position: relative;
}

.join-select-wrap::after {
  content: "\25BE";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  pointer-events: none;
}

.join-form .join-select {
  width: 100%;
  padding: 16px 52px 16px 16px;
  border-radius: 0;
  border: 4px solid var(--line);
  font-size: 18px;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  outline: none;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.12s ease;
}

.join-form .join-select:focus {
  background: #fdf7e6;
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-lg);
}

.join-panel .join-form input:not([type="checkbox"]),
.join-panel .join-form textarea,
.join-panel .join-form .join-select {
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.12s ease;
}

.join-panel .join-form input:not([type="checkbox"]):focus,
.join-panel .join-form textarea:focus,
.join-panel .join-form .join-select:focus {
  transform: none;
  box-shadow: none;
}

@media (max-width: 720px) {
  .signature-training-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .signature-training-hero .section-lede {
    flex: 0 1 auto;
    width: 100%;
    max-width: none;
  }

  .signature-training-art {
    width: min(220px, 55vw);
    align-self: center;
  }

  .join-fieldset {
    padding: 16px;
  }

  .join-field-grid,
  .join-field-grid--address {
    grid-template-columns: 1fr;
  }
}

.join-submit-indicator {
  display: none;
}

.join-submit-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: join-submit-spin 0.7s linear infinite;
}

.join-submit-btn.htmx-request .join-submit-copy {
  display: none;
}

.join-submit-btn.htmx-request .join-submit-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.join-submit-btn.htmx-request .join-submit-spinner {
  display: inline-block;
}

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

.join-message {
  min-height: 24px;
  margin-top: 10px;
}

.join-thanks {
  margin-top: 16px;
  padding: 18px;
  border: 4px solid var(--line);
  border-radius: 0;
}

.kickoff-rsvp-card .join-thanks,
.kickoff-rsvp-card .join-thanks h3,
.kickoff-rsvp-card .join-thanks p {
  color: var(--ink);
}

.join-thanks-enter {
  animation: join-thanks-slide-in 520ms cubic-bezier(0.2, 0.9, 0.15, 1) both;
}

@keyframes join-thanks-slide-in {
  from {
    opacity: 0;
    transform: translateX(64px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .join-thanks-enter {
    animation: none;
  }
}
