/* Outta · neo-brutal golf-trip decider. Ink green, flag orange, scorecard yellow, cream paper. */
:root {
  --ink: #122d24;
  --ink-2: #2f4a40;
  --muted: #476057;
  --paper: #f5f0e6;
  --white: #fffdf8;
  --orange: #ff5c35;
  --orange-deep: #d9401d;
  --yellow: #f2d34f;
  --blue: #a8d9e8;
  --green: #2f8f5b;
  --line: 3px solid var(--ink);
  --shadow: 5px 5px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --pad: clamp(18px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Arial Rounded MT Bold", "Avenir Next", Avenir, "Nunito", system-ui, sans-serif;
  --body: Avenir, "Avenir Next", "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
}

* { box-sizing: border-box; }
html, body { overflow-x: clip; }
body { margin: 0; min-width: 320px; background: var(--paper); line-height: 1.5; }
button, input { font: inherit; color: inherit; }
button, a, label { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 4px solid var(--orange); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 50; background: var(--yellow); padding: 8px 12px; border: var(--line); font-weight: 900; }
.skip-link:focus { left: 8px; }
main:focus { outline: none; }

/* ---------- header / footer ---------- */
.site-header { position: sticky; top: 0; z-index: 20; min-height: 72px; padding: 12px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--paper); border-bottom: var(--line); }
.brand { font-family: var(--display); font-size: 2rem; font-weight: 900; letter-spacing: -0.08em; text-decoration: none; }
.brand-dot { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-link { font-weight: 800; text-decoration: none; }
.header-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.text-button { display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px; border: 2px solid var(--ink); background: var(--yellow); font-weight: 900; text-decoration: none; box-shadow: var(--shadow-sm); transition: transform 160ms var(--ease), box-shadow 160ms var(--ease); }
.text-button:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding: 22px var(--pad) 28px; border-top: var(--line); font-size: 0.9rem; color: var(--muted); }
.site-footer > span:first-child { color: var(--ink); font-weight: 800; }

/* ---------- buttons ---------- */
.primary-button, .ghost-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 56px; padding: 0 22px; border: var(--line); font-family: var(--display); font-weight: 900; font-size: 1.05rem; text-decoration: none; cursor: pointer; transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background-color 160ms var(--ease); }
.primary-button { background: var(--ink); color: var(--paper); box-shadow: 5px 5px 0 var(--orange); }
.primary-button:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--orange); }
.primary-button:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--orange); }
.primary-button:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.ghost-button { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.ghost-button:hover { background: var(--yellow); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.ghost-button.small { min-height: 48px; padding: 0 16px; font-size: 0.95rem; }
.ghost-button.light { background: transparent; color: var(--paper); border-color: var(--paper); box-shadow: none; }
.ghost-button.light:hover { background: var(--paper); color: var(--ink); }
.full { width: 100%; }
.icon-button { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border: 2px solid var(--ink); background: var(--white); font-size: 1.3rem; line-height: 1; cursor: pointer; }
.icon-button:hover { background: var(--orange); color: var(--white); }
.text-link { font-weight: 800; text-underline-offset: 4px; }

/* ---------- home ---------- */
.hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); min-height: calc(100svh - 72px); border-bottom: var(--line); }
.hero-copy { padding: clamp(48px, 8vw, 110px) var(--pad); display: flex; flex-direction: column; justify-content: center; }
.hero h1, .page-title { font-family: var(--display); letter-spacing: -0.06em; line-height: 0.9; margin: 0; text-wrap: balance; overflow-wrap: anywhere; }
.hero h1 { font-size: clamp(3.2rem, 7.4vw, 7.4rem); max-width: 12ch; }
.underline { color: var(--orange); text-decoration: underline; text-decoration-thickness: 0.08em; text-underline-offset: 0.08em; }
.intro { max-width: 36rem; margin: 30px 0 34px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.field-note { margin: 16px 0 0; color: var(--muted); font-size: 0.95rem; }
.chat-demo { position: relative; overflow: hidden; display: grid; align-content: center; justify-items: start; gap: 12px; padding: 48px clamp(24px, 4vw, 56px); background: var(--orange); border-left: var(--line); }
.bubble { max-width: 80%; padding: 10px 14px; border: 2px solid var(--ink); background: var(--white); font-weight: 800; box-shadow: var(--shadow-sm); opacity: 0; animation: pop 500ms var(--ease) forwards; }
.bubble-a { animation-delay: 150ms; }
.bubble-b { justify-self: end; background: var(--blue); animation-delay: 550ms; }
.bubble-c { background: var(--yellow); animation-delay: 950ms; }
.bubble-d { justify-self: end; animation-delay: 1350ms; }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(0.96); } to { opacity: 1; transform: none; } }
.decision-card { position: relative; margin-top: 18px; width: min(100%, 25rem); padding: 26px 24px 22px; border: var(--line); background: var(--white); box-shadow: 8px 8px 0 var(--ink); transform: rotate(-2deg); opacity: 0; animation: slam 600ms var(--ease) 1900ms forwards; }
@keyframes slam { from { opacity: 0; transform: rotate(-8deg) scale(1.15); } to { opacity: 1; transform: rotate(-2deg); } }
.stamp { position: absolute; top: -16px; right: 18px; padding: 4px 10px; border: 2px solid var(--ink); background: var(--yellow); font-weight: 900; letter-spacing: 0.08em; transform: rotate(6deg); }
.decision-label { margin: 0; font-size: 0.85rem; font-weight: 900; color: var(--muted); }
.decision-dest { margin: 4px 0; font-family: var(--display); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1; }
.decision-meta { margin: 0; font-weight: 700; }

