/* ============================================================
   WIN MERCHANT SERVICES INC — "Assembly Hall" design system
   Wine-black background, crimson + council-slate accents,
   Libre Franklin display, roll-call rows, badges, quorum readouts
   ============================================================ */

:root {
  --bg: #0d0a0e;
  --bg2: #120d12;
  --panel: #1a1218;
  --panel-hi: #211720;
  --edge: #35212c;
  --edge-soft: #1e1419;
  --cr: #cf3a5c;
  --cr-hi: #e46683;
  --cr-deep: #7e2338;
  --sl: #8fa3bc;
  --sl-deep: #4e5f76;
  --txt: #f3eff0;
  --sub: #b0a5ab;
  --dim: #6a5c64;
  --disp: "Libre Franklin", "Segoe UI", sans-serif;
  --body-f: "Atkinson Hyperlegible", "Segoe UI", Arial, sans-serif;
  --mono: "Roboto Mono", "Consolas", monospace;
  --head-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--sub);
  font-family: var(--body-f);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--cr); color: var(--bg); }

a { color: var(--cr-hi); text-decoration: none; }
a:hover { color: var(--txt); }

h1, h2, h3, h4 {
  font-family: var(--disp);
  color: var(--txt);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.wrap { max-width: 1220px; margin: 0 auto; padding: 0 44px; }

.k-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--cr-hi);
}
.k-label.sl { color: var(--sl); }

/* ---------------- Header ---------------- */

.ahead {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--head-h);
  z-index: 300;
  background: var(--bg);
  border-bottom: 1px solid var(--edge-soft);
}

.ahead .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.alogo { display: flex; align-items: center; gap: 14px; }

.alogo-seal {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--cr);
  display: grid;
  place-items: center;
  position: relative;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 11px;
  color: var(--cr-hi);
  letter-spacing: 0.5px;
}

/* laurel arcs */
.alogo-seal::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed var(--sl-deep);
}

.alogo-name {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 19px;
  color: var(--txt);
  line-height: 1.15;
}

.alogo-name small {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--dim);
  margin-top: 4px;
  text-transform: uppercase;
}

.anav { display: flex; align-items: center; gap: 4px; }

.anav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--sub);
  padding: 10px 14px;
  transition: color .2s;
}

.anav a:hover { color: var(--txt); }
.anav a.active { color: var(--cr-hi); }

.anav .roll-cta {
  color: var(--bg) !important;
  background: var(--cr);
  font-weight: 700;
  margin-left: 10px;
  padding: 12px 22px;
  border-radius: 20px;
}

.anav .roll-cta:hover { background: var(--cr-hi); }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--edge);
  color: var(--txt);
  width: 44px; height: 44px;
  font-size: 18px;
  cursor: pointer;
}

.m-nav {
  display: none;
  position: fixed;
  top: var(--head-h);
  left: 0; right: 0;
  z-index: 290;
  background: var(--bg2);
  border-bottom: 1px solid var(--edge);
  padding: 8px 24px 22px;
}

.m-nav.open { display: block; }

.m-nav a {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sub);
  padding: 14px 0;
  border-bottom: 1px solid var(--edge-soft);
}
.m-nav a.active { color: var(--cr-hi); }

main { padding-top: var(--head-h); }

/* ---------------- Hero — assembly ---------------- */

.hero {
  position: relative;
  border-bottom: 1px solid var(--edge-soft);
  overflow: hidden;
}

/* chamber arc rows — curved bench rows */
.hero::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -130%;
  width: 200%; height: 160%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid var(--edge);
  box-shadow: 0 -34px 0 -1px var(--edge-soft), 0 -68px 0 -1px var(--edge-soft), 0 -102px 0 -1px var(--edge-soft);
  opacity: .9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 116px 0 84px;
  text-align: center;
}

.hero .a-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.hero .a-eyebrow::before,
.hero .a-eyebrow::after {
  content: "—";
  color: var(--cr);
  font-family: var(--mono);
}

.hero h1 { font-size: clamp(46px, 6.6vw, 90px); }
.hero h1 em { font-style: normal; color: var(--cr-hi); }
.hero h1 .s { color: var(--sl); }

.hero .lede { margin: 30px auto 0; font-size: 17px; max-width: 640px; }

.hero-cta { margin-top: 42px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 24px;
  transition: background .2s, color .2s, border-color .2s;
}

.btn-fill { background: var(--cr); color: var(--bg); }
.btn-fill:hover { background: var(--cr-hi); color: var(--bg); }
.btn-line { border: 1px solid var(--edge); color: var(--txt); }
.btn-line:hover { border-color: var(--cr); color: var(--cr-hi); }

