:root {
  --brand-cream: #fff7e8;
  --brand-cream-2: #fffdf7;
  --brand-navy: #10182f;
  --brand-coral: #6d3df5;
  --brand-pink: #8b5cf6;
  --brand-lavender: #eee7ff;
  --brand-yellow: #ffd85a;
  --brand-blue: #cfe8ff;
  --brand-mint: #c9f3df;
  --brand-green: #171f45;
  --brand-green-2: #24306d;
  --brand-shadow: 0 18px 46px rgba(23, 32, 51, 0.12);
  --brand-soft-shadow: 0 10px 26px rgba(23, 32, 51, 0.09);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--brand-cream);
  color: var(--brand-navy);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 5rem;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(139, 92, 246, 0.18), transparent 28%),
    radial-gradient(circle at 86% 5%, rgba(201, 243, 223, 0.55), transparent 26%),
    radial-gradient(circle at 70% 80%, rgba(207, 232, 255, 0.45), transparent 28%),
    linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-cream-2) 50%, #f4efff 100%);
}

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

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

input,
textarea,
select {
  width: 100%;
  border: 2px solid #f5d7cc;
  border-radius: 18px;
  padding: 0.8rem 0.9rem;
  background: var(--brand-cream-2);
  color: var(--brand-navy);
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

label span,
small {
  color: #6f6672;
  font-size: 0.85rem;
  font-weight: 700;
}

.app {
  min-height: 100vh;
}

.eyebrow {
  margin: 0 0 0.4rem;
  color: var(--brand-coral);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.primary,
.secondary,
.ghost,
.danger,
.teacher-button {
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font-weight: 900;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.primary {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  box-shadow: 0 12px 26px rgba(109, 61, 245, 0.25);
}

.secondary {
  background: var(--brand-cream-2);
  color: var(--brand-navy);
  box-shadow: inset 0 0 0 2px rgba(23, 32, 51, 0.08), var(--brand-soft-shadow);
}

.ghost {
  background: #fff1d7;
  color: var(--brand-navy);
}

.danger {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white;
}

.teacher-button {
  background: var(--brand-navy);
  color: white;
  white-space: nowrap;
  box-shadow: var(--brand-soft-shadow);
}

.primary:hover,
.secondary:hover,
.ghost:hover,
.danger:hover,
.teacher-button:hover {
  transform: translateY(-2px);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(108, 76, 245, 0.78);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(108, 76, 245, 0.14);
}

.actions,
.bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.center {
  justify-content: center;
}

.landing-v2 {
  --cream: var(--brand-cream);
  --ink: var(--brand-navy);
  --blue: var(--brand-blue);
  --blue-2: var(--brand-green);
  --gold: var(--brand-yellow);
  --orange: var(--brand-coral);
  --mint: var(--brand-mint);
  --pink: #ffd1df;
  --lavender: #b9a8ff;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, #fff7e8 0%, #fffdf7 38%, #f8fbff 100%);
}

.landing-v2 .primary,
.landing-v2 .secondary,
.landing-v2 .ghost {
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 3vw, 1.5rem);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 clamp(0.5rem, 2vw, 1rem);
  z-index: -1;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 14px 40px rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(14px);
}

.brand-mark,
.site-header nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark,
.site-header a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.brand-spark {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  box-shadow: inset 0 -5px 0 rgba(23, 32, 51, 0.1);
}

.site-header nav {
  justify-content: center;
  padding: 0 1rem;
}

.site-header nav a {
  color: #445066;
  font-size: 0.95rem;
}

.nav-actions {
  justify-content: flex-end;
}

.nav-link {
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: transparent;
  color: #445066;
  font-weight: 900;
}

.landing-v2 .hero-v2 {
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  min-height: auto;
  max-width: 1240px;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 3vw, 1.5rem) clamp(2rem, 5vw, 4rem);
}

.landing-v2 .hero-copy h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.92;
}

.landing-v2 .hero-copy p {
  color: #48566d;
}

.landing-v2 .eyebrow {
  color: var(--brand-coral);
  font-size: 0.88rem;
  text-transform: lowercase;
}

.hero-board-v2 {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 227, 138, 0.8), transparent 34%),
    linear-gradient(135deg, #ffd1df, #fff1d7 60%, #cfe8ff);
  box-shadow: 0 28px 80px rgba(23, 32, 51, 0.18);
  transform: rotate(1.4deg);
}

.board-window {
  margin: 1rem;
  padding: 1rem;
  border: 4px solid rgba(255, 253, 247, 0.75);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(35, 87, 72, 0.96), rgba(24, 63, 54, 0.98)),
    var(--brand-green);
  box-shadow: inset 0 0 0 2px rgba(255, 253, 247, 0.12);
}

.board-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.board-meta > div:first-child {
  display: grid;
  gap: 0.35rem;
  color: white;
}

.board-meta span {
  color: var(--brand-yellow);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 1000;
}

.board-meta strong {
  width: fit-content;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  background: var(--brand-mint);
  color: var(--brand-green);
  font-size: 0.8rem;
}

.mini-score {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.3rem 0.75rem;
  min-width: 150px;
  border-radius: 18px;
  padding: 0.7rem;
  background: var(--brand-cream-2);
  color: var(--brand-navy);
}

.mini-score span {
  color: var(--brand-coral);
  font-size: 1rem;
  text-align: right;
}

.preview-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
}

.preview-column {
  display: grid;
  gap: 0.55rem;
}

.preview-column strong,
.preview-column button {
  min-height: clamp(2.7rem, 6vw, 4.2rem);
  border-radius: 13px;
  text-align: center;
  font-weight: 1000;
}

.preview-column strong {
  display: grid;
  place-items: center;
  padding: 0.4rem;
  background: rgba(255, 253, 247, 0.95);
  color: var(--brand-green);
  font-size: clamp(0.78rem, 1.3vw, 1rem);
}

.preview-column button {
  background: linear-gradient(135deg, #fff5c6, var(--brand-yellow));
  color: var(--brand-navy);
  font-size: clamp(1.15rem, 2.5vw, 2.2rem);
  box-shadow: inset 0 -7px 0 rgba(138, 58, 13, 0.08);
}

.preview-column button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 216, 102, 0.24), inset 0 -7px 0 rgba(138, 58, 13, 0.08);
}

.landing-section,
.ticker-section,
.final-cta,
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 3vw, 1.5rem);
}

.section-heading {
  display: grid;
  gap: 0.65rem;
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.section-heading p,
.final-cta p {
  max-width: 720px;
  color: #526078;
  font-size: 1.08rem;
  line-height: 1.55;
}

.game-type-grid,
.benefit-grid,
.step-grid,
.sample-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.game-type-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.play-card,
.benefit-card,
.step-card,
.pricing-card,
.sample-card,
.faq-list details {
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 28px;
  background: #fffdf7;
  box-shadow: 0 16px 42px rgba(23, 32, 51, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-card:hover,
.benefit-card:hover,
.step-card:hover,
.pricing-card:hover,
.sample-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(23, 32, 51, 0.12);
}

.play-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  min-height: 255px;
}

.play-card span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 18px;
  background: #fff0bd;
  color: #8a3a0d;
  font-weight: 1000;
}

.play-card h3,
.benefit-card h3,
.step-card h3,
.sample-card h3,
.pricing-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
}

.play-card p,
.benefit-card p,
.step-card p,
.sample-card p,
.pricing-card p {
  margin: 0;
  color: #5b667a;
  line-height: 1.5;
}

.play-card button,
.sample-card button {
  align-self: end;
  width: fit-content;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: var(--brand-lavender, #eee7ff);
  color: var(--brand-coral);
  font-weight: 1000;
}

.ticker-section {
  max-width: none;
  padding-inline: 0;
  background: var(--brand-green);
  color: white;
}

.ticker-section .eyebrow {
  max-width: 1180px;
  margin: 0 auto 0.7rem;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
  color: var(--brand-yellow);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker div {
  display: inline-block;
  min-width: 200%;
  color: #fff4c4;
  font-size: clamp(1.3rem, 4vw, 3.2rem);
  font-weight: 1000;
  animation: tickerMove 32s linear infinite;
}

.benefits-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(122, 223, 201, 0.34), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(139, 92, 246, 0.18), transparent 24%);
}

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

.benefit-card,
.step-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
}

.benefit-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  background: #ffe8d7;
  color: #c24d13;
  font-size: 0.8rem;
  font-weight: 1000;
  text-transform: lowercase;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  min-height: 250px;
  background: #fff7e8;
}

.step-card span {
  color: #ff8a3d;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 1000;
  line-height: 0.9;
}

.samples-section {
  max-width: none;
  background: #f4efff;
}

.samples-section .section-heading,
.samples-section .sample-grid {
  max-width: 1180px;
  margin-inline: auto;
}

.sample-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sample-card {
  display: grid;
  min-height: 245px;
  gap: 0.75rem;
  padding: 1.2rem;
  color: white;
  overflow: hidden;
}

.sample-card span,
.sample-card p {
  color: rgba(255, 255, 255, 0.82);
}

.sample-card h3 {
  color: white;
}

.sample-card button {
  background: rgba(255, 255, 255, 0.9);
}

.sample-1 { background: var(--brand-green); }
.sample-2 { background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral)); }
.sample-3 { background: #6abf9f; }
.sample-4 { background: #90bff4; }
.sample-5 { background: var(--brand-navy); }

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
}

.pricing-card > span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  background: #eee7ff;
  color: var(--brand-coral);
  font-weight: 1000;
}

.pricing-card.popular {
  border: 3px solid var(--brand-yellow);
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 227, 138, 0.2), transparent 30%),
    var(--brand-green);
  color: white;
}

.pricing-card.popular h3,
.pricing-card.popular p,
.pricing-card.popular li {
  color: white;
}

.pricing-card strong {
  color: inherit;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.price-note {
  min-height: 1.5rem;
}

.pricing-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: var(--brand-coral);
  font-weight: 1000;
}

.pricing-card.popular li::before {
  color: var(--brand-yellow);
}

.popular-badge {
  background: var(--brand-yellow) !important;
  color: var(--brand-navy) !important;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1.15rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 1000;
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: #526078;
  line-height: 1.55;
}

.final-cta {
  max-width: 1080px;
  margin-bottom: 2rem;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 227, 138, 0.34), transparent 34%),
    linear-gradient(135deg, var(--brand-green), #285e4d);
  color: white;
  text-align: center;
  box-shadow: 0 24px 60px rgba(23, 32, 51, 0.18);
}

.final-cta h2,
.final-cta p {
  margin-inline: auto;
  color: white;
}

.final-cta .eyebrow {
  color: var(--brand-yellow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 1.25rem;
  border-top: 1px solid rgba(23, 32, 51, 0.1);
  color: #526078;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 0.7rem;
  color: var(--ink);
}

.site-footer a {
  display: block;
  margin: 0.35rem 0;
  color: #526078;
  text-decoration: none;
  font-weight: 800;
}

/* Screenshot-matched home page sections */
.landing-v2 {
  background:
    radial-gradient(circle at 7% 12%, rgba(255, 227, 138, 0.35), transparent 28%),
    radial-gradient(circle at 94% 6%, rgba(139, 92, 246, 0.18), transparent 28%),
    linear-gradient(135deg, #fff8e9 0%, #fffdf8 48%, #f4efff 100%);
}

.site-header {
  position: relative;
  grid-template-columns: 1fr auto 1fr;
  max-width: 1320px;
  padding: 1rem clamp(1rem, 4vw, 2rem);
}

.site-header::before {
  display: none;
}

.brand-mark {
  width: fit-content;
  min-height: 3.4rem;
  padding: 0 1.75rem;
  border-radius: 999px;
  background: var(--brand-cream-2);
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.08);
}

.brand-mark strong {
  font-size: 0.98rem;
}

.nav-actions {
  gap: 1.35rem;
}

.nav-link {
  color: var(--brand-navy);
}

.site-header .primary {
  min-width: 9.6rem;
  min-height: 3.4rem;
}

.landing-v2 .hero-v2 {
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: 1320px;
  min-height: auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 5vw, 4rem);
}

.landing-v2 .hero-copy {
  align-self: start;
  padding-top: clamp(0.5rem, 2vw, 1.5rem);
}

.landing-v2 .hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3rem, 4.6vw, 4.7rem);
  line-height: 0.98;
}

.landing-v2 .hero-copy p:not(.eyebrow) {
  max-width: 630px;
  color: #68738a;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 850;
  line-height: 1.35;
}

.landing-v2 .hero-copy .primary {
  min-width: 13.5rem;
  min-height: 3.7rem;
  margin-top: 0.75rem;
  font-size: 1rem;
}

.hero-support-line {
  max-width: 580px !important;
  margin: 0.85rem 0 0;
  color: var(--brand-navy) !important;
  font-size: 0.98rem !important;
  font-weight: 900 !important;
}

.hero-preview-card {
  position: relative;
  display: grid;
  align-self: center;
  gap: 0.8rem;
  min-height: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 42px;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 216, 90, 0.72) 0 12%, transparent 12.2%),
    radial-gradient(circle at 8% 95%, rgba(238, 231, 255, 0.9) 0 18%, transparent 18.2%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 255, 0.96) 66%, rgba(255, 247, 232, 0.9));
  box-shadow: 0 24px 58px rgba(23, 32, 51, 0.15), 14px 14px 0 rgba(207, 232, 255, 0.32), -16px -16px 0 rgba(255, 227, 138, 0.32);
  overflow: hidden;
}

.active-game-preview {
  width: min(100%, 780px);
  max-width: 780px;
  margin-inline: auto;
}

.preview-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.preview-card-tags span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.48rem 0.85rem;
  background: var(--brand-cream-2);
  color: var(--brand-coral);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-card-tags span:last-child {
  background: #fff1c2;
  color: var(--brand-navy);
  letter-spacing: 0;
  text-transform: none;
}

.active-game-preview {
  isolation: isolate;
}

.game-preview-stage {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.preview-top-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.preview-top-strip span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  min-height: 2.45rem;
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-navy);
  font-size: 0.76rem;
  font-weight: 1000;
  box-shadow: var(--brand-soft-shadow);
}

.preview-top-strip .leader {
  background: var(--brand-yellow);
  box-shadow: 0 0 0 4px rgba(255, 216, 90, 0.2), var(--brand-soft-shadow);
}

.turn-indicator {
  width: fit-content;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: #eee7ff;
  color: var(--brand-coral);
  font-size: 0.85rem;
  font-weight: 1000;
}

.classroom-board-mini {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.3rem);
  border: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(139, 92, 246, 0.35), transparent 34%),
    linear-gradient(135deg, #10182f, #26105f 58%, #3b1d88);
  color: white;
  box-shadow: 0 18px 38px rgba(16, 24, 47, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hot-seat-preview-board {
  gap: 0.9rem;
}

.mini-board-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.board-label {
  justify-self: center;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.14);
  color: #fffdf7;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-board-header .board-label {
  justify-self: start;
}

.mini-board-header strong {
  border-radius: 999px;
  padding: 0.42rem 0.65rem;
  background: rgba(255, 253, 247, 0.92);
  color: var(--brand-navy);
  font-size: 0.74rem;
}

.mini-category-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.58rem;
}

.mini-category-board div {
  display: grid;
  gap: 0.54rem;
}

.mini-category-board b,
.mini-category-board [data-preview-tile] {
  display: grid;
  min-height: clamp(2.35rem, 4.4vw, 3.25rem);
  place-items: center;
  border-radius: 0.78rem;
  text-align: center;
  font-weight: 1000;
}

.mini-category-board b {
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-navy);
  min-height: clamp(2.2rem, 3.6vw, 2.8rem);
  font-size: clamp(0.58rem, 1vw, 0.76rem);
}

.mini-category-board [data-preview-tile] {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.mini-category-board [data-preview-tile]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(139, 92, 246, 0.26);
}

.mini-category-board .preview-highlight {
  border-color: rgba(255, 216, 90, 0.7);
  background: rgba(255, 216, 90, 0.28);
  color: white;
  box-shadow: 0 0 0 3px rgba(255, 216, 90, 0.12), 0 0 18px rgba(255, 216, 90, 0.28);
  transform: translateY(-1px);
}

.mini-category-board .selected {
  border-color: rgba(238, 231, 255, 0.9);
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.26), 0 0 28px rgba(139, 92, 246, 0.55);
  transform: translateY(-2px) scale(1.04);
  animation: activeTileGlow 2.4s ease-in-out infinite;
}

.mini-category-board .preview-used {
  background: rgba(238, 231, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.preview-board-stage,
.preview-question-stage,
.preview-answer-stage {
  grid-column: 1;
  grid-row: 1;
  transition: opacity 420ms ease, transform 420ms ease;
}

.preview-board-stage {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.preview-question-stage,
.preview-answer-stage {
  display: grid;
  min-height: clamp(310px, 43vw, 430px);
  align-content: center;
  justify-items: center;
  gap: 1.2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(139, 92, 246, 0.48), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(255, 216, 90, 0.16), transparent 26%),
    linear-gradient(135deg, #10182f, #241061 58%, #3b1d88);
  color: white;
  text-align: center;
  box-shadow: 0 20px 42px rgba(16, 24, 47, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  opacity: 0;
  transform: translateY(1rem) scale(0.98);
  pointer-events: none;
}

.preview-question-stage .board-label {
  background: rgba(255, 255, 255, 0.14);
}

.preview-question-stage strong {
  max-width: 620px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.04;
}

.preview-answer-stage {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 216, 90, 0.22), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(139, 92, 246, 0.34), transparent 30%),
    linear-gradient(135deg, #10182f, #241061 58%, #3b1d88);
}

.preview-answer-stage > span,
.answer-reveal-card > span {
  color: var(--brand-yellow);
  font-size: 0.84rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preview-answer-stage > strong {
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.95;
}

.active-game-preview[data-preview-phase="question"] .preview-board-stage,
.active-game-preview[data-preview-phase="teamAnswer"] .preview-board-stage,
.active-game-preview[data-preview-phase="resultCorrect"] .preview-board-stage,
.active-game-preview[data-preview-phase="resultIncorrect"] .preview-board-stage {
  opacity: 0;
  transform: translateY(-1rem) scale(0.98);
  pointer-events: none;
}

.active-game-preview[data-preview-phase="question"] .preview-question-stage,
.active-game-preview[data-preview-phase="teamAnswer"] .preview-question-stage {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.active-game-preview[data-preview-phase="resultCorrect"] .preview-answer-stage,
.active-game-preview[data-preview-phase="resultIncorrect"] .preview-answer-stage {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.preview-team-row {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.preview-team-row > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 1000;
  box-shadow: inset 0 0 0 2px rgba(23, 32, 51, 0.06), var(--brand-soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.preview-team-row > span > span {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
}

.preview-team-row > span.active {
  background: #eee7ff;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.18), 0 16px 30px rgba(109, 61, 245, 0.22);
  animation: previewTeamBuzz 780ms ease both;
}

.mini-clue-strip {
  display: grid;
  gap: 0.2rem;
  border-radius: 1.1rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 253, 247, 0.92);
  color: var(--brand-navy);
}

.teaser-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  width: min(330px, 86%);
  margin: -0.45rem auto 0;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(139, 92, 246, 0.16);
  border-radius: 1.3rem;
  background: white;
  color: var(--brand-navy);
  box-shadow: 0 18px 34px rgba(23, 32, 51, 0.14);
  opacity: 0;
  transform: translateY(-0.5rem) scale(0.96);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.active-game-preview[data-preview-phase="teaser"] .teaser-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.teaser-card span {
  color: var(--brand-coral);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.teaser-card strong {
  font-size: 1.05rem;
}

.teaser-card button {
  width: fit-content;
  min-height: 2.4rem;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  font-size: 0.86rem;
  font-weight: 1000;
}

.preview-play-now {
  grid-column: 1;
  grid-row: 3;
  justify-self: center;
  min-width: 12rem;
  min-height: 3.3rem;
  margin-top: 0;
}

.mini-clue-strip span {
  color: var(--brand-coral);
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-clue-strip strong {
  font-size: 0.98rem;
}

.hero-preview-card > p {
  max-width: 650px;
  margin: 0;
  color: #68738a;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.35;
}

.hero-preview-card > .primary {
  width: fit-content;
  min-width: 13rem;
  min-height: 3.35rem;
  font-size: 0.98rem;
}

.why-works-section {
  max-width: 1660px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 6vw, 7rem);
}

.why-heading {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.why-heading .eyebrow,
.faq-section .eyebrow {
  width: fit-content;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  background: var(--brand-cream-2);
  color: #68738a;
  box-shadow: var(--brand-soft-shadow);
  letter-spacing: 0.12em;
}

.why-heading h2 {
  max-width: 900px;
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.98;
}

.why-heading p {
  max-width: 980px;
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 900;
}

.why-card-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(1.4rem, 2vw, 2.1rem);
  max-width: 620px;
  margin-inline: auto;
}

.why-card-row::before {
  content: "";
  display: none;
  position: absolute;
  top: 23%;
  left: 18%;
  right: 18%;
  height: 4px;
  background: linear-gradient(90deg, rgba(109, 61, 245, 0.18), rgba(255, 216, 90, 0.2));
}

.why-card {
  position: relative;
  display: grid;
  gap: 1.5rem;
  min-height: 630px;
  padding: clamp(1.35rem, 1.8vw, 2.2rem);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(255, 247, 232, 0.9));
  box-shadow: var(--brand-shadow);
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 11rem;
  height: 11rem;
  border-radius: 45%;
  background: rgba(139, 92, 246, 0.12);
  transform: rotate(18deg);
}

.why-board {
  transform: none;
}

.why-play {
  transform: none;
}

.why-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.why-icon {
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  place-items: center;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  font-size: 2.2rem;
  font-weight: 1000;
}

.why-board .why-icon {
  background: var(--brand-yellow);
  color: var(--brand-navy);
}

.why-play .why-icon {
  background: #69b4ef;
}

.step-pill {
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: #eee7ff;
  color: var(--brand-navy);
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  font-weight: 1000;
  letter-spacing: 0.13em;
}

.lesson-visual,
.board-visual,
.play-visual {
  position: relative;
  z-index: 1;
}

.lesson-visual {
  display: grid;
  gap: 0.6rem;
  padding: 1.65rem 1.3rem;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(rgba(23, 32, 51, 0.06) 1px, transparent 1px) 0 0 / 100% 2rem,
    #fffdf7;
}

.lesson-visual strong {
  width: fit-content;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: #fff1c2;
  color: var(--brand-navy);
}

.lesson-visual span {
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  background: rgba(255, 255, 255, 0.86);
  color: #68738a;
  font-weight: 900;
}

.board-visual {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 216, 90, 0.18), transparent 28%),
    linear-gradient(135deg, #10182f, #26105f 64%, #3b1d88);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.board-visual b,
.board-visual span,
.board-visual em {
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  font-weight: 1000;
  text-align: center;
}

.board-visual b {
  width: fit-content;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-size: 0.82rem;
}

.board-visual span {
  min-height: 5rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf7;
  font-size: 1.1rem;
}

.board-visual em {
  justify-self: end;
  width: fit-content;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  font-style: normal;
}

.play-visual {
  display: grid;
  gap: 0.6rem;
  padding: 1.2rem;
  border-radius: 26px;
  background: #fffdf7;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 51, 0.08);
  color: var(--brand-navy);
}

.play-visual strong,
.play-visual p {
  margin: 0;
}

.play-visual span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #eee7ff;
  font-weight: 1000;
}

.play-visual span:first-of-type {
  background: var(--brand-yellow);
}

.play-visual b {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: white;
}

.play-visual em {
  color: var(--brand-coral);
  font-style: normal;
}

.why-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  color: var(--brand-navy);
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  line-height: 0.98;
}

.why-card > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #68738a;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.38;
}

.faq-section {
  max-width: none;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 11vw, 14rem);
  background:
    radial-gradient(circle at 6% 0%, rgba(255, 227, 138, 0.3), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(201, 243, 223, 0.38), transparent 28%),
    linear-gradient(135deg, #fffdf7 0%, #eef8f4 100%);
}

.faq-section .section-heading {
  max-width: 1400px;
  margin: 0 auto 2.5rem;
}

.faq-section .section-heading h2 {
  font-size: clamp(4.5rem, 7vw, 7rem);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--brand-cream-2);
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.07);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.05rem;
  padding: 1.25rem 1.4rem;
  list-style: none;
}

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

.faq-list summary::after {
  content: "⌄";
  display: grid;
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  background: #eee7ff;
  color: var(--brand-coral);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "⌃";
}

.faq-list p {
  padding: 0 1.4rem 1.35rem;
  font-weight: 800;
}

/* Broad-audience marketing polish */
.landing-v2 .hero-v2 {
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  max-width: 1220px;
  padding-top: clamp(1.25rem, 3vw, 2.4rem);
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
}

.landing-v2 .hero-copy h1 {
  max-width: 640px;
  font-size: clamp(2.85rem, 4.1vw, 4.35rem);
  line-height: 1;
}

.landing-v2 .hero-copy p:not(.eyebrow) {
  max-width: 640px;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.5;
}

.hero-preview-card {
  border-radius: 34px;
}

.active-game-preview {
  max-width: 720px;
}

.landing-section,
.why-works-section,
.final-cta,
.site-footer {
  max-width: 1220px;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.15rem, 3vw, 2rem);
}

.section-heading,
.why-heading {
  gap: 0.75rem;
  max-width: 760px;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.section-heading h2,
.why-heading h2,
.final-cta h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
  line-height: 1.04;
}

.section-heading p,
.why-heading p,
.final-cta p {
  color: #526078;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.6;
}

.why-works-section {
  margin-inline: auto;
}

.why-heading {
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.simple-step-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  gap: 1rem;
}

.simple-step-row::before {
  display: none;
}

.simple-step-card {
  min-height: 260px;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.2rem, 2vw, 1.55rem);
  border-radius: 28px;
}