.how, .why { padding: clamp(56px, 8vw, 96px) var(--pad); border-bottom: var(--line); }
.how h2, .why h2 { margin: 0 0 32px; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.05em; line-height: 1; }
.how-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; counter-reset: step; }
.how-steps li { counter-increment: step; display: grid; align-content: start; gap: 8px; padding: 22px; border: var(--line); background: var(--white); box-shadow: var(--shadow); }
.how-steps li::before { content: counter(step); width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--paper); font-weight: 900; margin-bottom: 6px; }
.how-steps li:nth-child(2) { background: var(--yellow); }
.how-steps li:nth-child(3) { background: var(--blue); }
.how-steps li:nth-child(4) { background: var(--orange); color: var(--white); }
.how-steps strong { font-family: var(--display); font-size: 1.3rem; line-height: 1.1; }
.why { background: var(--ink); color: var(--paper); }
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.why-grid article { padding-top: 18px; border-top: 3px solid var(--yellow); }
.why-grid h3 { margin: 0 0 8px; font-family: var(--display); font-size: 1.5rem; letter-spacing: -0.03em; }
.why-grid p { margin: 0; color: #d9e2dd; }

/* ---------- pages & forms ---------- */
.page { padding: clamp(40px, 6vw, 80px) var(--pad); max-width: 1280px; margin: 0 auto; }
.page.narrow { max-width: 820px; }
.page.center { text-align: center; }
.page.center .link-box, .page.center .lede { margin-left: auto; margin-right: auto; }
.step-tag { display: inline-block; margin: 0 0 16px; padding: 4px 10px; border: 2px solid var(--ink); background: var(--yellow); font-weight: 900; font-size: 0.9rem; }
.page-title { font-size: clamp(2.5rem, 6vw, 4.8rem); }
.lede { max-width: 38rem; margin: 18px 0 28px; font-size: 1.15rem; }
.stack { display: grid; gap: 26px; margin-top: 26px; }
fieldset { margin: 0; padding: 22px; border: var(--line); background: var(--white); box-shadow: var(--shadow); min-width: 0; }
legend { padding: 0 8px; margin-left: -8px; font-family: var(--display); font-weight: 900; font-size: 1.3rem; letter-spacing: -0.02em; }
.optional { font-family: var(--body); font-size: 0.8rem; font-weight: 700; color: var(--muted); margin-left: 6px; }
.helper { margin: 0 0 14px; color: var(--muted); font-size: 0.95rem; }
.helper.light { color: #cdd8d3; margin: 12px 0 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
label { display: grid; gap: 6px; font-weight: 800; font-size: 0.95rem; }
input[type="text"], input:not([type]), input[type="number"], input[type="search"] { min-height: 52px; width: 100%; padding: 0 14px; border: 2px solid var(--ink); background: var(--white); font-size: 1rem; font-weight: 600; border-radius: 0; }
input::placeholder { color: #8a9a93; font-weight: 500; }
input:focus-visible { outline: 3px solid var(--orange); outline-offset: 1px; }
fieldset > label + label, fieldset > .form-grid + label { margin-top: 14px; }
.money-field { display: flex; align-items: stretch; border: 2px solid var(--ink); background: var(--white); }
.money-field > span { display: grid; place-items: center; padding: 0 12px; background: var(--paper); border-right: 2px solid var(--ink); font-weight: 900; }
.money-field input { border: 0 !important; }
.money-field:focus-within { outline: 3px solid var(--orange); outline-offset: 1px; }
.money-field.big { max-width: 16rem; }
.money-field.big > span { font-size: 1.6rem; }
.money-field.big input { min-height: 64px; font-size: 1.8rem; font-weight: 900; }
.money-field.compact { width: 8.5rem; flex: none; }
.money-field.compact > span { padding: 0 8px; }

.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(8.6rem, 1fr)); gap: 10px; }
.chip { position: relative; display: block; cursor: pointer; }
.chip input, .vote-options input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span { display: flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 10px; border: 2px solid var(--ink); background: var(--white); font-weight: 900; text-align: center; transition: background-color 140ms var(--ease), transform 140ms var(--ease), box-shadow 140ms var(--ease); }
.chip:hover span { background: var(--paper); }
.chip input:checked + span { background: var(--yellow); box-shadow: var(--shadow-sm); transform: translate(-1px, -1px); }
.chip input:focus-visible + span, .vote-options input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }

