@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ink: #17151b;
  --paper: #f7f2e9;
  --purple: #6b42e8;
  --purple-dark: #4e2cb9;
  --lime: #d9ff5b;
  --coral: #ff7357;
  --line: rgba(23, 21, 27, 0.16);
  --shadow: 0 28px 70px rgba(35, 21, 77, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 3%, rgba(217, 255, 91, 0.32), transparent 25rem),
    radial-gradient(circle at 5% 38%, rgba(107, 66, 232, 0.10), transparent 28rem),
    var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  min-width: 320px;
}

a { color: inherit; }
button, input, textarea { font: inherit; }

.emote-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-emote {
  position: absolute;
  left: var(--start-x);
  top: var(--start-y);
  opacity: 0;
  filter: grayscale(0.1);
  will-change: transform, opacity;
  animation: emote-drift var(--duration) ease-in-out var(--delay) infinite alternate;
}

.animations-paused .floating-emote { animation-play-state: paused; }

@keyframes emote-drift {
  0% { transform: translate3d(0, 2vh, 0) rotate(var(--rotation-start)); opacity: 0.055; }
  45%, 100% { transform: translate3d(var(--travel-x), var(--travel-y), 0) rotate(var(--rotation-end)); opacity: 0.13; }
}

.gift-rocket {
  position: fixed;
  left: var(--rocket-x);
  bottom: -4rem;
  z-index: 0;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  filter: drop-shadow(0 8px 8px rgba(107, 66, 232, 0.18));
  animation: gift-launch var(--launch-time) cubic-bezier(0.33, 0.02, 0.66, 0.72) forwards;
}

.gift-rocket::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 70px;
  left: 50%;
  top: 80%;
  background: linear-gradient(to bottom, rgba(107,66,232,.45), transparent);
}

@keyframes gift-launch {
  to { transform: translate3d(var(--rocket-drift), calc(-1 * var(--rocket-height)), 0) rotate(8deg); }
}

.burst-emote {
  position: fixed;
  z-index: 0;
  left: var(--burst-x);
  top: var(--burst-y);
  font-size: var(--burst-size);
  pointer-events: none;
  animation: emote-burst 1.45s cubic-bezier(0.12, 0.68, 0.27, 1) forwards;
}

@keyframes emote-burst {
  0% { opacity: .65; transform: translate(-50%, -50%) scale(.45) rotate(0deg); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--burst-dx)), calc(-50% + var(--burst-dy))) scale(1.2) rotate(var(--burst-spin)); }
}

.site-shell { position: relative; z-index: 1; }

.site-header,
.site-footer,
.hero,
.join,
.form-page {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font: 700 1.35rem/1 "Space Grotesk", sans-serif;
  text-decoration: none;
  letter-spacing: -.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: white;
  background: var(--purple);
  border-radius: 50% 50% 48% 52%;
  transform: rotate(-8deg);
}

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { position: relative; font-weight: 600; font-size: .92rem; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 2px; background: var(--purple); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a[aria-current="page"]::after { right: 0; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  padding-block: 6.5rem;
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--purple-dark);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.eyebrow span { color: var(--coral); }

h1, h2, h3 { font-family: "Space Grotesk", sans-serif; letter-spacing: -.065em; }

.hero h1, .form-intro h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: .88;
}
.hero h1 span, .form-intro h1 span { color: var(--purple); }

.hero-lede {
  max-width: 670px;
  margin: 2rem 0 1.75rem;
  color: #514d58;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.text-link, .back-link {
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: .4rem;
}

.hero-card {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: .88;
  margin-inline: auto;
  display: grid;
  place-items: center;
  background: var(--purple);
  border: 1px solid rgba(23, 21, 27, .4);
  border-radius: 46% 54% 49% 51% / 52% 42% 58% 48%;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 2px dashed rgba(255,255,255,.25);
  border-radius: inherit;
}

