/* ── OGOGO — five-circle logo system ─────────────────────────────────────
   White ground, ink type, the five translucent logo circles as the only
   recurring color. Everything caps; hierarchy from weight + width. */

:root {
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
  --bg: #FFFFFF;
  --card: #FFFFFF;
  --ink: #111111;
  --ink-88: rgba(17, 17, 17, 0.88);
  --ink-62: rgba(17, 17, 17, 0.62);
  --ink-45: rgba(17, 17, 17, 0.45);
  --ink-16: rgba(17, 17, 17, 0.16);
  --ink-08: rgba(17, 17, 17, 0.08);
  --green: #90D793;
  --cyan: #7FE3E0;
  --blue: #7FB1EE;
  --magenta: #E17FE0;
  --coral: #E08F7B;
  --radius: 22px;
  --shadow: 0 6px 24px rgba(17, 17, 17, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-variation-settings: 'wdth' 75;
  font-weight: 460;
  background: var(--bg);
  color: var(--ink-88);
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: .08em;
}
input, textarea, select, option { text-transform: none; letter-spacing: .02em; }

.wrap { width: 100%; max-width: 640px; margin: 0 auto; padding: 0 22px; flex: 1; }

/* ── the five-circle logo mark ──────────────────────────────────────── */
.mark { display: flex; justify-content: center; }
.mark span {
  border-radius: 50%;
  opacity: .72;
  mix-blend-mode: multiply;
  display: inline-block;
}
.mark span + span { margin-left: calc(var(--dot, 20px) * -0.26); }
.mark span { width: var(--dot, 20px); height: var(--dot, 20px); }
.mark span:nth-child(1) { background: var(--green); }
.mark span:nth-child(2) { background: var(--cyan); }
.mark span:nth-child(3) { background: var(--blue); }
.mark span:nth-child(4) { background: var(--magenta); }
.mark span:nth-child(5) { background: var(--coral); }

.brand {
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: var(--ink);
}
.brand .name {
  text-align: center;
  font-size: 13px; font-weight: 600;
  letter-spacing: .45em; margin-left: .45em;
  font-variation-settings: 'wdth' 62.5;
  color: var(--ink-88);
}

header { padding: 26px 0 0; }

/* ── footer ─────────────────────────────────────────────────────────── */
footer { text-align: center; padding: 40px 12px 28px; }
footer .penny-line {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .3em;
  color: var(--ink-45);
  margin-bottom: 14px;
}
footer .penny-line svg { width: 20px; height: 20px; }
footer .estab-line {
  margin-top: 8px;
  white-space: nowrap;
  font-size: min(10px, 2.3vw);
  letter-spacing: .1em;
  color: var(--ink-62);
}

/* ── landing ────────────────────────────────────────────────────────── */
.land { flex: 1; display: flex; flex-direction: column; }
.land-center {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 34px;
  padding: 54px 30px 10px;
}
.land-left { display: flex; flex-direction: column; gap: 26px; align-items: center; }
.land-logo { --dot: clamp(58px, 15vw, 92px); }
.land-name {
  text-align: center;
  font-size: clamp(24px, 6.4vw, 38px);
  font-weight: 650;
  letter-spacing: .52em; margin-left: .52em;
  font-variation-settings: 'wdth' 62.5;
  color: #111;
}
.mv { display: flex; flex-direction: column; gap: 15px; max-width: 420px; text-align: center; }
.mv h2 { font-size: 10px; font-weight: 700; letter-spacing: .32em; color: var(--ink-45); }
.mv p  { font-size: 12.5px; font-weight: 500; letter-spacing: .14em; line-height: 2; color: var(--ink-88); text-wrap: balance; }
.land-btns { display: flex; flex-direction: column; gap: 12px; width: min(320px, 84vw); }
.about-line { font-size: 10px; font-weight: 600; letter-spacing: .24em; color: var(--ink-45); text-align: center; }
.about-line a { color: var(--ink-62); text-decoration: underline; text-underline-offset: 3px; }

/* demo strip on the landing page */
.demo-strip {
  border: 1.5px dashed var(--ink-16);
  border-radius: 20px;
  padding: 16px 18px 18px;
  width: min(320px, 84vw);
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.demo-k { font-size: 9.5px; font-weight: 700; letter-spacing: .3em; color: var(--ink-45); }
.demo-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.demo-links a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 16px;
  border: 1.5px solid rgba(17,17,17,.22);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-88);
  text-decoration: none;
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  transition: border-color .15s, transform .12s;
}
.demo-links a:hover { border-color: var(--ink-62); }
.demo-links a:active { transform: scale(.97); }
.demo-links a svg { width: 13px; height: 13px; }

@media (min-width: 900px) {
  .land-center { flex-direction: row; gap: 90px; align-items: center; }
  .land-right { display: flex; flex-direction: column; gap: 22px; max-width: 400px; }
  .mv { text-align: left; }
  .land-btns { flex-direction: row; width: auto; }
  .land-btns .btn { padding: 14px 22px; }
  .demo-strip { width: 100%; }
}

