:root {
  --ink: #221a3f;
  --paper: #fbfaff;
  --white: #ffffff;
  --violet: #5b2eff;
  --coral: #ff4d6d;
  --cyan: #2fd6e8;
  --lime: #9be838;
  --sunshine: #ffc531;
  --muted: #615a7b;
  --soft-violet: #efebff;
  --shadow: 5px 5px 0 var(--ink);
  --shadow-small: 3px 3px 0 var(--ink);
  --border: 3px solid var(--ink);
  --radius: 18px;
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'Lexend', sans-serif;
  --logo: 'Unkempt', var(--display);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(var(--cyan) 2.3px, transparent 2.3px),
    radial-gradient(var(--coral) 2.3px, transparent 2.3px),
    radial-gradient(var(--sunshine) 2.3px, transparent 2.3px);
  background-position: 0 0, 120px 200px, 240px 60px;
  background-size: 340px 340px, 460px 460px, 280px 280px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 250, 255, 0.1), rgba(251, 250, 255, 0.82));
  content: '';
  pointer-events: none;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border: var(--border);
  border-radius: 10px;
  background: var(--sunshine);
  box-shadow: var(--shadow-small);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 100px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 14px 20px;
  border-bottom: 2px solid rgba(34, 26, 63, 0.1);
  background: rgba(251, 250, 255, 0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.mini-logo {
  display: inline-block;
  padding: 8px 15px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  color: var(--white);
  background: var(--violet);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--logo);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-1deg);
  transition: transform 100ms ease, box-shadow 100ms ease;
}

.mini-logo:hover,
.mini-logo:focus-visible {
  box-shadow: 6px 6px 0 var(--ink);
  transform: translate(-2px, -2px) rotate(-1deg);
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}

