:root {
  --bg: #09101d;
  --bg-deep: #111c30;
  --text: #f5f7ff;
  --muted: #b8c1d9;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(16, 22, 42, 0.74);
  --card-strong: rgba(21, 28, 51, 0.88);
  --pink: #f04c6d;
  --yellow: #ffd166;
  --cyan: #3be0d4;
  --lime: #88f0ff;
  --orange: #ff8f3d;
  --shadow: 0 24px 80px rgba(2, 4, 10, 0.42);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(240, 76, 109, 0.24), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(59, 224, 212, 0.2), transparent 22%),
    radial-gradient(circle at 72% 82%, rgba(255, 209, 102, 0.18), transparent 22%),
    linear-gradient(145deg, #0a101d 0%, #11182d 40%, #0c1324 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 12px 12px, rgba(255, 255, 255, 0.7) 1.2px, transparent 1.6px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px, 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

.ambient {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

.ambient-one {
  top: 6vh;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(240, 76, 109, 0.28);
}

.ambient-two {
  left: -30px;
  bottom: 18vh;
  width: 220px;
  height: 220px;
  background: rgba(59, 224, 212, 0.18);
  animation-duration: 16s;
}

.confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.confetti {
  position: absolute;
  top: -10vh;
  width: 12px;
  height: 18px;
  border-radius: 6px;
  opacity: 0.6;
  animation: confetti-fall linear forwards;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0 64px;
}

.admin-shell {
  width: min(920px, calc(100% - 28px));
}

.hero-card,
.form-card,
.info-card,
.ticker {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px 30px 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(240, 76, 109, 0.18), rgba(16, 22, 42, 0.86) 32%, rgba(59, 224, 212, 0.12) 70%, rgba(255, 209, 102, 0.14)),
    var(--card);
  animation: intro 650ms ease both;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.hero-main,
.hero-side {
  display: grid;
  align-content: start;
}

.hero-marquee {
  position: relative;
  z-index: 1;
  margin: -6px -30px 18px;
  padding: 10px 0;
  overflow: hidden;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(240, 76, 109, 0.18), rgba(255, 209, 102, 0.08), rgba(59, 224, 212, 0.14));
}

.hero-marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: marquee-scroll 24s linear infinite;
}

