/* =====================================================================
   Megathon × Wispr Flow — Prompt Roulette
   FlowTrip palette · cream / teal / amber / terracotta · editorial.
   ===================================================================== */

:root {
    /* FlowTrip palette */
    --cream:       #F5EDD8;
    --parchment:   #EAD9B0;
    --paper:       #FBF3DE;
    --dark-teal:   #1C3A4A;
    --ink:         #0F2530;
    --amber:       #C8780A;
    --light-amber: #F2A024;
    --terracotta:  #B84C26;
    --fjord:       #2B7A8C;
    --sage:        #7A9E7E;
    --border:      #C8A96E;

    /* Legacy tokens remapped to FlowTrip equivalents so the rest of the
       stylesheet cascades into the new theme without per-rule edits. */
    --bg-0:           var(--cream);
    --bg-1:           var(--paper);
    --bg-2:           var(--parchment);
    --bg-card:        var(--paper);
    --bg-card-strong: #fff;
    --border-soft:    rgba(28, 58, 74, 0.14);
    --border-strong:  rgba(28, 58, 74, 0.30);

    --text-0: var(--dark-teal);     /* primary text / headings        */
    --text-1: #2C1810;              /* body text                      */
    --text-2: #6B5746;              /* muted brown                    */
    --text-3: #9A8A75;              /* low-emphasis                   */

    --accent-purple: var(--terracotta);   /* "primary" accent          */
    --accent-violet: var(--amber);
    --accent-blue:   var(--fjord);
    --accent-cyan:   var(--sage);
    --accent-pink:   var(--terracotta);

    /* Flat solids (no AI-y gradients). Kept as --grad-* so existing rules
       still resolve to a paint value; just no transition between stops. */
    --grad-main:    var(--terracotta);
    --grad-warm:    var(--amber);
    --grad-danger:  var(--terracotta);
    --grad-success: var(--sage);
    --grad-title:   var(--dark-teal);

    --glow-purple: none;
    --glow-blue:   none;
    --glow-cyan:   none;
    --glow-danger: none;

    --radius-s: 10px;
    --radius-m: 14px;
    --radius-l: 22px;

    --font:        "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif:  "Playfair Display", Georgia, serif;
    --font-mono:   "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--cream);
    color: var(--text-1);
    font-family: var(--font);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--cream);
    min-height: 100vh;
}

/* ----- Topbar -------------------------------------------------------- */

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 36px;
    gap: 24px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-soft);
    background: rgba(8, 8, 18, 0.6);
    backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.02em;
}
.brand-mega { color: var(--text-0); }
.brand-x { color: var(--text-3); font-weight: 400; }
.brand-wispr {
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.brand-admin {
    margin-left: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(78, 230, 255, 0.18);
    color: var(--accent-cyan);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ----- Stepper ------------------------------------------------------- */

.stepper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.stepper .step {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: var(--text-2);
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
}
.stepper .step.is-active {
    color: var(--text-0);
    background: linear-gradient(135deg, rgba(78, 230, 255, 0.25), rgba(61, 139, 255, 0.18));
    border-color: var(--border-strong);
    box-shadow: var(--glow-purple);
}
.stepper .step.is-done {
    color: var(--text-1);
    border-color: rgba(46, 229, 157, 0.4);
}

/* ----- Stage / Screens ---------------------------------------------- */

.stage {
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
/* Welcome page is full-bleed — disable the stage constraints when active. */
body:has([data-screen="welcome"].is-active) > .topbar { display: none; }
body:has([data-screen="welcome"].is-active) > .stage { max-width: none; padding: 0; }
body:has([data-screen="welcome"].is-active) > .footer { display: none; }

.screen {
    display: none;
    flex-direction: column;
    gap: 28px;
    animation: fadeUp 0.5s ease both;
}
.screen.is-active { display: flex; }

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

/* ----- Hero ---------------------------------------------------------- */

.hero {
    text-align: center;
    padding: 24px 0 0;
}
.hero-compact { padding: 12px 0 0; }
.title {
    margin: 0 0 8px;
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-compact .title { font-size: 36px; }
.subtitle {
    margin: 0;
    font-size: 20px;
    color: var(--text-2);
    letter-spacing: 0.02em;
}

/* ----- Cards --------------------------------------------------------- */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-l);
    padding: 28px;
    backdrop-filter: blur(14px);
}
.card-glow {
    border-color: var(--border-strong);
    box-shadow: var(--glow-purple);
}
.card-rules {
    background: var(--bg-card-strong);
}
.card-rules h2 {
    margin: 0 0 12px;
    font-size: 22px;
    color: var(--text-0);
}
.card-rules ol {
    margin: 0;
    padding-left: 22px;
    color: var(--text-1);
    line-height: 1.6;
}
.card-rules .rules-perks {
    margin-top: 14px;
    font-size: 15px;
    color: var(--text-1);
    padding: 12px 14px;
    border-radius: var(--radius-m);
    background: linear-gradient(135deg, rgba(255, 92, 199, 0.12), rgba(78, 230, 255, 0.12));
    border: 1px solid rgba(255, 92, 199, 0.25);
}

.sticky-prompt { position: sticky; top: 16px; z-index: 5; }
.card-prompt {
    background: linear-gradient(135deg, rgba(78, 230, 255, 0.16), rgba(61, 139, 255, 0.12));
    border: 1px solid var(--border-strong);
}

.prompt-eyebrow {
    font-weight: 800;
    color: #ffd166;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 20px;
    color: var(--text-2);
    margin-bottom: 10px;
}
.prompt-final {
    margin: 0;
    font-size: 28px;
    line-height: 1.35;
    color: var(--text-0);
    font-weight: 600;
}

/* ----- Forms --------------------------------------------------------- */

.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
    font-size: 14px;
    color: var(--text-2);
    letter-spacing: 0.02em;
}
.req { color: var(--accent-pink); }
.optional { color: var(--text-3); font-weight: normal; }
.field input,
.input-inline,
.dictation-area {
    background: rgba(8, 8, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-m);
    color: var(--text-0);
    font-family: inherit;
    font-size: 17px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.input-inline:focus,
.dictation-area:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(78, 230, 255, 0.22);
}
.check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-1);
    line-height: 1.5;
    font-size: 15px;
    cursor: pointer;
}
.check input { margin-top: 4px; transform: scale(1.2); accent-color: var(--accent-cyan); }