.dest-list { display: grid; gap: 10px; }
.dest-row { display: flex; gap: 10px; align-items: stretch; }
.dest-row > input { flex: 1; min-width: 0; }
.dest-add { display: flex; gap: 10px; margin-top: 12px; }
.dest-add input { flex: 1; min-width: 0; }

.vote-list { display: grid; gap: 12px; }
.vote-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px 16px; align-items: center; padding-bottom: 12px; border-bottom: 2px dashed #cfc7b6; }
.vote-row:last-child { border-bottom: 0; padding-bottom: 0; }
.vote-name { font-family: var(--display); font-weight: 900; font-size: 1.15rem; display: grid; }
.vote-name small { font-family: var(--body); font-size: 0.85rem; color: var(--muted); font-weight: 700; }
.vote-options { display: flex; }
.vote-options label { position: relative; display: block; }
.vote-options span { display: grid; place-items: center; min-height: 46px; padding: 0 12px; border: 2px solid var(--ink); margin-left: -2px; background: var(--white); font-size: 0.9rem; font-weight: 900; white-space: nowrap; cursor: pointer; }
.vote-options label:first-child span { margin-left: 0; }
.vote-options input[value="2"]:checked + span { background: var(--orange); color: var(--white); }
.vote-options input[value="1"]:checked + span { background: var(--yellow); }
.vote-options input[value="0"]:checked + span { background: var(--ink); color: var(--paper); }

.pledge { grid-template-columns: auto minmax(0, 1fr); align-items: start; gap: 12px; padding: 18px; border: var(--line); background: var(--blue); font-weight: 700; cursor: pointer; }
.pledge input { width: 24px; height: 24px; margin: 2px 0 0; accent-color: var(--ink); }