.simple-step-card::after {
  width: 7rem;
  height: 7rem;
  opacity: 0.75;
}

.simple-step-card .why-card-top {
  justify-content: flex-start;
}

.simple-step-card .why-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.simple-step-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.simple-step-card > p {
  color: #526078;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.game-type-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.play-card {
  min-height: 290px;
  padding: 1.45rem;
  align-content: start;
}

.play-card span {
  width: 3.2rem;
  height: 3.2rem;
  background: #eee7ff;
  color: var(--brand-coral);
}

.play-card h3,
.benefit-card h3,
.sample-card h3,
.pricing-card h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.12;
}

.play-card p,
.benefit-card p,
.sample-card p,
.pricing-card p,
.pricing-card li {
  font-size: 1rem;
  line-height: 1.55;
}

.ticker-section {
  padding-block: clamp(1.6rem, 3vw, 2.3rem);
  background: linear-gradient(135deg, #10182f, #26105f);
}

.ticker div {
  color: #fff4c4;
  font-size: clamp(1.25rem, 2.6vw, 2.25rem);
}

.benefits-section {
  max-width: none;
  background:
    radial-gradient(circle at 9% 0%, rgba(255, 216, 90, 0.18), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(139, 92, 246, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #f8f4ff 100%);
}

.benefits-section .section-heading,
.benefits-section .benefit-grid {
  max-width: 1220px;
  margin-inline: auto;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  min-height: 240px;
  padding: 1.35rem;
  align-content: start;
}

.benefit-card span {
  background: #eee7ff;
  color: var(--brand-coral);
  text-transform: none;
}

.samples-section {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.samples-section .section-heading,
.samples-section .sample-grid {
  max-width: 1220px;
}

.sample-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sample-card {
  min-height: 220px;
  padding: 1.35rem;
  align-content: start;
}

.sample-card span {
  font-weight: 950;
}

.sample-card p {
  font-weight: 850;
}

.sample-1 { background: linear-gradient(135deg, #10182f, #26105f); }
.sample-2 { background: linear-gradient(135deg, #6d3df5, #8b5cf6); }
.sample-3 { background: #365f89; }
.sample-4 { background: #7c3aed; }
.sample-5 { background: #2f6b58; }
.sample-6 { background: #5b4a8f; }

.pricing-grid {
  gap: 1rem;
}

.pricing-card {
  min-height: 520px;
  align-content: start;
  padding: clamp(1.35rem, 2.4vw, 2rem);
}

.pricing-card ul {
  gap: 0.85rem;
}

.pricing-card button {
  align-self: end;
}

.faq-section {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.15rem, 4vw, 3rem);
}

.faq-section .section-heading,
.faq-list {
  max-width: 1120px;
}

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

.faq-list summary {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.25;
}

.faq-list p {
  font-size: 1rem;
  line-height: 1.6;
}

.final-cta {
  max-width: 1120px;
  padding-block: clamp(3.25rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 216, 90, 0.18), transparent 30%),
    linear-gradient(135deg, #10182f, #26105f 64%, #3b1d88);
}

.site-footer {
  max-width: 1220px;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 1.5rem;
}

/* Smooth post-hero marketing flow */
.landing-v2 .marketing-section {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 5.25rem clamp(1.15rem, 3vw, 2rem);
  overflow: hidden;
}

.landing-v2 .marketing-section::before {
  content: "";
  position: absolute;
  inset: auto -8rem 0 auto;
  width: 20rem;
  height: 20rem;
  border-radius: 46% 54% 40% 60%;
  background: rgba(238, 231, 255, 0.62);
  pointer-events: none;
}

.landing-v2 .marketing-section::after {
  content: "";
  position: absolute;
  inset: 1.4rem auto auto -7rem;
  width: 16rem;
  height: 16rem;
  border-radius: 52% 48% 58% 42%;
  background: rgba(255, 216, 90, 0.2);
  pointer-events: none;
}

.landing-v2 .smooth-heading,
.landing-v2 .step-timeline,
.landing-v2 .audience-grid,
.landing-v2 .love-section,
.landing-v2 .sample-grid,
.landing-v2 .screen-pair,
.landing-v2 .pricing-grid,
.landing-v2 .faq-list,
.landing-v2 .section-actions {
  position: relative;
  z-index: 1;
}

.landing-v2 .smooth-heading {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.landing-v2 .smooth-heading h2,
.landing-v2 .love-copy h2,
.landing-v2 .smooth-final-cta h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 3rem;
  line-height: 1.04;
}

.landing-v2 .smooth-heading p,
.landing-v2 .love-copy p,
.landing-v2 .smooth-final-cta p {
  margin: 0;
  color: #526078;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.62;
}

.landing-v2 .how-flow-section {
  padding-top: 4.4rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0) 0%, #fffdf7 18%, #f9f5ff 100%);
}

.hot-seat-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.3rem);
  max-width: 1160px;
  margin: 0 auto;
}

.hot-seat-flow::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 18%;
  right: 18%;
  height: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(108, 76, 245, 0), rgba(108, 76, 245, 0.32), rgba(122, 168, 255, 0.58), rgba(142, 124, 255, 0.34), rgba(108, 76, 245, 0));
  opacity: 0.9;
}

.flow-card {
  position: relative;
  display: grid;
  gap: 0.95rem;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 92%, rgba(238, 231, 255, 0.92) 0 17%, transparent 17.5%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.96));
  box-shadow: 0 22px 54px rgba(23, 32, 51, 0.11);
  animation: flowCardIn 760ms ease both;
  animation-delay: var(--delay, 0ms);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.flow-card:nth-child(2) {
  margin-top: 2.6rem;
}

.flow-card:nth-child(3) {
  margin-top: 5.2rem;
}

.flow-card:hover,
.flow-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(23, 32, 51, 0.15);
}

.flow-card::after {
  content: "";
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 42% 58% 50% 50%;
  background: rgba(243, 238, 255, 0.72);
  pointer-events: none;
}

.flow-card-play::after {
  background: rgba(207, 232, 255, 0.54);
}

.flow-card-reveal::after {
  background: rgba(234, 243, 255, 0.72);
}

.flow-accent {
  position: absolute;
  inset: 0 0 auto;
  height: 0.72rem;
  background: linear-gradient(90deg, #6d3df5, #8b5cf6);
}

.flow-card-play .flow-accent {
  background: linear-gradient(90deg, #579de8, #8b5cf6);
}

.flow-card-reveal .flow-accent {
  background: linear-gradient(90deg, #6c4cf5, #7aa8ff);
}

.flow-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.flow-card-top > span {
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(238, 231, 255, 0.85);
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.flow-icon {
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #6d3df5, #8b5cf6);
  box-shadow: 0 16px 32px rgba(109, 61, 245, 0.24), inset 0 -6px 0 rgba(16, 24, 47, 0.09);
}

.flow-icon-play {
  background: linear-gradient(135deg, #579de8, #8b5cf6);
}

.flow-icon-reveal {
  background: linear-gradient(135deg, #7aa8ff, #8b5cf6);
}

.flow-card h3,
.flow-card p,
.flow-mini {
  position: relative;
  z-index: 1;
}

.flow-card h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(2rem, 2.7vw, 2.65rem);
  line-height: 1;
}

.flow-card p {
  margin: 0;
  color: #526078;
  font-size: 1.03rem;
  font-weight: 820;
  line-height: 1.52;
}

.tile-stack-icon,
.live-buzzer-icon,
.reveal-badge-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
}

.tile-stack-icon i,
.tile-stack-icon b {
  position: absolute;
  display: block;
  width: 1.9rem;
  height: 1.35rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 14px rgba(16, 24, 47, 0.16);
}

.tile-stack-icon i:nth-child(1) {
  left: 0.1rem;
  top: 0.55rem;
  transform: rotate(-8deg);
}

.tile-stack-icon i:nth-child(2) {
  right: 0.15rem;
  top: 0.3rem;
  background: var(--brand-yellow);
  transform: rotate(7deg);
}

.tile-stack-icon i:nth-child(3) {
  left: 0.55rem;
  bottom: 0.35rem;
  background: #eee7ff;
}

.tile-stack-icon b {
  right: 0.15rem;
  bottom: 0.2rem;
  width: 0.38rem;
  height: 1.8rem;
  border-radius: 999px;
  background: var(--brand-navy);
  transform: rotate(32deg);
}

.live-buzzer-icon i {
  position: absolute;
  inset: 0.55rem;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: inset 0 -0.35rem 0 rgba(16, 24, 47, 0.12), 0 0 0 0 rgba(255, 216, 90, 0.42);
  animation: flowBuzzerPulse 2.2s ease-in-out infinite;
}

.live-buzzer-icon b {
  position: absolute;
  left: 50%;
  top: 0.15rem;
  width: 0.52rem;
  height: 1.1rem;
  border-radius: 999px;
  background: white;
  transform: translateX(-50%);
}

.live-buzzer-icon em {
  position: absolute;
  right: 0.1rem;
  bottom: 0.05rem;
  width: 1.15rem;
  height: 1.15rem;
  clip-path: polygon(44% 0, 100% 0, 62% 42%, 100% 42%, 34% 100%, 47% 56%, 0 56%);
  background: white;
}

.reveal-badge-icon i {
  position: absolute;
  inset: 0.35rem;
  border-radius: 0.8rem;
  background: white;
  transform: rotate(-6deg);
}

.reveal-badge-icon b {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 2.05rem;
  height: 2.05rem;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-size: 1.35rem;
  transform: translate(-50%, -50%);
  animation: flowCorrectPop 2.6s ease-in-out infinite;
}

.reveal-badge-icon em {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #eee7ff;
}

.flow-mini {
  align-self: end;
  display: grid;
  gap: 0.8rem;
  min-height: 210px;
  margin-top: 0.35rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(16, 24, 47, 0.07), 0 12px 28px rgba(23, 32, 51, 0.08);
}

.mini-form-row {
  display: grid;
  gap: 0.25rem;
  border-radius: 16px;
  padding: 0.75rem;
  background: #fff7d9;
}

.mini-form-row span {
  color: #6d3df5;
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-form-row strong {
  color: var(--brand-navy);
  font-size: 1rem;
}

.mini-chip-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.mini-chip-row b {
  border-radius: 999px;
  padding: 0.58rem 0.5rem;
  background: linear-gradient(135deg, #eee7ff, #fff);
  color: var(--brand-navy);
  font-size: 0.86rem;
  text-align: center;
}

.mini-note-lines {
  display: grid;
  gap: 0.45rem;
}

.mini-note-lines i {
  display: block;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(109, 61, 245, 0.12);
}

.mini-note-lines i:nth-child(2) {
  width: 82%;
}

.mini-note-lines i:nth-child(3) {
  width: 64%;
}

.flow-play-mini {
  background: linear-gradient(145deg, rgba(16, 24, 47, 0.96), rgba(38, 16, 95, 0.94));
}

.mini-live-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.mini-live-board span {
  grid-column: 1 / -1;
  border-radius: 999px;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 1000;
  text-align: center;
}

.mini-live-board b {
  display: grid;
  min-height: 3.6rem;
  place-items: center;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.mini-live-board .selected {
  background: linear-gradient(135deg, #6d3df5, #8b5cf6);
  box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.28), 0 0 24px rgba(139, 92, 246, 0.54);
  animation: flowTilePulse 2.2s ease-in-out infinite;
}

.mini-team-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.mini-team-buttons i {
  border-radius: 999px;
  padding: 0.48rem 0.35rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-navy);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 950;
  text-align: center;
}

.mini-team-buttons .buzzing {
  background: var(--brand-yellow);
  animation: flowBuzzerPulse 2.2s ease-in-out infinite;
}

.flow-reveal-mini {
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(122, 168, 255, 0.22), transparent 30%),
    linear-gradient(145deg, #10182f, #26105f);
}

.mini-correct-sticker {
  position: relative;
  width: fit-content;
  animation: flowCorrectPop 2.7s ease-in-out infinite;
}

.mini-correct-sticker strong {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  transform: rotate(-4deg);
}

.mini-correct-sticker i {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: white;
}

.mini-correct-sticker i:first-child {
  left: -0.55rem;
  top: 0.2rem;
}

.mini-correct-sticker i:last-child {
  right: -0.5rem;
  bottom: 0.05rem;
  background: #eee7ff;
}

.flow-reveal-mini > b {
  color: white;
  font-size: 1.5rem;
  line-height: 1.05;
}

.flow-reveal-mini > span {
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-yellow);
  font-weight: 1000;
}

.step-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
}

.step-timeline::before {
  content: "";
  position: absolute;
  top: 4.15rem;
  left: 10%;
  right: 10%;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(108, 76, 245, 0), rgba(108, 76, 245, 0.3), rgba(122, 168, 255, 0.46), rgba(142, 124, 255, 0.28), rgba(108, 76, 245, 0));
}

.motion-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 216, 90, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 245, 255, 0.92));
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: cardFloatIn 720ms ease both;
  animation-delay: var(--delay, 0ms);
}

.motion-card:hover,
.motion-card:focus-within {
  border-color: rgba(109, 61, 245, 0.2);
  box-shadow: 0 24px 58px rgba(23, 32, 51, 0.13);
  transform: translateY(-5px);
}

.motion-card:hover .motion-icon,
.motion-card:focus-within .motion-icon {
  transform: translateY(-2px) rotate(-2deg) scale(1.04);
}

.motion-icon {
  position: relative;
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  place-items: center;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #6d3df5, #8b5cf6);
  color: white;
  box-shadow: 0 12px 24px rgba(109, 61, 245, 0.22), inset 0 -5px 0 rgba(16, 24, 47, 0.1);
  transition: transform 180ms ease;
}

.motion-icon b {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  font-weight: 1000;
  letter-spacing: 0;
}

.motion-icon i {
  position: absolute;
  right: -0.25rem;
  top: -0.2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 5px rgba(255, 216, 90, 0.22);
}

.motion-icon.tile {
  background: linear-gradient(135deg, #10182f, #4f2bd7);
}

.motion-icon.buzz,
.motion-icon.buzzer,
.motion-icon.bolt {
  background: linear-gradient(135deg, #ffd85a, #ffed9a);
  color: var(--brand-navy);
  animation: softPulse 2.4s ease-in-out infinite;
}

.motion-icon.correct {
  background: linear-gradient(135deg, #8b5cf6, #ffd85a);
}

.motion-icon.party,
.motion-icon.trophy {
  background: linear-gradient(135deg, #ffd85a, #8b5cf6);
  color: var(--brand-navy);
}

.step-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: #eee7ff;
  color: #6d3df5;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.motion-card h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1.35rem;
  line-height: 1.16;
}

.motion-card p {
  margin: 0;
  color: #526078;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.55;
}

.section-actions {
  margin-top: 1.5rem;
}

.landing-v2 .audience-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(207, 232, 255, 0.58), transparent 26%),
    linear-gradient(180deg, #f9f5ff 0%, #fffdf7 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
}

.audience-card {
  min-height: 260px;
}

.text-cta {
  justify-self: start;
  min-height: 2.35rem;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(109, 61, 245, 0.1);
  color: #6d3df5;
  font-weight: 1000;
}

.landing-v2 .audience-section {
  background:
    radial-gradient(circle at 10% 3%, rgba(255, 216, 90, 0.18), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(238, 231, 255, 0.95), transparent 30%),
    linear-gradient(180deg, #fffdf7 0%, #fff7e8 52%, #f8f4ff 100%);
}

.landing-v2 .audience-section .smooth-heading {
  max-width: 860px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 1180px;
  margin: 0 auto;
}

.use-case-card {
  --accent: #8b5cf6;
  --blob: rgba(139, 92, 246, 0.22);
  --card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 255, 0.9));
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 365px;
  overflow: hidden;
  padding: clamp(1.3rem, 2vw, 1.65rem);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  background: var(--card-bg);
  box-shadow: 0 22px 58px rgba(23, 32, 51, 0.1);
  animation: useCaseIn 720ms ease both;
  animation-delay: var(--delay, 0ms);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.use-case-card:hover,
.use-case-card:focus-within {
  border-color: color-mix(in srgb, var(--accent) 34%, white);
  box-shadow: 0 30px 72px rgba(23, 32, 51, 0.15);
  transform: translateY(-6px) rotate(-0.8deg);
}

.use-case-card:hover .use-case-blob,
.use-case-card:focus-within .use-case-blob {
  transform: translate(0.35rem, -0.35rem) scale(1.05);
}

.use-case-card:hover .use-case-icon,
.use-case-card:focus-within .use-case-icon {
  transform: translateY(-3px) rotate(-2deg);
}

.use-case-accent {
  width: 5.6rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 30%, transparent);
}

.use-case-blob {
  position: absolute;
  top: -2.8rem;
  right: -2.4rem;
  width: 7.6rem;
  height: 7.6rem;
  border-radius: 38% 62% 48% 52%;
  background: var(--blob);
  transition: transform 180ms ease;
}

.use-case-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3.9rem;
  height: 3.9rem;
  place-items: center;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent), 0 12px 28px rgba(23, 32, 51, 0.08);
  transition: transform 180ms ease;
}

.use-case-card h3,
.use-case-card p,
.use-case-cta,
.use-case-accent {
  position: relative;
  z-index: 1;
}

.use-case-card h3 {
  margin: clamp(1.2rem, 2vw, 1.9rem) 0 0;
  color: var(--brand-navy);
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
  line-height: 1.06;
}

.use-case-card p {
  margin: 0;
  color: #526078;
  font-size: 1.02rem;
  font-weight: 820;
  line-height: 1.55;
}

.use-case-cta {
  align-self: end;
  justify-self: start;
  min-height: 2.85rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-navy);
  box-shadow: inset 0 0 0 2px rgba(23, 32, 51, 0.07), 0 10px 24px rgba(23, 32, 51, 0.08);
  font-weight: 1000;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.use-case-card:hover .use-case-cta,
.use-case-card:focus-within .use-case-cta {
  background: linear-gradient(135deg, #6d3df5, #8b5cf6);
  color: white;
  box-shadow: 0 16px 32px rgba(109, 61, 245, 0.24);
  transform: translateY(-2px);
}

.use-case-classroom {
  --accent: #ff6b67;
  --blob: rgba(255, 107, 103, 0.72);
  --card-bg: linear-gradient(145deg, #fffaf4, #ffe8e2);
}

.use-case-family {
  --accent: #55d68f;
  --blob: rgba(85, 214, 143, 0.5);
  --card-bg: linear-gradient(145deg, #fffdf7, #e9fff5);
}

.use-case-party {
  --accent: #8b5cf6;
  --blob: rgba(139, 92, 246, 0.42);
  --card-bg: linear-gradient(145deg, #fffdf7, #f1eaff);
}

.use-case-training {
  --accent: #58b7f8;
  --blob: rgba(88, 183, 248, 0.55);
  --card-bg: linear-gradient(145deg, #fffdf7, #eaf7ff);
}

.use-case-meeting {
  --accent: #ff9c3f;
  --blob: rgba(255, 156, 63, 0.6);
  --card-bg: linear-gradient(145deg, #fffdf7, #fff0df);
}

.use-case-church {
  --accent: #ffd85a;
  --blob: rgba(238, 231, 255, 0.98);
  --card-bg: linear-gradient(145deg, #fffdf7, #fbf0ff);
}

.school-board-icon,
.family-house-icon,
.party-card-icon,
.training-badge-icon,
.meeting-bolt-icon,
.group-spark-icon {
  position: relative;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
}

.school-board-icon i {
  position: absolute;
  display: block;
  width: 1.15rem;
  height: 0.86rem;
  border-radius: 0.28rem;
  background: var(--accent);
  box-shadow: inset 0 -0.16rem 0 rgba(16, 24, 47, 0.12);
}

.school-board-icon i:nth-child(1) {
  left: 0.15rem;
  top: 0.42rem;
}

.school-board-icon i:nth-child(2) {
  right: 0.15rem;
  top: 0.42rem;
  background: var(--brand-yellow);
}

.school-board-icon i:nth-child(3) {
  left: 0.72rem;
  bottom: 0.38rem;
  background: #6d3df5;
}

.school-board-icon b {
  position: absolute;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.08rem;
  height: 0.22rem;
  border-radius: 999px;
  background: var(--brand-navy);
}

.family-house-icon i {
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.3rem;
  height: 1.35rem;
  border-radius: 0.36rem;
  background: var(--accent);
}

.family-house-icon b {
  position: absolute;
  left: 0.52rem;
  top: 0.25rem;
  width: 1.55rem;
  height: 1.55rem;
  background: var(--brand-navy);
  clip-path: polygon(50% 0, 100% 48%, 100% 62%, 50% 20%, 0 62%, 0 48%);
}

.family-house-icon em {
  position: absolute;
  left: 1.02rem;
  bottom: 0.3rem;
  width: 0.55rem;
  height: 0.78rem;
  border-radius: 999px 999px 0 0;
  background: white;
}

.party-card-icon i {
  position: absolute;
  inset: 0.55rem 0.25rem 0.35rem 0.48rem;
  border-radius: 0.5rem;
  background: var(--accent);
  transform: rotate(-8deg);
}

.party-card-icon b {
  position: absolute;
  top: 0.16rem;
  right: 0.15rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--brand-yellow);
}

.party-card-icon em {
  position: absolute;
  left: 0.85rem;
  top: 0.92rem;
  width: 0.95rem;
  height: 0.95rem;
  background: white;
  clip-path: polygon(50% 0, 62% 36%, 100% 36%, 69% 58%, 82% 100%, 50% 74%, 18% 100%, 31% 58%, 0 36%, 38% 36%);
}

.training-badge-icon i {
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.32rem;
  height: 1.55rem;
  border-radius: 0.42rem;
  background: var(--accent);
}

.training-badge-icon b {
  position: absolute;
  left: 0.85rem;
  top: 0.28rem;
  width: 0.9rem;
  height: 0.5rem;
  border: 0.18rem solid var(--brand-navy);
  border-bottom: 0;
  border-radius: 0.38rem 0.38rem 0 0;
}

.training-badge-icon em {
  position: absolute;
  left: 0.74rem;
  right: 0.74rem;
  top: 1.38rem;
  height: 0.22rem;
  border-radius: 999px;
  background: white;
  box-shadow: 0 0.48rem 0 white;
}

.meeting-bolt-icon i {
  position: absolute;
  left: 0.32rem;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.05rem;
  border-radius: 0.34rem;
  background: var(--accent);
}

.meeting-bolt-icon i::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  bottom: -0.36rem;
  border-top: 0.45rem solid var(--accent);
  border-right: 0.45rem solid transparent;
}

.meeting-bolt-icon b {
  position: absolute;
  right: 0.18rem;
  bottom: 0.2rem;
  width: 1.05rem;
  height: 1.45rem;
  background: var(--brand-navy);
  clip-path: polygon(46% 0, 100% 0, 63% 42%, 100% 42%, 28% 100%, 43% 56%, 0 56%);
}

.meeting-bolt-icon em {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-yellow);
}

.group-spark-icon i,
.group-spark-icon b {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}

.group-spark-icon i {
  left: 0.45rem;
  top: 0.62rem;
  width: 0.85rem;
  height: 0.85rem;
  box-shadow: 1rem 0.16rem 0 #8b5cf6;
}

.group-spark-icon b {
  left: 0.25rem;
  bottom: 0.35rem;
  width: 1.2rem;
  height: 0.78rem;
  border-radius: 999px 999px 0.25rem 0.25rem;
  box-shadow: 1.02rem 0.08rem 0 #8b5cf6;
}

.group-spark-icon em {
  position: absolute;
  right: 0.04rem;
  top: 0.18rem;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--brand-yellow);
  clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%);
}

.love-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.25rem;
  align-items: center;
  max-width: none;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 216, 90, 0.22), transparent 28%),
    linear-gradient(135deg, #fff7e8 0%, #fffdf7 42%, #eee7ff 100%);
}

.love-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  max-width: 470px;
  margin-left: auto;
}

.love-copy .primary {
  justify-self: start;
}

.love-grid {
  max-width: 680px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.love-grid .benefit-card {
  min-height: 225px;
}

.landing-v2 .love-section {
  display: block;
  background:
    radial-gradient(circle at 12% 12%, rgba(142, 124, 255, 0.14), transparent 24%),
    radial-gradient(circle at 92% 20%, rgba(122, 168, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, #f8f4ff 52%, #fff7fb 100%);
}

.love-heading {
  max-width: 980px;
}

.why-benefit-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 1160px;
  margin: 0 auto;
}

.why-hero-card,
.why-support-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at 92% 10%, rgba(243, 238, 255, 0.86), transparent 26%),
    linear-gradient(145deg, #ffffff 0%, #f6f2ff 58%, #fdf7fb 100%);
  box-shadow: 0 24px 62px rgba(23, 32, 51, 0.11);
}

.why-hero-card {
  display: grid;
  gap: 1rem;
  min-height: 590px;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border-radius: 36px;
  animation: whyHeroIn 760ms ease both;
}

.why-card-accent,
.why-support-accent {
  position: absolute;
  inset: 0 0 auto;
  height: 0.75rem;
  background: linear-gradient(90deg, #6c4cf5 0%, #7aa8ff 100%);
}

.why-card-blob {
  position: absolute;
  top: -3.4rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 42% 58% 50% 50%;
  background: rgba(246, 221, 231, 0.72);
}

.why-hero-card h3,
.why-hero-card p,
.why-pill-row,
.why-game-collage {
  position: relative;
  z-index: 1;
}

.why-hero-card h3 {
  align-self: end;
  max-width: 560px;
  margin: 0;
  color: #111b44;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.why-hero-card p {
  max-width: 600px;
  margin: 0;
  color: #526078;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  font-weight: 820;
  line-height: 1.58;
}

.why-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.why-pill-row span {
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: #f3eeff;
  color: #6c4cf5;
  font-size: 0.78rem;
  font-weight: 1000;
}

.why-game-collage {
  min-height: 240px;
}

.benefit-collage {
  position: relative;
  min-height: 240px;
}

.benefit-collage span {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: white;
  font-weight: 1000;
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.16);
}

.collage-tile {
  left: 4%;
  top: 20%;
  width: 8rem;
  height: 5.2rem;
  background: linear-gradient(135deg, #111b44, #6c4cf5);
  font-size: 2rem;
  transform: rotate(-7deg);
}

.collage-question {
  left: 33%;
  top: 3%;
  width: 7rem;
  height: 8rem;
  background: linear-gradient(135deg, #ffffff, #f3eeff);
  color: #6c4cf5 !important;
  font-size: 4rem;
  transform: rotate(5deg);
}

.collage-buzzer {
  right: 12%;
  top: 18%;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50% !important;
  background: #f3d76b;
  animation: benefitBuzzerPulse 2.4s ease-in-out infinite;
}

.collage-buzzer::after {
  content: "";
  width: 3.2rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(16, 24, 47, 0.18);
}

.collage-correct {
  left: 20%;
  bottom: 8%;
  padding: 0.78rem 1rem;
  background: linear-gradient(135deg, #ffffff, #f3eeff);
  color: #6c4cf5 !important;
  transform: rotate(-4deg);
  animation: benefitCorrectBounce 2.8s ease-in-out infinite;
}

.collage-score {
  right: 7%;
  bottom: 15%;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, #6c4cf5, #8e7cff);
}

.why-support-stack {
  display: grid;
  gap: 1rem;
}

.why-support-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 186px;
  padding: 1.15rem;
  border-radius: 30px;
  animation: whySupportIn 720ms ease both;
  animation-delay: var(--delay, 0ms);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-support-card:hover,
.why-support-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(23, 32, 51, 0.15);
}

.why-support-card > div:last-child {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.42rem;
}

.why-support-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: #f3eeff;
  color: #6c4cf5;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

.why-support-card h3 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.why-support-card p {
  margin: 0;
  color: #526078;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.48;
}

.why-support-builder {
  background:
    radial-gradient(circle at 92% 12%, rgba(122, 168, 255, 0.18), transparent 25%),
    linear-gradient(145deg, #ffffff, #f5f1ff);
}

.why-support-live {
  background:
    radial-gradient(circle at 92% 12%, rgba(142, 124, 255, 0.18), transparent 25%),
    linear-gradient(145deg, #ffffff, #eaf3ff);
}

.why-support-host {
  background:
    radial-gradient(circle at 92% 12%, rgba(246, 221, 231, 0.56), transparent 25%),
    linear-gradient(145deg, #ffffff, #fdf7fb);
}

.why-support-live .why-support-accent {
  background: linear-gradient(90deg, #7aa8ff 0%, #8e7cff 100%);
}

.why-support-host .why-support-accent {
  background: linear-gradient(90deg, #f6dde7 0%, #6c4cf5 100%);
}

.why-support-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(108, 76, 245, 0.14), 0 14px 30px rgba(17, 27, 68, 0.08);
}

.benefit-builder-icon,
.benefit-live-icon,
.benefit-host-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
}

.benefit-builder-icon i {
  position: absolute;
  width: 1.15rem;
  height: 0.88rem;
  border-radius: 0.3rem;
  background: #6c4cf5;
}

.benefit-builder-icon i:nth-child(1) {
  left: 0.2rem;
  top: 0.38rem;
}

.benefit-builder-icon i:nth-child(2) {
  right: 0.2rem;
  top: 0.38rem;
  background: #f3d76b;
}

.benefit-builder-icon i:nth-child(3) {
  left: 0.78rem;
  bottom: 0.4rem;
  background: #8e7cff;
}

.benefit-builder-icon b {
  position: absolute;
  right: 0.18rem;
  bottom: 0.2rem;
  width: 0.38rem;
  height: 1.8rem;
  border-radius: 999px;
  background: var(--brand-navy);
  transform: rotate(34deg);
}

.benefit-builder-icon em {
  position: absolute;
  left: 1.24rem;
  top: 1.02rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: white;
}

.benefit-live-icon i {
  position: absolute;
  inset: 0.72rem;
  border-radius: 50%;
  background: #f3d76b;
  animation: benefitBuzzerPulse 2.3s ease-in-out infinite;
}

.benefit-live-icon b {
  position: absolute;
  right: 0.05rem;
  bottom: 0.15rem;
  width: 1rem;
  height: 1.45rem;
  background: #6c4cf5;
  clip-path: polygon(46% 0, 100% 0, 63% 42%, 100% 42%, 28% 100%, 43% 56%, 0 56%);
}

.benefit-live-icon em,
.benefit-live-icon span {
  position: absolute;
  border-radius: 50%;
  background: #7aa8ff;
}

.benefit-live-icon em {
  left: 0.15rem;
  top: 0.4rem;
  width: 0.55rem;
  height: 0.55rem;
}

.benefit-live-icon span {
  right: 0.42rem;
  top: 0.12rem;
  width: 0.48rem;
  height: 0.48rem;
}

.benefit-host-icon i {
  position: absolute;
  inset: 0.3rem;
  border-radius: 0.45rem;
  background: linear-gradient(135deg, #111b44, #6c4cf5);
}

.benefit-host-icon b,
.benefit-host-icon em,
.benefit-host-icon span {
  position: absolute;
  left: 0.82rem;
  right: 0.82rem;
  height: 0.22rem;
  border-radius: 999px;
  background: white;
}

.benefit-host-icon b {
  top: 0.92rem;
}

.benefit-host-icon em {
  top: 1.38rem;
  left: 0.62rem;
  right: 1.02rem;
}

.benefit-host-icon span {
  top: 1.84rem;
  left: 1.02rem;
  right: 0.62rem;
  background: #f3d76b;
}

.why-benefit-cta {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.why-benefit-cta p {
  margin: 0;
  color: #526078;
  font-size: 0.98rem;
  font-weight: 820;
}

.landing-v2 .samples-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(142, 124, 255, 0.16), transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(122, 168, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #f6f2ff 100%);
}

.sample-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) 340px;
  gap: 1.35rem;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.sample-feature-card {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(330px, 1fr);
  gap: 1.45rem;
  min-height: 520px;
  height: auto;
  padding: clamp(1.55rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(108, 76, 245, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 94% 8%, rgba(246, 221, 231, 0.72), transparent 25%),
    linear-gradient(145deg, #ffffff 0%, #f7f3ff 56%, #fff8fb 100%);
  box-shadow: 0 28px 76px rgba(17, 27, 68, 0.14);
  animation: sampleFeatureIn 220ms ease both;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sample-feature-card:hover,
.sample-feature-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 34px 88px rgba(17, 27, 68, 0.18);
}

.sample-feature-accent {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 1.55rem;
  width: 7rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #6c4cf5 0%, #7aa8ff 100%);
  box-shadow: 0 10px 20px rgba(108, 76, 245, 0.18);
}

.sample-feature-blob {
  position: absolute;
  right: -2.4rem;
  top: -2.2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 44% 56% 48% 52%;
  background: rgba(122, 168, 255, 0.34);
  transform: rotate(11deg);
}

.sample-feature-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto minmax(4.7rem, auto) minmax(3.4rem, auto) auto;
  align-items: flex-start;
  align-content: start;
  gap: 0.76rem;
  min-width: 0;
  padding-top: 2.1rem;
}

.sample-feature-badge,
.sample-picker-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1.05rem;
  background: linear-gradient(135deg, #ffffff, #f3eeff);
  box-shadow: 0 14px 28px rgba(108, 76, 245, 0.14), inset 0 0 0 1px rgba(108, 76, 245, 0.12);
}

.sample-kicker {
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: #f3eeff;
  color: #6c4cf5;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-feature-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  color: #111b44;
  font-size: clamp(1.95rem, 3.1vw, 2.75rem);
  line-height: 1;
}

.sample-feature-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
  color: #526078;
  font-size: 1.04rem;
  font-weight: 780;
  line-height: 1.5;
}

.sample-feature-actions {
  display: flex;
  flex-wrap: wrap;
  align-self: end;
  gap: 0.7rem;
  margin-top: 0.3rem;
  padding-bottom: 0.15rem;
}

.sample-feature-actions .primary,
.sample-feature-actions .secondary {
  padding: 0.85rem 1.15rem;
}

.sample-feature-card .tag-row small {
  background: rgba(108, 76, 245, 0.1);
  color: #4d36c8;
}

.sample-feature-card .tag-row {
  overflow: hidden;
  max-height: 4.1rem;
  align-content: start;
}

.sample-board-preview {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: stretch;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.75rem;
  width: 100%;
  height: 380px;
  min-height: 380px;
  padding: 1rem;
  border-radius: 26px;
  background: linear-gradient(145deg, #111b44 0%, #24165f 54%, #6c4cf5 130%);
  box-shadow: 0 26px 50px rgba(17, 27, 68, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.sample-board-title {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  min-width: 0;
  color: white;
}

.sample-board-title span {
  color: #d8d0ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sample-board-title strong {
  overflow: hidden;
  min-width: 0;
  max-width: 60%;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
  font-size: 1rem;
}

.sample-mini-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 0.48rem;
  min-height: 0;
}

.sample-mini-board div {
  display: grid;
  grid-template-rows: 44px repeat(3, 52px);
  gap: 0.48rem;
  min-width: 0;
}

.sample-mini-board span,
.sample-mini-board b {
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
  border-radius: 14px;
  text-align: center;
}

.sample-mini-board span {
  overflow: hidden;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.05;
  text-overflow: ellipsis;
}

.sample-mini-board b {
  background: rgba(255, 255, 255, 0.92);
  color: #111b44;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.sample-mini-board b.selected {
  background: linear-gradient(135deg, #6c4cf5, #8e7cff);
  color: white;
  box-shadow: 0 0 0 3px rgba(243, 215, 107, 0.55), 0 14px 34px rgba(108, 76, 245, 0.5);
  animation: sampleSelectedPulse 1.7s ease-in-out infinite;
}

.sample-preview-footer {
  display: grid;
  place-items: center;
  align-items: center;
  padding: 0.72rem 0.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 900;
}

.sample-picker-list {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  gap: 0.7rem;
  min-height: 0;
}

.sample-picker-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 68px;
  padding: 0.95rem;
  border: 1px solid rgba(108, 76, 245, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  color: #111b44;
  text-align: left;
  box-shadow: 0 16px 34px rgba(17, 27, 68, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.sample-picker-card::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 44% 56% 48% 52%;
  background: rgba(108, 76, 245, 0.08);
  transform: rotate(12deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.sample-picker-card:hover,
.sample-picker-card:focus-visible,
.sample-picker-card.active {
  transform: translateY(-2px);
  border-color: rgba(108, 76, 245, 0.32);
  background: #ffffff;
  box-shadow: 0 22px 45px rgba(17, 27, 68, 0.13);
}

.sample-picker-card:hover::before,
.sample-picker-card:focus-visible::before,
.sample-picker-card.active::before {
  opacity: 0.95;
  transform: rotate(18deg) scale(1.08);
}

.sample-picker-card strong,
.sample-picker-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.sample-picker-card strong {
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1rem;
  font-weight: 950;
}

.sample-picker-card small {
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.22rem;
  color: #68738a;
  font-size: 0.82rem;
  font-weight: 820;
}

.sample-icon {
  position: relative;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}

.sample-icon i,
.sample-icon b,
.sample-icon em {
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.sample-icon-science i {
  inset: 0.2rem;
  border: 2px solid #6c4cf5;
  border-radius: 50%;
}

.sample-icon-science b {
  left: 0.78rem;
  top: -0.05rem;
  width: 0.26rem;
  height: 1.9rem;
  border-radius: 999px;
  background: #7aa8ff;
  transform: rotate(28deg);
}

.sample-icon-science em {
  right: 0.12rem;
  top: 0.18rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #f3d76b;
}

.sample-icon-family i {
  left: 0.3rem;
  top: 0.62rem;
  width: 1.2rem;
  height: 0.95rem;
  border: 2px solid #6c4cf5;
  border-top: 0;
  border-radius: 0 0 0.28rem 0.28rem;
}

.sample-icon-family b {
  left: 0.25rem;
  top: 0.2rem;
  width: 1.28rem;
  height: 1.28rem;
  border-left: 2px solid #7aa8ff;
  border-top: 2px solid #7aa8ff;
  transform: rotate(45deg);
}

.sample-icon-family em {
  right: 0.18rem;
  top: 0.18rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #f6dde7;
}

.sample-icon-office i {
  left: 0.28rem;
  top: 0.46rem;
  width: 1.24rem;
  height: 0.95rem;
  border: 2px solid #6c4cf5;
  border-radius: 0.28rem;
}

.sample-icon-office b {
  left: 0.72rem;
  top: 0.2rem;
  width: 0.38rem;
  height: 0.38rem;
  border: 2px solid #7aa8ff;
  border-bottom: 0;
  border-radius: 0.24rem 0.24rem 0 0;
}

.sample-icon-office em {
  left: 0.78rem;
  top: 0.78rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #f3d76b;
}

.sample-icon-party i {
  left: 0.32rem;
  bottom: 0.18rem;
  width: 0;
  height: 0;
  border-left: 0.48rem solid transparent;
  border-right: 0.48rem solid transparent;
  border-top: 1.15rem solid #6c4cf5;
  transform: rotate(-16deg);
}

.sample-icon-party b,
.sample-icon-party em {
  border-radius: 50%;
  background: #f3d76b;
}

.sample-icon-party b {
  right: 0.22rem;
  top: 0.2rem;
  width: 0.42rem;
  height: 0.42rem;
}

.sample-icon-party em {
  right: 0.72rem;
  top: 0.58rem;
  width: 0.26rem;
  height: 0.26rem;
  background: #7aa8ff;
}

.sample-icon-bible i {
  left: 0.32rem;
  top: 0.22rem;
  width: 1.08rem;
  height: 1.35rem;
  border: 2px solid #6c4cf5;
  border-radius: 0.2rem;
}

.sample-icon-bible b {
  left: 0.8rem;
  top: 0.48rem;
  width: 0.16rem;
  height: 0.72rem;
  background: #7aa8ff;
}

.sample-icon-bible em {
  left: 0.54rem;
  top: 0.78rem;
  width: 0.7rem;
  height: 0.16rem;
  background: #7aa8ff;
}

.sample-icon-hire i {
  left: 0.22rem;
  top: 0.28rem;
  width: 1.18rem;
  height: 1.28rem;
  border: 2px solid #6c4cf5;
  border-radius: 0.26rem;
}

.sample-icon-hire b,
.sample-icon-hire em {
  left: 0.52rem;
  width: 0.82rem;
  height: 0.16rem;
  border-radius: 999px;
  background: #7aa8ff;
}

.sample-icon-hire b {
  top: 0.68rem;
}

.sample-icon-hire em {
  top: 1.04rem;
  background: #f3d76b;
}

.sample-theme-science .sample-feature-accent,
.sample-theme-science.sample-picker-card {
  --sample-accent: #6c4cf5;
}

.sample-theme-family .sample-feature-accent,
.sample-theme-family.sample-picker-card {
  --sample-accent: #8e7cff;
}

.sample-theme-office .sample-feature-accent,
.sample-theme-office.sample-picker-card {
  --sample-accent: #7aa8ff;
}

.sample-theme-party .sample-feature-accent,
.sample-theme-party.sample-picker-card {
  --sample-accent: #6c4cf5;
}

.sample-theme-bible .sample-feature-accent,
.sample-theme-bible.sample-picker-card {
  --sample-accent: #b69cff;
}

.sample-theme-new-hire .sample-feature-accent,
.sample-theme-new-hire.sample-picker-card {
  --sample-accent: #6c4cf5;
}

.sample-picker-card.active .sample-picker-icon,
.sample-picker-card:hover .sample-picker-icon,
.sample-picker-card:focus-visible .sample-picker-icon {
  box-shadow: 0 16px 32px color-mix(in srgb, var(--sample-accent, #6c4cf5) 26%, transparent), inset 0 0 0 1px rgba(108, 76, 245, 0.16);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-row small {
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: rgba(108, 76, 245, 0.1);
  color: #4d36c8;
  font-size: 0.78rem;
  font-weight: 900;
}

@keyframes sampleSelectedPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes sampleFeatureIn {
  from {
    opacity: 0.86;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.host-player-section {
  background:
    radial-gradient(circle at 50% 46%, rgba(108, 76, 245, 0.16), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(122, 168, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #f7f2ff 0%, #fffdf8 100%);
}

.two-screen-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
  align-items: center;
}

.live-screen-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  min-height: 560px;
  padding: 1.2rem;
  border: 1px solid rgba(108, 76, 245, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 7%, rgba(246, 221, 231, 0.55), transparent 24%),
    linear-gradient(145deg, #ffffff 0%, #f6f2ff 62%, #fffdf8 100%);
  box-shadow: 0 28px 70px rgba(17, 27, 68, 0.13);
  animation: sectionCardRise 520ms ease both;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.host-panel-card {
  animation-delay: 90ms;
}

.live-screen-card:hover,
.live-screen-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 34px 86px rgba(17, 27, 68, 0.17);
}

.live-card-copy {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.live-card-copy > span {
  color: #6c4cf5;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-card-copy h3 {
  margin: 0;
  color: #111b44;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.live-card-copy p {
  max-width: 440px;
  margin: 0;
  color: #526078;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.45;
}

.live-view-icon {
  position: relative;
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  margin-bottom: 0.25rem;
  border-radius: 1.05rem;
  background: linear-gradient(135deg, #ffffff, #f3eeff);
  box-shadow: 0 16px 32px rgba(108, 76, 245, 0.14), inset 0 0 0 1px rgba(108, 76, 245, 0.12);
}

.live-view-icon i,
.live-view-icon b,
.live-view-icon em {
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.player-icon i {
  inset: 0.72rem 0.62rem 0.82rem;
  border: 2px solid #6c4cf5;
  border-radius: 0.35rem;
}

.player-icon b {
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.58rem;
  height: 0.18rem;
  border-radius: 999px;
  background: #7aa8ff;
}

.player-icon em {
  right: 0.72rem;
  top: 0.72rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #f3d76b;
}

.host-icon i {
  left: 0.8rem;
  top: 0.72rem;
  width: 0.16rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #6c4cf5;
  box-shadow: 0.78rem 0 #7aa8ff, 1.55rem 0 #6c4cf5;
}

.host-icon b,
.host-icon em {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #6c4cf5;
}

.host-icon b {
  left: 0.62rem;
  top: 1.05rem;
}

.host-icon em {
  right: 0.62rem;
  bottom: 0.82rem;
}

.player-display-mockup,
.host-panel-mockup {
  position: relative;
  display: grid;
  gap: 0.7rem;
  align-self: end;
  min-height: 330px;
  padding: 1rem;
  border-radius: 26px;
  box-shadow: 0 24px 52px rgba(17, 27, 68, 0.18);
}

.player-display-mockup {
  background: linear-gradient(135deg, #10182f, #26105f);
  color: white;
}

.mockup-topbar {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  color: #ffffff;
}

.mockup-topbar strong {
  overflow: hidden;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mockup-topbar span {
  flex: none;
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  background: rgba(243, 215, 107, 0.18);
  color: #f3d76b;
  font-size: 0.72rem;
  font-weight: 950;
}

.mock-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.mock-board-grid span,
.mock-board-grid b {
  display: grid;
  min-height: 2.35rem;
  place-items: center;
  border-radius: 12px;
  text-align: center;
  font-weight: 950;
}

.mock-board-grid span {
  background: rgba(255, 255, 255, 0.12);
  color: #d8d0ff;
  font-size: 0.72rem;
}

.mock-board-grid b {
  background: rgba(255, 255, 255, 0.92);
  color: #111b44;
}

.mock-board-grid b.active {
  background: linear-gradient(135deg, #6c4cf5, #8e7cff);
  color: white;
  box-shadow: 0 0 0 3px rgba(243, 215, 107, 0.48);
}

.mock-question-strip {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.mock-question-strip small {
  color: #f3d76b;
  font-weight: 950;
}

.mock-question-strip strong {
  font-size: 1rem;
  line-height: 1.2;
}

.mock-team-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.mock-team-row i {
  display: grid;
  min-height: 2.15rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.mock-team-row .buzzed {
  background: rgba(243, 215, 107, 0.95);
  color: #111b44;
  animation: liveControlPulse 1.8s ease-in-out infinite;
}

.mock-reveal-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  transform: rotate(-4deg);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  color: #6c4cf5;
  font-size: 0.88rem;
  font-weight: 1000;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.host-panel-mockup {
  background: linear-gradient(145deg, #ffffff, #f5f1ff);
  color: #111b44;
}

.host-private-badge {
  justify-self: end;
  width: fit-content;
  border-radius: 999px;
  padding: 0.36rem 0.62rem;
  background: #f3eeff;
  color: #6c4cf5;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.host-clue-card,
.host-answer-card {
  display: grid;
  gap: 0.22rem;
  padding: 0.78rem;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(108, 76, 245, 0.1);
}

.host-clue-card small,
.host-answer-card small {
  color: #6c4cf5;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.host-clue-card strong,
.host-answer-card strong {
  font-size: 1rem;
}

.host-clue-card p,
.host-answer-card p {
  margin: 0;
  color: #667187;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
}

.host-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.host-control-grid span {
  display: grid;
  min-height: 2.2rem;
  place-items: center;
  border-radius: 999px;
  background: #6c4cf5;
  color: white;
  font-size: 0.74rem;
  font-weight: 950;
}

.host-control-grid span:nth-child(3) {
  background: #f6dde7;
  color: #111b44;
}

.host-score-row {
  display: flex;
  gap: 0.45rem;
}

.host-score-row b {
  display: grid;
  min-width: 4.2rem;
  min-height: 2.1rem;
  place-items: center;
  border-radius: 999px;
  background: #f3d76b;
  color: #111b44;
}

.host-score-row b:last-child {
  background: #f3eeff;
  color: #6c4cf5;
}

.live-sync-connector {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.live-sync-connector::before,
.live-sync-connector::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.26rem;
  border-radius: 999px;
  background-image: linear-gradient(90deg, rgba(108, 76, 245, 0.14) 0 45%, transparent 45% 100%);
  background-size: 1rem 0.26rem;
}

.live-sync-connector::before {
  animation: syncPulseLine 2.4s linear infinite;
}

.live-sync-connector span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c4cf5, #8e7cff);
  color: white;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 1000;
  line-height: 1.05;
  box-shadow: 0 18px 44px rgba(108, 76, 245, 0.32);
}

.live-sync-connector i {
  position: absolute;
  top: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #f3d76b;
  box-shadow: 0 0 0 7px rgba(243, 215, 107, 0.18);
  animation: syncDotTravel 2.4s ease-in-out infinite;
}

.two-screen-cta {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  max-width: 720px;
  margin: 0.4rem auto 0;
  text-align: center;
}

.two-screen-cta p {
  margin: 0;
  color: #526078;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.5;
}

@keyframes liveControlPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: none;
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 0 0 5px rgba(243, 215, 107, 0.16);
  }
}

@keyframes syncPulseLine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1rem 0;
  }
}

@keyframes syncDotTravel {
  0%, 100% {
    left: 12%;
    opacity: 0.55;
  }
  50% {
    left: 82%;
    opacity: 1;
  }
}

.landing-v2 .pricing-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(207, 232, 255, 0.5), transparent 24%),
    linear-gradient(180deg, #fffdf7 0%, #f8f4ff 100%);
}

.landing-v2 .pricing-grid {
  max-width: 920px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-v2 .pricing-card {
  min-height: 500px;
  border-radius: 32px;
}

.landing-v2 .pricing-card.popular {
  transform: translateY(-0.35rem);
}

.landing-v2 .faq-section {
  background:
    radial-gradient(circle at 9% 0%, rgba(255, 216, 90, 0.14), transparent 22%),
    linear-gradient(180deg, #f8f4ff 0%, #fffdf7 100%);
}

.landing-v2 .faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  max-width: 880px;
}

.landing-v2 .faq-list details {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.landing-v2 .faq-list details[open] {
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.12);
  transform: translateY(-2px);
}

.landing-v2 .faq-list summary {
  position: relative;
  padding: 1.15rem 3.4rem 1.15rem 1.25rem;
  font-size: 1.05rem;
}

.landing-v2 .faq-list summary::after {
  content: "+";
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: #eee7ff;
  color: #6d3df5;
  font-size: 1.3rem;
}

.landing-v2 .faq-list details[open] summary::after {
  content: "-";
}

.landing-v2 .faq-list p {
  padding: 0 1.25rem 1.2rem;
}

.smooth-final-cta {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 3rem;
  overflow: hidden;
  border-radius: 40px;
  padding: 4.25rem clamp(1.2rem, 4vw, 3rem);
}

.smooth-final-cta::before,
.smooth-final-cta::after {
  content: "";
  position: absolute;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  animation: floatTile 4.5s ease-in-out infinite;
}

.smooth-final-cta::before {
  top: 1.1rem;
  right: 8%;
  width: 4rem;
  height: 3rem;
  transform: rotate(8deg);
}

.smooth-final-cta::after {
  bottom: 1.4rem;
  left: 9%;
  width: 3rem;
  height: 3rem;
  animation-delay: 800ms;
  transform: rotate(-10deg);
}

.smooth-final-cta .actions {
  position: relative;
  z-index: 1;
  justify-content: center;
}

.landing-v2 .smooth-final-cta h2,
.landing-v2 .smooth-final-cta p {
  position: relative;
  z-index: 1;
  color: white;
}

.landing-v2 .smooth-final-cta .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--brand-yellow);
}

.smooth-final-cta .secondary {
  background: rgba(255, 255, 255, 0.96);
}

@keyframes cardFloatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 12px 24px rgba(109, 61, 245, 0.18), 0 0 0 0 rgba(255, 216, 90, 0.26);
  }
  50% {
    box-shadow: 0 16px 30px rgba(109, 61, 245, 0.2), 0 0 0 8px rgba(255, 216, 90, 0);
  }
}

@keyframes floatTile {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes flowCardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes flowBuzzerPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 216, 90, 0.34);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 216, 90, 0);
    transform: scale(1.04);
  }
}

@keyframes flowTilePulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
  }
}

@keyframes flowCorrectPop {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  48% {
    transform: translateY(-3px) rotate(-2deg) scale(1.06);
  }
}

@keyframes useCaseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whyHeroIn {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes whySupportIn {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes benefitBuzzerPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 216, 90, 0.38), 0 12px 24px rgba(23, 32, 51, 0.12);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(255, 216, 90, 0), 0 16px 32px rgba(23, 32, 51, 0.14);
    transform: scale(1.04);
  }
}

@keyframes benefitCorrectBounce {
  0%, 100% {
    transform: translateY(0) rotate(-4deg) scale(1);
  }
  48% {
    transform: translateY(-4px) rotate(-2deg) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-card,
  .flow-card,
  .use-case-card,
  .why-hero-card,
  .why-support-card,
  .collage-buzzer,
  .collage-correct,
  .benefit-live-icon i,
  .live-buzzer-icon i,
  .reveal-badge-icon b,
  .mini-live-board .selected,
  .mini-team-buttons .buzzing,
  .mini-correct-sticker,
  .motion-icon.buzz,
  .motion-icon.buzzer,
  .motion-icon.bolt,
  .sample-feature-card,
  .mock-team-row .buzzed,
  .live-sync-connector::before,
  .live-sync-connector i,
  .smooth-final-cta::before,
  .smooth-final-cta::after {
    animation: none;
  }

  .motion-card,
  .motion-card:hover,
  .motion-card:focus-within,
  .flow-card,
  .flow-card:hover,
  .flow-card:focus-within,
  .use-case-card,
  .use-case-card:hover,
  .use-case-card:focus-within,
  .why-support-card,
  .why-support-card:hover,
  .why-support-card:focus-within,
  .sample-feature-card:hover,
  .sample-feature-card:focus-within,
  .live-screen-card:hover,
  .live-screen-card:focus-within,
  .sample-picker-card:hover,
  .sample-picker-card:focus-visible,
  .sample-card:hover,
  .sample-card:focus-within {
    transform: none;
  }
}

@media (max-width: 980px) {
  .landing-v2 .marketing-section {
    padding-block: 4rem;
  }

  .step-timeline,
  .hot-seat-flow,
  .audience-grid,
  .use-case-grid,
  .two-screen-showcase,
  .screen-pair,
  .landing-v2 .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step-timeline::before,
  .hot-seat-flow::before,
  .screen-pair::before {
    display: none;
  }

  .flow-card,
  .flow-card:nth-child(2),
  .flow-card:nth-child(3) {
    margin-top: 0;
  }

  .love-section {
    grid-template-columns: 1fr;
  }

  .why-benefit-layout {
    grid-template-columns: 1fr;
  }

  .love-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .love-copy .primary {
    justify-self: center;
  }

  .love-grid {
    max-width: 920px;
    margin-inline: auto;
  }

  .why-hero-card {
    min-height: auto;
  }

  .why-support-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-support-card {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .sample-showcase {
    grid-template-columns: 1fr;
  }

  .sample-picker-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(68px, 1fr));
  }

  .two-screen-showcase {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .live-sync-connector {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
  }

  .live-sync-connector::before,
  .live-sync-connector::after {
    width: 100%;
  }

  .live-sync-connector span {
    width: auto;
    height: auto;
    min-height: 3rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
  }

  .live-sync-connector i {
    display: none;
  }
}

@media (max-width: 700px) {
  .landing-v2 .marketing-section {
    padding: 3.3rem 1rem;
  }

  .landing-v2 .smooth-heading {
    justify-items: start;
    text-align: left;
  }

  .landing-v2 .smooth-heading h2,
  .landing-v2 .love-copy h2,
  .landing-v2 .smooth-final-cta h2 {
    font-size: 2.2rem;
  }

  .step-timeline,
  .hot-seat-flow,
  .audience-grid,
  .use-case-grid,
  .love-grid,
  .why-benefit-layout,
  .why-support-stack,
  .sample-showcase,
  .sample-feature-card,
  .sample-picker-list,
  .two-screen-showcase,
  .screen-pair,
  .landing-v2 .pricing-grid {
    grid-template-columns: 1fr;
  }

  .motion-card,
  .flow-card,
  .use-case-card,
  .why-hero-card,
  .why-support-card,
  .live-screen-card,
  .sample-card,
  .sample-feature-card {
    min-height: auto;
  }

  .live-screen-card {
    padding: 1rem;
    border-radius: 26px;
  }

  .player-display-mockup,
  .host-panel-mockup {
    min-height: auto;
    padding: 0.8rem;
    border-radius: 20px;
  }

  .mock-team-row,
  .host-control-grid {
    grid-template-columns: 1fr;
  }

  .mock-reveal-badge {
    position: static;
    justify-self: start;
    transform: none;
  }

  .sample-feature-card {
    overflow: hidden;
    height: auto;
    min-height: auto;
    padding: 1.15rem;
    border-radius: 26px;
  }

  .sample-board-preview {
    width: 100%;
    height: min(330px, 82vw);
    min-height: 0;
    padding: 0.75rem;
  }

  .sample-feature-copy {
    grid-template-rows: auto auto auto auto auto auto;
    gap: 0.7rem;
    padding-top: 2rem;
  }

  .sample-feature-actions {
    align-self: start;
  }

  .sample-picker-list {
    grid-template-rows: repeat(6, minmax(68px, auto));
  }

  .sample-mini-board {
    gap: 0.35rem;
  }

  .sample-mini-board div {
    grid-template-rows: 40px repeat(3, 46px);
    gap: 0.35rem;
  }

  .sample-mini-board span,
  .sample-mini-board b {
    font-size: 0.72rem;
  }

  .why-game-collage,
  .benefit-collage {
    min-height: 205px;
  }

  .why-support-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .use-case-card {
    transform: none !important;
  }

  .smooth-final-cta {
    margin-inline: 1rem;
    border-radius: 28px;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes activeTileGlow {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.24), 0 0 24px rgba(139, 92, 246, 0.48);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 216, 90, 0.2), 0 0 34px rgba(139, 92, 246, 0.68);
  }
}

.landing {
  padding: clamp(1rem, 3vw, 2rem);
}

.landing.landing-v2 {
  padding: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  min-height: min(780px, 92vh);
  max-width: 1280px;
  margin: 0 auto;
}

.hero-copy p {
  max-width: 760px;
  color: #4d5668;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.45;
}

.hero-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 1rem;
  border: 4px solid rgba(255, 253, 247, 0.85);
  border-radius: 24px;
  background: var(--brand-green);
  box-shadow: var(--brand-shadow);
  transform: rotate(1deg);
}

.mini-column {
  display: grid;
  gap: 0.7rem;
}

.mini-column strong,
.mini-column span {
  display: grid;
  min-height: 4rem;
  place-items: center;
  border-radius: 14px;
  text-align: center;
  font-weight: 1000;
}

.mini-column strong {
  background: var(--brand-cream-2);
  color: var(--brand-green);
}

.mini-column span {
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-size: 1.8rem;
}

.info-band,
.landing-grid {
  max-width: 1280px;
  margin: 1.5rem auto 0;
  display: grid;
  gap: 1rem;
}

.info-band {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
  align-items: center;
  padding: 2rem;
  border-radius: 20px;
  background: var(--brand-cream-2);
  box-shadow: var(--brand-soft-shadow);
}

.promise {
  padding: 1.5rem;
  border-radius: 18px;
  background: #fff1d7;
  color: var(--brand-navy);
  font-size: 1.35rem;
  font-weight: 1000;
}

.landing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.landing-grid > div {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.check-list,
.steps {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--brand-navy);
  font-weight: 750;
}

.setup,
.game-shell,
.clue-view,
.answer-view,
.risk-view,
.final-view,
.results-view {
  padding: clamp(0.9rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 8% 8%, rgba(139, 92, 246, 0.14), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(201, 243, 223, 0.42), transparent 28%),
    linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-cream-2) 58%, #f4efff 100%);
}

.game-shell {
  padding: 0.9rem clamp(0.8rem, 1.8vw, 1.5rem);
}

.setup-header,
.game-topbar,
.clue-view > header,
.final-view > header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  max-width: 1480px;
  margin: 0 auto 1rem;
}

.setup-header h1,
.game-topbar h1,
.clue-view h1,
.final-view h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
}

.setup-panel,
.team-editor,
.board-editor {
  max-width: 1480px;
  margin: 0 auto 1rem;
}

.setup-panel,
.board-editor {
  padding: 1rem;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: var(--brand-soft-shadow);
}

.form-grid,
.clue-editor {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.wide {
  grid-column: span 2;
}

.toggle-row,
.team-editor {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.toggle-row label,
.check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-row input,
.check input {
  width: auto;
}

.team-editor label {
  grid-template-columns: auto minmax(170px, 1fr);
  align-items: center;
  min-width: 220px;
  padding: 0.6rem;
  border-radius: 999px;
  background: var(--brand-cream-2);
  border: 2px solid rgba(23, 32, 51, 0.08);
  box-shadow: var(--brand-soft-shadow);
}

.team-editor span {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--team);
  color: white;
}

.board-editor {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1rem;
}

.setup-wizard {
  min-height: 100vh;
  padding: clamp(1rem, 2.5vw, 2rem);
}

.wizard-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto 1rem;
}

.wizard-header h1 {
  margin: 0.1rem 0 0.25rem;
  color: #111b44;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.wizard-header p {
  margin: 0;
  color: #5e6a80;
  font-weight: 760;
}

.wizard-shell {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  border: 1px solid rgba(108, 76, 245, 0.12);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 28px 76px rgba(17, 27, 68, 0.12);
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 1280px;
  margin: 0 auto;
}

.wizard-progress {
  display: grid;
  gap: 0.45rem;
}

.wizard-progress span,
.wizard-ready-count {
  color: #6c4cf5;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wizard-progress div {
  overflow: hidden;
  height: 0.6rem;
  border-radius: 999px;
  background: #eee7ff;
}

.wizard-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6c4cf5, #7aa8ff);
  transition: width 180ms ease;
}

.wizard-step-heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.wizard-step-heading h2 {
  margin: 0;
  color: #111b44;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
}

.wizard-info {
  position: relative;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: #f3eeff;
  color: #6c4cf5;
  font-weight: 1000;
}

.wizard-info span {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.5rem);
  z-index: 5;
  width: min(320px, 80vw);
  padding: 0.8rem;
  border-radius: 18px;
  background: #111b44;
  color: white;
  box-shadow: 0 18px 40px rgba(17, 27, 68, 0.22);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.25rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.wizard-info:hover span,
.wizard-info:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.wizard-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 8%, rgba(122, 168, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #ffffff, #f8f4ff);
}

.wizard-helper {
  max-width: 720px;
  margin: 0;
  color: #526078;
  font-size: 1.02rem;
  font-weight: 780;
  line-height: 1.5;
}

.wizard-form-grid,
.wizard-category-grid,
.question-selector-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.single-field-grid {
  grid-template-columns: minmax(0, 1fr);
}

.wizard-card label {
  display: grid;
  gap: 0.4rem;
  color: #111b44;
  font-weight: 900;
}

.wizard-card input,
.wizard-card textarea,
.wizard-card select {
  min-height: 3.15rem;
  border: 2px solid rgba(108, 76, 245, 0.12);
  border-radius: 18px;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  color: #111b44;
  font: inherit;
}

.wizard-card label.duplicate-name input {
  border-color: rgba(245, 158, 11, 0.72);
  background: #fffaf0;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.duplicate-warning {
  color: #8a4f00;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.25;
}

.wizard-team-fields .duplicate-warning {
  grid-column: 2;
  margin: -0.15rem 0 0.1rem;
}

.wizard-card textarea {
  min-height: 7rem;
  resize: vertical;
}

.wizard-card label span {
  color: #68738a;
  font-size: 0.84rem;
  font-weight: 760;
}

.use-case-picker,
.team-count-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.use-case-picker button,
.team-count-picker button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  background: white;
  color: #111b44;
  box-shadow: 0 10px 22px rgba(17, 27, 68, 0.08);
  font-weight: 950;
}

.team-count-picker button span {
  border-radius: 999px;
  padding: 0.18rem 0.42rem;
  background: #f3eeff;
  color: #6c4cf5;
  font-size: 0.68rem;
  font-weight: 1000;
}

.team-count-picker button:disabled {
  cursor: not-allowed;
  opacity: 0.74;
  box-shadow: none;
}

.use-case-picker button.selected,
.team-count-picker button.selected {
  background: linear-gradient(135deg, #6c4cf5, #8e7cff);
  color: white;
}

.plan-limit-note {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(108, 76, 245, 0.14);
  border-radius: 18px;
  background: #f8f4ff;
  color: #526078;
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.4;
}

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

.custom-game-field {
  padding: 0.85rem;
  border: 1px solid rgba(108, 76, 245, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 96% 10%, rgba(122, 168, 255, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 238, 255, 0.82));
  box-shadow: 0 14px 32px rgba(17, 27, 68, 0.08);
}

.custom-field-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.custom-info {
  position: relative;
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border-radius: 50%;
  background: #eee7ff;
  color: #6c4cf5;
  font-size: 0.78rem;
  font-weight: 1000;
  box-shadow: 0 8px 18px rgba(108, 76, 245, 0.12);
}

.custom-info span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  z-index: 6;
  width: min(285px, 72vw);
  padding: 0.75rem 0.8rem;
  border-radius: 16px;
  background: #111b44;
  color: white;
  box-shadow: 0 18px 38px rgba(17, 27, 68, 0.22);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, 0.25rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.custom-info:hover span,
.custom-info:focus-visible span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.wizard-team-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.wizard-team-fields label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding: 0.65rem;
  border-radius: 999px;
  background: white;
  box-shadow: 0 12px 28px rgba(17, 27, 68, 0.08);
}

.wizard-team-fields span {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 58%, transparent 59%),
    var(--team);
  border: 2px solid color-mix(in srgb, var(--team) 74%, #ffffff);
  color: #111b44;
  font-size: 1rem;
  font-weight: 1000;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(17, 27, 68, 0.12);
}

.team-preview-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.team-preview-strip span {
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: white;
  color: #111b44;
  box-shadow: 0 10px 22px rgba(17, 27, 68, 0.08);
  font-weight: 900;
}

.team-preview-strip b {
  color: var(--team);
}

.setup-board-preview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.8rem;
  border-radius: 24px;
  background: linear-gradient(145deg, #111b44, #26105f);
}

.setup-board-preview div {
  display: grid;
  gap: 0.45rem;
}

.setup-board-preview strong,
.setup-board-preview button {
  display: grid;
  min-height: 2.65rem;
  place-items: center;
  border-radius: 13px;
  text-align: center;
}

.setup-board-preview strong {
  padding: 0.3rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 0.78rem;
}

.setup-board-preview button {
  background: rgba(255, 255, 255, 0.9);
  color: #111b44;
  font-weight: 1000;
}

.setup-board-preview button.filled {
  background: #eee7ff;
  color: #6c4cf5;
}

.setup-board-preview button.selected {
  background: linear-gradient(135deg, #6c4cf5, #8e7cff);
  color: white;
  box-shadow: 0 0 0 3px rgba(122, 168, 255, 0.38);
}

.setup-live-preview {
  min-width: 0;
}

.preview-sticky {
  position: sticky;
  top: 1rem;
}

.preview-panel {
  display: grid;
  gap: 1rem;
  min-height: 660px;
  padding: clamp(1rem, 2.2vw, 1.45rem);
  border: 1px solid rgba(108, 76, 245, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 6%, rgba(122, 168, 255, 0.22), transparent 25%),
    radial-gradient(circle at 4% 92%, rgba(246, 221, 231, 0.45), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(243, 238, 255, 0.9));
  box-shadow: 0 30px 80px rgba(17, 27, 68, 0.14);
  overflow: hidden;
}

.preview-kicker,
.preview-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.preview-kicker span,
.preview-kicker b,
.preview-status-row span {
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 950;
}

.preview-kicker span,
.preview-status-row span {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-kicker span {
  background: linear-gradient(135deg, #6c4cf5, #7aa8ff);
  color: white;
  box-shadow: 0 12px 24px rgba(108, 76, 245, 0.22);
}

.preview-kicker b,
.preview-status-row span {
  background: rgba(255, 255, 255, 0.75);
  color: #4d36c8;
}

.preview-kicker b {
  max-width: min(260px, 58vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0;
  text-transform: none;
}

.preview-panel h2 {
  margin: 0;
  color: #111b44;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.preview-team-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.preview-team-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: white;
  color: #111b44;
  box-shadow: 0 10px 24px rgba(17, 27, 68, 0.08);
  font-weight: 900;
}

.preview-team-pills b {
  color: var(--team);
}

.preview-game-frame {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 365px;
  padding: 0.8rem;
  border-radius: 28px;
  background: linear-gradient(145deg, #111b44, #1d0f50 58%, #32117b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 24px 52px rgba(17, 27, 68, 0.18);
}

.preview-board-title {
  display: grid;
  min-height: 3.2rem;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 1000;
  text-align: center;
  padding: 0.4rem 0.8rem;
}

.preview-game-frame .setup-board-preview {
  min-height: 285px;
  padding: 0;
  background: transparent;
}

.preview-game-frame .setup-board-preview strong,
.preview-game-frame .setup-board-preview button {
  min-height: 2.7rem;
}

.preview-question-screen {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-height: 340px;
  padding: 1rem;
  color: white;
  text-align: center;
}

.preview-question-screen > span {
  justify-self: center;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.14);
  color: #eee7ff;
  font-weight: 950;
}

.preview-question-screen > strong {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.12;
}

.preview-answer-card {
  display: grid;
  gap: 0.35rem;
  justify-self: center;
  width: min(100%, 360px);
  padding: 0.95rem;
  border-radius: 22px;
  background: white;
  color: #111b44;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.preview-answer-card small {
  color: #6c4cf5;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-answer-card b {
  font-size: 1.2rem;
}

.preview-callouts {
  display: grid;
  gap: 0.55rem;
}

.preview-callouts span {
  position: relative;
  padding: 0.65rem 0.75rem 0.65rem 2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #526078;
  font-weight: 840;
  line-height: 1.35;
}

.preview-callouts span::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c4cf5, #7aa8ff);
  transform: translateY(-50%);
}

.question-progress-row,
.question-nav-row,
.wizard-actions,
.review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.question-progress-row span {
  color: #68738a;
  font-weight: 800;
}

.question-step-context {
  margin: -0.35rem 0 0;
  color: #5e6a80;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.45;
}

.setup-dropdown {
  position: relative;
  display: grid;
  gap: 0.4rem;
}

.setup-dropdown-label {
  color: #111b44;
  font-weight: 900;
}

.setup-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.15rem;
  width: 100%;
  border: 2px solid rgba(108, 76, 245, 0.14);
  border-radius: 18px;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  color: #111b44;
  box-shadow: 0 10px 24px rgba(17, 27, 68, 0.06);
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.setup-dropdown-trigger:hover,
.setup-dropdown-trigger:focus-visible {
  border-color: rgba(108, 76, 245, 0.55);
  box-shadow: 0 0 0 4px rgba(108, 76, 245, 0.12), 0 12px 26px rgba(17, 27, 68, 0.08);
}

.setup-dropdown-trigger b {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  background: #eee7ff;
  color: #6c4cf5;
  font-size: 1.1rem;
  line-height: 1;
}

.setup-dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 20;
  display: grid;
  gap: 0.25rem;
  max-height: 260px;
  overflow: auto;
  padding: 0.45rem;
  border: 1px solid rgba(108, 76, 245, 0.18);
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 24px 54px rgba(17, 27, 68, 0.18);
}

.setup-dropdown-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 14px;
  padding: 0.72rem 0.8rem;
  background: transparent;
  color: #111b44;
  font-weight: 900;
  text-align: left;
}

.setup-dropdown-menu button:hover,
.setup-dropdown-menu button:focus-visible {
  background: #f3eeff;
  color: #4d36c8;
}

.setup-dropdown-menu button.selected {
  background: linear-gradient(135deg, rgba(108, 76, 245, 0.14), rgba(122, 168, 255, 0.16));
  color: #4d36c8;
}

.setup-dropdown-menu button b {
  color: #6c4cf5;
}

.single-question-editor {
  display: grid;
  gap: 0.9rem;
}

.compact-final-editor {
  display: grid;
  gap: 0.75rem;
}

.review-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.review-summary-grid article {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 24px rgba(17, 27, 68, 0.08);
}

.review-summary-grid span {
  color: #68738a;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-summary-grid strong {
  color: #111b44;
}

.friendly-warning,
.friendly-success {
  border-radius: 20px;
  padding: 0.9rem;
  font-weight: 850;
}

.friendly-warning {
  background: #fff8df;
  color: #6f5b08;
}

.friendly-success {
  background: #eee7ff;
  color: #4d36c8;
}

.wizard-actions {
  padding-top: 0.25rem;
}

@media (max-width: 820px) {
  .wizard-header {
    grid-template-columns: 1fr;
  }

  .wizard-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .preview-sticky {
    position: static;
  }

  .preview-panel {
    min-height: 0;
  }

  .wizard-header .ghost,
  .wizard-header .secondary {
    justify-self: start;
  }

  .wizard-form-grid,
  .wizard-category-grid,
  .question-selector-row,
  .wizard-team-fields,
  .review-summary-grid {
    grid-template-columns: 1fr;
  }

  .setup-board-preview {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(110px, 1fr));
  }
}

@media (max-width: 560px) {
  .setup-wizard {
    padding: 0.75rem;
  }

  .wizard-shell,
  .wizard-card {
    border-radius: 24px;
  }

  .wizard-actions .primary,
  .wizard-actions .secondary,
  .question-nav-row button,
  .review-actions button {
    width: 100%;
  }
}

.board-editor aside {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.board-editor aside button,
.clue-tabs button {
  padding: 0.9rem;
  border-radius: 18px;
  background: #fff1d7;
  color: var(--brand-navy);
  font-weight: 900;
  text-align: left;
}

.board-editor .selected,
.clue-tabs .selected {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  box-shadow: 0 10px 24px rgba(109, 61, 245, 0.22);
}

.editor-main {
  display: grid;
  gap: 1rem;
}

.clue-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}

.clue-tabs button {
  text-align: center;
}

.final-editor {
  padding-top: 1rem;
  border-top: 2px solid #e2e8f0;
}

.game-topbar {
  max-width: none;
  margin-bottom: 0.7rem;
}

.game-topbar h1 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.scoreboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.score-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.8rem;
  padding: 0.75rem;
  border-radius: 24px;
  background: var(--brand-cream-2);
  border: 3px solid transparent;
  box-shadow: var(--brand-soft-shadow);
  color: var(--brand-navy);
}

.score-card.active {
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.18), var(--brand-soft-shadow);
}

.score-card.score-up {
  animation: scorePop 720ms ease both;
}

.score-card.score-down {
  animation: scoreDip 720ms ease both;
}

.score-card span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  font-weight: 1000;
}

.score-card b {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.control-strip {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: var(--brand-cream-2);
  box-shadow: var(--brand-soft-shadow);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 850;
}

.game-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 0.65rem;
  height: calc(100vh - 285px);
  min-height: 350px;
  padding: 0.8rem;
  border: 10px solid rgba(255, 253, 247, 0.85);
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 227, 138, 0.08), transparent 25%),
    linear-gradient(135deg, var(--brand-green-2), var(--brand-green));
  box-shadow: var(--brand-shadow);
}

.category-column {
  display: grid;
  grid-template-rows: minmax(58px, 0.9fr) repeat(5, 1fr);
  gap: 0.65rem;
  min-height: 0;
}

.category-column h2,
.point-tile {
  display: grid;
  place-items: center;
  min-height: 0;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 9px 18px rgba(10, 35, 29, 0.18);
}

.category-column h2 {
  margin: 0;
  padding: 0.8rem;
  background: rgba(255, 253, 247, 0.95);
  color: var(--brand-green);
  font-size: clamp(0.95rem, 1.45vw, 1.45rem);
  line-height: 1.1;
}

.point-tile {
  position: relative;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.94);
  color: var(--brand-navy);
  font-size: clamp(1.7rem, 3.6vw, 3.5rem);
  font-weight: 1000;
  border: 2px solid rgba(255, 253, 247, 0.55);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.point-tile:hover:not(:disabled),
.point-tile:focus-visible:not(:disabled) {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  box-shadow: 0 16px 26px rgba(109, 61, 245, 0.28);
}

.point-tile.selected {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.24), 0 0 34px rgba(139, 92, 246, 0.58);
  transform: translateY(-3px) scale(1.04);
  animation: activeTileGlow 1.4s ease-in-out infinite;
}

.point-tile.risk::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px dashed rgba(139, 92, 246, 0.46);
  border-radius: 14px;
}

.point-tile.complete {
  background: rgba(238, 231, 255, 0.22);
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  opacity: 1;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.clue-view,
.answer-view,
.risk-view,
.final-view,
.results-view {
  min-height: 100vh;
}

.clue-card,
.answer-card,
.risk-stage,
.final-card,
.winner-stage {
  display: grid;
  place-items: center;
  max-width: 1200px;
  min-height: 52vh;
  margin: 0 auto 1rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  border: 8px solid rgba(255, 253, 247, 0.82);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 227, 138, 0.08), transparent 30%),
    linear-gradient(135deg, var(--brand-green-2), var(--brand-green));
  color: white;
  text-align: center;
  box-shadow: var(--brand-shadow);
}

.clue-card p {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2rem, 6vw, 5.4rem);
  font-weight: 950;
  line-height: 1.08;
}

.buzz-panel,
.host-resolution {
  display: grid;
  gap: 0.9rem;
  max-width: 1200px;
  margin: 0 auto 1rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.94);
  color: var(--brand-navy);
  box-shadow: var(--brand-soft-shadow);
}

.buzz-panel > div:first-child,
.host-resolution > div:first-child {
  display: grid;
  gap: 0.2rem;
}

.buzz-panel span,
.host-resolution span {
  color: var(--brand-coral);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.buzz-panel strong,
.host-resolution strong {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.buzz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
}

.buzz-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  border-radius: 999px;
  background: white;
  color: var(--brand-navy);
  font-weight: 1000;
  box-shadow: inset 0 0 0 2px rgba(23, 32, 51, 0.08), var(--brand-soft-shadow);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.buzz-button:hover:not(:disabled),
.buzz-button:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(109, 61, 245, 0.18);
}

.buzz-button span {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--team);
  color: white;
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: none;
}