.form-error {
    color: #ff8a9d;
    margin: 0;
    font-size: 14px;
}

/* ----- Buttons ------------------------------------------------------- */

.btn {
    appearance: none;
    border: none;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    transition: transform 0.1s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-xl { padding: 18px 32px; font-size: 19px; }
.btn-primary {
    background: var(--grad-main);
    color: #001018;
    box-shadow: 0 8px 28px rgba(78, 230, 255, 0.35);
}
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(78, 230, 255, 0.55); }
.btn-success {
    background: var(--grad-success);
    color: #001018;
    box-shadow: 0 8px 28px rgba(46, 229, 157, 0.35);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-0);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-ghost:hover:not(:disabled) { background: rgba(255, 255, 255, 0.12); }

.actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.actions-center { justify-content: center; }

/* ----- Instructions list -------------------------------------------- */

.instructions {
    margin: 0 0 16px;
    padding-left: 20px;
    color: var(--text-1);
    line-height: 1.6;
}
.instructions kbd {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    padding: 1px 6px;
    font-family: var(--font-mono);
    font-size: 13px;
}

/* ----- Timer --------------------------------------------------------- */

.timer-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}
.timer {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--text-0);
    letter-spacing: -0.02em;
    line-height: 1;
}
.timer-xl {
    font-size: 96px;
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 32px rgba(78, 230, 255, 0.5);
}
.timer-label {
    color: var(--text-2);
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.timer.is-danger {
    background: var(--grad-danger);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulseDanger 0.8s ease-in-out infinite alternate;
}
@keyframes pulseDanger {
    from { transform: scale(1);    text-shadow: 0 0 18px rgba(255, 77, 109, 0.35); }
    to   { transform: scale(1.06); text-shadow: 0 0 32px rgba(255, 77, 109, 0.7); }
}

/* ----- Dictation textarea ------------------------------------------- */

.dictation-area {
    width: 100%;
    min-height: 160px;
    resize: vertical;
    font-size: 19px;
    line-height: 1.55;
    color: var(--text-0);
}
.dictation-area-lg { min-height: 240px; font-size: 21px; }

.dictation-area.is-locked {
    border-color: rgba(255, 77, 109, 0.5);
    background: rgba(20, 6, 10, 0.6);
    caret-color: transparent;
    cursor: not-allowed;
    box-shadow: 0 0 0 1px rgba(255, 77, 109, 0.35);
}

/* "Starting in 5…4…3…2…1" big lead-in countdown. */
.starting-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 40px 0 16px;
    text-align: center;
}
.starting-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 14px;
    color: var(--text-2);
}
.starting-count {
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 200px;
    line-height: 1;
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 60px rgba(78, 230, 255, 0.45);
    animation: pulseCount 1s ease-out;
}
@keyframes pulseCount {
    from { transform: scale(1.6); opacity: 0; }
    50%  { opacity: 1; }
    to   { transform: scale(1); }
}