/* ── buttons ────────────────────────────────────────────────────────── */
.btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-indent: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform .14s ease, opacity .15s, border-color .15s;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--ink); color: #ffffff; }
.btn-primary:hover { opacity: .85; }
.btn-ghost { background: #ffffff; color: var(--ink); border: 1.5px solid rgba(17,17,17,.22); }
.btn-ghost:hover { border-color: var(--ink-62); }

.round-btn {
  width: 165px; height: 165px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #ffffff;
  font-family: inherit;
  font-size: 15px; font-weight: 800;
  letter-spacing: .32em; text-indent: .32em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(17,17,17,.25);
  transition: transform .12s, opacity .15s;
}
.round-btn:hover { opacity: .88; }
.round-btn:active { transform: scale(.94); }
.release-ring { display: inline-flex; padding: 13px; border-radius: 50%; border: 1.5px dashed var(--ink-16); }

/* ── cards / survey chrome ──────────────────────────────────────────── */
.section { padding: 28px 0; }
.qcard {
  background: var(--card);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  box-shadow: var(--shadow);
  animation: pop .35s cubic-bezier(.22,1,.36,1);
}
@keyframes pop {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.q-kicker { font-size: 10px; font-weight: 700; letter-spacing: .34em; color: var(--ink-45); margin-bottom: 12px; }
.q-title {
  font-size: 14px; font-weight: 700;
  font-variation-settings: 'wdth' 68;
  letter-spacing: .15em; line-height: 2.05;
  color: var(--ink-88);
}
.q-help { color: var(--ink-45); font-size: 10.5px; font-weight: 500; letter-spacing: .16em; margin-top: 8px; line-height: 1.95; }

.progress-track { height: 7px; background: var(--ink-08); border-radius: 999px; margin: 28px 0 0; }
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue), var(--magenta), var(--coral));
  border-radius: 999px;
  transition: width .45s cubic-bezier(.22,1,.36,1);
}
.progress-label { text-align: right; font-size: 9px; font-weight: 700; letter-spacing: .3em; color: var(--ink-45); margin: 8px 0 12px; }

/* answer rows */
.opts-rows { margin-top: 22px; display: grid; gap: 10px; }
.opt-r {
  width: 100%;
  text-align: left;
  background: #FDFDFD;
  border: 1px solid var(--ink-16);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-88);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .1s;
}
.opt-r:hover { border-color: var(--ink-62); }
.opt-r:active { transform: scale(.99); }
.opt-r.selected { background: rgba(127, 177, 238, .2); border: 1.5px solid var(--blue); font-weight: 700; }

/* cause cells: icon-only circle, label beneath */
.cause-grid { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 14px 8px; justify-content: center; }
.cause-cell {
  width: 72px;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  background: none; border: none; padding: 0;
  font-family: inherit; cursor: pointer;
}
.cause-cell:active .cause-circle { transform: scale(.93); }
.cause-circle {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid var(--ink-16);
  background: #FDFDFD;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, box-shadow .15s, transform .12s;
}
.cause-circle svg { width: 28px; height: 28px; }
.cause-label {
  font-size: 7.8px; font-weight: 700; letter-spacing: .09em;
  text-align: center; line-height: 1.55;
  color: var(--ink-62); text-transform: uppercase;
}
.cause-cell .count {
  position: absolute; top: -5px; right: -3px;
  min-width: 19px; height: 19px; border-radius: 999px;
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0;
  display: flex; align-items: center; justify-content: center; padding: 0 5px;
}
.sub-head { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.sub-head svg { width: 30px; height: 30px; flex: none; }
.sub-head .bname { font-size: 12px; font-weight: 700; letter-spacing: .2em; }

/* forms */
.field { margin-top: 17px; text-align: left; }
.field label {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 8px; color: var(--ink-62);
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 13px 16px;
  border: 1.5px solid var(--ink-16);
  border-radius: 14px;
  background: #FDFDFD;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink-62); }
.field textarea { resize: vertical; min-height: 100px; }

.q-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; gap: 12px; }
.link-btn {
  background: none; border: none; font-family: inherit;
  font-size: 10.5px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-45);
  cursor: pointer; padding: 10px 6px;
}
.link-btn:hover { color: var(--ink-88); }
.error-note { color: var(--coral); font-size: 11px; font-weight: 700; letter-spacing: .12em; margin-top: 12px; display: none; }

.done { text-align: center; padding: 38px 10px 24px; }
.done h2 { font-size: 16px; font-weight: 700; letter-spacing: .3em; }
.done p { color: var(--ink-62); margin-top: 12px; font-size: 11.5px; letter-spacing: .14em; line-height: 2; }

/* get involved role cards */
.roles { display: flex; flex-direction: column; gap: 13px; margin-top: 18px; }
.role {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 18px;
  background: #FDFDFD;
  padding: 16px;
  font-family: inherit; text-align: left; cursor: pointer;
  transition: border-color .15s, transform .12s;
}
.role:hover { border-color: var(--ink-62); }
.role:active { transform: scale(.985); }
.role .ricon {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.role .ricon svg { width: 24px; height: 24px; }
.role h3 { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--ink-88); }
.role p { font-size: 9px; font-weight: 500; letter-spacing: .1em; line-height: 1.75; color: var(--ink-62); margin-top: 3px; }
.role .chev { flex: none; width: 16px; height: 16px; color: var(--ink-45); }

.center { text-align: center; }
.mt-lg { margin-top: 28px; }
.hidden { display: none !important; }

.slate-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid rgba(17,17,17,.22);
  border-radius: 999px;
  color: var(--ink-88);
  background: #fff;
  text-decoration: none;
  font-size: 11px; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase;
  transition: border-color .15s;
}
.slate-btn:hover { border-color: var(--ink-62); }