.buzz-button.locked {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.16), 0 18px 34px rgba(109, 61, 245, 0.24);
}

.answer-peek {
  border-radius: 22px;
  background: #eee7ff;
  overflow: hidden;
}

.answer-peek summary {
  cursor: pointer;
  padding: 0.9rem 1rem;
  color: var(--brand-coral);
  font-weight: 1000;
}

.answer-peek strong,
.answer-peek p {
  display: block;
  padding: 0 1rem 1rem;
}

.answer-peek strong {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.risk-note {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
}

.hint-box,
.teacher-instruction,
.score-change-note {
  max-width: 1000px;
  margin: 0 auto 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: var(--brand-cream-2);
  color: var(--brand-navy);
  box-shadow: var(--brand-soft-shadow);
  font-weight: 800;
}

.score-change-note {
  border-left: 10px solid var(--team);
  font-size: 1.15rem;
  text-align: center;
}

.bottom-actions {
  justify-content: center;
}

.timer {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.8rem;
  margin: 0 auto 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-cream-2);
  box-shadow: var(--brand-soft-shadow);
}

.timer strong {
  font-size: 2rem;
  color: var(--brand-coral);
}

.landing-v2 .site-footer {
  position: relative;
  overflow: hidden;
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(108, 76, 245, 0.28), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(122, 168, 255, 0.18), transparent 24%),
    #10182f;
  color: #d8dff4;
  box-shadow: 0 -22px 70px rgba(17, 27, 68, 0.14);
}