/* Welcome layout is defined in the MARKETING section near the end of file. */

/* ----- Roulette ----------------------------------------------------- */

.roulette {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.wheel {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-l);
    padding: 28px 22px;
    overflow: hidden;
}
.wheel-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 17px;
    color: var(--text-2);
    margin-bottom: 16px;
    text-align: center;
}
.wheel-window {
    position: relative;
    height: 210px;
    overflow: hidden;
    border-radius: var(--radius-m);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.05);
    mask-image: linear-gradient(180deg, transparent 0%, black 25%, black 75%, transparent 100%);
}
.wheel-window::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-top: 1px solid rgba(78, 230, 255, 0.45);
    border-bottom: 1px solid rgba(78, 230, 255, 0.45);
    top: 50%;
    height: 70px;
    transform: translateY(-50%);
    background: linear-gradient(180deg, rgba(78, 230, 255, 0.06), rgba(61, 139, 255, 0.06));
}
.wheel-strip {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    transition: none;
}
.wheel-strip .slot {
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-1);
    font-size: 22px;
    padding: 0 12px;
    line-height: 1.2;
}
.wheel-strip .slot.is-final {
    color: var(--text-0);
    font-weight: 700;
}
.wheel.is-spinning .wheel-strip { transition: transform 7s cubic-bezier(0.15, 0.8, 0.25, 1); }
@media (max-width: 720px) {
    .roulette { grid-template-columns: 1fr; }
}

.prompt-reveal {
    text-align: center;
    animation: fadeUp 0.5s ease both;
}
.reveal-countdown {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.starting-count-md {
    font-size: 96px;
    text-shadow: 0 0 32px rgba(78, 230, 255, 0.5);
}

/* ----- Footer -------------------------------------------------------- */

.footer {
    display: flex;
    justify-content: space-between;
    padding: 24px 36px 40px;
    color: var(--text-3);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-tag { color: var(--text-2); }

/* =====================================================================
   ADMIN
   ===================================================================== */

body.admin .topbar-admin {
    padding: 16px 28px;
}
.admin-actions { display: flex; gap: 10px; }

.login-stage {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}
.login-card {
    width: min(440px, 100%);
    text-align: center;
}
.login-card .title { font-size: 32px; margin-bottom: 4px; }
.login-card .subtitle { margin-bottom: 24px; }

.admin-stage {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}
.stat {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-m);
    padding: 16px 18px;
}
.stat-value {
    font-size: 28px;
    font-weight: 700;
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--font-mono);
}
.stat-label {
    color: var(--text-2);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}
.stat-mini { font-size: 13px; color: var(--text-1); margin-top: 6px; line-height: 1.5; }

.admin-toolbar { padding: 16px; }
.toolbar-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.input-inline {
    padding: 10px 14px;
    font-size: 14px;
    min-width: 180px;
    flex: 1 1 180px;
}

.submissions-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.submission {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-l);
    padding: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    gap: 22px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.submission.is-top {
    border-color: rgba(46, 229, 157, 0.45);
    box-shadow: 0 0 0 1px rgba(46, 229, 157, 0.3), 0 0 24px rgba(46, 229, 157, 0.18);
}
.submission.is-favorite {
    border-color: rgba(255, 92, 199, 0.5);
}
.submission.is-dq {
    opacity: 0.55;
    border-color: rgba(255, 77, 109, 0.4);
}