.hero-card-inner { color: white; text-align: center; transform: rotate(-3deg); }
.mini-label { display: block; font-weight: 700; font-size: .7rem; letter-spacing: .22em; }
.hero-card strong { display: block; margin: .6rem 0; font: 700 clamp(2.8rem, 5vw, 4.9rem)/.9 "Space Grotesk", sans-serif; letter-spacing: -.07em; }
.scribble { display: inline-block; padding: .35rem .8rem; color: var(--ink); background: var(--lime); font-weight: 700; transform: rotate(-4deg); }

.sticker { position: absolute; z-index: 2; display: grid; place-items: center; background: white; border: 1px solid var(--ink); border-radius: 20px; box-shadow: 6px 7px 0 var(--ink); }
.sticker-one { width: 91px; height: 91px; left: -34px; top: 21%; font-size: 3.2rem; transform: rotate(-10deg); }
.sticker-two { width: 78px; height: 78px; right: -22px; top: 8%; font-size: 2.7rem; transform: rotate(12deg); }
.sticker-three { width: 82px; height: 82px; right: -35px; bottom: 16%; font-size: 2.9rem; transform: rotate(-5deg); }

.featured {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 10vw, 9rem) max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--purple);
}
.eyebrow-light { color: var(--lime); }
.feature-intro h2 { margin: 0; font-size: clamp(3.8rem, 7vw, 7rem); line-height: .86; }
.feature-intro h2 span { display: inline-block; font-size: .7em; transform: rotate(8deg); }
.feature-details { align-self: end; }
.feature-details > p { max-width: 570px; color: rgba(255,255,255,.75); line-height: 1.75; }
.feature-details .feature-lede { color: white; font: 600 clamp(1.5rem, 2.4vw, 2.25rem)/1.2 "Space Grotesk", sans-serif; letter-spacing: -.04em; }
.feature-points { margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.3); }
.feature-points div { display: grid; grid-template-columns: 3.5rem 1fr; align-items: center; min-height: 62px; border-bottom: 1px solid rgba(255,255,255,.2); }
.feature-points span { color: var(--lime); font-size: .75rem; font-weight: 700; }
.feature-points p { margin: 0; font-weight: 600; }