.landing-v2 .footer-accent {
  height: 0.5rem;
  background: linear-gradient(90deg, #8b5cf6 0%, #6c4cf5 45%, #38a9ff 100%);
}

.landing-v2 .footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.8rem) clamp(1rem, 3vw, 1.5rem) 1.4rem;
}

.landing-v2 .footer-brand {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.landing-v2 .footer-brand h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.landing-v2 .footer-brand p {
  max-width: 370px;
  margin: 0;
  color: #c8d0ea;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.55;
}

.landing-v2 .footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.landing-v2 .footer-column h3 {
  margin: 0 0 0.95rem;
  color: #f3d76b;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.landing-v2 .footer-column a {
  display: block;
  width: fit-content;
  margin: 0.58rem 0;
  color: #d8dff4;
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.25;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.landing-v2 .footer-column a:hover,
.landing-v2 .footer-column a:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.landing-v2 .footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aeb9d8;
  font-size: 0.92rem;
  font-weight: 760;
}

.landing-v2 .footer-bottom span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.landing-v2 .footer-bottom b {
  color: #f3d76b;
  font-size: 1rem;
}

.timer button {
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: var(--brand-blue);
  color: var(--brand-navy);
  font-weight: 900;
}

.answer-view h1 {
  max-width: 1100px;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.answer-card {
  min-height: auto;
  gap: 0.8rem;
  background: var(--brand-cream-2);
  color: var(--brand-navy);
}

.answer-reveal-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 216, 90, 0.22), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(139, 92, 246, 0.16), transparent 30%),
    #fffdf7;
}