.submission-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.submission-meta {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
}
.submission-meta strong { color: var(--text-0); font-weight: 600; }
.submission-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 12px;
    color: var(--text-1);
}
.badge-audience { background: rgba(78, 230, 255, 0.15); border-color: rgba(78, 230, 255, 0.35); color: #c8b0ff; }
.badge-format   { background: rgba(61, 139, 255, 0.12);  border-color: rgba(61, 139, 255, 0.35);  color: #a3e3ff; }
.badge-mood     { background: rgba(255, 92, 199, 0.12);  border-color: rgba(255, 92, 199, 0.35);  color: #ffb0e0; }
.badge-method   { background: rgba(255, 255, 255, 0.04); }

.submission-prompt {
    font-size: 15px;
    color: var(--text-1);
    margin: 10px 0 14px;
    line-height: 1.5;
    border-left: 3px solid rgba(78, 230, 255, 0.5);
    padding: 4px 0 4px 12px;
}
.submission-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-0);
    background: rgba(8, 8, 18, 0.45);
    border-radius: var(--radius-m);
    padding: 14px 16px;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 360px;
    overflow-y: auto;
}

.submission-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rating-grid {
    display: grid;
    grid-template-columns: 1fr 84px;
    gap: 8px 12px;
    align-items: center;
}
.rating-grid label {
    font-size: 13px;
    color: var(--text-2);
}
.rating-grid select {
    background: rgba(8, 8, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-0);
    padding: 8px 10px;
    font-family: inherit;
    font-size: 14px;
}
.rating-grid select:focus { outline: none; border-color: var(--accent-purple); }

.toggles {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.toggles label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-1);
    font-size: 14px;
    cursor: pointer;
}
.toggles input { accent-color: var(--accent-cyan); transform: scale(1.15); }

.notes-area {
    background: rgba(8, 8, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-m);
    color: var(--text-0);
    font-family: inherit;
    font-size: 14px;
    padding: 10px 12px;
    min-height: 80px;
    resize: vertical;
}

.save-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.save-status { font-size: 13px; color: var(--text-2); }
.save-status.is-ok { color: #2ee59d; }
.save-status.is-err { color: #ff8a9d; }

.avg-pill {
    background: var(--grad-main);
    color: #001018;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: 14px;
}
.avg-pill.is-top { background: var(--grad-success); }
.avg-pill.is-empty { background: rgba(255,255,255,0.1); color: var(--text-2); font-weight: 500; }

.empty-state {
    text-align: center;
    color: var(--text-2);
    padding: 60px 24px;
}

.done-card { text-align: center; }
.done-card p { color: var(--text-1); font-size: 17px; line-height: 1.6; margin: 0 0 10px; }

@media (max-width: 880px) {
    .submission { grid-template-columns: 1fr; }
    .title { font-size: 40px; }
    .timer-xl { font-size: 72px; }
}

/* =====================================================================
   MARKETING WELCOME PAGE
   Two-column hero (left) + signup card (right) styled to match the
   "Megathon × Wispr Flow — Prompt DJ Challenge" mockup.
   ===================================================================== */

[data-screen="welcome"].is-active {
    display: block;
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px 36px 40px;
    animation: fadeUp 0.5s ease both;
}

/* ----- Marketing nav ------------------------------------------------- */

.m-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0 36px;
    flex-wrap: wrap;
}
.m-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-0);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.01em;
}
.m-logo-wave {
    width: 32px;
    height: 22px;
    color: var(--accent-purple);
}
.m-nav-links {
    display: flex;
    gap: 32px;
}
.m-nav-links a {
    color: var(--text-1);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
}
.m-nav-links a:hover { opacity: 1; color: var(--accent-purple); }

.m-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(168, 85, 247, 0.45);
    background: rgba(20, 12, 40, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-0);
    font-size: 13px;
    font-weight: 500;
}
.m-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-purple);
    box-shadow: 0 0 12px var(--accent-purple);
    animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(0.85); }
}

/* ----- Grid layout --------------------------------------------------- */

.m-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    gap: 48px;
    align-items: start;
}
@media (max-width: 1080px) {
    .m-grid { grid-template-columns: 1fr; }
}

/* ----- Hero column --------------------------------------------------- */

.m-hero { padding-top: 8px; }

.m-eyebrow {
    color: var(--accent-purple);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px;
    letter-spacing: 0.01em;
}

.m-display {
    margin: 0 0 22px;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 800;
}
.m-display-line { display: block; color: var(--text-0); }
.m-display-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.m-grad {
    background: var(--grad-title);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Gradient text + tight line-height clips descenders (the "g" in
       "Challenge"). Pad the inline box so glyph tails stay visible. */
    display: inline-block;
    padding-bottom: 0.18em;
    line-height: 1.1;
}
.m-title-wave {
    width: 76px;
    height: 50px;
    color: var(--accent-purple);
    flex-shrink: 0;
}

.m-subtitle {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-0);
}
.m-tagline {
    margin: 0 0 38px;
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.55;
    max-width: 540px;
}

/* ----- Booth illustration ------------------------------------------- */

.m-booth {
    position: relative;
    margin: 8px 0 22px;
}
.m-booth-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 60px rgba(124, 58, 237, 0.45));
}