/* quorum strip */
.quorum-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--edge);
  background: var(--bg2);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.quorum-strip .qu {
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid var(--edge-soft);
}

.quorum-strip .qu:last-child { border-right: 0; }

.quorum-strip .qu b {
  display: block;
  font-family: var(--disp);
  font-weight: 800;
  font-size: 14px;
  color: var(--txt);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quorum-strip .qu span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---------------- Sections ---------------- */

.section { padding: 96px 0; border-bottom: 1px solid var(--edge-soft); }

.sec-gavel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.sec-gavel::before {
  content: "◉";
  font-size: 13px;
  color: var(--cr);
}

.sec-gavel::after { content: ""; flex: 1; height: 1px; background: var(--edge-soft); }

.sec-head { margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(32px, 4.4vw, 56px); }
.sec-head h2 em { font-style: normal; color: var(--cr-hi); }
.sec-head h2 .s { color: var(--sl); }
.sec-head .sub { margin-top: 18px; max-width: 620px; font-size: 16px; }

/* ---------------- Caucus cards (member badge) ---------------- */

.caucus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.caucus {
  border: 1px solid var(--edge);
  background: var(--panel);
  padding: 38px 32px;
  transition: transform .25s, border-color .25s, background .25s;
  position: relative;
  border-radius: 4px;
}

/* lanyard hole */
.caucus::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--sl-deep);
}

.caucus:hover { transform: translateY(-5px); border-color: var(--cr-deep); background: var(--panel-hi); }

.caucus .cu-no {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--cr);
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 12px;
}

.caucus .cu-no.sl { background: var(--sl); }

.caucus h3 { font-size: 23px; margin: 20px 0 12px; }
.caucus p { font-size: 14px; }

.caucus .cu-line {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--edge);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 2;
}

/* ---------------- Roll call rows ---------------- */

.rollcall { border-top: 1px solid var(--edge); }

.roll-row {
  display: grid;
  grid-template-columns: 130px 1.2fr 1.7fr;
  gap: 36px;
  padding: 30px 8px;
  border-bottom: 1px solid var(--edge-soft);
  align-items: baseline;
}

.roll-row .r-code {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cr-hi);
}

.roll-row .r-code.sl { color: var(--sl); }

.roll-row h3 { font-size: 22px; }
.roll-row p { font-size: 14.5px; }

/* ---------------- Split ---------------- */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.duo h2 { font-size: clamp(30px, 3.8vw, 48px); }
.duo h2 em { font-style: normal; color: var(--cr-hi); }
.duo h2 .s { color: var(--sl); }
.duo > div > p { margin-top: 18px; font-size: 15.5px; }

/* Minute card */

.minute {
  border: 1px solid var(--edge);
  background: var(--panel);
  border-radius: 6px;
}

.minute .m-head {
  padding: 18px 30px;
  border-bottom: 2px solid var(--cr);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--cr-hi);
  display: flex;
  justify-content: space-between;
}

.minute .m-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 30px;
  border-bottom: 1px dashed var(--edge-soft);
  font-size: 14px;
}

.minute .m-row:last-child { border-bottom: 0; }

.minute .m-row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 4px;
  white-space: nowrap;
}

.minute .m-row .v { color: var(--txt); text-align: right; }

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

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  border: 1px solid var(--edge);
  background: var(--bg2);
  border-radius: 6px;
  padding: 40px 26px;
  text-align: center;
}

.stat .n {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 48px;
  color: var(--txt);
  line-height: 1;
}

.stat .n i { font-style: normal; color: var(--cr-hi); }
.stat .n b { font-weight: 800; color: var(--sl); font-style: normal; }

.stat .c {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 14px;
}

/* ---------------- Quote ---------------- */

.quote-zone { padding: 96px 0; text-align: center; }

.quote-zone .qt {
  font-family: var(--disp);
  font-size: clamp(23px, 2.9vw, 36px);
  font-weight: 700;
  color: var(--txt);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.42;
  letter-spacing: -0.3px;
}

.quote-zone cite {
  display: block;
  margin-top: 30px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sl);
}

/* ---------------- CTA ---------------- */

.cta-zone {
  padding: 104px 0;
  text-align: center;
  border-top: 1px solid var(--edge);
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.cta-zone::before {
  content: "";
  position: absolute;
  left: 50%; top: -140%;
  width: 200%; height: 160%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid var(--edge);
  box-shadow: 0 34px 0 -1px var(--edge-soft), 0 68px 0 -1px var(--edge-soft), 0 102px 0 -1px var(--edge-soft);
}

.cta-zone .inner { position: relative; }
.cta-zone .k-label { display: inline-block; margin-bottom: 22px; }
.cta-zone h2 { font-size: clamp(32px, 4.6vw, 60px); }
.cta-zone h2 em { font-style: normal; color: var(--cr-hi); }
.cta-zone h2 .s { color: var(--sl); }
.cta-zone p { margin: 22px auto 40px; max-width: 560px; font-size: 16px; }

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

.a-foot {
  border-top: 1px solid var(--edge);
  background: var(--bg2);
  padding: 68px 0 34px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--edge-soft);
}