.join { padding-block: clamp(5rem, 10vw, 9rem); text-align: center; }
.join h2 { margin: 0; font-size: clamp(3.7rem, 7vw, 7rem); line-height: .88; }
.join > p:not(.eyebrow) { max-width: 530px; margin: 1.5rem auto 3rem; color: #625d69; font-size: 1.1rem; }
.action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 960px; margin: auto; text-align: left; }
.button { display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem; align-items: center; min-height: 118px; padding: 1.5rem 1.65rem; border-radius: 20px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-5px); box-shadow: 0 16px 30px rgba(23,21,27,.16); }
.button > span:first-child { font-size: 2.35rem; }
.button span:nth-child(2) { font: 600 clamp(1.15rem, 2vw, 1.45rem)/1.2 "Space Grotesk", sans-serif; letter-spacing: -.035em; }
.button small { display: block; margin-bottom: .35rem; opacity: .7; font: 700 .65rem/1 "DM Sans", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.button b { font-size: 1.6rem; }
.button-primary { background: var(--lime); border: 1px solid var(--ink); }
.button-dark { color: white; background: var(--ink); border: 1px solid var(--ink); }

.site-footer { min-height: 130px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); color: #6f6875; font-size: .82rem; }
.site-footer p:last-child { justify-self: end; }
.brand-footer { color: var(--ink); }

.form-page { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; padding-block: clamp(4rem, 8vw, 7rem); }
.form-intro { position: sticky; top: 2rem; padding-top: 1rem; }
.back-link { margin-bottom: 4.5rem; font-size: .88rem; }
.form-intro h1 { font-size: clamp(3.2rem, 6vw, 5.75rem); }
.form-intro > p:not(.eyebrow) { max-width: 490px; margin-top: 1.8rem; color: #625d69; line-height: 1.7; }
.form-emotes { display: flex; margin-top: 2.5rem; }
.form-emotes span { display: grid; place-items: center; width: 66px; height: 66px; margin-right: -10px; background: white; border: 1px solid var(--ink); border-radius: 50%; font-size: 2rem; box-shadow: 3px 4px 0 var(--ink); }
.form-emotes span:nth-child(2) { transform: translateY(12px) rotate(6deg); }
.form-emotes span:nth-child(3) { transform: rotate(-7deg); }

.form-card { padding: clamp(1.5rem, 4vw, 3.4rem); background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.form-heading { display: flex; gap: 1.3rem; align-items: start; margin-bottom: 2.4rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--line); }
.form-heading > span { display: grid; place-items: center; width: 38px; height: 38px; color: white; background: var(--purple); border-radius: 50%; font-size: .74rem; font-weight: 700; }
.form-heading .eyebrow { margin-bottom: .25rem; }
.form-heading h2 { margin: 0; font-size: 2rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.field { display: grid; gap: .55rem; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 700; }
.field input, .field textarea { width: 100%; border: 1px solid #cec8d1; border-radius: 12px; background: #fbfaf7; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field input { height: 52px; padding: 0 .95rem; }
.field textarea { min-height: 108px; padding: .9rem .95rem; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(107,66,232,.12); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c43f2a; }
.checkbox-field { display: flex; gap: .8rem; align-items: flex-start; margin: 1.8rem 0; padding: 1rem; background: #f2eefb; border-radius: 12px; color: #4b4650; font-size: .88rem; line-height: 1.5; cursor: pointer; }
.checkbox-field input { flex: 0 0 auto; width: 19px; height: 19px; margin-top: .1rem; accent-color: var(--purple); }
.form-error { margin: -1rem 0 1.4rem; color: #a62f20; font-size: .85rem; font-weight: 600; }
.submit-button { width: 100%; min-height: 58px; display: flex; justify-content: space-between; align-items: center; padding: 0 1.25rem; color: white; background: var(--purple); border: 0; border-radius: 12px; font-weight: 700; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.submit-button:hover, .submit-button:focus-visible { background: var(--purple-dark); transform: translateY(-2px); }
.submit-button b { font-size: 1.4rem; }
.success-message { padding: clamp(2rem, 5vw, 4rem) 1rem; text-align: center; }
.success-message > span { display: block; font-size: 4rem; }
.success-message h2 { margin: 1rem 0 .6rem; font-size: clamp(2.2rem, 5vw, 3.5rem); }
.success-message p { color: #625d69; line-height: 1.6; }
.success-message a { display: inline-block; margin-top: 1rem; color: var(--purple-dark); font-weight: 700; text-underline-offset: .35rem; }
.host-page .form-heading > span, .host-page .submit-button { background: var(--coral); }
.host-page .submit-button:hover, .host-page .submit-button:focus-visible { background: #de5136; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

@media (max-width: 800px) {
  .site-header, .site-footer, .hero, .join, .form-page { width: min(100% - 32px, 680px); }
  .site-header { min-height: 118px; align-items: flex-start; padding-block: 1.25rem; }
  .site-nav { align-self: flex-end; gap: 1.15rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 4.5rem; padding-block: 5rem; }
  .hero-card { width: min(86%, 390px); }
  .featured { grid-template-columns: 1fr; padding-inline: 24px; }
  .feature-details { max-width: 620px; }
  .form-page { grid-template-columns: 1fr; }
  .form-intro { position: static; }
  .back-link { margin-bottom: 3rem; }
  .form-card { padding: 1.4rem; }
  .site-footer { grid-template-columns: 1fr auto; padding-block: 2rem; }
  .site-footer > p:nth-child(2) { display: none; }
}

@media (max-width: 560px) {
  .site-header { display: block; }
  .site-nav { justify-content: space-between; margin-top: 1.5rem; gap: .5rem; }
  .site-nav a { font-size: .82rem; }
  .hero { padding-top: 4rem; }
  .hero h1 { font-size: clamp(3.5rem, 18vw, 5rem); }
  .hero-card { width: 82%; }
  .sticker-one, .sticker-two, .sticker-three { width: 62px; height: 62px; font-size: 2rem; border-radius: 15px; box-shadow: 4px 5px 0 var(--ink); }
  .sticker-one { left: -30px; }
  .sticker-two { right: -24px; }
  .sticker-three { right: -30px; }
  .featured { padding-inline: 16px; }
  .action-grid { grid-template-columns: 1fr; }
  .button { min-height: 104px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .form-intro h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .site-footer { display: block; text-align: center; }
  .site-footer p:last-child { margin-top: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .floating-emote { opacity: .07; }
  .gift-rocket, .burst-emote { display: none; }
}

/* Neon EmoteCon theme */
:root {
  --ink: #f7f8ff;
  --paper: #03040a;
  --purple: #9f36ff;
  --purple-dark: #c054ff;
  --lime: #00f6ff;
  --coral: #ff36d1;
  --blue: #1677ff;
  --cyan: #00eaff;
  --muted: #a9acc4;
  --line: rgba(120, 110, 255, .26);
  --shadow: 0 24px 70px rgba(0, 0, 0, .58), 0 0 35px rgba(85, 38, 255, .12);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(96, 33, 255, .23), transparent 34rem),
    radial-gradient(circle at 8% 42%, rgba(255, 27, 200, .10), transparent 28rem),
    radial-gradient(circle at 92% 68%, rgba(0, 224, 255, .09), transparent 32rem),
    #03040a;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(74, 80, 138, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 80, 138, .08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.floating-emote { filter: saturate(.92) drop-shadow(0 0 8px rgba(106, 66, 232, .42)); }

@keyframes emote-drift {
  0% { transform: translate3d(0, 2vh, 0) rotate(var(--rotation-start)); opacity: .07; }
  45%, 100% { transform: translate3d(var(--travel-x), var(--travel-y), 0) rotate(var(--rotation-end)); opacity: .17; }
}

.site-header { border-color: rgba(131, 123, 255, .24); }

.brand { color: #fff; text-shadow: 0 0 16px rgba(0, 234, 255, .18); }

.brand-mark {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--purple) 45%, var(--blue));
  box-shadow: 0 0 18px rgba(160, 54, 255, .6);
}

.site-nav a { color: #c6c8dc; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: #fff; }
.site-nav a::after { background: linear-gradient(90deg, var(--coral), var(--cyan)); box-shadow: 0 0 10px rgba(0, 234, 255, .72); }

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-block: clamp(2rem, 5vw, 4rem) clamp(6rem, 10vw, 9rem);
  text-align: center;
}

.hero-logo {
  position: relative;
  width: min(880px, 88vw);
  margin-inline: auto;
}

.hero-logo::after {
  content: "";
  position: absolute;
  inset: 12% 15%;
  z-index: -1;
  background: radial-gradient(circle, rgba(63, 95, 255, .27), rgba(255, 40, 210, .08) 42%, transparent 70%);
  filter: blur(35px);
}

.hero-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(64, 50, 255, .25));
}

.hero-copy { max-width: 880px; margin-inline: auto; }
.hero h1 { font-size: clamp(3.4rem, 7vw, 6.75rem); }
.hero h1 span, .form-intro h1 span {
  color: var(--cyan);
  background: linear-gradient(90deg, #bd51ff 5%, #ff4bc8 45%, #12dfff 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(75, 143, 255, .15);
}

.hero-lede { margin-inline: auto; color: #b7b9cc; }
.text-link, .back-link { color: var(--cyan); text-decoration-color: rgba(0, 234, 255, .55); }

.eyebrow { color: var(--cyan); }
.eyebrow span { color: var(--coral); text-shadow: 0 0 9px var(--coral); }

.featured {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, rgba(15, 12, 35, .93), rgba(4, 9, 23, .94));
  border: 1px solid rgba(92, 95, 255, .38);
  border-radius: 32px;
  box-shadow: var(--shadow), inset 0 0 35px rgba(112, 40, 255, .05);
}

.featured::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  top: -220px;
  background: radial-gradient(circle, rgba(0, 234, 255, .2), transparent 70%);
}

.eyebrow-light { color: var(--coral); }
.feature-intro h2 { text-shadow: 0 0 28px rgba(126, 60, 255, .28); }
.feature-details > p { color: #b4b7cb; }
.feature-details .feature-lede { color: #fff; }
.feature-points { border-color: rgba(90, 216, 255, .22); }
.feature-points div { border-color: rgba(90, 216, 255, .16); }
.feature-points span { color: var(--cyan); text-shadow: 0 0 10px rgba(0, 234, 255, .75); }

.join h2 { color: #fff; }
.join > p:not(.eyebrow) { color: var(--muted); }

.button {
  color: #fff;
  background: rgba(10, 12, 31, .85);
  border: 1px solid rgba(126, 103, 255, .44);
  box-shadow: inset 0 0 28px rgba(90, 33, 255, .06), 0 12px 36px rgba(0, 0, 0, .3);
  backdrop-filter: blur(10px);
}

.button:hover, .button:focus-visible {
  box-shadow: 0 0 28px rgba(121, 59, 255, .25), inset 0 0 30px rgba(90, 33, 255, .10);
}

.button-primary { border-color: rgba(255, 56, 210, .62); }
.button-primary b { color: var(--coral); }
.button-dark { border-color: rgba(0, 222, 255, .55); }
.button-dark b { color: var(--cyan); }

.site-footer { color: #81859e; border-color: rgba(131, 123, 255, .2); }
.brand-footer { color: #fff; }

.form-intro > p:not(.eyebrow) { color: #aeb1c6; }
.form-emotes span {
  background: rgba(8, 10, 28, .92);
  border-color: rgba(96, 160, 255, .55);
  box-shadow: 3px 4px 0 rgba(146, 51, 255, .6), 0 0 18px rgba(0, 215, 255, .15);
}

.form-card {
  background: linear-gradient(145deg, rgba(13, 14, 34, .9), rgba(5, 8, 20, .94));
  border-color: rgba(104, 93, 255, .4);
  box-shadow: var(--shadow), inset 0 0 40px rgba(62, 43, 193, .05);
}

.form-heading { border-color: rgba(109, 115, 182, .25); }
.form-heading > span {
  background: linear-gradient(135deg, var(--coral), var(--purple));
  box-shadow: 0 0 16px rgba(159, 54, 255, .4);
}
.form-heading h2 { color: #fff; }

.field label { color: #e9eaff; }
.field input, .field textarea {
  color: #f5f6ff;
  background: rgba(2, 4, 14, .78);
  border-color: rgba(102, 112, 171, .48);
}
.field input::placeholder, .field textarea::placeholder { color: #696e8c; }
.field input:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 234, 255, .11), 0 0 18px rgba(0, 234, 255, .12); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #ff5a9f; }

.checkbox-field {
  color: #c0c3d7;
  background: rgba(76, 43, 155, .15);
  border: 1px solid rgba(136, 88, 255, .22);
}
.checkbox-field input { accent-color: var(--coral); }
.form-error { color: #ff83b6; }

.honeypot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.submit-button {
  background: linear-gradient(90deg, #7b28e8, #d42ab7);
  box-shadow: 0 0 20px rgba(175, 39, 215, .22);
}
.submit-button:disabled { cursor: wait; opacity: .72; transform: none; }
.submit-button:hover, .submit-button:focus-visible { background: linear-gradient(90deg, #9139ff, #ef42cc); }
.host-page .form-heading > span, .host-page .submit-button { background: linear-gradient(90deg, #087fdf, #00bad6); }
.host-page .submit-button:hover, .host-page .submit-button:focus-visible { background: linear-gradient(90deg, #1398ff, #16d8ec); }

.success-message h2 { color: #fff; }
.success-message p { color: var(--muted); }
.success-message a { color: var(--cyan); }

:focus-visible { outline-color: var(--cyan); }

@media (max-width: 800px) {
  .hero { width: min(100% - 32px, 680px); gap: 1rem; padding-top: 1.5rem; }
  .hero-logo { width: min(100%, 650px); }
  .featured { width: min(100% - 32px, 680px); padding: clamp(3rem, 8vw, 4.5rem) clamp(1.5rem, 6vw, 3rem); }
}

@media (max-width: 560px) {
  .hero { padding-top: .75rem; padding-bottom: 5rem; }
  .hero-logo { width: calc(100% + 12px); margin-inline: -6px; }
  .hero-logo img { max-height: none; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 4.5rem); }
  .featured { border-radius: 24px; }
  .form-card { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-emote { opacity: .08; }
}