.m-features {
    position: absolute;
    inset: 64% 4% 0 4%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    pointer-events: none;
}
.m-feature {
    background: rgba(14, 8, 30, 0.85);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 14px;
    padding: 14px 14px 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.25);
}
.m-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
    color: var(--accent-purple);
    margin-bottom: 8px;
}
.m-feature-icon svg { width: 20px; height: 20px; }
.m-feature-label {
    color: var(--text-0);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.m-feature-desc {
    color: var(--text-2);
    font-size: 12px;
    line-height: 1.45;
}

/* ----- Cap pill ----------------------------------------------------- */

.m-cap-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(20, 12, 40, 0.7);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--text-1);
    font-size: 14px;
    font-weight: 500;
    margin-top: 18px;
}
.m-cap-pill-bordered { width: 100%; justify-content: center; margin-top: 18px; }
.m-cap-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-purple);
    flex-shrink: 0;
}

/* ----- Signup card --------------------------------------------------- */

.m-signup {
    background: linear-gradient(180deg, rgba(20, 12, 40, 0.85), rgba(14, 8, 30, 0.85));
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(14px);
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.08),
        0 20px 60px rgba(124, 58, 237, 0.25);
    position: relative;
}

.m-step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.m-step-label {
    color: var(--accent-purple);
    font-size: 14px;
    font-weight: 600;
}
.m-step-dots { display: flex; gap: 6px; }
.m-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.25);
    transition: all 0.2s ease;
}
.m-step-dot.is-active {
    background: var(--accent-purple);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
    transform: scale(1.15);
}

.m-signup-title {
    margin: 0 0 14px;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-0);
    text-align: center;
    letter-spacing: -0.01em;
}
.m-title-wave-divider {
    display: block;
    margin: 0 auto 24px;
    width: 72px;
    height: 22px;
    color: var(--accent-purple);
    opacity: 0.9;
}

.m-form { display: flex; flex-direction: column; gap: 18px; }
.m-field { display: flex; flex-direction: column; gap: 8px; }
.m-field label {
    font-size: 14px;
    color: var(--text-1);
    font-weight: 500;
}
.m-optional { color: var(--text-3); font-weight: 400; }
.m-field input {
    background: rgba(8, 5, 20, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    color: var(--text-0);
    font-family: inherit;
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.m-field input::placeholder { color: var(--text-3); }
.m-field input:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.18);
}

/* ----- How-it-works sub-card ---------------------------------------- */

.m-hiw {
    background: rgba(8, 5, 20, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 14px;
    padding: 18px;
    margin-top: 4px;
}
.m-hiw-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--accent-purple);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}
.m-hiw-arrow {
    color: var(--text-2);
    font-size: 12px;
    line-height: 1;
}
.m-hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}
.m-hiw-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-1);
    font-size: 13px;
    line-height: 1.3;
}
.m-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .m-hiw-grid { grid-template-columns: 1fr; }
}

/* ----- Consent + CTA ------------------------------------------------- */

.m-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-1);
    line-height: 1.45;
    cursor: pointer;
}
.m-consent-soft {
    font-size: 12px;
    color: var(--text-2);
    margin: 14px 0 6px;
}
.m-consent input {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-purple);
    flex-shrink: 0;
}
.m-link {
    color: var(--accent-purple);
    text-decoration: none;
    border-bottom: 1px dashed rgba(168, 85, 247, 0.4);
}
.m-link:hover { border-bottom-style: solid; }

.m-cta {
    appearance: none;
    border: none;
    border-radius: 14px;
    padding: 18px 24px;
    background:
        linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #3b82f6 100%);
    color: #ffffff;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow:
        0 10px 32px rgba(124, 58, 237, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}
.m-cta:hover {
    transform: translateY(-1px);
    box-shadow:
        0 14px 40px rgba(124, 58, 237, 0.7),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.m-cta-wave {
    width: 36px;
    height: 22px;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

/* ----- Stats strip --------------------------------------------------- */

.m-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 36px 12px 8px;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 500;
}
.m-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.m-stat svg {
    width: 18px;
    height: 18px;
    color: var(--accent-purple);
}
.m-stat-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.45);
}

/* ----- Responsive tweaks -------------------------------------------- */