.answer-card span,
.final-card span {
  color: var(--brand-coral);
  font-weight: 1000;
  text-transform: uppercase;
}

.answer-card strong,
.final-card strong {
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1;
}

.answer-card aside {
  padding: 1rem;
  border-radius: 20px;
  background: #fff1d7;
  color: var(--brand-navy);
}

.answer-result {
  width: fit-content;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: #eee7ff;
  border-left: 8px solid var(--team);
  color: var(--brand-navy);
  font-weight: 1000;
}

.player-display {
  min-height: 100vh;
  padding: clamp(1rem, 2.5vw, 1.6rem);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 216, 90, 0.22), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(139, 92, 246, 0.16), transparent 28%),
    radial-gradient(circle at 72% 88%, rgba(238, 231, 255, 0.8), transparent 30%),
    linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-cream-2) 54%, #f4efff 100%);
}

.player-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 1180px);
  margin: 0 auto clamp(1rem, 2vw, 1.35rem);
}

.player-nav span {
  min-height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding: 0 1rem;
  background: rgba(255, 253, 247, 0.9);
  color: var(--brand-navy);
  font-weight: 1000;
  box-shadow: var(--brand-soft-shadow);
}

.player-nav-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.player-nav-actions .secondary {
  min-height: 2.7rem;
  padding: 0.65rem 0.9rem;
}

.back-home-button {
  min-height: 2.9rem;
  padding-inline: 1rem;
}

.player-game-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.player-game-copy {
  display: grid;
  gap: 0.85rem;
}

.player-game-copy h1 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1;
}

.player-game-copy p {
  max-width: 430px;
  margin: 0;
  color: #526078;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 850;
  line-height: 1.5;
}

.player-game-copy .control-strip {
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  min-height: 2.6rem;
  margin: 0;
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  text-align: left;
}

.live-game-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
  width: min(100%, 820px);
  margin-inline: auto;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 216, 90, 0.56) 0 12%, transparent 12.2%),
    radial-gradient(circle at 8% 95%, rgba(238, 231, 255, 0.9) 0 18%, transparent 18.2%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 255, 0.96) 66%, rgba(255, 247, 232, 0.9));
  box-shadow: 0 24px 58px rgba(23, 32, 51, 0.15), 12px 12px 0 rgba(207, 232, 255, 0.25), -12px -12px 0 rgba(255, 227, 138, 0.22);
  overflow: hidden;
}

.player-display .game-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  height: auto;
  min-height: 0;
  padding: clamp(0.9rem, 1.8vw, 1.15rem);
  border: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(139, 92, 246, 0.35), transparent 34%),
    linear-gradient(135deg, #10182f, #26105f 58%, #3b1d88);
  box-shadow: 0 18px 38px rgba(16, 24, 47, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.board-title-banner {
  display: grid;
  grid-column: 1 / -1;
  justify-items: center;
  gap: 0.15rem;
  color: white;
  text-align: center;
}

.board-title-banner span {
  color: var(--brand-yellow);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-title-banner strong {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.1;
}

.player-display .category-column {
  grid-template-rows: minmax(2.8rem, auto) repeat(5, minmax(3.2rem, 1fr));
  gap: 0.5rem;
}

.player-display .category-column h2,
.player-display .point-tile {
  border-radius: 0.78rem;
  box-shadow: none;
}

.player-display .category-column h2 {
  min-height: 2.8rem;
  padding: 0.45rem 0.35rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-navy);
  font-size: clamp(0.58rem, 1vw, 0.78rem);
  font-weight: 1000;
}

.player-display .point-tile {
  min-height: 3.2rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.player-display .point-tile:hover:not(:disabled),
.player-display .point-tile:focus-visible:not(:disabled) {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  box-shadow: 0 10px 22px rgba(139, 92, 246, 0.26);
}

.player-display .point-tile.complete {
  background: rgba(238, 231, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.07);
  color: transparent;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.player-display .scoreboard {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
}

.player-display .score-card {
  display: flex;
  width: auto;
  min-height: 2.8rem;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border-width: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 2px rgba(23, 32, 51, 0.05), var(--brand-soft-shadow);
}

.player-display .score-card span {
  width: 1.9rem;
  height: 1.9rem;
  font-size: 0.82rem;
}

.player-display .score-card strong {
  font-size: 0.9rem;
}

.player-display .score-card b {
  color: var(--brand-coral);
  font-size: 1rem;
}

.question-game-card,
.answer-view .live-game-card {
  max-width: 820px;
  width: min(100%, 820px);
}

.question-stage-panel {
  display: grid;
  min-height: clamp(360px, 48vw, 520px);
  align-content: center;
  justify-items: center;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(139, 92, 246, 0.48), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(255, 216, 90, 0.16), transparent 26%),
    linear-gradient(135deg, #10182f, #241061 58%, #3b1d88);
  color: white;
  text-align: center;
  box-shadow: 0 20px 42px rgba(16, 24, 47, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.question-stage-panel .eyebrow {
  color: var(--brand-yellow);
}

.question-stage-panel h1 {
  margin: 0;
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.question-stage-panel > p:last-child {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 950;
  line-height: 1.04;
}

.player-display .buzz-panel {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.player-display .buzz-panel > div:first-child {
  justify-items: center;
  text-align: center;
}

.player-display .buzz-grid {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 0.55rem;
}

.player-display .buzz-button {
  min-height: 2.9rem;
  font-size: 0.92rem;
}

.player-display .buzz-button b {
  margin-left: 0.25rem;
  color: inherit;
  font-size: 0.88rem;
}

.answer-view .answer-card {
  min-height: clamp(440px, 56vw, 620px);
  align-content: center;
  justify-items: center;
  text-align: center;
}

.answer-view .answer-card h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.leave-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(16, 24, 47, 0.42);
  backdrop-filter: blur(8px);
}

.leave-modal {
  display: grid;
  gap: 0.85rem;
  width: min(100%, 460px);
  padding: 1.3rem;
  border-radius: 28px;
  background: #fffdf7;
  color: var(--brand-navy);
  box-shadow: var(--brand-shadow);
}

.leave-modal h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.leave-modal p {
  margin: 0;
  color: #526078;
  line-height: 1.5;
  font-weight: 800;
}

.sample-setup-view {
  min-height: 100vh;
  padding: clamp(1rem, 2.5vw, 1.6rem);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 216, 90, 0.24), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(139, 92, 246, 0.18), transparent 28%),
    linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-cream-2) 54%, #f4efff 100%);
}

.sample-setup-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 216, 90, 0.48) 0 12%, transparent 12.2%),
    radial-gradient(circle at 8% 95%, rgba(238, 231, 255, 0.9) 0 18%, transparent 18.2%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 255, 0.96) 66%, rgba(255, 247, 232, 0.9));
  box-shadow: var(--brand-shadow);
}

.sample-setup-copy {
  display: grid;
  gap: 0.85rem;
}

.sample-setup-copy h1 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
}

.sample-setup-copy p {
  margin: 0;
  color: #526078;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 850;
  line-height: 1.5;
}

.sample-helper {
  padding: 0.85rem 1rem;
  border-radius: 20px;
  background: #eee7ff;
  color: var(--brand-navy) !important;
}

.sample-team-editor {
  display: grid;
  gap: 0.7rem;
}

.sample-team-editor label {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 2px rgba(23, 32, 51, 0.06), var(--brand-soft-shadow);
}

.sample-team-editor span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 58%, transparent 59%),
    var(--team);
  border: 2px solid color-mix(in srgb, var(--team) 74%, #ffffff);
  color: #111b44;
  font-weight: 1000;
}

.sample-team-editor input {
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 0.8rem;
  background: #fffdf7;
  font-weight: 900;
}

.sample-team-editor button {
  min-height: 2.45rem;
  border-radius: 999px;
  padding-inline: 0.75rem;
  background: #eee7ff;
  color: var(--brand-coral);
  font-weight: 1000;
}

.sample-setup-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.sample-demo-view {
  min-height: 100vh;
  padding: clamp(1rem, 2.5vw, 1.75rem);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 216, 90, 0.28), transparent 26%),
    radial-gradient(circle at 92% 5%, rgba(238, 231, 255, 0.9), transparent 28%),
    linear-gradient(135deg, #fff7e8 0%, #fffdf7 52%, #f6f1ff 100%);
}

.sample-demo-view .player-nav {
  max-width: 1180px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
}

.sample-demo-layout {
  grid-template-columns: minmax(240px, 0.72fr) minmax(520px, 1.28fr);
  width: min(100%, 1180px);
  min-height: auto;
  padding: 0;
}

.sample-demo-layout .player-game-copy {
  align-self: center;
}

.sample-demo-layout .live-game-card {
  width: min(100%, 760px);
}

.sample-demo-view .game-board {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.5rem, 1vw, 0.75rem);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.sample-demo-view .category-column {
  grid-template-rows: minmax(3.1rem, auto) repeat(5, minmax(3.5rem, 1fr));
  gap: clamp(0.45rem, 0.9vw, 0.7rem);
}

.sample-demo-view .category-column h2 {
  min-height: 3.1rem;
  font-size: clamp(0.68rem, 1vw, 0.82rem);
}

.sample-demo-view .point-tile {
  min-height: clamp(3.5rem, 6vw, 4.4rem);
}

.sample-question-card {
  width: min(100%, 860px);
  margin: 0 auto;
}

.sample-question-card.sample-buzzed {
  box-shadow: 0 24px 58px rgba(23, 32, 51, 0.15), 0 0 0 8px rgba(139, 92, 246, 0.12), 0 0 48px rgba(139, 92, 246, 0.16);
}

.sample-answer-panel {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  padding: clamp(1rem, 2vw, 1.25rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(16, 24, 47, 0.07);
  text-align: center;
}

.sample-answer-panel p {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 900;
}

.sample-answer-panel label {
  display: grid;
  width: min(100%, 520px);
  gap: 0.45rem;
  text-align: left;
}

.sample-answer-panel label span {
  color: #526078;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-answer-panel input {
  min-height: 3.35rem;
  border: 2px solid rgba(109, 61, 245, 0.18);
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  background: white;
  color: var(--brand-navy);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 850;
  outline: none;
}

.sample-answer-panel input:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.16);
}

.sample-buzz-button {
  animation: sampleBuzzIdle 1.7s ease-in-out infinite;
}

.sample-complete-card {
  gap: 1rem;
}

.sample-complete-card h1 {
  color: var(--brand-navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.sample-complete-card p {
  margin: 0;
  color: #526078;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 850;
}

.host-app {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 8%, rgba(139, 92, 246, 0.16), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(255, 216, 90, 0.22), transparent 24%),
    linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-cream-2) 54%, #f4efff 100%);
}

.host-shell {
  display: grid;
  gap: 1rem;
  min-height: 100vh;
  padding: clamp(1rem, 2vw, 1.4rem);
  padding-bottom: 6.2rem;
}

.host-header,
.host-status-row,
.host-grid,
.host-bottom-bar {
  width: min(100%, 1680px);
  margin-inline: auto;
}

