/* Bored Meeting — snappy corporate-rebellion */
:root {
  --paper: #f7f7fb;
  --ink: #15151f;
  --ink-soft: #5a5a6e;
  --indigo: #4f46e5;
  --indigo-deep: #3730a3;
  --lime: #a3e635;
  --coral: #fb7185;
  --card: #ffffff;
  --line: #e6e6f0;
  --shadow: 0 1px 2px rgba(21,21,31,.04), 0 10px 30px rgba(21,21,31,.08);
  --shadow-hard: 6px 6px 0 var(--ink);
  --disp: "Space Grotesk", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --maxw: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.6; font-size: 18px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--indigo-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3 { font-family: var(--disp); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 6vw, 3.8rem); margin: 0 0 .3em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 1.6em 0 .5em; }
h3 { font-size: 1.2rem; margin: 1.3em 0 .3em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.narrow { max-width: 720px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(247,247,251,.85); backdrop-filter: saturate(160%) blur(10px); border-bottom: 2px solid var(--ink); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: .5rem; font-family: var(--disp); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand .mark { width: 32px; height: 32px; border-radius: 9px; background: var(--indigo); color: #fff; display: grid; place-items: center; font-size: 1rem; box-shadow: 3px 3px 0 var(--ink); }
.nav { display: flex; gap: 1.3rem; font-size: .95rem; font-weight: 600; }
.nav a { color: var(--ink-soft); }
.nav a:hover { color: var(--indigo-deep); text-decoration: none; }

/* Hero */
.hero { padding: clamp(2.6rem, 7vw, 4.8rem) 0 1rem; }
.hero .wrap { text-align: center; }
.hero .kicker { display: inline-block; background: var(--lime); color: var(--ink); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 99px; border: 2px solid var(--ink); transform: rotate(-2deg); }
.hero h1 { margin-top: .5em; }
.hero p.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 620px; margin: .5em auto 0; }

/* Tool cards */
.tool-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.3rem; margin: 2rem 0; }
.tool-card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-hard); transition: transform .14s ease, box-shadow .14s ease; display: block; }
.tool-card:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); text-decoration: none; }
.tool-card .emoji { font-size: 2.2rem; }
.tool-card h3 { margin: .5rem 0 .2rem; color: var(--ink); }
.tool-card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.tool-card .go { margin-top: .9rem; font-weight: 700; color: var(--indigo-deep); font-family: var(--disp); }

/* Article list */
.article-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .8rem; }
.article-list a { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; background: var(--card); border: 2px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; color: var(--ink); }
.article-list a:hover { border-color: var(--ink); text-decoration: none; }
.article-list .cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--coral); white-space: nowrap; }
.article-list h3 { margin: 0; font-size: 1.1rem; }