@media (max-width: 720px) {
    [data-screen="welcome"].is-active { padding: 18px 18px 28px; }
    .m-nav { padding-bottom: 24px; }
    .m-nav-links { gap: 18px; font-size: 13px; }
    .m-display { font-size: 48px; }
    .m-title-wave { width: 56px; height: 38px; }
    .m-signup { padding: 24px 20px; }
    .m-signup-title { font-size: 24px; }
    .m-features {
        position: static;
        inset: auto;
        margin-top: 12px;
    }
    .m-booth-svg { margin-bottom: 0; }
}

.m-booth-photo {
    margin: 12px 0 24px;
}
.m-booth-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

/* =====================================================================
   "Read this" callouts
   ===================================================================== */

.read-this-callout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin: 0 0 8px;
    color: #ffd166;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: readThisPulse 1.4s ease-in-out infinite alternate;
}
.read-this-label {
    font-size: 28px;
    text-shadow: 0 0 18px rgba(255, 209, 102, 0.55);
}
.read-this-arrow {
    font-size: 44px;
    line-height: 1;
    text-shadow: 0 0 22px rgba(255, 209, 102, 0.6);
}
.read-this-callout-left {
    align-items: flex-start;
    margin: 0 0 14px;
    padding-left: 69px;
}
.instructions-lg {
    font-size: 19px;
    line-height: 1.7;
}
@keyframes readThisPulse {
    from { transform: translateY(0);   opacity: 0.85; }
    to   { transform: translateY(4px); opacity: 1; }
}