.desktop-nav a,
.footer-inner nav a {
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: var(--violet);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.login-link {
  display: flex;
  flex-direction: column;
  padding: 8px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-small);
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.login-link span {
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  min-height: calc(100vh - 84px);
  min-height: calc(100svh - 84px);
  padding-top: 76px;
  padding-bottom: 92px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--sunshine);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.marker {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
}

.marker::before {
  position: absolute;
  z-index: -1;
  right: -10px;
  bottom: 2px;
  left: -8px;
  height: 34%;
  border-radius: 8px;
  background: var(--sunshine);
  content: '';
  transform: rotate(-1.2deg);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #4a4363;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions,
.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 12px 24px;
  border: var(--border);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 90ms ease, box-shadow 90ms ease;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 7px 7px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.btn:active {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.btn.primary {
  color: var(--white);
  background: var(--violet);
}

.btn.sunshine {
  background: var(--sunshine);
}

.btn.outline {
  background: var(--white);
}

.btn.wide {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 650;
  list-style: none;
}

.hero-proof li::before {
  margin-right: 6px;
  color: #3c8b08;
  content: '✓';
  font-weight: 900;
}

.hero-stage {
  position: relative;
  min-height: 600px;
}

.host-preview {
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  padding: 28px;
  border: var(--border);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(1deg);
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
}

.preview-topline > span:first-child {
  color: var(--violet);
  font-family: var(--logo);
  font-size: 1rem;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 3px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--soft-violet);
}

.live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.preview-label,
.source-label {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.code-tiles {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 26px;
}

.tile {
  display: grid;
  width: 50px;
  height: 60px;
  place-items: center;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 850;
}

.tile:nth-child(1) { color: var(--white); background: var(--coral); transform: rotate(-3deg); }
.tile:nth-child(2) { background: var(--cyan); transform: rotate(2deg); }
.tile:nth-child(3) { background: var(--sunshine); transform: rotate(-1.5deg); }
.tile:nth-child(4) { background: var(--lime); transform: rotate(2.5deg); }
.tile:nth-child(5) { color: var(--white); background: var(--violet); transform: rotate(-2deg); }

.preview-question {
  max-width: 480px;
  margin: 0 auto 19px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.preview-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.answer,
.mini-answer {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 46px;
  padding: 8px 12px;
  border: 2.5px solid var(--ink);
  border-radius: 11px;
  box-shadow: var(--shadow-small);
  font-size: 0.73rem;
  font-weight: 700;
}

.answer-coral,
.mini-coral { color: var(--white); background: var(--coral); }
.answer-cyan,
.mini-cyan { background: var(--cyan); }
.answer-lime,
.mini-lime { background: var(--lime); }
.answer-sun,
.mini-sun { background: var(--sunshine); }

.player-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 22px;
}

.player-row span {
  padding: 5px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
}

.winner-card {
  position: absolute;
  z-index: 5;
  right: -42px;
  bottom: -10px;
  width: 230px;
  padding: 16px;
  border: var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-4deg);
}

.winner-card > p {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
}

.gift-card {
  padding: 17px;
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sunshine), #ff9d3d);
}

.gift-card span,
.gift-card small {
  display: block;
  font-size: 0.63rem;
  font-weight: 750;
  text-transform: uppercase;
}

.gift-card strong {
  display: block;
  margin: 4px 0;
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
}

.burst {
  position: absolute;
  z-index: 7;
  font-size: 2.5rem;
}

.burst-one { top: -15px; right: -8px; color: var(--coral); transform: rotate(12deg); }
.burst-two { bottom: 85px; left: -28px; color: var(--violet); transform: rotate(-18deg); }

.doodle-arrow {
  position: absolute;
  z-index: 7;
  right: 174px;
  bottom: 7px;
  color: var(--coral);
  font-family: var(--display);
  font-size: 4.2rem;
  font-weight: 800;
  transform: rotate(28deg);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: var(--border);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.proof-band div {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  color: var(--white);
  text-align: center;
}

.proof-band div + div {
  border-left: 2px dashed rgba(255, 255, 255, 0.35);
}

.proof-band strong {
  font-family: var(--display);
  font-size: 1.18rem;
}

.proof-band span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.section-intro {
  max-width: 800px;
  margin-bottom: 46px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-intro.centered > p:last-child {
  margin-inline: auto;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.step-card {
  position: relative;
  min-height: 355px;
  padding: 34px 28px 28px;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-family: var(--display);
  font-weight: 850;
}

.step-icon {
  display: grid;
  width: 116px;
  height: 100px;
  margin-bottom: 30px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 850;
  transform: rotate(-3deg);
}

.step-violet .step-icon { color: var(--white); background: var(--violet); }
.step-cyan .step-icon { background: var(--cyan); transform: rotate(2deg); }
.step-sun .step-icon { background: var(--sunshine); transform: rotate(-1deg); }

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.story-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.source-card,
.question-card {
  position: relative;
  padding: 34px;
  border: var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.source-card {
  transform: rotate(-1deg);
}

.source-card .source-label,
.question-card .source-label {
  color: var(--violet);
  text-align: left;
}

.source-card h3 {
  margin-bottom: 15px;
  font-size: 1.7rem;
}

.source-card p:not(.source-label) {
  color: var(--muted);
}

.window-bar {
  display: flex;
  gap: 7px;
  margin: -13px 0 26px;
}

.window-bar i {
  width: 11px;
  height: 11px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.window-bar i:nth-child(1) { background: var(--coral); }
.window-bar i:nth-child(2) { background: var(--sunshine); }
.window-bar i:nth-child(3) { background: var(--lime); }

.selection {
  display: inline-block;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--soft-violet);
  font-size: 0.7rem;
  font-weight: 700;
}

.magic-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--violet);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.magic-arrow span {
  padding: 6px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.66rem;
}

.magic-arrow strong {
  font-size: 4.5rem;
  line-height: 1;
}

.question-card {
  background: var(--soft-violet);
  transform: rotate(1deg);
}

.question-card h2 {
  margin-bottom: 23px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.mini-answer {
  margin-bottom: 10px;
  font-size: 0.76rem;
}

.mini-answer.correct {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.mini-answer span {
  display: grid;
  width: 22px;
  height: 22px;
  margin-left: auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}

.edit-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 250px;
  padding: 28px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-card:nth-child(2),
.feature-card:nth-child(5) {
  transform: translateY(12px);
}

.feature-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  place-items: center;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-small);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 850;
  transform: rotate(-3deg);
}

.icon-violet { color: var(--white); background: var(--violet); }
.icon-coral { background: var(--coral); }
.icon-cyan { background: var(--cyan); }
.icon-lime { background: var(--lime); }
.icon-sun { background: var(--sunshine); }
.icon-ink { color: var(--white); background: var(--ink); }

.feature-card h3 {
  margin-bottom: 11px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.audience-copy > p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--violet);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link span {
  font-size: 1.5rem;
  transition: transform 120ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.occasion-stack {
  position: relative;
  min-height: 380px;
}

.occasion {
  position: absolute;
  display: block;
  width: min(410px, 90%);
  padding: 22px 25px;
  border: var(--border);
  border-radius: 17px;
  box-shadow: var(--shadow);
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 850;
  text-align: center;
}

.occasion-one { top: 0; left: 1%; color: var(--white); background: var(--violet); transform: rotate(-3deg); }
.occasion-two { top: 90px; right: 0; background: var(--cyan); transform: rotate(2deg); }
.occasion-three { top: 182px; left: 4%; background: var(--sunshine); transform: rotate(-1deg); }
.occasion-four { top: 274px; right: 3%; background: var(--lime); transform: rotate(2.5deg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 22px 24px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-card.popular {
  border-color: var(--violet);
  box-shadow: 6px 6px 0 var(--violet);
  transform: translateY(-10px);
}

.price-flag {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 5px 13px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--violet);
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%) rotate(-2deg);
}

.price-card h3 {
  margin-bottom: 7px;
  font-size: 1.65rem;
}

.price-blurb {
  min-height: 49px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 0.78rem;
}

.price {
  min-height: 60px;
  margin-bottom: 0;
}

.price strong {
  font-family: var(--display);
  font-size: 2.55rem;
  font-weight: 850;
  line-height: 1;
}

.price span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.billing {
  margin: -5px 0 20px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.price-card ul {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  margin: 20px 0 25px;
  padding: 0;
  font-size: 0.78rem;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 8px;
}

.price-card li::before {
  flex: 0 0 auto;
  color: #3d8f00;
  content: '✓';
  font-weight: 900;
}

.price-card .btn {
  padding-inline: 12px;
  font-size: 0.83rem;
}

.pricing-note {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: 70px;
}

.faq-list details {
  margin-bottom: 14px;
  border: var(--border);
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.faq-list summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 19px 21px;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sunshine);
  font-family: var(--body);
  transition: transform 120ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 21px 21px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
  width: min(1240px, calc(100% - 40px));
  margin-bottom: 80px;
  padding: 70px;
  border: var(--border);
  border-radius: 30px;
  background: var(--lime);
  box-shadow: 9px 9px 0 var(--ink);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 530px;
}

.contact-sticker {
  display: inline-flex;
  flex-direction: column;
  margin-top: 36px;
  padding: 17px 22px;
  border: var(--border);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--violet);
  box-shadow: var(--shadow);
  font-family: var(--display);
  transform: rotate(-3deg);
}

.contact-sticker span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-sticker strong {
  font-size: 1.5rem;
}

.contact-form {
  position: relative;
  padding: 30px;
  border: var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.73rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

.contact-form textarea {
  min-height: 135px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(91, 46, 255, 0.18);
}

.form-note {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.68rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.form-status {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 11px;
  background: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-status.error {
  color: var(--white);
  background: var(--coral);
}

.site-footer {
  padding: 60px max(20px, calc((100vw - 1180px) / 2)) 26px;
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 42px;
}

.footer-logo {
  margin-bottom: 17px;
}

.footer-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  justify-content: flex-end;
  max-width: 560px;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: var(--sunshine);
}

.footer-bottom {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--sunshine);
  font-weight: 700;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 13px 18px;
  border: var(--border);
  border-radius: 12px;
  background: var(--sunshine);
  box-shadow: var(--shadow);
  font-weight: 750;
}

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

@media (max-width: 1060px) {
  .desktop-nav {
    gap: 15px;
  }

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

  .hero h1 {
    font-size: clamp(3.5rem, 7.6vw, 5.6rem);
  }

  .winner-card {
    right: -12px;
  }

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

  .price-card.popular {
    transform: none;
  }

  .contact {
    gap: 45px;
    padding: 50px;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: 78px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .login-link {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    padding: 8px 13px;
    border: 2.5px solid var(--ink);
    border-radius: 10px;
    background: var(--sunshine);
    box-shadow: var(--shadow-small);
    font-family: var(--display);
    font-weight: 800;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: flex;
    width: min(300px, calc(100vw - 40px));
    flex-direction: column;
    padding: 12px;
    border: var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 9px 10px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus-visible {
    background: var(--soft-violet);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-stage {
    width: min(620px, 100%);
    min-height: 610px;
    margin: 0 auto;
  }

  .step-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .step-card:last-child {
    grid-column: 1 / -1;
  }

  .story-demo {
    grid-template-columns: 1fr;
  }

  .magic-arrow {
    transform: none;
  }

  .magic-arrow strong {
    transform: rotate(90deg);
  }

  .audience,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .audience {
    gap: 30px;
  }

  .occasion-stack {
    width: min(540px, 100%);
    margin-inline: auto;
  }

  .faq {
    gap: 20px;
  }

  .contact {
    gap: 35px;
    padding: 45px 32px;
  }

  .contact-sticker {
    display: none;
  }
}

@media (max-width: 580px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 15px;
  }

  .section,
  .proof-band,
  .contact {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 11px 14px;
  }

  .mini-logo {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.65rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
  }

  .hero-stage {
    min-height: 520px;
  }

  .host-preview {
    padding: 20px 15px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .tile {
    width: 42px;
    height: 51px;
    font-size: 1.55rem;
  }

  .preview-question {
    font-size: 1.25rem;
  }

  .preview-answers {
    grid-template-columns: 1fr;
  }

  .answer {
    min-height: 39px;
  }

  .answer:nth-child(n + 3) {
    display: none;
  }

  .player-row span:nth-child(3) {
    display: none;
  }

  .winner-card {
    right: 2px;
    bottom: 5px;
    width: 205px;
  }

  .doodle-arrow {
    display: none;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-band div + div {
    border-top: 2px dashed rgba(255, 255, 255, 0.35);
    border-left: 0;
  }

  .step-grid,
  .feature-grid,
  .pricing-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .step-card:last-child {
    grid-column: auto;
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(5) {
    transform: none;
  }

  .occasion-stack {
    min-height: auto;
  }

  .occasion {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 12px;
    font-size: 1.35rem;
  }

  .contact {
    margin-bottom: 50px;
    padding: 38px 18px;
    border-radius: 22px;
  }

  .contact-form {
    padding: 22px 17px;
  }

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-inner nav {
    flex-direction: column;
  }

  .footer-bottom {
    gap: 9px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .burst-one {
    animation: sparkle 2.8s ease-in-out infinite;
  }

  .winner-card {
    animation: float 4s ease-in-out infinite;
  }

  @keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(12deg); }
    50% { transform: scale(1.18) rotate(-3deg); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-8px) rotate(-2.5deg); }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