.foot-grid h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}

.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 11px; font-size: 14px; }
.foot-grid li a { color: var(--sub); }
.foot-grid li a:hover { color: var(--cr-hi); }

.foot-desc { margin-top: 16px; font-size: 13.5px; max-width: 360px; color: var(--dim); }

.foot-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 1px;
  color: var(--dim);
}

.foot-bar a { color: var(--sub); }
.foot-bar a:hover { color: var(--cr-hi); }

/* ---------------- Page hero ---------------- */

.page-hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--edge-soft);
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -120%;
  width: 180%; height: 150%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid var(--edge-soft);
}

.page-hero .wrap { position: relative; }

.crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 26px;
}

.crumb a { color: var(--cr-hi); }

.page-hero h1 { font-size: clamp(38px, 5.4vw, 68px); }
.page-hero h1 em { font-style: normal; color: var(--cr-hi); }
.page-hero h1 .s { color: var(--sl); }
.page-hero .lede { margin: 24px auto 0; max-width: 640px; font-size: 17px; }

/* ---------------- Contact ---------------- */

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 62px;
  padding: 84px 0;
}

.seat-card {
  border: 1px solid var(--edge);
  background: var(--panel);
  padding: 22px 28px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: start;
  border-radius: 6px;
}

.seat-card .fld {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--sl);
  padding-top: 5px;
}

.seat-card .val {
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 800;
  color: var(--txt);
  line-height: 1.3;
}

.seat-card .val a { color: var(--txt); }
.seat-card .val a:hover { color: var(--cr-hi); }

.seat-card .nt { grid-column: 2; font-size: 13px; color: var(--dim); }

.motion-form {
  border: 1px solid var(--edge);
  background: var(--panel);
  border-radius: 6px;
  padding: 46px;
  position: relative;
}

.motion-form::before {
  content: "Motion · WIN-890";
  position: absolute;
  top: 0; left: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--bg);
  background: var(--cr);
  padding: 7px 14px;
  border-radius: 0 0 6px 0;
}

.motion-form h2 { font-size: 28px; margin-bottom: 8px; margin-top: 10px; }
.motion-form > p { font-size: 13px; color: var(--dim); margin-bottom: 30px; font-family: var(--mono); }

.f-field { margin-bottom: 20px; }

.f-field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 9px;
}

.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--edge);
  color: var(--txt);
  font-family: var(--body-f);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
  border-radius: 4px;
}

.f-field textarea { min-height: 140px; resize: vertical; }

.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus { border-color: var(--cr); }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.f-note { font-size: 12px; color: var(--dim); margin-top: 16px; font-family: var(--mono); }

/* ---------------- Legal prose ---------------- */

.prose { max-width: 840px; padding: 76px 0 100px; }

.prose .policy-head {
  border: 1px solid var(--edge);
  border-left: 4px solid var(--cr);
  background: var(--panel);
  padding: 30px 34px;
  margin-bottom: 44px;
  font-size: 15.5px;
  border-radius: 0 6px 6px 0;
}

.prose .upd {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--cr-hi);
  border: 1px solid var(--cr-deep);
  padding: 7px 14px;
  margin-bottom: 26px;
  border-radius: 12px;
}

.prose h2 {
  font-size: 26px;
  margin: 54px 0 18px;
  padding-top: 38px;
  border-top: 1px solid var(--edge-soft);
}

.prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 44px; }
.prose h3 { font-size: 19px; margin: 30px 0 10px; }
.prose p { margin-bottom: 15px; font-size: 15.5px; }
.prose ul { margin: 0 0 15px 22px; font-size: 15.5px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--txt); }

/* ---------------- Reveal ---------------- */

.rv { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }

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

@media (max-width: 1080px) {
  .anav { display: none; }
  .burger { display: block; }
  .caucus-grid { grid-template-columns: 1fr; }
  .duo, .contact-cols { grid-template-columns: 1fr; gap: 48px; }
  .roll-row { grid-template-columns: 110px 1fr; }
  .roll-row p { grid-column: 2; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .quorum-strip { grid-template-columns: 1fr 1fr; }
  .quorum-strip .qu { border-bottom: 1px solid var(--edge-soft); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 0 26px; }
  .motion-form { padding: 36px 24px; }
  .f-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .stat-grid, .quorum-strip { grid-template-columns: 1fr; }
}