/* Side arrow over the revealed prompt sentence during the 10s lead-in. */
.prompt-reveal { position: relative; }
.prompt-read-arrow {
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translate(100%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffd166;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: readThisNudge 1.1s ease-in-out infinite alternate;
    pointer-events: none;
}
.prompt-read-label {
    font-size: 22px;
    text-shadow: 0 0 18px rgba(255, 209, 102, 0.55);
    white-space: nowrap;
}
.prompt-read-glyph {
    font-size: 56px;
    line-height: 1;
    transform: scaleX(-1);
    text-shadow: 0 0 22px rgba(255, 209, 102, 0.6);
}
@keyframes readThisNudge {
    from { transform: translate(100%, -50%); }
    to   { transform: translate(calc(100% - 10px), -50%); }
}
@media (max-width: 900px) {
    .prompt-read-arrow {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 14px;
    }
    .prompt-read-glyph { transform: rotate(90deg); }
    @keyframes readThisNudge {
        from { transform: translateY(0); }
        to   { transform: translateY(-4px); }
    }
}

/* =====================================================================
   FLOWTRIP REDESIGN — component overrides
   Keep all rules below this banner.
   ===================================================================== */

/* The HTML `hidden` attribute should always win over author display rules
   like `.actions { display: flex }`. Without this the "Spin the Prompt
   Roulette" button stays visible (grayed out) during the prep countdown. */
[hidden] { display: none !important; }

/* ----- Page background & typography --------------------------------- */
html, body {
    background: var(--cream) !important;
    color: var(--text-1) !important;
    font-family: var(--font);
}
body::before, body::after { content: none !important; }

h1, h2, .title, .m-display, .m-signup-title, .variant-title, .prompt-final {
    font-family: var(--font-serif);
    color: var(--dark-teal);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Single-line "Prompt Roulette" hero headline. Shrunk so it fits the
   narrow left column without wrapping; nowrap on the inner span as a
   belt-and-braces guard. */
.m-display.m-display-inline {
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 1.05;
}
.m-display.m-display-inline .m-display-line {
    display: block;
    white-space: nowrap;
}

/* ----- Topbar & marketing nav --------------------------------------- */
.topbar {
    background: var(--cream);
    border-bottom: 1px dashed rgba(28, 58, 74, 0.25);
    backdrop-filter: none;
}
.brand-mega { color: var(--dark-teal); }
.brand-x    { color: var(--text-3); }
.brand-wispr {
    color: var(--terracotta);
    background: none !important;
    -webkit-background-clip: initial !important;
            background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}
.stepper .step { color: var(--text-2); }
.stepper .step.is-active { color: var(--terracotta); }
.stepper .step.is-done   { color: var(--sage); }

.m-nav { background: var(--cream); }
.m-nav-links a { color: var(--dark-teal); opacity: 0.85; }
.m-nav-links a:hover { opacity: 1; }
.m-logo, .m-logo span { color: var(--dark-teal); }
.m-live-pill {
    background: rgba(184, 76, 38, 0.08);
    border: 1px dashed rgba(184, 76, 38, 0.45);
    color: var(--terracotta);
}
.m-live-dot { background: var(--terracotta); }

/* ----- Hero / display ---------------------------------------------- */
.m-eyebrow {
    color: var(--amber);
    letter-spacing: 0.25em;
    font-weight: 700;
}
.m-display { color: var(--dark-teal); }
.m-display-line { color: var(--dark-teal); }
.m-grad {
    /* No gradient. Solid terracotta italic à la FlowTrip "Editorial".  */
    background: none !important;
    -webkit-background-clip: initial !important;
            background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: var(--terracotta) !important;
    padding-bottom: 0 !important;
    line-height: 1.06 !important;
    font-style: italic;
}
.m-subtitle  { color: var(--dark-teal); font-weight: 700; }
.m-tagline   { color: #4a3a30; }
.m-cap-pill {
    background: var(--paper);
    border: 1px solid rgba(28, 58, 74, 0.10);
    color: var(--dark-teal);
}

/* ----- Sign-up card ------------------------------------------------- */
.m-signup {
    background: var(--paper);
    border: 1px solid rgba(28, 58, 74, 0.10);
    box-shadow: 0 20px 50px -28px rgba(28, 58, 74, 0.35);
}
.m-step-label { color: var(--amber); font-weight: 700; letter-spacing: 0.18em; }
.m-step-dot { background: rgba(28, 58, 74, 0.18); }
.m-step-dot.is-active { background: var(--terracotta); }
.m-signup-title { color: var(--dark-teal); }
.m-signup-sub {
    margin: 8px 0 22px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--text-2);
    font-style: italic;
}
.m-title-wave-divider { display: none; }

.m-field label { color: var(--dark-teal); font-weight: 600; }
.m-field input, .m-field input[type="text"], .m-field input[type="email"] {
    background: #fff;
    border: 1px solid rgba(28, 58, 74, 0.18);
    color: var(--text-1);
    border-radius: 12px;
    box-shadow: none;
}
.m-field input:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184, 76, 38, 0.18);
}
.m-field input::placeholder { color: #9A8A75; }
.m-consent, .m-consent-soft { color: var(--text-2); }
.m-consent a, .m-link { color: var(--terracotta); }

.reset-warning {
    margin: 14px 0 2px;
    padding: 12px 14px;
    background: rgba(184, 76, 38, 0.08);
    border: 1px dashed rgba(184, 76, 38, 0.45);
    border-radius: 12px;
    color: var(--terracotta);
    font-size: 13px;
    line-height: 1.5;
}
.reset-warning strong { color: var(--terracotta); }

/* ----- Buttons (FLAT — no gradient, no hover color shift) ----------- */
.btn, .m-cta, .btn-primary, .btn-ghost, .btn-xl {
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 28px;
    border: 1px solid transparent;
    background: var(--terracotta);
    color: #fff;
    box-shadow: none;
    transition: transform 0.12s ease;
    background-image: none !important;
    text-shadow: none !important;
}
.btn:hover, .m-cta:hover, .btn-primary:hover {
    background: var(--terracotta);
    color: #fff;
    transform: translateY(-1px);
}
.btn:active, .m-cta:active { transform: translateY(0); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

.btn-ghost {
    background: transparent;
    color: var(--dark-teal);
    border: 1px solid rgba(28, 58, 74, 0.30);
}
.btn-ghost:hover {
    background: rgba(28, 58, 74, 0.05);
    color: var(--dark-teal);
}

.m-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
}
.m-cta-wave, .m-title-wave { display: none; }

/* ----- Cards & surfaces -------------------------------------------- */
.card {
    background: var(--paper);
    border: 1px solid rgba(28, 58, 74, 0.10);
    box-shadow: 0 12px 40px -28px rgba(28, 58, 74, 0.35);
}
.card-glow { box-shadow: 0 16px 50px -28px rgba(184, 76, 38, 0.45); }
.hero .title { color: var(--dark-teal); font-family: var(--font-serif); }
.hero .subtitle, .subtitle { color: var(--text-2); }

/* ----- Timer (solid, no gradient) ---------------------------------- */
.timer-xl {
    background: none !important;
    -webkit-background-clip: initial !important;
            background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: var(--terracotta) !important;
    text-shadow: none !important;
    font-family: var(--font-serif);
}
.timer.is-danger {
    background: none !important;
    -webkit-background-clip: initial !important;
            background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: var(--terracotta) !important;
}
.timer-label { color: var(--text-2); }

/* ----- Roulette wheels --------------------------------------------- */
.wheel {
    background: var(--paper);
    border: 1px solid var(--border);
}
.wheel-label { color: var(--amber); font-weight: 700; letter-spacing: 0.22em; }
.wheel-window {
    background: linear-gradient(180deg, rgba(28,58,74,0.04), rgba(28,58,74,0));
    border: 1px solid rgba(28, 58, 74, 0.08);
}
.wheel-window::after {
    border-top: 1px solid rgba(184, 76, 38, 0.55);
    border-bottom: 1px solid rgba(184, 76, 38, 0.55);
    background: linear-gradient(180deg, rgba(184,76,38,0.06), rgba(200,120,10,0.06));
}
.wheel-strip .slot { color: var(--text-2); }
.wheel-strip .slot.is-final { color: var(--dark-teal); font-weight: 700; }

/* ----- Prompt reveal eyebrow + sentence ---------------------------- */
.prompt-eyebrow {
    color: var(--terracotta) !important;
    font-weight: 800;
    font-family: var(--font);
}
.prompt-final {
    color: var(--dark-teal);
    font-family: var(--font-serif);
    font-weight: 700;
}

/* ----- Dictation textarea ------------------------------------------ */
.dictation-area {
    background: #fff;
    border: 1px solid rgba(28, 58, 74, 0.20);
    color: var(--text-1);
    border-radius: 14px;
}
.dictation-area:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184, 76, 38, 0.18);
}
.dictation-area.is-locked {
    background: var(--paper);
    color: var(--text-2);
}