/* ---------- links & next steps ---------- */
.link-box { display: grid; gap: 12px; max-width: 40rem; padding: 22px; border: var(--line); background: var(--white); box-shadow: 8px 8px 0 var(--orange); }
.link-label { font-weight: 900; }
.link-text { display: block; padding: 12px; background: var(--paper); border: 2px dashed var(--ink); font-size: 0.85rem; overflow-wrap: anywhere; }
.link-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.page.center .link-actions { justify-content: center; }
.next-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.next-card { display: grid; gap: 6px; padding: 22px; border: var(--line); background: var(--yellow); text-decoration: none; box-shadow: var(--shadow); transition: transform 160ms var(--ease), box-shadow 160ms var(--ease); }
.next-card:nth-child(2) { background: var(--blue); }
.next-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.next-card strong { font-family: var(--display); font-size: 1.4rem; line-height: 1.1; }
.big-check { width: 88px; height: 88px; margin: 0 auto 20px; display: grid; place-items: center; border: var(--line); border-radius: 50%; background: var(--yellow); font-size: 2.6rem; font-weight: 900; box-shadow: var(--shadow); animation: slam 500ms var(--ease) both; }

/* ---------- board ---------- */
.board-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 8px; }
.board-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.board-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 24px; align-items: start; }
.panel { padding: 24px; border: var(--line); background: var(--white); box-shadow: var(--shadow); }
.panel.dark { background: var(--ink); color: var(--paper); box-shadow: 8px 8px 0 var(--orange); }
.panel-title { margin: 0 0 16px; font-family: var(--display); font-size: 1.5rem; letter-spacing: -0.03em; }
.roster { list-style: none; margin: 0 0 20px; padding: 0; display: grid; }
.roster li { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 2px solid #ece5d6; animation: pop 360ms var(--ease) both; }
.roster strong { display: block; }
.roster small { color: var(--muted); font-weight: 700; }
.avatar { width: 40px; height: 40px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; font-weight: 900; background: var(--orange); color: var(--white); }
.avatar[data-c="1"] { background: var(--blue); color: var(--ink); }
.avatar[data-c="2"] { background: var(--yellow); color: var(--ink); }
.avatar[data-c="3"] { background: var(--ink); color: var(--paper); }
.empty { color: var(--muted); font-weight: 700; margin: 0 0 20px; }
.empty.light { color: #cdd8d3; }
.paste-form label { margin-bottom: 6px; }
.paste-row { display: flex; gap: 10px; }
.paste-row input { flex: 1; min-width: 0; }
.leaders { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 16px; counter-reset: lead; }
.leaders li { counter-increment: lead; padding-left: 44px; position: relative; }
.leaders li::before { content: counter(lead); position: absolute; left: 0; top: 0; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--ink); font-weight: 900; }
.leaders li:first-child::before { background: var(--yellow); }
.leader-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 12px; align-items: baseline; }
.leader-top strong { font-family: var(--display); font-size: 1.25rem; }
.leader-top span { font-weight: 800; color: var(--yellow); }
.bar { height: 12px; margin: 8px 0 6px; border: 2px solid var(--paper); background: transparent; }
.bar i { display: block; height: 100%; background: var(--orange); transform-origin: left; animation: grow 700ms var(--ease) both; }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.leaders p { margin: 0; color: #cdd8d3; font-size: 0.95rem; }
.panel.dark .primary-button { background: var(--yellow); color: var(--ink); box-shadow: 5px 5px 0 var(--orange); }

/* ---------- decision ---------- */
.result-hero { position: relative; min-height: min(78svh, 720px); overflow: hidden; color: var(--paper); border-bottom: var(--line); }
.result-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: settle 1400ms var(--ease) both; }
@keyframes settle { from { transform: scale(1.08); } to { transform: none; } }
.result-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,45,36,.2), rgba(18,45,36,.25) 40%, rgba(18,45,36,.9)); }
.result-top { position: relative; display: flex; justify-content: space-between; gap: 12px; padding: 22px var(--pad); font-weight: 900; font-size: 0.9rem; }
.result-title { position: absolute; left: var(--pad); right: var(--pad); bottom: clamp(28px, 6vw, 64px); }
.result-title p { margin: 0 0 8px; font-weight: 900; color: var(--yellow); }
.result-title h1 { margin: 0; font-family: var(--display); font-size: clamp(3.6rem, 11vw, 9.5rem); line-height: 0.86; letter-spacing: -0.07em; overflow-wrap: anywhere; animation: slam 700ms var(--ease) 200ms both; }
.result-date { display: inline-block; margin-top: 18px; padding: 8px 14px; background: var(--yellow); color: var(--ink); border: 2px solid var(--ink); font-weight: 900; }
.sticker { position: absolute; right: var(--pad); top: 34%; width: 124px; height: 124px; display: grid; place-items: center; text-align: center; border: var(--line); border-radius: 50%; background: var(--orange); color: var(--white); font-weight: 900; font-size: 0.9rem; line-height: 1.1; transform: rotate(-12deg); animation: slam 600ms var(--ease) 700ms both; }
.result-body { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 24px; }
.receipts, .crew-card, .commit-card { padding: 24px; border: var(--line); background: var(--white); box-shadow: var(--shadow); }
.receipts { grid-row: span 2; }
.receipts h2, .crew-card h2, .commit-card h2 { margin: 0 0 16px; font-family: var(--display); font-size: 1.8rem; letter-spacing: -0.04em; line-height: 1.05; }
.receipts ul { list-style: none; margin: 0; padding: 0; display: grid; }
.receipts li { display: grid; grid-template-columns: 4.5rem minmax(0, 1fr); gap: 14px; padding: 14px 0; border-top: 2px solid #ece5d6; }
.receipts li > span { font-family: var(--display); font-size: 2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.receipts p { margin: 0; }
.names { font-family: var(--display); font-size: 1.5rem; line-height: 1.25; margin: 0 0 10px; }
.crew-card { background: var(--blue); }
.commit-card { background: var(--ink); color: var(--paper); box-shadow: 8px 8px 0 var(--orange); }
.commit-card p { color: #d9e2dd; }
.commit-actions { display: grid; gap: 12px; }
.commit-card .primary-button { background: var(--yellow); color: var(--ink); }
.deposit-note { margin: 0; padding: 12px 14px; border: 2px solid var(--yellow); color: var(--yellow) !important; font-weight: 900; }
.owner-row { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }

.trip-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.trip-list a { display: grid; gap: 4px; padding: 18px 20px; border: var(--line); background: var(--white); text-decoration: none; box-shadow: var(--shadow-sm); }
.trip-list a:hover { background: var(--yellow); }
.trip-list strong { font-family: var(--display); font-size: 1.3rem; }
.trip-list span { color: var(--muted); font-weight: 700; }

/* ---------- toast ---------- */
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 40; max-width: calc(100vw - 32px); padding: 12px 18px; border: var(--line); background: var(--yellow); font-weight: 900; box-shadow: var(--shadow); transform: translate(-50%, calc(100% + 48px)); visibility: hidden; transition: transform 260ms var(--ease), visibility 0s linear 260ms; }
.toast.show { transform: translate(-50%, 0); visibility: visible; transition: transform 260ms var(--ease), visibility 0s; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .chat-demo { border-left: 0; border-top: var(--line); min-height: 26rem; }
  .how-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: minmax(0, 1fr); }
  .board-grid, .result-body { grid-template-columns: minmax(0, 1fr); }
  .receipts { grid-row: auto; }
}
@media (max-width: 620px) {
  .header-link { display: none; }
  .brand { font-size: 1.7rem; }
  .how-steps, .form-grid, .next-grid { grid-template-columns: minmax(0, 1fr); }
  .vote-row { grid-template-columns: minmax(0, 1fr); }
  .vote-options { width: 100%; }
  .vote-options label { flex: 1; }
  .vote-options span { padding: 0 6px; }
  .dest-row { flex-wrap: wrap; }
  .dest-row > input { flex-basis: 100%; }
  .dest-row .money-field.compact { flex: 1; width: auto; }
  .sticker { width: 96px; height: 96px; font-size: 0.75rem; top: 22%; }
  .receipts li { grid-template-columns: 3.4rem minmax(0, 1fr); }
  .hero-actions > * { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; animation-delay: 0ms !important; transition-duration: 1ms !important; }
}

/* ---------- launch additions ---------- */
.source-note { margin: 24px 0 0; font-size: 0.8rem; color: #9fb2aa; }
.uses { padding: clamp(56px, 8vw, 96px) var(--pad); border-bottom: var(--line); }
.uses h2, .faq h2 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.05em; line-height: 1; max-width: 22ch; }
.use-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.use-card { display: grid; gap: 6px; align-content: end; min-height: 10rem; padding: 20px; border: var(--line); background: var(--white); text-decoration: none; box-shadow: var(--shadow); transition: transform 160ms var(--ease), box-shadow 160ms var(--ease); }
.use-card[data-type="golf"] { background: var(--orange); color: var(--white); }
.use-card[data-type="bachelor"] { background: var(--ink); color: var(--paper); }
.use-card[data-type="bachelorette"] { background: var(--yellow); }
.use-card[data-type="trip"] { background: var(--blue); }
.use-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.use-card strong { font-family: var(--display); font-size: 1.5rem; line-height: 1.05; }
.use-card span { font-weight: 700; opacity: 0.85; }
.faq { padding: clamp(56px, 8vw, 96px) var(--pad); display: grid; gap: 28px; justify-items: start; }
.faq-list { display: grid; width: 100%; max-width: 52rem; border-top: var(--line); }
.faq-list details { border-bottom: 2px solid var(--ink); }
.faq-list summary { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 18px 0; font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 900; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: none; width: 34px; height: 34px; display: grid; place-items: center; border: 2px solid var(--ink); background: var(--yellow); font-family: var(--body); transition: transform 200ms var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: 0 0 18px; max-width: 44rem; font-size: 1.05rem; }
.prose h2 { margin: 32px 0 8px; font-family: var(--display); font-size: 1.5rem; }
.prose p { max-width: 40rem; font-size: 1.05rem; }
.type-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.type-grid .chip input[type="radio"] + span { min-height: 56px; }
.chip input[type="radio"]:checked + span { background: var(--orange); color: var(--white); box-shadow: var(--shadow-sm); transform: translate(-1px, -1px); }
.top-gap { margin-top: 14px; }
input[type="date"] { min-height: 52px; width: 100%; padding: 0 14px; border: 2px solid var(--ink); background: var(--white); font-size: 1rem; font-weight: 600; border-radius: 0; }
.waiting { display: grid; gap: 10px; justify-items: start; margin: 0 0 20px; padding: 14px; border: 2px dashed var(--orange-deep); background: #fff1ea; }
.waiting p { margin: 0; }
.deposits { margin-top: 24px; }
.deposit-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: start; gap: 12px; }
.deposit-head .panel-title { margin-bottom: 4px; }
.paid-list { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr)); gap: 10px; }
.paid-check { display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 14px; border: 2px solid var(--ink); background: var(--white); cursor: pointer; }
.paid-check input { width: 22px; height: 22px; accent-color: var(--green); }
.paid-check:has(input:checked) { background: #dff3e6; }
.paid-check:has(input:checked) span { text-decoration: line-through; text-decoration-thickness: 2px; }
.result-hero.no-photo { background: var(--orange); background-image: radial-gradient(circle at 88% 58%, var(--yellow) 0 7rem, transparent 7.1rem), repeating-linear-gradient(-45deg, transparent 0 22px, rgba(18,45,36,.08) 22px 24px); }
.result-hero.no-photo .result-shade { background: linear-gradient(180deg, transparent 40%, rgba(18,45,36,.35)); }
.site-footer nav { display: flex; gap: 18px; }
.site-footer nav a { font-weight: 800; color: var(--ink); }
@media (max-width: 960px) { .use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .use-grid { grid-template-columns: minmax(0, 1fr); } .use-card { min-height: 7rem; } }

/* ---------- live backend additions ---------- */
.loading { padding: 18vh var(--pad); text-align: center; font-family: var(--display); font-weight: 900; font-size: 1.4rem; }
.decided-banner { display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: baseline; margin: 0 0 22px; padding: 14px 18px; border: var(--line); background: var(--orange); color: var(--white); text-decoration: none; font-weight: 700; box-shadow: var(--shadow-sm); }
.decided-banner strong { font-family: var(--display); font-size: 1.15rem; }
.already { margin: -8px 0 8px; font-weight: 800; color: var(--green); }
.editing-note { margin: 0; padding: 12px 14px; border: 2px solid var(--ink); background: var(--blue); font-weight: 800; }
.live-dot { display: inline-block; width: 10px; height: 10px; margin: 0 6px 0 10px; border-radius: 50%; background: var(--green); vertical-align: middle; animation: pulse 1.8s ease-in-out infinite; }
.live-label { font-weight: 900; color: var(--green); }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(47, 143, 91, 0.5); } 50% { box-shadow: 0 0 0 6px rgba(47, 143, 91, 0); } }
.board-tools { margin-top: 24px; border: 2px solid var(--ink); background: var(--white); }
.board-tools summary { padding: 14px 18px; font-weight: 900; cursor: pointer; }
.tools-body { display: grid; gap: 10px; justify-items: start; padding: 0 18px 18px; }
.tools-body .helper { margin: 6px 0 0; }
.ghost-button.danger { border-color: var(--orange-deep); color: var(--orange-deep); }
.ghost-button.danger:hover { background: var(--orange-deep); color: var(--white); }
.list-title { margin: 28px 0 0; font-family: var(--display); font-size: 1.3rem; }
.commit-card .ghost-button:disabled { opacity: 0.85; cursor: default; }
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }

/* ---------- feedback, growth, owner stats ---------- */
.wide { grid-column: 1 / -1; }
.feedback-card { display: grid; gap: 12px; justify-items: start; margin-top: 28px; padding: 20px; border: var(--line); background: var(--white); box-shadow: var(--shadow-sm); text-align: left; }
.feedback-card.big { margin-top: 8px; box-shadow: var(--shadow); }
.feedback-q { margin: 0; font-family: var(--display); font-weight: 900; font-size: 1.25rem; }
.feedback-options { display: flex; flex-wrap: wrap; gap: 8px; }
.feedback-options label { position: relative; display: block; }
.feedback-options input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.feedback-options span { display: grid; place-items: center; min-height: 46px; padding: 0 14px; border: 2px solid var(--ink); background: var(--white); font-weight: 900; font-size: 0.95rem; cursor: pointer; }
.feedback-options input:checked + span { background: var(--yellow); box-shadow: var(--shadow-sm); }
.feedback-options input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }
.feedback-note { width: 100%; }
.feedback-note textarea, .feedback-note input { width: 100%; padding: 12px 14px; border: 2px solid var(--ink); background: var(--white); font: inherit; font-weight: 600; border-radius: 0; resize: vertical; }
.feedback-note textarea:focus-visible, .feedback-note input:focus-visible { outline: 3px solid var(--orange); outline-offset: 1px; }
.feedback-thanks { margin: 0; font-weight: 900; }
.own-trip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 28px; padding: 22px; border: var(--line); background: var(--yellow); box-shadow: var(--shadow); text-align: left; }
.own-trip div { display: grid; gap: 4px; max-width: 34rem; }
.own-trip strong { font-family: var(--display); font-size: 1.35rem; line-height: 1.1; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 24px 0; }
.stat { padding: 18px; border: var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.stat > span { display: block; font-family: var(--display); font-size: 2.6rem; font-weight: 900; line-height: 1; color: var(--orange); }
.stat p { margin: 8px 0 0; font-weight: 900; }
.stat small { display: block; font-weight: 700; color: var(--muted); }
.admin-grid { margin-top: 8px; }
.funnel { margin: 0 0 12px; padding-left: 20px; display: grid; gap: 8px; }
.funnel small { color: var(--muted); font-weight: 800; margin-left: 6px; }
.mini-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.mini-table th, .mini-table td { padding: 8px 6px; border-bottom: 2px solid #ece5d6; text-align: left; }
.mini-table th { font-weight: 900; }
.fb-list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 12px; }
.fb-list li { padding: 12px 14px; border: 2px solid var(--ink); background: var(--paper); }
.fb-list p { margin: 6px 0 0; }
.fb-meta { font-size: 0.85rem; font-weight: 800; color: var(--muted); }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.test-badge { margin: 0; padding: 10px var(--pad); background: var(--blue); border-bottom: 2px solid var(--ink); font-weight: 800; font-size: 0.95rem; }
.test-badge a { font-weight: 900; }
.mini-table small { color: var(--muted); font-weight: 800; }