.host-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.host-header h1 {
  margin-bottom: 0.35rem;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.host-header p {
  margin: 0;
  color: #68738a;
  font-weight: 850;
}

.host-header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.host-status-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.host-status-row span {
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: rgba(255, 253, 247, 0.9);
  color: var(--brand-navy);
  box-shadow: var(--brand-soft-shadow);
  font-weight: 950;
  text-align: center;
}

.host-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.host-card {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--brand-soft-shadow);
}

.host-card-header {
  display: grid;
  gap: 0.2rem;
}

.host-card-header h2 {
  margin: 0;
  color: var(--brand-navy);
}

.host-card-header small {
  color: #68738a;
  font-weight: 850;
}

.mini-host-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.6rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #10182f, #26105f 58%, #3b1d88);
}

.mini-host-board div {
  display: grid;
  gap: 0.36rem;
}

.mini-host-board h3,
.mini-host-board button {
  display: grid;
  min-height: 2.35rem;
  place-items: center;
  border-radius: 0.8rem;
  text-align: center;
  font-weight: 1000;
}

.mini-host-board h3 {
  margin: 0;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-navy);
  font-size: 0.68rem;
}

.mini-host-board button {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.mini-host-board button:hover:not(:disabled),
.mini-host-board button:focus-visible:not(:disabled) {
  background: rgba(139, 92, 246, 0.48);
  transform: translateY(-1px);
}

.mini-host-board button.selected {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.22), 0 0 20px rgba(139, 92, 246, 0.45);
}

.mini-host-board button.complete {
  background: rgba(238, 231, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
}

.host-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.host-current-clue,
.empty-host-clue,
.host-buzzer-box {
  display: grid;
  gap: 0.85rem;
  border-radius: 22px;
  padding: 1rem;
  background: #f8f4ff;
}

.host-current-clue dl {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.host-current-clue dl div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.host-current-clue dt {
  color: var(--brand-coral);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.host-current-clue dd {
  margin: 0;
  color: var(--brand-navy);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.45;
}

.empty-host-clue strong,
.host-buzzer-box strong {
  color: var(--brand-navy);
  font-size: 1.15rem;
}

.empty-host-clue p {
  margin: 0;
  color: #68738a;
  font-weight: 800;
}

.host-team-list {
  display: grid;
  gap: 0.65rem;
}

.host-team-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.75rem;
  border-left: 8px solid var(--team);
  border-radius: 18px;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 51, 0.06);
}

.host-team-list article > div:first-child {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.host-team-list span {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--team);
  color: white;
  font-weight: 1000;
}

.host-team-list b {
  color: var(--brand-navy);
  font-size: 1.6rem;
}

.host-team-list article > div:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.host-team-list button,
.host-buzz-grid button {
  min-height: 2.5rem;
  border-radius: 999px;
  background: #eee7ff;
  color: var(--brand-coral);
  font-weight: 1000;
}

.host-buzz-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.host-buzz-grid button {
  background: white;
  color: var(--brand-navy);
  box-shadow: inset 0 0 0 2px rgba(23, 32, 51, 0.06);
}

.host-buzz-grid button.active {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-coral));
  color: white;
  box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.18);
}

.host-wager-grid,
.host-final-scoring {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.host-bottom-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 15;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 18px 52px rgba(23, 32, 51, 0.14);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.host-bottom-bar button {
  min-height: 2.65rem;
  padding-inline: 0.85rem;
  font-size: 0.82rem;
}

.correct-sticker {
  position: relative;
  display: grid;
  width: fit-content;
  place-items: center;
  margin: 0 auto 0.4rem;
  animation: correctStickerPop 840ms cubic-bezier(0.2, 1.4, 0.34, 1) both;
}

.correct-sticker b {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  background: linear-gradient(135deg, var(--brand-yellow), #fff2a6);
  color: var(--brand-navy);
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  line-height: 1;
  box-shadow: 0 12px 28px rgba(255, 216, 90, 0.28), inset 0 -4px 0 rgba(16, 24, 47, 0.08);
  transform: rotate(-4deg);
}

.incorrect-sticker b {
  background: linear-gradient(135deg, #fca5a5, #ef4444);
  color: white;
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.22), inset 0 -4px 0 rgba(16, 24, 47, 0.1);
  transform: rotate(3deg);
}

.incorrect-sticker i:nth-child(1),
.incorrect-sticker i:nth-child(3) {
  background: #fca5a5;
}

.incorrect-sticker i:nth-child(2) {
  background: #eee7ff;
}

.correct-sticker i {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-yellow);
  animation: sparklePop 900ms ease both;
}

.correct-sticker i:nth-child(1) {
  top: -0.45rem;
  left: 12%;
}

.correct-sticker i:nth-child(2) {
  top: 8%;
  right: -0.5rem;
  background: #eee7ff;
  animation-delay: 90ms;
}

.correct-sticker i:nth-child(3) {
  bottom: -0.45rem;
  right: 18%;
  background: var(--brand-pink);
  animation-delay: 150ms;
}

.correct-sticker i:nth-child(4) {
  bottom: 10%;
  left: -0.55rem;
  background: white;
  animation-delay: 220ms;
}

.scoring-grid,
.wager-grid,
.ranking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
  max-width: 1200px;
  margin: 0 auto 1rem;
}

.scoring-card,
.wager-grid label,
.ranking div {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 24px;
  background: var(--brand-cream-2);
  border-top: 8px solid var(--brand-pink);
  box-shadow: var(--brand-soft-shadow);
  color: var(--brand-navy);
}

.risk-view {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 227, 138, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(24, 63, 54, 0.92), rgba(23, 32, 51, 0.9)),
    var(--brand-green);
}

.risk-stage {
  animation: popIn 600ms ease both;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 227, 138, 0.22), transparent 24%),
    linear-gradient(135deg, var(--brand-green), #34205f 58%, var(--brand-coral));
}

.risk-stage h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 9rem);
}

.wager-box {
  display: grid;
  gap: 0.7rem;
  width: min(520px, 100%);
  padding: 1rem;
  border-radius: 26px;
  background: var(--brand-cream-2);
  color: var(--brand-navy);
  border-top: 10px solid var(--brand-pink);
}

.final-view {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 227, 138, 0.18), transparent 26%),
    linear-gradient(135deg, var(--brand-green), #285e4d);
  color: white;
}

.final-card {
  gap: 1rem;
  background: var(--brand-cream-2);
  color: var(--brand-navy);
}

.final-card h2 {
  margin-bottom: 0;
}

.final-clue {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 227, 138, 0.1), transparent 30%),
    linear-gradient(135deg, var(--brand-green-2), var(--brand-green));
  color: white;
}

.final-clue span {
  color: var(--brand-yellow);
}

.results-view {
  background:
    radial-gradient(circle at 15% 12%, rgba(139, 92, 246, 0.18), transparent 28%),
    radial-gradient(circle at 84% 5%, rgba(201, 243, 223, 0.42), transparent 26%),
    var(--brand-cream);
}

.winner-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 227, 138, 0.16), transparent 30%),
    linear-gradient(135deg, var(--brand-green), #285e4d);
}

.winner-stage::before,
.winner-stage::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--brand-coral) 0 28px, var(--brand-mint) 28px 56px, var(--brand-yellow) 56px 84px, var(--brand-pink) 84px 112px);
  animation: ribbon 4s linear infinite;
}

.winner-stage::before {
  top: 14%;
  left: -20%;
  transform: rotate(-12deg);
}

.winner-stage::after {
  bottom: 16%;
  left: -20%;
  transform: rotate(10deg);
}

.winner {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
  border-radius: 22px;
  background: var(--team);
  color: white;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 1000;
}

.ranking div {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.ranking span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--team);
  color: white;
  font-weight: 1000;
}

.missed-review {
  max-width: 1000px;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 28px;
  background: var(--brand-cream-2);
  box-shadow: var(--brand-soft-shadow);
}

.missed-review article {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 0;
  border-top: 2px solid #e2e8f0;
}

.missed-review span {
  color: var(--brand-coral);
  font-weight: 1000;
}

.panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  background: rgba(15, 23, 42, 0.45);
}

.teacher-panel {
  width: min(440px, 100%);
  height: 100%;
  overflow: auto;
  padding: 1rem;
  background: var(--brand-cream-2);
  box-shadow: -18px 0 40px rgba(23, 32, 51, 0.18);
}

.teacher-panel header,
.score-edit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.teacher-panel header button,
.score-edit button,
.panel-actions button {
  border-radius: 999px;
  padding: 0.65rem 0.8rem;
  background: #eee7ff;
  color: var(--brand-coral);
  font-weight: 900;
}

.teacher-panel section {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 0;
  border-top: 2px solid #e2e8f0;
}

.score-edit {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
}

.panel-actions {
  grid-template-columns: 1fr 1fr;
}

.teacher-panel label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.teacher-panel input[type="checkbox"] {
  width: auto;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ribbon {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 168px 0;
  }
}

@keyframes scorePop {
  0% {
    transform: scale(1);
    box-shadow: var(--brand-soft-shadow);
  }
  45% {
    transform: scale(1.045);
    box-shadow: 0 0 0 7px rgba(255, 216, 90, 0.28), var(--brand-soft-shadow);
  }
  100% {
    transform: scale(1);
    box-shadow: var(--brand-soft-shadow);
  }
}

@keyframes scoreDip {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.98);
    box-shadow: 0 0 0 7px rgba(239, 68, 68, 0.16), var(--brand-soft-shadow);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes sampleBuzzIdle {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 18px 34px rgba(109, 61, 245, 0.22);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 42px rgba(109, 61, 245, 0.32), 0 0 0 6px rgba(139, 92, 246, 0.14);
  }
}

@keyframes correctStickerPop {
  0% {
    opacity: 0;
    transform: translateY(0.8rem) scale(0.7) rotate(-8deg);
  }
  55% {
    opacity: 1;
    transform: translateY(-0.2rem) scale(1.12) rotate(4deg);
  }
  78% {
    transform: translateY(0) scale(0.96) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes sparklePop {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  45% {
    opacity: 1;
    transform: scale(1.35);
  }
  100% {
    opacity: 0.9;
    transform: scale(1);
  }
}

@keyframes previewTeamBuzz {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(0.94);
  }
  70% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1400px) {
  .host-grid {
    grid-template-columns: 1fr 1fr;
  }

  .host-command-card {
    grid-column: 1 / -1;
  }

  .why-card-row {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .why-card-row::before {
    display: none;
  }

  .why-board,
  .why-play {
    transform: none;
  }

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

@media (min-width: 1500px) {
  .why-card-row {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

  .why-card-row::before {
    display: block;
  }

  .why-board {
    transform: translateY(4rem);
  }

  .why-play {
    transform: translateY(8rem);
  }
}

@media (max-width: 980px) {
  .host-header,
  .host-grid {
    grid-template-columns: 1fr;
  }

  .host-header {
    display: grid;
  }

  .host-header-actions {
    justify-content: flex-start;
  }

  .host-status-row {
    grid-template-columns: 1fr 1fr;
  }

  .host-command-card {
    grid-column: auto;
  }

  .host-bottom-bar {
    left: 1rem;
    right: 1rem;
    width: auto;
    border-radius: 26px;
    transform: none;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.8rem;
    padding-inline: clamp(1rem, 5vw, 4rem);
  }

  .site-header::before {
    border-radius: 28px;
  }

  .site-header nav,
  .nav-actions {
    flex-wrap: wrap;
  }

  .site-header nav {
    justify-content: center;
    gap: 0.55rem;
    padding: 0;
  }

  .site-header nav a {
    font-size: 0.82rem;
  }

  .nav-actions {
    justify-content: flex-end;
    gap: 0.55rem;
  }

  .brand-mark {
    min-height: 3rem;
    padding-inline: 1.15rem;
  }

  .site-header .primary,
  .nav-link {
    min-height: 3rem;
    padding-inline: 0.9rem;
    font-size: 0.9rem;
  }

  .landing-v2 .hero-v2 {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.4rem;
    min-height: auto;
    padding-top: 1.2rem;
  }

  .active-game-preview {
    width: min(100%, 580px);
  }

  .landing-v2 .hero-copy h1 {
    font-size: clamp(2.75rem, 5.9vw, 3.25rem);
  }

  .landing-v2 .hero-copy p:not(.eyebrow) {
    font-size: clamp(1rem, 2.1vw, 1.22rem);
  }

  .hero-preview-card {
    min-height: auto;
    padding: 1.4rem;
  }

  .landing-v2 .hero-copy .primary {
    min-width: 14rem;
    min-height: 3.55rem;
    margin-top: 0.6rem;
    font-size: 1rem;
  }

  .hero-preview-card h2 {
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  }

  .classroom-board-mini {
    padding: 1rem;
  }

  .why-card-row {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .why-card-row::before {
    display: none;
  }

  .why-board,
  .why-play {
    transform: none;
  }

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

  .hero-board-v2 {
    transform: none;
  }

  .game-type-grid,
  .benefit-grid,
  .step-grid,
  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero,
  .info-band,
  .landing-grid,
  .board-editor {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .clue-editor {
    grid-template-columns: 1fr 1fr;
  }

  .game-board {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.55rem;
    border-width: 7px;
  }

  .category-column {
    gap: 0.45rem;
  }

  .category-column h2 {
    padding: 0.5rem 0.35rem;
    font-size: clamp(0.68rem, 1.7vw, 1rem);
  }

  .point-tile {
    border-radius: 14px;
    font-size: clamp(1.1rem, 4vw, 2.5rem);
  }
}

@media (max-width: 640px) {
  .host-shell {
    padding-bottom: 10rem;
  }

  .host-status-row,
  .mini-host-board,
  .host-wager-grid,
  .host-final-scoring {
    grid-template-columns: 1fr;
  }

  .host-bottom-bar button {
    flex: 1 1 130px;
  }

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

  .nav-actions {
    justify-content: flex-start;
  }

  .brand-mark strong {
    font-size: 0.95rem;
  }

  .site-header nav {
    padding: 0;
  }

  .landing-v2 .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .landing-v2 .hero-v2 {
    grid-template-columns: 1fr;
  }

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

  .preview-top-strip span {
    min-height: 2.15rem;
  }

  .mini-category-board {
    gap: 0.24rem;
  }

  .mini-category-board b,
  .mini-category-board [data-preview-tile] {
    min-height: 1.85rem;
    border-radius: 0.6rem;
  }

  .mini-category-board b {
    font-size: 0.54rem;
  }

  .mini-category-board [data-preview-tile] {
    font-size: 0.72rem;
  }

  .teaser-card {
    width: min(260px, 88%);
  }

  .board-meta,
  .preview-board,
  .game-type-grid,
  .benefit-grid,
  .step-grid,
  .sample-grid,
  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .preview-column {
    grid-template-columns: 1.1fr repeat(5, 1fr);
  }

  .preview-column strong,
  .preview-column button {
    min-height: 2.7rem;
    font-size: 0.9rem;
  }

  .ticker div {
    font-size: 1.35rem;
  }

  .play-card,
  .benefit-card,
  .step-card,
  .sample-card {
    min-height: auto;
  }

  .setup-header,
  .game-topbar,
  .clue-view > header,
  .final-view > header {
    display: grid;
  }

  .form-grid,
  .clue-editor,
  .wide,
  .panel-actions {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .hero-board {
    grid-template-columns: 1fr;
    transform: none;
  }

  .score-edit {
    grid-template-columns: 1fr auto;
  }

  .score-edit button {
    min-height: 2.5rem;
  }

  .game-board {
    gap: 0.32rem;
    padding: 0.4rem;
    border-width: 5px;
  }

  .category-column {
    gap: 0.32rem;
  }

  .category-column h2 {
    border-radius: 12px;
    font-size: clamp(0.52rem, 2.4vw, 0.78rem);
  }

  .point-tile {
    border-radius: 12px;
    font-size: clamp(0.9rem, 5vw, 1.7rem);
  }
}

@media (min-width: 1500px) {
  .simple-step-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1220px;
  }

  .simple-step-card {
    transform: none;
  }
}

@media (max-width: 1400px) {
  .simple-step-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1220px;
  }
}

@media (max-width: 1080px) {
  .simple-step-row,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .player-game-layout {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .sample-setup-card {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .player-game-copy {
    text-align: center;
    justify-items: center;
  }

  .player-game-copy p {
    max-width: 620px;
  }

  .player-game-copy .control-strip {
    justify-content: center;
    text-align: center;
  }

  .landing-v2 .hero-v2 {
    grid-template-columns: 1fr;
  }

  .active-game-preview {
    width: min(100%, 600px);
  }

  .hero-preview-card {
    padding: 1rem;
  }

  .preview-question-stage,
  .preview-answer-stage {
    min-height: clamp(270px, 44vw, 360px);
  }
}

@media (max-width: 760px) {
  .simple-step-row,
  .benefit-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .simple-step-card,
  .play-card,
  .benefit-card,
  .sample-card,
  .pricing-card {
    min-height: auto;
  }

  .player-nav,
  .player-nav-actions,
  .sample-setup-actions {
    justify-content: flex-start;
  }

  .sample-team-editor label {
    grid-template-columns: auto 1fr;
    border-radius: 26px;
  }

  .sample-team-editor button {
    grid-column: 1 / -1;
  }

  .landing-section,
  .why-works-section,
  .final-cta,
  .site-footer {
    padding-block: clamp(2.75rem, 9vw, 4rem);
  }
}

/* Current hero/header pass */
.landing-v2 .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: block;
  max-width: none;
  width: 100%;
  padding: 0.75rem clamp(0.85rem, 3vw, 1.5rem);
}

.landing-v2 .site-header::before {
  inset: 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 27, 68, 0.08);
  border-radius: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 248, 232, 0.78) 0%,
      rgba(255, 252, 246, 0.74) 45%,
      rgba(248, 244, 255, 0.76) 100%
    );
  box-shadow: 0 8px 30px rgba(17, 27, 68, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.landing-v2 .site-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.landing-v2 .site-header nav {
  display: none;
}

.landing-v2 .brand-mark {
  min-height: 3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.95);
  color: #111b44;
  box-shadow: 0 12px 26px rgba(17, 27, 68, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-v2 .brand-mark:hover,
.landing-v2 .brand-mark:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(17, 27, 68, 0.12);
}

.landing-v2 .brand-mark strong {
  font-size: 0.95rem;
}

.landing-v2 .nav-actions {
  gap: 0.75rem;
}

.landing-v2 .nav-link,
.landing-v2 .nav-signout {
  min-height: 2.55rem;
  padding: 0.55rem 0.35rem;
  border-radius: 999px;
  background: transparent;
  color: #111b44;
  font-size: 0.93rem;
  font-weight: 950;
  text-decoration: none;
}

.landing-v2 .nav-signout {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.landing-v2 .nav-signout span {
  display: inline-grid;
  width: 1.2rem;
  height: 1.2rem;
  place-items: center;
  border-radius: 50%;
  background: #f3eeff;
  color: #6c4cf5;
  font-size: 0.75rem;
}

.landing-v2 .nav-pill {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: #111b44;
  box-shadow: 0 12px 26px rgba(17, 27, 68, 0.07);
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-v2 .nav-pill:hover,
.landing-v2 .nav-pill:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(17, 27, 68, 0.11);
}

.landing-v2 .site-header .primary {
  min-width: auto;
  min-height: 3rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #6c4cf5 0%, #8e7cff 100%);
  box-shadow: 0 12px 28px rgba(108, 76, 245, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-v2 .site-header .primary:hover,
.landing-v2 .site-header .primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(108, 76, 245, 0.32);
}

.landing-v2 .hero-v2 {
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  max-width: 1180px;
  min-height: calc(100vh - 4.6rem);
  padding: clamp(0.75rem, 2vw, 1.35rem) clamp(1rem, 3vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
}

.landing-v2 .hero-copy {
  display: grid;
  gap: 0.8rem;
  align-self: center;
  padding-top: 0;
}

.landing-v2 .hero-copy .eyebrow {
  margin: 0;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 950;
  letter-spacing: 0.06em;
}

.landing-v2 .hero-copy h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.7rem, 4.15vw, 4.05rem);
  line-height: 1;
}

.landing-v2 .hero-copy p:not(.eyebrow):not(.hero-support-line) {
  max-width: 560px;
  margin: 0;
  color: #5e6a80;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  font-weight: 720;
  line-height: 1.5;
}

.landing-v2 .hero-copy .actions {
  gap: 0;
  margin-top: 0.2rem;
}

.landing-v2 .hero-copy .primary {
  min-width: 11.5rem;
  min-height: 3.15rem;
  margin-top: 0;
  padding: 0.78rem 1.1rem;
  font-size: 0.95rem;
}

.landing-v2 .hero-support-line {
  max-width: 420px !important;
  margin: 0;
  color: #5e6a80 !important;
  font-size: clamp(0.92rem, 1vw, 1rem) !important;
  font-weight: 720 !important;
  line-height: 1.45 !important;
}

.landing-v2 .hero-preview-card {
  width: min(100%, 620px);
  max-width: 620px;
  height: clamp(460px, calc(100vh - 7.5rem), 565px);
  min-height: 460px;
  align-self: center;
  padding: clamp(0.75rem, 1.2vw, 1rem);
  border-radius: 30px;
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.13), 9px 9px 0 rgba(207, 232, 255, 0.24), -9px -9px 0 rgba(255, 227, 138, 0.24);
}

.landing-v2 .active-game-preview {
  width: min(100%, 620px);
  max-width: 620px;
}

.landing-v2 .game-preview-stage {
  grid-template-rows: 1fr auto auto;
  height: 100%;
  gap: 0.65rem;
}

.landing-v2 .preview-board-stage {
  display: grid;
  min-height: 0;
}

.landing-v2 .classroom-board-mini {
  gap: 0.65rem;
  min-height: 0;
  padding: clamp(0.75rem, 1.2vw, 1rem);
  border-radius: 22px;
}

.landing-v2 .mini-board-header {
  min-height: 2.2rem;
}

.landing-v2 .board-label {
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
}

.landing-v2 .mini-category-board {
  gap: 0.42rem;
  min-height: 0;
}

.landing-v2 .mini-category-board div {
  gap: 0.38rem;
}

.landing-v2 .mini-category-board b,
.landing-v2 .mini-category-board [data-preview-tile] {
  min-height: 2.15rem;
  border-radius: 0.68rem;
}

.landing-v2 .mini-category-board b {
  font-size: clamp(0.5rem, 0.8vw, 0.64rem);
}

.landing-v2 .mini-category-board [data-preview-tile] {
  font-size: clamp(0.88rem, 1.35vw, 1.08rem);
}

.landing-v2 .preview-question-stage,
.landing-v2 .preview-answer-stage {
  min-height: 100%;
  height: 100%;
  padding: clamp(1.1rem, 2vw, 1.75rem);
  border-radius: 24px;
}

.landing-v2 .preview-question-stage strong {
  max-width: 500px;
  font-size: clamp(1.75rem, 3.3vw, 3.1rem);
}

.landing-v2 .preview-answer-stage > strong {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

.landing-v2 .preview-team-row {
  gap: 0.4rem;
}

.landing-v2 .preview-team-row > span {
  min-height: 2.35rem;
  padding: 0.4rem 0.55rem;
  font-size: 0.78rem;
}

.landing-v2 .preview-team-row > span > span {
  width: 1.45rem;
  height: 1.45rem;
}

.landing-v2 .preview-play-now {
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .landing-v2 .hero-v2 {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0.85rem;
    padding-top: 0.45rem;
  }

  .landing-v2 .hero-copy {
    justify-items: start;
    max-width: 680px;
    gap: 0.55rem;
  }

  .landing-v2 .hero-copy h1 {
    font-size: clamp(2.45rem, 8vw, 3.4rem);
  }

  .landing-v2 .hero-copy p:not(.eyebrow):not(.hero-support-line) {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .landing-v2 .hero-copy .primary {
    min-height: 2.9rem;
  }

  .landing-v2 .hero-preview-card,
  .landing-v2 .active-game-preview {
    width: min(100%, 560px);
  }

  .landing-v2 .hero-preview-card {
    height: 335px;
    min-height: 335px;
    padding: 0.65rem;
    border-radius: 26px;
  }

  .landing-v2 .classroom-board-mini {
    gap: 0.45rem;
    padding: 0.65rem;
    border-radius: 18px;
  }

  .landing-v2 .mini-category-board,
  .landing-v2 .mini-category-board div {
    gap: 0.28rem;
  }

  .landing-v2 .mini-category-board b,
  .landing-v2 .mini-category-board [data-preview-tile] {
    min-height: 1.55rem;
    border-radius: 0.48rem;
  }

  .landing-v2 .preview-team-row > span {
    min-height: 2rem;
  }

  .landing-v2 .preview-play-now {
    min-height: 2.5rem;
  }
}

@media (max-width: 640px) {
  .landing-v2 .site-header {
    grid-template-columns: auto 1fr;
    padding: 0.65rem 0.85rem;
  }

  .landing-v2 .nav-actions {
    justify-content: flex-end;
  }

  .landing-v2 .nav-link {
    display: none;
  }

  .landing-v2 .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .landing-v2 .hero-v2 {
    gap: 1rem;
  }

  .landing-v2 .hero-preview-card {
    height: 360px;
    min-height: 360px;
  }

  .landing-v2 .preview-question-stage strong {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }
}

/* Final scoped nav/footer polish */
.landing-v2 > .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.75rem clamp(0.85rem, 3vw, 1.5rem);
}

.landing-v2 > .site-header::before {
  inset: 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 27, 68, 0.08);
  border-radius: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 248, 232, 0.78) 0%,
      rgba(255, 252, 246, 0.74) 45%,
      rgba(248, 244, 255, 0.76) 100%
    );
  box-shadow: 0 8px 30px rgba(17, 27, 68, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.landing-v2 .site-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.landing-v2 .site-header-inner .brand-mark {
  min-height: 3rem;
  padding: 0 1.35rem;
}

.landing-v2 .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.landing-v2 .nav-actions .nav-link,
.landing-v2 .nav-actions .nav-signout {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.55rem 0.35rem;
  border-radius: 999px;
  background: transparent;
  color: #111b44;
  font-size: 0.93rem;
  font-weight: 950;
  text-decoration: none;
}

.landing-v2 .nav-actions .nav-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: #111b44;
  box-shadow: 0 12px 26px rgba(17, 27, 68, 0.07);
  font-weight: 950;
  text-decoration: none;
}

.landing-v2 .nav-actions .nav-signout {
  gap: 0.35rem;
  cursor: pointer;
}

.landing-v2 .nav-actions .nav-signout span {
  display: inline-grid;
  width: 1.2rem;
  height: 1.2rem;
  place-items: center;
  border-radius: 50%;
  background: #f3eeff;
  color: #6c4cf5;
  font-size: 0.75rem;
}

.landing-v2 > .site-footer {
  position: relative;
  overflow: hidden;
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(108, 76, 245, 0.28), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(122, 168, 255, 0.18), transparent 24%),
    #10182f;
  color: #d8dff4;
  box-shadow: 0 -22px 70px rgba(17, 27, 68, 0.14);
}

.landing-v2 .footer-accent {
  height: 0.5rem;
  background: linear-gradient(90deg, #8b5cf6 0%, #6c4cf5 45%, #38a9ff 100%);
}

.landing-v2 .footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.8rem) clamp(1rem, 3vw, 1.5rem) 1.4rem;
}

.landing-v2 .footer-brand {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.landing-v2 .footer-brand h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.landing-v2 .footer-brand p {
  max-width: 370px;
  margin: 0;
  color: #c8d0ea;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.55;
}

.landing-v2 .footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.landing-v2 .footer-column h3 {
  margin: 0 0 0.95rem;
  color: #f3d76b;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.landing-v2 .footer-column a {
  display: block;
  width: fit-content;
  margin: 0.58rem 0;
  color: #d8dff4;
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.25;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.landing-v2 .footer-column a:hover,
.landing-v2 .footer-column a:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.landing-v2 .footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aeb9d8;
  font-size: 0.92rem;
  font-weight: 760;
}

.landing-v2 .footer-bottom span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.landing-v2 .footer-bottom b {
  color: #f3d76b;
  font-size: 1rem;
}

@media (hover: hover) {
  .landing-v2 .nav-actions .nav-pill,
  .landing-v2 .nav-actions .primary,
  .landing-v2 .site-header-inner .brand-mark {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .landing-v2 .nav-actions .nav-pill:hover,
  .landing-v2 .nav-actions .primary:hover,
  .landing-v2 .site-header-inner .brand-mark:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 900px) {
  .landing-v2 .footer-inner,
  .landing-v2 .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .landing-v2 .footer-brand,
  .landing-v2 .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .landing-v2 > .site-header {
    padding: 0.65rem 0.85rem;
  }

  .landing-v2 .site-header-inner .brand-mark {
    min-height: 2.8rem;
    padding-inline: 1.1rem;
  }

  .landing-v2 .nav-actions .nav-link {
    display: none;
  }

  .landing-v2 .nav-actions .nav-pill:not(:first-child),
  .landing-v2 .nav-actions .nav-signout {
    display: none;
  }

  .landing-v2 .nav-actions .primary {
    min-height: 2.75rem;
    padding-inline: 1rem;
  }

  .landing-v2 .footer-inner,
  .landing-v2 .footer-links,
  .landing-v2 .footer-bottom {
    grid-template-columns: 1fr;
  }

.landing-v2 .footer-bottom {
    display: grid;
  }
}

/* Footer-linked content pages */
.content-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 7%, rgba(108, 76, 245, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(122, 168, 255, 0.13), transparent 26rem),
    linear-gradient(180deg, #fffdf8 0%, #f8f4ff 54%, #fffdf8 100%);
}

.content-page .content-hero {
  display: grid;
  justify-items: center;
  gap: 1.05rem;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(8rem, 12vw, 10rem) 1.25rem clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.content-page .content-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #111b44;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.content-page .content-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #52607a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 760;
  line-height: 1.58;
}

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.6rem, 6vw, 4.7rem) 1.25rem;
}

.content-section-heading {
  display: grid;
  gap: 0.72rem;
  max-width: 780px;
  margin: 0 auto clamp(1.4rem, 3vw, 2.2rem);
  text-align: center;
}

.content-section-heading h2 {
  margin: 0;
  color: #111b44;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.content-section-heading > p:not(.eyebrow) {
  margin: 0;
  color: #5e6a80;
  font-size: 1.04rem;
  font-weight: 760;
  line-height: 1.55;
}

.content-grid,
.content-split,
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

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

.content-card,
.blog-preview-card,
.resource-link-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(108, 76, 245, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(122, 168, 255, 0.18), transparent 9rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 55px rgba(17, 27, 68, 0.08);
  color: #111b44;
  text-decoration: none;
}

.content-card h3,
.blog-preview-card h2,
.resource-link-card strong {
  margin: 0;
  color: #111b44;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.content-card p,
.blog-preview-card p,
.resource-link-card span,
.article-body p,
.legal-body p {
  margin: 0;
  color: #52607a;
  font-size: 0.99rem;
  font-weight: 720;
  line-height: 1.62;
}

.content-card ul {
  display: grid;
  gap: 0.48rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.content-card li {
  position: relative;
  padding-left: 1.35rem;
  color: #26345f;
  font-size: 0.96rem;
  font-weight: 820;
  line-height: 1.4;
}

.content-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #6c4cf5, #7aa8ff);
}

.content-card.wide {
  max-width: 760px;
  margin: 0 auto;
  min-height: auto;
}

.content-card a {
  color: #6c4cf5;
  font-weight: 900;
}

.about-intro-section {
  padding-top: 0.8rem;
}

.about-definition-card,
.about-approach-card,
.about-final-panel,
.about-note-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(108, 76, 245, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 96% 4%, rgba(122, 168, 255, 0.2), transparent 14rem),
    radial-gradient(circle at 0% 100%, rgba(246, 221, 231, 0.42), transparent 17rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(17, 27, 68, 0.1);
}

.about-definition-card {
  display: grid;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.about-definition-card h2,
.about-approach-card h2,
.about-final-panel h2 {
  max-width: 820px;
  margin: 0;
  color: #111b44;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  line-height: 0.98;
}

.about-definition-card p,
.about-approach-card p,
.about-final-panel p,
.about-note-card p {
  max-width: 860px;
  margin: 0;
  color: #52607a;
  font-size: 1.04rem;
  font-weight: 740;
  line-height: 1.65;
}

.about-link-row,
.about-internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.about-link-row a,
.about-internal-links a {
  border-radius: 999px;
  padding: 0.74rem 1rem;
  background: #f3eeff;
  color: #5b3ee8;
  font-size: 0.92rem;
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.about-link-row a:hover,
.about-link-row a:focus-visible,
.about-internal-links a:hover,
.about-internal-links a:focus-visible {
  background: #e7defe;
  transform: translateY(-1px);
}

.about-audience-grid .content-card,
.about-benefit-grid .content-card {
  min-height: 220px;
}

.about-audience-grid .content-card::before,
.about-benefit-grid .content-card::before {
  content: "";
  width: 3.2rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #6c4cf5, #7aa8ff);
}

.about-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-step-grid article {
  display: grid;
  gap: 0.75rem;
  min-height: 220px;
  border: 1px solid rgba(108, 76, 245, 0.13);
  border-radius: 28px;
  padding: 1.3rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(122, 168, 255, 0.18), transparent 8rem),
    #fffdf8;
  box-shadow: 0 18px 46px rgba(17, 27, 68, 0.08);
}

.about-step-grid span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #6c4cf5, #7aa8ff);
  color: #ffffff;
  font-weight: 950;
}

.about-step-grid h3 {
  margin: 0;
  color: #111b44;
  font-size: 1.28rem;
  line-height: 1.05;
}

.about-step-grid p {
  margin: 0;
  color: #52607a;
  font-weight: 740;
  line-height: 1.55;
}

.about-note-card {
  display: grid;
  gap: 0.45rem;
  max-width: 900px;
  margin: 1rem auto 0;
  padding: 1.2rem 1.35rem;
  background:
    linear-gradient(135deg, rgba(243, 238, 255, 0.95), rgba(234, 243, 255, 0.95));
}

.about-note-card strong {
  color: #111b44;
  font-size: 1.05rem;
}

.about-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 980px;
  margin: 0 auto;
}

.about-tag-cloud span {
  border: 1px solid rgba(108, 76, 245, 0.13);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.86);
  color: #111b44;
  box-shadow: 0 12px 30px rgba(17, 27, 68, 0.06);
  font-weight: 900;
}

.about-approach-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.5rem);
}