/* ----- "Read this" callout (gold → amber for warmth) --------------- */
.read-this-callout { color: var(--amber); }
.read-this-label, .read-this-arrow { text-shadow: none; }
.prompt-read-arrow { color: var(--amber); }
.prompt-read-label, .prompt-read-glyph { text-shadow: none; }

/* ----- Stats strip & footer ---------------------------------------- */
.m-stats { color: var(--text-2); }
.m-stat-sep { background: rgba(28, 58, 74, 0.25); }
.footer { color: var(--text-3); border-top: 1px dashed rgba(28, 58, 74, 0.20); }
.footer-tag { color: var(--text-2); }

/* ----- Landing variant cards (root index linking to /pitch-yourself) */
.variant-card {
    background: var(--paper) !important;
    border: 1px solid rgba(28, 58, 74, 0.12) !important;
    color: var(--text-1) !important;
}
.variant-card:hover { border-color: var(--terracotta) !important; }
.variant-tag   { color: var(--amber) !important; }
.variant-title { color: var(--dark-teal) !important; font-family: var(--font-serif); }
.variant-desc  { color: var(--text-2) !important; }

/* ----- Prizes block (welcome screen) ------------------------------- */
.prizes {
    margin: 28px 0 8px;
    padding: 22px 24px;
    background: var(--paper);
    border: 1px solid rgba(28, 58, 74, 0.10);
    border-radius: var(--radius-l);
}
.prizes-eyebrow {
    margin: 0 0 16px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
}
.prizes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 720px) {
    .prizes-grid { grid-template-columns: 1fr; }
}
.prize {
    padding: 16px 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px dashed rgba(28, 58, 74, 0.20);
}
.prize-everyone { border-color: rgba(184, 76, 38, 0.45); }
.prize-winners  { border-color: rgba(122, 158, 126, 0.55); }
.prize-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 8px;
}
.prize-winners .prize-tag { color: var(--sage); }
.prize-headline {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.2;
    color: var(--dark-teal);
    font-weight: 700;
    margin-bottom: 6px;
}
.prize-amount, .prize-date {
    color: var(--terracotta);
    font-style: italic;
}
.prize-winners .prize-date { color: var(--sage); }
.prize-sub {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
}
.prize-sub strong { color: var(--dark-teal); font-weight: 700; }

/* Prizes block when shown on the done/checkout screen — give it some
   breathing room before the "Next participant" button. */
.prizes-done {
    margin: 22px 0 24px;
    text-align: left;
}

/* Full-width prize strip on the welcome screen, sitting below the
   booth illustration and spanning across both columns. */
.prizes-wide {
    max-width: 1180px;
    margin: 24px auto 8px;
}

/* Inline prize block — lives inside the hero column, above the booth
   image. Tighter than the wide variant so it doesn't dwarf the image. */
.prizes-inline {
    margin: 24px 0 18px;
    padding: 18px 20px;
}
.prizes-inline .prize { padding: 14px 16px; }
.prizes-inline .prize-headline { font-size: 19px; }
.prizes-inline .prize-sub      { font-size: 13.5px; }