/* Tool page shell */
.tool-hero { text-align: center; padding: 2rem 0 .5rem; }
.tool-hero .emoji { font-size: 3rem; }
.tool-stage { background: var(--card); border: 2px solid var(--ink); border-radius: 18px; box-shadow: var(--shadow-hard); padding: clamp(1.2rem, 4vw, 2.2rem); margin: 1.5rem auto; max-width: 720px; }
.tool-controls { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; margin: 1rem 0; }
.tool-status { text-align: center; color: var(--ink-soft); font-weight: 600; min-height: 1.4em; }
.tool-status.bingo-won { color: var(--indigo-deep); font-size: 1.2rem; }
.btn { font-family: var(--disp); font-weight: 700; font-size: 1rem; padding: .65rem 1.2rem; border-radius: 10px; border: 2px solid var(--ink); cursor: pointer; transition: transform .1s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--indigo); color: #fff; box-shadow: 3px 3px 0 var(--ink); }
.btn-ghost { background: #fff; color: var(--ink); }

/* Bingo */
.bingo-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; margin: 1rem auto 0; }
.bingo-cell { aspect-ratio: 1; border: 2px solid var(--ink); border-radius: 8px; background: #fff; font-family: var(--sans); font-weight: 600; font-size: clamp(.6rem,1.6vw,.82rem); padding: 4px; cursor: pointer; line-height: 1.1; display: grid; place-items: center; text-align: center; transition: background .1s ease, transform .08s ease; }
.bingo-cell:hover { transform: scale(1.03); }
.bingo-cell.marked { background: var(--indigo); color: #fff; }
.bingo-cell.free { background: var(--lime); }
.bingo-grid.won .bingo-cell.marked { background: var(--coral); }

/* Cost calculator */
.cost-inputs { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
.cost-inputs label { display: flex; flex-direction: column; font-weight: 600; font-size: .85rem; color: var(--ink-soft); gap: .3rem; }
.cost-inputs input { font-family: var(--disp); font-size: 1.1rem; padding: .5rem .7rem; border: 2px solid var(--ink); border-radius: 9px; width: 170px; }
.cost-readout { text-align: center; margin: 1.6rem 0 .5rem; }
.cost-display { font-family: var(--disp); font-weight: 700; font-size: clamp(2.6rem, 9vw, 4.5rem); color: var(--indigo-deep); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.cost-tool.running .cost-display { color: var(--coral); }
.cost-meta { color: var(--ink-soft); font-weight: 600; }

/* Buzzword generator */
.buzz-output { font-family: var(--disp); font-weight: 700; font-size: clamp(1.4rem, 4vw, 2.1rem); text-align: center; padding: 1.5rem; background: var(--paper); border: 2px dashed var(--ink); border-radius: 12px; min-height: 3em; display: grid; place-items: center; }

/* Prose */
.prose { padding: 1rem 0 2rem; }
.prose ol, .prose ul { padding-left: 1.3rem; }
.prose li { margin: .45rem 0; }
.prose h2 { border-bottom: 2px solid var(--lime); padding-bottom: .2em; display: inline-block; }
.crumb { font-size: .85rem; color: var(--ink-soft); padding-top: 1.3rem; }
.crumb a { color: var(--ink-soft); }

/* Ad slots */
.ad-slot { margin: 2.2rem auto; max-width: 760px; min-height: 100px; display: grid; place-items: center; text-align: center; background: repeating-linear-gradient(135deg,#eeeef6,#eeeef6 12px,#e6e6f2 12px,#e6e6f2 24px); border: 2px dashed #c9c9dd; border-radius: 12px; color: #9a9ab5; font-size: .8rem; letter-spacing: .05em; }

/* Footer */
.site-footer { margin-top: 4rem; background: var(--ink); color: #d8d8e6; }
.site-footer .wrap { padding: 2.6rem 0 2rem; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
.site-footer a { color: var(--lime); }
.site-footer .brand { color: #fff; }
.site-footer .cols { display: flex; gap: 3rem; flex-wrap: wrap; }
.site-footer h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: .07em; font-size: .72rem; color: #9a9ab5; margin: 0 0 .6rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; line-height: 2; font-size: .95rem; }
.copyright { width: 100%; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.2rem; font-size: .85rem; color: #8585a0; }

/* Shared-result banner (cost calculator) */
.cost-shared { background: var(--lime); border: 2px solid var(--ink); border-radius: 12px; padding: .9rem 1.1rem; margin-bottom: 1.2rem; text-align: center; font-weight: 600; line-height: 1.4; }

/* Share fallback overlay (desktop) */
.bm-share-overlay { position: fixed; inset: 0; background: rgba(21,21,31,.5); display: grid; place-items: center; z-index: 50; padding: 1rem; }
.bm-share-card { position: relative; background: #fff; border: 2px solid var(--ink); border-radius: 16px; box-shadow: var(--shadow-hard); padding: 1.6rem; width: min(360px, 92vw); text-align: center; }
.bm-share-card h3 { margin: 0 0 1rem; }
.bm-share-links { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: .8rem; }
.bm-share-links .btn { text-decoration: none; }
.bm-share-close { position: absolute; top: .5rem; right: .7rem; background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--ink-soft); }

/* Lifecycle badges (rotating roster) */
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; }
.badge { font-size: .68rem; font-weight: 700; padding: .22rem .5rem; border-radius: 99px; border: 2px solid var(--ink); white-space: nowrap; line-height: 1.1; }
.badge-new { background: var(--lime); color: var(--ink); }
.badge-leaving { background: var(--coral); color: #fff; }
.hero-badges { display: flex; gap: .4rem; justify-content: center; margin: .4rem 0; }
.hero-badges:empty { display: none; }
.upcoming { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1rem 0; }
.upcoming-chip { background: #fff; border: 2px dashed var(--line); border-radius: 99px; padding: .45rem .9rem; font-weight: 600; color: var(--ink-soft); }

/* Quiz */
.quiz-teaser { background: var(--lime); border: 2px solid var(--ink); border-radius: 12px; padding: .9rem 1.1rem; margin-bottom: 1.4rem; text-align: center; font-weight: 600; }
.quiz-q { border: 2px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem 1.1rem; margin: 0 0 1rem; }
.quiz-q legend { font-family: var(--disp); font-weight: 700; padding: 0 .4rem; }
.quiz-opt { display: block; width: 100%; text-align: left; background: #fff; border: 2px solid var(--line); border-radius: 10px; padding: .7rem .9rem; margin: .45rem 0 0; font: inherit; cursor: pointer; transition: border-color .1s ease, background .1s ease; }
.quiz-opt:hover { border-color: var(--ink); }
.quiz-opt.sel { background: var(--indigo); color: #fff; border-color: var(--ink); }
#quiz-submit { width: 100%; margin-top: .5rem; }
.quiz-result { margin-top: 1.6rem; padding: 1.6rem; text-align: center; background: #fff; border: 2px solid var(--ink); border-radius: 18px; box-shadow: var(--shadow-hard); }
.quiz-emoji { font-size: 3.5rem; }
.quiz-result h2 { margin: .2rem 0 .4rem; border: none; }

/* Translator */
.trans-in { width: 100%; font-family: var(--disp); font-size: 1.1rem; padding: .7rem .9rem; border: 2px solid var(--ink); border-radius: 10px; }
.trans-out { margin: 1.2rem 0; padding: 1.4rem; text-align: center; font-family: var(--disp); font-weight: 700; font-size: clamp(1.2rem, 3.5vw, 1.8rem); background: var(--paper); border: 2px dashed var(--ink); border-radius: 12px; min-height: 2.6em; display: grid; place-items: center; color: var(--ink-soft); }
.trans-out.filled { color: var(--indigo-deep); }
.trans-try { text-align: center; color: var(--ink-soft); font-weight: 600; font-size: .85rem; margin: .5rem 0 .4rem; }
.trans-chips { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.trans-chip { background: #fff; border: 2px solid var(--line); border-radius: 99px; padding: .4rem .8rem; font: inherit; font-size: .85rem; cursor: pointer; }
.trans-chip:hover { border-color: var(--ink); }

/* Jargonle */
.jargonle { text-align: center; }
.jl-board { display: grid; gap: 6px; justify-content: center; margin: .5rem auto 1.2rem; }
.jl-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.jl-tile { width: 52px; height: 52px; border: 2px solid var(--line); border-radius: 8px; display: grid; place-items: center; font-family: var(--disp); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; }
.jl-tile.correct { background: #16a34a; color: #fff; border-color: #16a34a; }
.jl-tile.present { background: #eab308; color: #fff; border-color: #eab308; }
.jl-tile.absent { background: #6b7280; color: #fff; border-color: #6b7280; }
.jl-input { display: flex; gap: .6rem; justify-content: center; }
.jl-input input { font-family: var(--disp); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; text-align: center; letter-spacing: .3em; width: 200px; padding: .5rem; border: 2px solid var(--ink); border-radius: 10px; }
.jl-hint, .jl-num, .jl-msg { color: var(--ink-soft); font-weight: 600; }
.jl-num { font-size: .8rem; margin-top: 1rem; }
.jl-msg { font-size: 1.1rem; margin: 1rem 0; }

/* Could've Been an Email + shared quiz-style question UI */
.email-dur { display: block; font-weight: 600; color: var(--ink-soft); font-size: .9rem; margin-bottom: 1.2rem; }
.email-dur input { display: block; margin-top: .3rem; font-family: var(--disp); font-size: 1.1rem; padding: .5rem .7rem; border: 2px solid var(--ink); border-radius: 9px; width: 140px; }
.email-q { border: 2px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; margin: 0 0 1rem; }
.email-q legend { font-family: var(--disp); font-weight: 700; padding: 0 .4rem; }
.email-opt { display: inline-block; width: calc(50% - .3rem); text-align: center; background: #fff; border: 2px solid var(--line); border-radius: 10px; padding: .6rem; margin: .4rem .3rem 0 0; font: inherit; font-weight: 600; cursor: pointer; }
.email-opt:last-child { margin-right: 0; }
.email-opt.sel { background: var(--indigo); color: #fff; border-color: var(--ink); }
#email-go, #quiz-submit { width: 100%; margin-top: .4rem; }
.email-result { margin-top: 1.6rem; padding: 1.6rem; text-align: center; background: #fff; border: 2px solid var(--ink); border-radius: 18px; box-shadow: var(--shadow-hard); }
.email-score { font-family: var(--disp); font-weight: 700; font-size: clamp(3rem, 11vw, 5rem); color: var(--coral); line-height: 1; }
.email-verdict { font-family: var(--disp); font-weight: 700; font-size: 1.25rem; margin: .4rem 0; }
.email-sev { font-size: 1.1rem; }
.email-lost { color: var(--ink-soft); font-style: italic; }

/* Meetality */
.mt-inputs { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.mt-inputs label { display: flex; flex-direction: column; font-weight: 600; font-size: .85rem; color: var(--ink-soft); gap: .3rem; }
.mt-inputs input { font-family: var(--disp); font-size: 1.1rem; padding: .5rem .7rem; border: 2px solid var(--ink); border-radius: 9px; width: 130px; }
#mt-go { width: 100%; margin-top: 1rem; }
.mt-result { margin-top: 1.5rem; text-align: center; }
.mt-big { font-family: var(--disp); font-weight: 700; font-size: clamp(2.6rem, 10vw, 4.5rem); color: var(--coral); line-height: 1; }
.mt-sub { color: var(--ink-soft); font-weight: 600; }

/* Hot Mic */
.hotmic { text-align: center; }
.hm-pad { width: 100%; max-width: 420px; height: 200px; margin: 0 auto; display: block; border: 3px solid var(--ink); border-radius: 18px; background: #fff; font-family: var(--disp); font-weight: 700; font-size: 1.6rem; cursor: pointer; box-shadow: var(--shadow-hard); transition: background .05s ease; }
.hm-pad.waiting { background: #fde68a; }
.hm-pad.go { background: #16a34a; color: #fff; }
.hm-msg { font-weight: 600; margin-top: 1rem; min-height: 1.4em; }

/* Hard Stop */
.hardstop { text-align: center; }
.hs-out { font-family: var(--disp); font-weight: 700; font-size: clamp(1.3rem, 4vw, 1.9rem); padding: 1.6rem; background: var(--paper); border: 2px dashed var(--ink); border-radius: 12px; min-height: 3em; display: grid; place-items: center; line-height: 1.3; }
.hs-bel { font-family: var(--sans); font-size: .95rem; font-weight: 600; color: var(--ink-soft); margin-top: .6rem; }

/* Toast */
.bm-toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 99px; font-weight: 600; font-size: .9rem; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; z-index: 60; }
.bm-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 640px) { .nav .hide-sm { display: none; } }