.about-approach-card > div:first-child {
  display: grid;
  gap: 1rem;
}

.about-internal-links {
  align-content: center;
  border-radius: 26px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.58);
}

.about-internal-links a {
  width: 100%;
}

.about-final-cta {
  padding-top: 1rem;
}

.about-final-panel {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 3.2rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(122, 168, 255, 0.26), transparent 13rem),
    linear-gradient(135deg, #111b44, #2a176f 58%, #6c4cf5);
  text-align: center;
}

.about-final-panel h2,
.about-final-panel p {
  color: #ffffff;
}

.about-final-panel p:not(.eyebrow) {
  max-width: 680px;
  color: #d8dff4;
}

.about-final-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.about-final-panel .secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.contact-layout-section {
  padding-top: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: start;
}

.contact-form-card,
.contact-support-panel {
  border: 1px solid rgba(108, 76, 245, 0.13);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(122, 168, 255, 0.18), transparent 11rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 65px rgba(17, 27, 68, 0.1);
}

.contact-form-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.contact-form-card h2,
.contact-support-panel h2 {
  margin: 0;
  color: #111b44;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
}

.contact-form-card > p {
  margin: -0.3rem 0 0.3rem;
  color: #5e6a80;
  font-weight: 760;
  line-height: 1.55;
}

.contact-form-card label:not(.contact-check):not(.contact-honeypot) {
  display: grid;
  gap: 0.45rem;
  color: #111b44;
  font-weight: 900;
}

.contact-form-card label span {
  font-size: 0.95rem;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 2px solid rgba(108, 76, 245, 0.14);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: rgba(255, 253, 248, 0.96);
  color: #111b44;
  box-shadow: 0 10px 24px rgba(17, 27, 68, 0.05);
  font: inherit;
  font-weight: 760;
}

.contact-form-card textarea {
  min-height: 150px;
}

.contact-form-card input:focus-visible,
.contact-form-card select:focus-visible,
.contact-form-card textarea:focus-visible {
  outline: 4px solid rgba(108, 76, 245, 0.18);
  border-color: #6c4cf5;
}

.contact-form-card label.has-error input,
.contact-form-card label.has-error select,
.contact-form-card label.has-error textarea {
  border-color: #d97706;
  background: #fff8ed;
}

.contact-error {
  color: #9a4f00;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-check {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: #26345f;
  font-weight: 850;
}

.contact-check input {
  width: 1.1rem;
  height: 1.1rem;
  box-shadow: none;
  accent-color: #6c4cf5;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-submit {
  justify-self: start;
  margin-top: 0.25rem;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.contact-support-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
}

.contact-topic-list {
  display: grid;
  gap: 0.75rem;
}

.contact-topic-list article {
  display: grid;
  gap: 0.25rem;
  border-radius: 20px;
  padding: 1rem;
  background: linear-gradient(135deg, #f3eeff, #eaf3ff);
}

.contact-topic-list strong {
  color: #111b44;
  font-size: 1rem;
}

.contact-topic-list span {
  color: #52607a;
  font-size: 0.93rem;
  font-weight: 760;
  line-height: 1.45;
}

.contact-success-card {
  justify-items: center;
  align-content: center;
  min-height: 480px;
  text-align: center;
}

.contact-success-card p {
  max-width: 460px;
}

.contact-success-icon {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #6c4cf5, #7aa8ff);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(108, 76, 245, 0.28);
  font-size: 2rem;
  font-weight: 950;
}

.content-accordion {
  display: grid;
  gap: 0.85rem;
  max-width: 860px;
  margin: 0 auto;
}

.content-accordion details {
  border: 1px solid rgba(108, 76, 245, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(17, 27, 68, 0.06);
}

.content-accordion summary {
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  color: #111b44;
  font-size: 1rem;
  font-weight: 950;
}

.content-accordion p {
  margin: 0;
  padding: 0 1.35rem 1.2rem;
  color: #52607a;
  font-weight: 740;
  line-height: 1.6;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.resource-link-card {
  min-height: 190px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-preview-card {
  min-height: 300px;
}

.blog-preview-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: #f3eeff;
  color: #6c4cf5;
  font-size: 0.76rem;
  font-weight: 950;
}

.content-link-button {
  align-self: end;
  width: fit-content;
  margin-top: 0.4rem;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: #111b44;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
}

.article-body,
.legal-body {
  display: grid;
  gap: 1.4rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem clamp(4rem, 8vw, 6rem);
}

.article-body section,
.legal-body section {
  padding: clamp(1.2rem, 2.5vw, 1.65rem);
  border: 1px solid rgba(108, 76, 245, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(17, 27, 68, 0.06);
}

.article-body h2,
.legal-body h2 {
  margin: 0 0 0.65rem;
  color: #111b44;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.05;
}

.content-steps {
  display: grid;
  gap: 0.8rem;
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.content-steps li {
  counter-increment: steps;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  border-radius: 20px;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.86);
  color: #26345f;
  font-weight: 850;
  box-shadow: 0 14px 36px rgba(17, 27, 68, 0.06);
}

.content-steps li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #6c4cf5, #7aa8ff);
  color: #ffffff;
  font-weight: 950;
}

.category-sample-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.category-sample-row span {
  border-radius: 18px;
  padding: 0.95rem 1.1rem;
  background: linear-gradient(135deg, #f3eeff, #eaf3ff);
  color: #111b44;
  box-shadow: 0 12px 30px rgba(17, 27, 68, 0.07);
  font-weight: 950;
}

@media (hover: hover) {
  .resource-link-card:hover,
  .resource-link-card:focus-visible,
  .blog-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(17, 27, 68, 0.11);
  }
}

@media (max-width: 980px) {
  .content-grid,
  .blog-card-grid,
  .resource-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-step-grid,
  .about-approach-card {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .content-page .content-hero {
    padding-top: 6.7rem;
  }

  .content-grid,
  .content-split,
  .blog-card-grid,
  .resource-list,
  .about-step-grid,
  .about-approach-card {
    grid-template-columns: 1fr;
  }

  .content-card,
  .blog-preview-card,
  .resource-link-card {
    border-radius: 22px;
  }

  .about-definition-card,
  .about-approach-card,
  .about-final-panel {
    border-radius: 24px;
  }

  .about-step-grid article {
    min-height: auto;
  }
}

/* Bottom-section layout polish */
.landing-v2 .pricing-section {
  padding-top: 4.6rem;
  padding-bottom: 4.2rem;
}

.landing-v2 .pricing-section .smooth-heading {
  max-width: 780px;
  margin-bottom: 1.65rem;
}

.landing-v2 .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.35rem, 3vw, 2rem);
  max-width: 940px;
  margin-inline: auto;
}

.landing-v2 .pricing-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  width: 100%;
  min-height: 470px;
  padding: 1.45rem;
  border-radius: 30px;
}

.landing-v2 .pricing-card.popular {
  transform: none;
}

.landing-v2 .pricing-card ul {
  align-self: start;
}

.landing-v2 .pricing-card button {
  align-self: end;
}

.landing-v2 .faq-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.landing-v2 .faq-section .smooth-heading {
  max-width: 720px;
  margin-bottom: 1.45rem;
}

.landing-v2 .faq-section .eyebrow {
  text-transform: uppercase;
}

.landing-v2 .faq-list {
  max-width: 820px;
  margin-inline: auto;
  gap: 0.7rem;
}

.landing-v2 .faq-list details {
  border: 1px solid rgba(108, 76, 245, 0.08);
  border-radius: 20px;
}

.landing-v2 .faq-list summary {
  padding: 1rem 3.2rem 1rem 1.2rem;
}

.landing-v2 .faq-list p {
  padding: 0 1.2rem 1.05rem;
  line-height: 1.55;
}

.landing-v2 .smooth-final-cta {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  max-width: 1040px;
  margin: 0 auto 2.4rem;
  padding: clamp(2.6rem, 5vw, 3.6rem) clamp(1.25rem, 4vw, 3rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 215, 107, 0.12), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(142, 124, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #10182f 0%, #26105f 62%, #6c4cf5 125%);
  text-align: center;
}

.landing-v2 .smooth-final-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1;
}

.landing-v2 .smooth-final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.5;
}

.landing-v2 .smooth-final-cta .actions {
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.landing-v2 .smooth-final-cta .primary,
.landing-v2 .smooth-final-cta .secondary {
  min-height: 3.15rem;
  padding: 0.82rem 1.2rem;
}

.smooth-final-cta::before {
  top: 1.05rem;
  right: 8%;
  width: 3.1rem;
  height: 2.3rem;
}

.smooth-final-cta::after {
  bottom: 1.05rem;
  left: 8%;
  width: 2.45rem;
  height: 2.45rem;
}

@media (max-width: 760px) {
  .landing-v2 .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 520px;
  }

  .landing-v2 .pricing-card {
    min-height: auto;
  }

  .landing-v2 .smooth-final-cta {
    margin-inline: 1rem;
    padding-block: 2.35rem;
  }

  .landing-v2 .smooth-final-cta .actions {
    width: 100%;
  }

  .landing-v2 .smooth-final-cta .primary,
  .landing-v2 .smooth-final-cta .secondary {
    width: 100%;
  }
}

/* Accessibility and responsive QA pass */
input::placeholder,
textarea::placeholder {
  color: #5e6a80;
  opacity: 1;
}

button,
summary,
.primary,
.secondary,
.ghost,
.danger,
.nav-link,
.brand-mark,
.content-link-button,
.sample-option,
.use-case-card,
.team-count-option,
.setup-dropdown-trigger,
.setup-dropdown-option,
.point-tile {
  touch-action: manipulation;
}

.footer-column a,
.content-link-button,
.blog-preview-card a,
.resource-link-card,
.about-internal-links a {
  min-height: 44px;
}

.footer-column a,
.about-internal-links a {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
}

.setup-dropdown-option:focus-visible,
.sample-option:focus-visible,
.use-case-card:focus-visible,
.team-count-option:focus-visible,
.point-tile:focus-visible {
  outline: 3px solid rgba(108, 76, 245, 0.78);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(108, 76, 245, 0.14);
}

.leave-modal-backdrop {
  padding: 1rem;
}

.contact-form-card [aria-invalid="true"],
.auth-form-card [aria-invalid="true"],
.wizard-card [aria-invalid="true"] {
  border-color: rgba(245, 158, 11, 0.82);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.auth-page {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(108, 76, 245, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(122, 168, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #f8f4ff 100%);
}

.auth-page > .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.75rem clamp(0.85rem, 3vw, 1.5rem);
}

.auth-page > .site-header::before {
  inset: 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 27, 68, 0.08);
  border-radius: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 248, 232, 0.78) 0%,
      rgba(255, 252, 246, 0.74) 45%,
      rgba(248, 244, 255, 0.76) 100%
    );
  box-shadow: 0 8px 30px rgba(17, 27, 68, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.auth-page .site-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.auth-page .site-header-inner .brand-mark {
  min-height: 3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.95);
  color: #111b44;
  box-shadow: 0 12px 26px rgba(17, 27, 68, 0.08);
}

.auth-page .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.auth-page .nav-actions .nav-link,
.auth-page .nav-actions .nav-signout {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.55rem 0.35rem;
  border-radius: 999px;
  background: transparent;
  color: #111b44;
  font-size: 0.93rem;
  font-weight: 950;
  text-decoration: none;
}

.auth-page .site-header .primary {
  min-width: auto;
  min-height: 3rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #6c4cf5 0%, #8e7cff 100%);
  box-shadow: 0 12px 28px rgba(108, 76, 245, 0.24);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 400px);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  width: min(1080px, calc(100% - 2rem));
  min-height: 0;
  margin: 0 auto;
  padding: clamp(0.9rem, 2.2vw, 1.5rem) 0 clamp(1rem, 2.4vw, 1.5rem);
}

.auth-copy-card,
.auth-form-card {
  border: 1px solid rgba(108, 76, 245, 0.12);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 28px 76px rgba(17, 27, 68, 0.12);
}

.auth-copy-card {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.15rem, 3vw, 1.8rem);
}

.auth-copy-card h1 {
  max-width: 580px;
  margin: 0;
  color: #111b44;
  font-size: clamp(2.1rem, 4.8vw, 3.7rem);
  line-height: 0.98;
}

.auth-copy-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #526078;
  font-size: clamp(0.98rem, 1.4vw, 1.06rem);
  font-weight: 780;
  line-height: 1.55;
}

.auth-benefit-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.auth-benefit-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #111b44;
  font-weight: 900;
}

.auth-benefit-list span::before {
  content: "✓";
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  background: #eee7ff;
  color: #6c4cf5;
}

.auth-form-card {
  display: grid;
  gap: 0.82rem;
  padding: clamp(1.1rem, 2.5vw, 1.45rem);
}

.auth-form-card h2 {
  margin: 0;
  color: #111b44;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.auth-form-card p {
  margin: 0;
  color: #526078;
  font-weight: 760;
  line-height: 1.5;
}

.auth-form-card label {
  display: grid;
  gap: 0.4rem;
  color: #111b44;
  font-weight: 900;
}

.auth-form-card label span {
  color: #68738a;
  font-size: 0.84rem;
  font-weight: 760;
}