.hero-kicker {
  margin: 6px 0 0;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-punch {
  max-width: 34rem;
  margin: 14px 0 0;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-notes {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.hero-side {
  gap: 18px;
  padding-top: 82px;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -38% auto;
  width: 260px;
  height: 260px;
  border-radius: 40px;
  rotate: -10deg;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(#ffffff 0.75px, transparent 0.75px),
    radial-gradient(#ffffff 0.75px, transparent 0.75px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

.sticker {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 30px rgba(24, 15, 43, 0.14);
}

.sticker-top {
  top: 20px;
  right: 22px;
  rotate: 8deg;
  background: var(--lime);
}

.sticker-bottom {
  right: 110px;
  bottom: 26px;
  rotate: -9deg;
  background: var(--yellow);
}

.eyebrow,
.section-kicker,
.meta-label {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2 {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  line-height: 0.92;
}

h1 {
  max-width: none;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-main h1 {
  color: transparent;
  background-image: linear-gradient(
    108deg,
    #f7f8ff 0%,
    #f7f8ff 34%,
    #ffd166 46%,
    #ffffff 50%,
    #f7f8ff 58%,
    #f7f8ff 100%
  );
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.12));
  animation: title-shimmer 4.8s linear infinite;
}

h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 5vw, 2.7rem);
}

.hero-copy,
.section-head p,
.info-list li,
.submission-meta,
.empty-state,
.vibe-note,
.hero-counter,
.invite-note p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-copy,
.section-head p,
.form-status,
.submission-meta,
.empty-state,
textarea,
input,
button,
.vibe-note,
.hero-counter,
.invite-note {
  position: relative;
  z-index: 1;
}

.hero-counter {
  display: inline-grid;
  position: absolute;
  top: 42px;
  right: 24px;
  justify-items: start;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(240, 76, 109, 0.16);
  border: 1px solid rgba(240, 76, 109, 0.26);
  box-shadow: 0 12px 28px rgba(2, 4, 10, 0.28);
  transform: rotate(8deg);
}

.hero-counter-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  line-height: 1.1;
}

.hero-counter strong {
  color: var(--text);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1;
}

.hero-copy {
  max-width: 38rem;
  margin: 16px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  line-height: 1.6;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.invite-compact {
  display: none;
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  line-height: 1.45;
}

.hero-gif-card {
  position: relative;
  z-index: 1;
  display: inline-grid;
  gap: 10px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(2, 4, 10, 0.22);
}

.hero-poster-card {
  gap: 12px;
  rotate: -1.2deg;
}

.poster-topline,
.poster-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.poster-topline {
  justify-content: space-between;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.poster-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(240, 76, 109, 0.14);
  border: 1px solid rgba(240, 76, 109, 0.22);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-gif {
  display: block;
  width: min(100%, 252px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-gif-card span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.invite-note {
  max-width: 44rem;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.invite-manifesto {
  position: relative;
  overflow: hidden;
}

.invite-manifesto::after {
  content: "50";
  position: absolute;
  right: 18px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.05);
  font-family: "Archivo Black", sans-serif;
  font-size: 5rem;
  line-height: 1;
}

.invite-note p {
  margin: 0;
  font-size: 1rem;
}

.invite-note p + p {
  margin-top: 10px;
}

.invite-lead {
  color: var(--text) !important;
  font-size: 1.16rem !important;
  font-weight: 700;
}

.invite-signoff {
  color: var(--pink) !important;
  font-weight: 700;
}

.event-meta,
.cta-row,
.content-grid,
.stats,
.submission-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.event-meta {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 28px;
}

.meta-pill,
.stat-box {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-facts .meta-pill {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(240, 76, 109, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.event-facts .meta-pill::after {
  content: "Backstage Pass";
  position: absolute;
  top: 18px;
  right: -38px;
  padding: 6px 42px;
  background: rgba(240, 76, 109, 0.22);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(34deg);
}

.meta-pill strong,
.stat-box strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.event-facts .meta-pill small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cta-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.calendar-button,
.ghost-button,
.submit-button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: none;
  border-radius: 18px;
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.calendar-button,
.submit-button {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 16px 32px rgba(255, 79, 163, 0.24);
}

.ghost-button,
.mini-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-button:hover,
.ghost-button:hover,
.submit-button:hover,
.mini-button:hover,
.calendar-button:focus-visible,
.ghost-button:focus-visible,
.submit-button:focus-visible,
.mini-button:focus-visible {
  transform: translateY(-2px) rotate(-0.5deg);
  box-shadow: 0 18px 36px rgba(2, 4, 10, 0.24);
}

.content-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  margin-top: 22px;
}

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

.form-card,
.info-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04)),
    var(--card);
}

.section-head {
  margin-bottom: 22px;
}

.section-head p {
  margin: 12px 0 0;
}

.rsvp-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
  margin: 0;
}

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

.field-hint {
  min-height: 1.2rem;
  margin: 2px 0 0;
  color: #d13d5e;
  font-size: 0.9rem;
  font-weight: 700;
}

.field-error .choice {
  border-color: rgba(209, 61, 94, 0.42);
  box-shadow: 0 0 0 4px rgba(209, 61, 94, 0.08);
}

.field span,
legend {
  font-weight: 700;
}

input[type="text"],
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  outline: none;
}

input[type="text"]:focus,
select:focus,
textarea:focus {
  border-color: rgba(240, 76, 109, 0.45);
  box-shadow: 0 0 0 5px rgba(240, 76, 109, 0.12);
}

fieldset {
  padding: 0;
  border: none;
}

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

.kid-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06)),
    var(--card-strong);
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.choice::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(240, 76, 109, 0.14);
}

.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice span {
  position: relative;
  z-index: 1;
  padding: 16px;
}

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

.choice:has(input:checked) {
  border-color: rgba(240, 76, 109, 0.5);
  background: linear-gradient(135deg, rgba(240, 76, 109, 0.2), rgba(59, 224, 212, 0.14));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.form-status {
  min-height: 1.5rem;
  margin: -2px 0 0;
  font-weight: 600;
}

.form-status.success {
  color: #0b8d74;
}

.form-status.error {
  color: #d13d5e;
}

.vibe-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

.lineup-card {
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(59, 224, 212, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.lineup-grid span {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(8, 12, 24, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.submission-head {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.submission-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.submission-item {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--card-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.submission-item strong {
  display: block;
  font-size: 1rem;
}

.admin-item-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.admin-head-actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-edit-form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-form-actions {
  display: grid;
}

.admin-form-status {
  min-height: 1.2rem;
}

.submission-meta {
  margin-top: 8px;
  font-size: 0.94rem;
}

.submission-note {
  margin-top: 8px;
  font-size: 0.94rem;
}

.bounce-note {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 14px;
}

.bounce-gif {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dress-note {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 14px;
}

.dress-gif {
  display: block;
  width: 88px;
  height: 112px;
  margin: 0 auto;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.empty-state {
  padding: 14px 0 4px;
}

@keyframes intro {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes title-shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -20% 0;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(20px, -18px, 0) scale(1.08);
  }
}

@keyframes confetti-fall {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(var(--drift, 0px), 120vh, 0) rotate(540deg);
    opacity: 0.2;
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 840px) {
  .content-grid,
  .cta-row,
  .choice-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .kid-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shell {
    width: min(100% - 18px, 100%);
    padding-top: 10px;
  }

  .hero-card,
  .form-card,
  .info-card {
    padding: 20px;
    border-radius: 24px;
  }

  .hero-card {
    padding-top: 20px;
  }

  .hero-marquee {
    margin: -2px -20px 14px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-main {
    justify-items: center;
    text-align: center;
  }

  .hero-counter {
    top: 8px;
    right: 6px;
    padding: 6px 8px;
    justify-items: center;
    transform: rotate(6deg) scale(0.74);
  }

  .hero-counter-label {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .hero-counter strong {
    font-size: 0.88rem;
  }

  .hero-side {
    gap: 14px;
    padding-top: 0;
  }

  .hero-punch {
    margin-top: 12px;
    font-size: 1rem;
  }

  .hero-chip-row {
    justify-content: center;
  }

  .bounce-note {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .dress-note {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .bounce-gif {
    width: 100%;
    max-width: 180px;
    height: auto;
  }

  .dress-gif {
    width: 100%;
    max-width: 180px;
    height: auto;
  }

  h1 {
    font-size: clamp(1.75rem, 7vw, 2.15rem);
    white-space: nowrap;
  }

  .hero-gif-card,
  .invite-note,
  .dress-gif,
  .bounce-gif {
    display: none;
  }

  .lineup-card {
    display: none;
  }

  .invite-compact {
    display: block;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 0.98rem;
    max-width: 32rem;
  }

  .event-meta {
    margin-top: 18px;
    gap: 10px;
    width: 100%;
  }

  .meta-pill,
  .stat-box {
    padding: 14px 15px;
    border-radius: 18px;
  }

  .event-facts .meta-pill,
  .hero-notes,
  .cta-row,
  .invite-compact,
  .hero-chip-row {
    width: 100%;
  }

  .event-facts .meta-pill,
  .hero-notes .vibe-note {
    text-align: center;
  }

  .content-grid {
    margin-top: 16px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .field {
    gap: 8px;
  }

  .choice {
    min-height: 82px;
    border-radius: 20px;
  }

  .vibe-note {
    margin-top: 10px;
    padding: 12px 14px;
  }

  .submission-list {
    gap: 10px;
    margin-top: 12px;
  }

  .submission-item {
    padding: 12px 14px;
  }
}