.auth-form-card input {
  min-height: 3rem;
  border: 2px solid rgba(108, 76, 245, 0.14);
  border-radius: 18px;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  color: #111b44;
  font: inherit;
}

.auth-form-card .primary {
  width: 100%;
}

.auth-error {
  color: #8a4f00;
  font-size: 0.82rem;
  font-weight: 900;
}

.auth-switch {
  margin-top: 0.1rem;
  text-align: center;
}

.auth-switch a {
  color: #6c4cf5;
  font-weight: 950;
}

@media (max-height: 760px) and (min-width: 760px) {
  .auth-shell {
    align-items: center;
    padding-block: 0.75rem;
  }

  .auth-copy-card,
  .auth-form-card {
    border-radius: 26px;
  }

  .auth-copy-card h1 {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
  }

  .auth-benefit-list span {
    font-size: 0.95rem;
  }

  .auth-form-card h2 {
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  }
}

@media (max-width: 760px) {
  .auth-page {
    overflow: auto;
  }

  .auth-page > .site-header {
    padding: 0.65rem 0.85rem;
  }

  .auth-page .site-header-inner .brand-mark {
    min-height: 2.8rem;
    padding-inline: 1.1rem;
  }

  .auth-page .nav-actions .nav-link {
    display: none;
  }

  .auth-page .site-header .primary {
    min-height: 2.75rem;
    padding-inline: 1rem;
  }

  .auth-copy-card {
    padding: 1.05rem;
  }

  .auth-copy-card h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .auth-form-card {
    padding: 1.05rem;
  }
}

@media (max-width: 640px) {
  .wizard-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .wizard-header {
    grid-template-columns: minmax(0, 1fr);
  }

  .wizard-header h1 {
    font-size: clamp(1.85rem, 11vw, 2.7rem);
  }

  .wizard-form-grid,
  .wizard-category-grid,
  .question-selector-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .setup-board-preview {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.35rem;
    overflow-x: hidden;
    padding: 0.55rem;
  }

  .setup-board-preview strong,
  .setup-board-preview button {
    min-width: 0;
    min-height: 2.25rem;
    padding: 0.38rem 0.2rem;
    border-radius: 10px;
    font-size: clamp(0.62rem, 2.8vw, 0.78rem);
    overflow-wrap: anywhere;
  }

  .preview-game-frame {
    min-width: 0;
  }

  .setup-preview-panel,
  .wizard-shell,
  .wizard-card {
    border-radius: 24px;
  }

  .game-board {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-width: 0;
    overflow-x: hidden;
  }

  .category-column {
    min-width: 0;
  }

  .category-column h2,
  .point-tile {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .point-tile {
    min-height: 3.2rem;
  }

  .player-game-layout,
  .sample-demo-layout,
  .auth-shell,
  .contact-layout,
  .content-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-shell {
    width: min(100% - 1.5rem, 560px);
    min-height: auto;
    padding-top: 1rem;
  }

  .host-shell {
    padding-inline: 0.75rem;
  }

  .host-bottom-bar {
    position: static;
    width: 100%;
    margin-top: 1rem;
    transform: none;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: 0.75rem;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .primary,
  .nav-actions .secondary,
  .nav-link {
    min-height: 2.75rem;
    padding-inline: 0.85rem;
  }

  .landing-v2 .hero-copy h1,
  .content-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .landing-section,
  .content-page-main,
  .setup-wizard {
    padding-inline: 0.85rem;
  }

  .mini-category-board b,
  .mini-category-board [data-preview-tile] {
    min-height: 2.25rem;
  }

  .sample-feature-card,
  .sample-feature-content,
  .sample-feature-visual {
    min-width: 0;
  }

  .leave-modal {
    width: 100%;
  }
}

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

/* Shared footer polish: match the homepage footer on every route. */
.site-footer {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(108, 76, 245, 0.28), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(122, 168, 255, 0.18), transparent 24%),
    #10182f;
  color: #d8dff4;
  box-shadow: 0 -22px 70px rgba(17, 27, 68, 0.14);
}

.footer-accent {
  height: 0.5rem;
  background: linear-gradient(90deg, #8b5cf6 0%, #6c4cf5 45%, #38a9ff 100%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.8rem) clamp(1rem, 3vw, 1.5rem) 1.4rem;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.site-footer .footer-brand h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.site-footer .footer-brand p {
  max-width: 370px;
  margin: 0;
  color: #c8d0ea;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.site-footer .footer-column h3 {
  margin: 0 0 0.95rem;
  color: #f3d76b;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.site-footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer .footer-column a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 44px;
  min-height: 44px;
  margin: 0.2rem 0;
  color: #d8dff4;
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.25;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer .footer-column a:hover,
.site-footer .footer-column a:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aeb9d8;
  font-size: 0.92rem;
  font-weight: 760;
}

.footer-bottom span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-bottom b {
  color: #f3d76b;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-inner,
  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Host control room polish */
.host-shell {
  gap: 1.1rem;
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.host-header,
.host-status-row,
.host-grid {
  width: min(100%, 1540px);
}

.host-header {
  align-items: center;
}

.host-header h1 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.host-grid {
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr) minmax(280px, 0.86fr);
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
}

.host-card {
  border-radius: 24px;
  padding: clamp(0.85rem, 1.3vw, 1.1rem);
  overflow: visible;
}

.host-card-header h2 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
}

.mini-host-board {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.42rem;
  width: 100%;
  min-width: 0;
  padding: clamp(0.45rem, 1vw, 0.65rem);
  border-radius: 20px;
}

.mini-host-board div {
  min-width: 0;
  grid-template-rows: minmax(2.75rem, auto) repeat(5, minmax(2.65rem, 1fr));
}

.mini-host-board h3,
.mini-host-board button {
  min-width: 0;
  min-height: 2.65rem;
  padding: 0.35rem;
  line-height: 1.12;
}

.mini-host-board h3 {
  display: -webkit-box;
  overflow: hidden;
  color: #111b44;
  font-size: clamp(0.58rem, 0.72vw, 0.7rem);
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mini-host-board button {
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
}

.mini-host-board button:disabled {
  cursor: default;
}

.mini-host-board button.selected {
  background: linear-gradient(135deg, #7aa8ff, #6c4cf5);
}

.host-current-clue,
.empty-host-clue,
.host-action-card,
.host-buzzer-status {
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f6f2ff);
  box-shadow: inset 0 0 0 1px rgba(108, 76, 245, 0.08);
}

.host-action-card {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.host-action-card > span,
.host-buzzer-status > span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  background: #eee7ff;
  color: #6c4cf5;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.host-action-card h3 {
  margin: 0;
  color: #111b44;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.host-action-card p {
  margin: 0;
  color: #566176;
  font-weight: 780;
  line-height: 1.45;
}

.host-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.host-action-buttons button {
  min-height: 2.75rem;
}

.host-buzzer-status {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem;
}

.host-buzzer-status strong {
  color: #111b44;
  font-size: 1.1rem;
  line-height: 1.25;
}

.host-team-list article {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem 0.75rem;
  padding: 0.85rem;
  border-left-width: 7px;
}

.host-team-list article.buzzed {
  background: linear-gradient(135deg, #ffffff, #f8f4ff);
  box-shadow: inset 0 0 0 2px rgba(108, 76, 245, 0.26), 0 16px 34px rgba(108, 76, 245, 0.13);
}

.host-team-list article > div:first-child {
  min-width: 0;
}

.host-team-list .team-avatar {
  flex: 0 0 auto;
  color: #111b44;
  text-shadow: none;
}

.host-team-list strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.host-team-list small {
  grid-column: 1 / -1;
  color: #68738a;
  font-weight: 850;
}

.buzz-star {
  position: absolute;
  top: -0.55rem;
  right: 0.65rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 2px solid #fffdf8;
  border-radius: 50%;
  background: #f3d76b;
  color: #111b44;
  box-shadow: 0 10px 22px rgba(17, 27, 68, 0.16);
  font-size: 1rem;
}

.team-score-adjust {
  grid-column: 1 / -1;
}

.team-score-adjust summary {
  min-height: 2.35rem;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: #f8f4ff;
  color: #6c4cf5;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 950;
}

.team-score-adjust div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.host-bottom-bar,
.host-buzzer-box,
.host-card-actions {
  display: none;
}

/* Board-first player display */
.presentation-player-display {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(0.65rem, 1.5vw, 1.2rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(122, 168, 255, 0.28), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(108, 76, 245, 0.22), transparent 28%),
    radial-gradient(circle at 88% 84%, rgba(246, 221, 231, 0.28), transparent 30%),
    linear-gradient(135deg, #090f25 0%, #14124a 48%, #2b176e 100%);
  overflow: hidden;
}

.presentation-player-display::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.presentation-board-layout,
.sample-demo-layout.presentation-board-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1500px);
  height: min(900px, calc(100vh - 1.3rem));
  min-height: 0;
  margin: 0 auto;
  grid-template-columns: 1fr;
  align-items: center;
}

.presentation-board-card,
.sample-demo-layout .presentation-board-card {
  position: relative;
  width: min(100%, 1480px);
  height: min(860px, calc(100vh - 1.3rem));
  min-height: 0;
  align-content: center;
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
  padding: clamp(0.85rem, 1.7vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(24px, 3vw, 42px);
  background:
    radial-gradient(circle at 8% 10%, rgba(122, 168, 255, 0.18), transparent 26%),
    radial-gradient(circle at 92% 6%, rgba(108, 76, 245, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.presentation-status-strip {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  width: min(100%, 920px);
  margin: 0 auto;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 253, 248, 0.12);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 950;
}

.presentation-status-strip span {
  color: #cfd7ff;
}

.presentation-board-card .game-board,
.sample-demo-view .presentation-board-card .game-board {
  width: min(100%, 1280px);
  height: clamp(430px, 68vh, 690px);
  min-height: 0;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.55rem, 1vw, 0.9rem);
  padding: clamp(0.8rem, 1.5vw, 1.25rem);
  border-radius: clamp(20px, 2.3vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(142, 124, 255, 0.36), transparent 34%),
    linear-gradient(135deg, #0c1230, #23105d 58%, #3d1d8b);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.presentation-board-card .board-title-banner {
  padding-bottom: 0.15rem;
}

.presentation-board-card .board-title-banner strong {
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
}

.presentation-board-card .category-column,
.sample-demo-view .presentation-board-card .category-column {
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(4.5rem, auto) repeat(5, minmax(4.65rem, 1fr));
  gap: clamp(0.45rem, 0.85vw, 0.75rem);
}

.presentation-board-card .category-column h2,
.sample-demo-view .presentation-board-card .category-column h2 {
  display: grid;
  min-height: 4.5rem;
  place-items: center;
  padding: 0.45rem;
  color: #111b44;
  font-size: clamp(0.74rem, 1.25vw, 1.1rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.presentation-board-card .point-tile,
.sample-demo-view .presentation-board-card .point-tile {
  min-height: 4.65rem;
  border-radius: clamp(0.8rem, 1.4vw, 1.1rem);
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.join-player-view {
  background:
    radial-gradient(circle at 12% 12%, rgba(122, 168, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #fffdf8, #f3eeff);
}

.join-player-card {
  width: min(100%, 780px);
  color: #111b44;
  text-align: center;
}

.join-player-card h1 {
  margin: 0;
  color: #111b44;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.join-player-card p {
  max-width: 560px;
  margin: 0 auto;
  color: #566176;
  font-weight: 850;
  line-height: 1.5;
}

.join-game-label {
  width: fit-content;
  margin: 0 auto;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: #eee7ff;
  color: #6c4cf5;
  font-weight: 950;
}

.join-display-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(122, 168, 255, 0.34), transparent 34%),
    radial-gradient(circle at 10% 20%, rgba(108, 76, 245, 0.28), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(246, 221, 231, 0.18), transparent 28%),
    linear-gradient(135deg, #080d22 0%, #17134a 50%, #321779 100%);
  overflow: hidden;
}

.join-display-card {
  display: grid;
  justify-items: center;
  gap: clamp(0.75rem, 1.7vw, 1.25rem);
  width: min(100%, 760px);
  max-height: calc(100vh - 2rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(28px, 4vw, 48px);
  padding: clamp(1.2rem, 3.5vw, 2.6rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(142, 124, 255, 0.22), transparent 35%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  color: white;
  text-align: center;
  backdrop-filter: blur(12px);
}

.join-display-card .eyebrow {
  color: #f3d76b;
}

.join-display-card h1 {
  max-width: 680px;
  margin: 0;
  color: white;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.92;
}

.join-display-card p {
  margin: 0;
  color: #dbe3ff;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 850;
}

.join-display-card img {
  width: clamp(220px, 32vw, 420px);
  height: clamp(220px, 32vw, 420px);
  border: clamp(0.65rem, 1.5vw, 1rem) solid #fffdf8;
  border-radius: 28px;
  background: white;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.join-display-link {
  display: grid;
  gap: 0.3rem;
  width: min(100%, 640px);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255, 253, 248, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.join-display-link span {
  color: #f3d76b;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.join-display-link strong {
  overflow: hidden;
  color: white;
  font-size: clamp(0.88rem, 1.6vw, 1.1rem);
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .presentation-board-card,
  .sample-demo-layout .presentation-board-card {
    height: calc(100vh - 1.3rem);
    min-height: 0;
  }

  .presentation-board-card .game-board,
  .sample-demo-view .presentation-board-card .game-board {
    height: min(68vh, 620px);
    min-height: 0;
  }

  .presentation-board-card .category-column,
  .sample-demo-view .presentation-board-card .category-column {
    grid-template-rows: minmax(3.2rem, auto) repeat(5, minmax(3.4rem, 1fr));
  }

  .presentation-board-card .category-column h2,
  .sample-demo-view .presentation-board-card .category-column h2 {
    min-height: 3.2rem;
    font-size: 0.68rem;
  }

  .presentation-board-card .point-tile,
  .sample-demo-view .presentation-board-card .point-tile {
    min-height: 3.4rem;
    font-size: clamp(1rem, 4vw, 1.8rem);
  }
}

@media (max-width: 640px) {
  .presentation-player-display {
    place-items: center;
    overflow: hidden;
  }

  .presentation-board-layout,
  .sample-demo-layout.presentation-board-layout {
    height: calc(100vh - 1rem);
    min-height: 0;
  }

  .presentation-status-strip {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .presentation-board-card,
  .sample-demo-layout .presentation-board-card {
    border-radius: 24px;
    height: calc(100vh - 1rem);
    padding: 0.65rem;
  }

  .presentation-board-card .game-board,
  .sample-demo-view .presentation-board-card .game-board {
    gap: 0.32rem;
    height: 72vh;
    padding: 0.45rem;
  }

  .presentation-board-card .category-column,
  .sample-demo-view .presentation-board-card .category-column {
    gap: 0.32rem;
    grid-template-rows: minmax(2.7rem, auto) repeat(5, minmax(2.8rem, 1fr));
  }

  .presentation-board-card .category-column h2,
  .sample-demo-view .presentation-board-card .category-column h2 {
    min-height: 2.7rem;
    border-radius: 0.55rem;
    font-size: 0.54rem;
  }

  .presentation-board-card .point-tile,
  .sample-demo-view .presentation-board-card .point-tile {
    min-height: 2.8rem;
    border-radius: 0.55rem;
    font-size: clamp(0.78rem, 4vw, 1.2rem);
  }

  .join-display-card {
    max-height: calc(100vh - 1rem);
    padding: 1rem;
  }

  .join-display-link {
    border-radius: 20px;
  }
}

@media (max-width: 1180px) {
  .host-grid {
    grid-template-columns: 1fr 1fr;
  }

  .host-command-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .host-header {
    display: grid;
  }

  .host-header-actions,
  .host-status-row,
  .host-grid {
    grid-template-columns: 1fr;
  }

  .host-status-row {
    display: grid;
  }

  .host-command-card {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .mini-host-board {
    gap: 0.28rem;
    padding: 0.35rem;
  }

  .mini-host-board div {
    gap: 0.28rem;
    grid-template-rows: minmax(2.5rem, auto) repeat(5, minmax(2.35rem, 1fr));
  }

  .mini-host-board h3,
  .mini-host-board button {
    min-height: 2.35rem;
    border-radius: 0.65rem;
    font-size: 0.62rem;
  }

  .host-action-buttons {
    display: grid;
  }
}

/* Larger readable host board */
.host-header,
.host-status-row,
.host-grid {
  width: min(100%, 1760px);
}

.host-grid {
  grid-template-columns: minmax(620px, 1.45fr) minmax(360px, 0.8fr) minmax(280px, 0.62fr);
  align-items: start;
}

.host-board-card {
  padding: clamp(1rem, 1.5vw, 1.35rem);
}

.host-board-card .mini-host-board {
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: clamp(0.5rem, 0.75vw, 0.72rem);
  padding: clamp(0.65rem, 1vw, 0.85rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.host-board-card .mini-host-board div {
  min-width: 0;
  gap: clamp(0.42rem, 0.68vw, 0.58rem);
  grid-template-rows: minmax(3.15rem, auto) repeat(5, minmax(3.2rem, 1fr));
}

.host-board-card .mini-host-board h3,
.host-board-card .mini-host-board button {
  min-height: 3.2rem;
  border-radius: 0.9rem;
}

.host-board-card .mini-host-board h3 {
  display: grid;
  min-height: 3.15rem;
  padding: 0.45rem 0.6rem;
  place-items: center;
  color: #111b44;
  font-size: clamp(0.76rem, 0.95vw, 0.95rem);
  line-height: 1;
  overflow: hidden;
  overflow-wrap: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-orient: initial;
  -webkit-line-clamp: initial;
}

.host-board-card .mini-host-board button {
  font-size: clamp(0.95rem, 1.1vw, 1.2rem);
}

@media (max-width: 1320px) {
  .host-grid {
    grid-template-columns: minmax(560px, 1.2fr) minmax(340px, 0.85fr);
  }

  .host-command-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 940px) {
  .host-grid {
    grid-template-columns: 1fr;
  }

  .host-board-card .mini-host-board {
    grid-template-columns: repeat(5, minmax(100px, 1fr));
  }
}

@media (max-width: 620px) {
  .host-board-card .mini-host-board {
    grid-template-columns: repeat(5, minmax(88px, 1fr));
  }

  .host-board-card .mini-host-board h3,
  .host-board-card .mini-host-board button {
    min-height: 2.8rem;
  }

  .host-board-card .mini-host-board h3 {
    font-size: 0.68rem;
  }

  .host-board-card .mini-host-board button {
    font-size: 0.86rem;
  }
}

/* Host panel question-first layout */
.host-board-card,
.host-live-grid {
  width: min(100%, 1760px);
  margin-inline: auto;
}

.host-live-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: clamp(0.9rem, 1.4vw, 1.35rem);
  align-items: start;
}

.host-question-card {
  gap: clamp(0.85rem, 1.2vw, 1.1rem);
}

.host-question-answer {
  display: grid;
  gap: clamp(0.75rem, 1vw, 1rem);
  border-radius: 24px;
  padding: clamp(1rem, 1.8vw, 1.5rem);
  background:
    radial-gradient(circle at 95% 8%, rgba(122, 168, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #f6f2ff);
  box-shadow: inset 0 0 0 1px rgba(108, 76, 245, 0.1);
}

.host-question-answer > span {
  width: fit-content;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: #eee7ff;
  color: #6c4cf5;
  font-size: 0.8rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.host-question-answer article {
  display: grid;
  gap: 0.35rem;
  border-radius: 20px;
  padding: clamp(0.9rem, 1.4vw, 1.2rem);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(17, 27, 68, 0.07);
}

.host-question-answer article p {
  margin: 0;
  color: #6c4cf5;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.host-question-answer article strong {
  color: #111b44;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.08;
}

.host-question-answer .host-answer-block {
  background: linear-gradient(135deg, #111b44, #26105f);
}

.host-question-answer .host-answer-block p {
  color: #f3d76b;
}

.host-question-answer .host-answer-block strong {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
}

.host-question-card .empty-host-clue {
  padding: clamp(1.2rem, 2vw, 1.65rem);
  text-align: center;
}

.host-question-card .empty-host-clue strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.host-notes-panel {
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: inset 0 0 0 1px rgba(17, 27, 68, 0.08);
}

.host-notes-panel summary {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  min-height: 3.1rem;
  border-radius: 20px;
  padding: 0.75rem 1rem;
  color: #111b44;
  cursor: pointer;
  font-weight: 950;
}

.host-notes-panel summary:focus-visible {
  outline: 3px solid rgba(108, 76, 245, 0.75);
  outline-offset: 3px;
}

.host-notes-panel summary span {
  font-size: 1rem;
}

.host-notes-panel summary b {
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  background: #eee7ff;
  color: #6c4cf5;
  font-size: 0.74rem;
}

.host-notes-panel > div {
  display: grid;
  gap: 0.65rem;
  padding: 0 1rem 1rem;
}

.host-notes-panel article {
  display: grid;
  gap: 0.2rem;
  border-top: 1px solid rgba(17, 27, 68, 0.08);
  padding-top: 0.65rem;
}

.host-notes-panel article span {
  color: #6c4cf5;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.host-notes-panel p {
  margin: 0;
  color: #566176;
  font-weight: 780;
  line-height: 1.45;
}

.host-live-grid .host-command-card {
  position: sticky;
  top: 1rem;
}

@media (max-width: 1120px) {
  .host-live-grid {
    grid-template-columns: 1fr;
  }

  .host-live-grid .host-command-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .host-question-answer article strong {
    font-size: clamp(1.25rem, 7vw, 2rem);
  }

  .host-question-answer .host-answer-block strong {
    font-size: clamp(1.15rem, 6vw, 1.75rem);
  }

  .host-notes-panel summary {
    display: grid;
  }
}

/* Automatic live host flow layout */
.host-team-strip {
  width: min(100%, 1760px);
  margin-inline: auto;
}

.host-team-strip .host-team-list {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.host-team-strip .host-team-list article {
  min-height: 5.4rem;
  border-left-width: 0;
  border-top: 8px solid var(--team);
  padding: 0.95rem;
  background: rgba(255, 253, 248, 0.95);
}

.host-team-strip .host-team-list article.attempted {
  opacity: 0.7;
  background: #f7f2ff;
}

.host-team-strip .host-team-list article.correct {
  opacity: 1;
  background: linear-gradient(135deg, #ffffff, #f4f0ff);
}

.host-team-strip .team-score-adjust {
  display: none;
}

.host-main-grid {
  display: grid;
  grid-template-columns: minmax(610px, 1.12fr) minmax(430px, 0.88fr);
  gap: clamp(0.9rem, 1.4vw, 1.35rem);
  align-items: start;
  width: min(100%, 1760px);
  margin-inline: auto;
}

.host-main-grid .host-board-card,
.host-main-grid .host-question-card {
  width: 100%;
  margin: 0;
}

.host-main-grid .host-board-card .mini-host-board {
  grid-template-columns: repeat(5, minmax(108px, 1fr));
}

.host-main-grid .host-question-card {
  position: sticky;
  top: 1rem;
}

.host-question-card .host-buzzer-status {
  order: 2;
}

.host-question-card .host-action-card {
  order: 3;
}

.host-question-card .host-notes-panel {
  order: 4;
}

.host-team-list article.attempted small {
  color: #8a5a1f;
}

.buzz-button.attempted {
  opacity: 0.55;
}

@media (max-width: 1180px) {
  .host-main-grid {
    grid-template-columns: 1fr;
  }

  .host-main-grid .host-question-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .host-team-strip .host-team-list {
    grid-template-columns: 1fr;
  }

  .host-main-grid .host-board-card .mini-host-board {
    grid-template-columns: repeat(5, minmax(88px, 1fr));
  }
}
