:root {
  --black: #08080a;
  --ink: #1f2024;
  --muted: #6f737d;
  --red: #d7192a;
  --red-dark: #8f0711;
  --white: #ffffff;
  --soft: #f6f4f2;
  --line: rgba(8, 8, 10, .1);
  --shadow: 0 22px 65px rgba(8, 8, 10, .12);
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% -10%, rgba(215, 25, 42, .18), transparent 30%),
    linear-gradient(145deg, #fff 0%, var(--soft) 58%, #ece7e2 100%);
}

a { color: inherit; text-decoration: none; }

.site-header {
  padding: 22px clamp(18px, 4vw, 56px) 64px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 8, 10, .98), rgba(25, 25, 28, .96) 55%, rgba(139, 7, 17, .92));
}

.nav,
.hero,
.intro-strip,
.catalog-section,
.campaign-section,
.next-layer,
.create-section,
.panel-section {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 190px;
  height: 64px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  padding: 3px 7px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
  font-size: 14px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .1);
}

.hero {
  padding-top: 70px;
  max-width: 920px;
  margin-left: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: #ff4053;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.hero h1,
.section-heading h2,
.next-layer h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(46px, 7vw, 86px);
  text-transform: uppercase;
}

.hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.primary,
button {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 34px rgba(215, 25, 42, .28);
}

.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
}

.intro-strip {
  margin-top: -34px;
  padding-inline: clamp(18px, 4vw, 0px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.intro-strip article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.intro-strip strong {
  display: block;
  color: var(--black);
  font-size: 34px;
  line-height: 1;
}

.intro-strip span {
  color: var(--muted);
  font-weight: 800;
}

.purpose-section,
.campaign-section,
.featured-section,
.catalog-section,
.flow-section,
.post-section,
.create-section,
.panel-section,
.next-layer {
  padding: 64px clamp(18px, 4vw, 0px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.next-layer h2 {
  color: var(--black);
  font-size: clamp(34px, 5vw, 58px);
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.next-layer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
}

.search-box,
.business-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(215, 25, 42, .46);
  box-shadow: 0 0 0 4px rgba(215, 25, 42, .1);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, .78);
  box-shadow: none;
}

.filter-chip.active {
  color: #fff;
  border-color: transparent;
  background: var(--black);
}

.featured-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.purpose-section {
  padding-top: 54px;
}

.purpose-section .section-heading {
  max-width: 840px;
  padding: 28px;
  border: 1px solid rgba(8, 8, 10, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.campaign-spotlight {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(215, 25, 42, .18), transparent 42%),
    linear-gradient(145deg, #0a0a0c, #26262a 70%, #7a0710);
  box-shadow: var(--shadow);
}

.campaign-copy h3 {
  max-width: 700px;
  margin: 10px 0 14px;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.campaign-copy > p:not(.campaign-business, .share-feedback) {
  max-width: 680px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.55;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.campaign-business {
  margin: 14px 0 0;
  color: #ff9aa4;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-facts {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.campaign-facts div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
}

.campaign-facts dt {
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-facts dd {
  margin: 5px 0 0;
  font-weight: 900;
}

.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.campaign-actions .secondary {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
}

.share-feedback {
  min-height: 20px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.candidate-preview {
  display: grid;
  align-content: center;
  gap: 10px;
}

.candidate-chip {
  min-width: 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(8, 8, 10, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
}

.campaign-spotlight .candidate-chip {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.candidate-chip strong,
.candidate-chip small {
  display: block;
}

.candidate-chip small {
  margin-top: 3px;
  color: var(--muted);
}

.campaign-spotlight .candidate-chip small {
  color: rgba(255, 255, 255, .6);
}

.candidate-chip em {
  color: var(--red);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.staff-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  font-weight: 900;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.flow-grid article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(8, 8, 10, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}

.flow-grid strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.flow-grid h3 {
  margin: 18px 0 8px;
  color: var(--black);
}

.flow-grid p,
.post-card p {
  color: var(--muted);
  line-height: 1.48;
}

.post-section {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.post-form {
  grid-column: 1;
}

.post-list {
  display: grid;
  gap: 14px;
}

.post-card {
  border: 1px solid rgba(8, 8, 10, .08);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}

.post-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
  color: var(--muted);
}

.checkbox-row input {
  width: auto;
}

.business-card,
.panel-card,
.business-form,
.next-layer {
  border: 1px solid rgba(8, 8, 10, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}

.business-card {
  padding: 18px;
}

.business-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
}

.business-card p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.45;
}

.business-card strong {
  color: var(--black);
}

.status {
  display: inline-flex;
  margin: 12px 0 4px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(215, 25, 42, .1);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.meta-row,
.source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.meta-row span,
.source-row a,
.source-row span {
  border-radius: 999px;
  padding: 7px 9px;
  background: #f1efed;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.source-row a {
  color: var(--red);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-actions button {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 12px;
  box-shadow: none;
}

button.secondary {
  color: #fff;
  background: var(--black);
}

button.danger {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.next-layer {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 26px;
  align-items: center;
}

.next-layer ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.next-layer li {
  padding: 14px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--black), #2d2d31);
  font-weight: 900;
}

.next-layer li:nth-child(even) {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.operator-product {
  margin-top: 64px;
  padding: 64px clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(215, 25, 42, .2), transparent 34%),
    linear-gradient(145deg, #08080a, #242428 68%, #71070f);
}

.operator-product-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: end;
}

.operator-product-copy h2 {
  margin: 12px 0 18px;
  color: #fff;
  font-size: 54px;
  line-height: 1;
  text-transform: uppercase;
}

.operator-product-copy > p:last-child {
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.58;
}

.roadmap-label {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-pillars article {
  min-width: 0;
  padding-top: 18px;
  border-top: 2px solid rgba(255, 255, 255, .2);
}

.product-pillars strong {
  color: #ff5363;
  font-size: 12px;
}

.product-pillars h3 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: 22px;
}

.product-pillars p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.48;
}

.create-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
}

.business-form {
  padding: 22px;
  display: grid;
  gap: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.panel-section {
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel-card {
  padding: 22px;
}

.business-list,
.audit-log {
  display: grid;
  gap: 12px;
}

.audit-entry {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}

.audit-entry p {
  margin: 5px 0;
  color: var(--muted);
}

.empty {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.profile-body {
  min-height: 100vh;
}

.profile-header {
  padding: 22px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(135deg, var(--black), #222226 58%, var(--red-dark));
}

.profile-shell {
  width: min(1180px, 92vw);
  margin: 34px auto 64px;
}

.profile-loading,
.profile-hero-card,
.profile-panel {
  border: 1px solid rgba(8, 8, 10, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}

.profile-loading {
  padding: 34px;
}

.profile-hero-card {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.profile-hero-card h1 {
  margin: 0;
  max-width: 760px;
  color: var(--black);
  font-size: clamp(42px, 7vw, 80px);
  line-height: .95;
  text-transform: uppercase;
}

.profile-hero-card p {
  color: var(--muted);
  line-height: 1.55;
}

.profile-hero-card aside {
  padding: 20px;
  border-radius: 18px;
  background: #f5f1ef;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.profile-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.profile-panel-wide {
  grid-column: 1 / -1;
}

.profile-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.staff-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 20px;
  align-items: stretch;
}

.staff-identity,
.staff-campaign-panel {
  border: 1px solid rgba(8, 8, 10, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.staff-identity {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 34px;
}

.staff-avatar-large {
  width: 140px;
  height: 140px;
  font-size: 40px;
}

.staff-identity h1 {
  margin: 0;
  color: var(--black);
  font-size: 62px;
  line-height: 1;
  text-transform: uppercase;
}

.staff-identity p {
  color: var(--muted);
  line-height: 1.55;
}

.staff-business-name {
  color: var(--red) !important;
  font-weight: 900;
}

.story-poster {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 22px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .65)),
    linear-gradient(145deg, #d7192a, #5f050b 58%, #0a0a0c);
  box-shadow: var(--shadow);
}

.story-poster img {
  width: 190px;
  height: 66px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
  padding: 3px 6px;
}

.story-poster p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.staff-avatar-story {
  width: 122px;
  height: 122px;
  border: 3px solid #fff;
  background: #111;
  font-size: 38px;
}

.story-poster h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.story-poster small {
  color: rgba(255, 255, 255, .7);
  font-weight: 800;
}

.staff-campaign-panel {
  margin-top: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: center;
}

.staff-campaign-panel h2 {
  margin: 0;
  color: var(--black);
  font-size: 34px;
  text-transform: uppercase;
}

.staff-campaign-panel p {
  color: var(--muted);
  line-height: 1.5;
}

.vertical-actions {
  display: grid;
}

.staff-campaign-panel .secondary,
.profile-actions .secondary,
.vote-card .secondary {
  color: #fff;
  background: var(--black);
}

.demo-note {
  padding: 10px 12px;
  border-left: 3px solid var(--red);
  color: var(--muted);
  background: rgba(215, 25, 42, .06);
  font-size: 12px;
}

.vote-body {
  min-height: 100vh;
  background: linear-gradient(155deg, #0a0a0c, #242428 58%, #75070f);
}

.vote-header {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0;
  color: #fff;
}

.vote-shell {
  width: min(760px, calc(100% - 36px));
  margin: 18px auto 54px;
}

.vote-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.vote-intro,
.vote-form,
.campaign-rules,
.vote-success,
.vote-card > .demo-note,
.vote-card > .eyebrow,
.vote-card > h1,
.vote-card > .results-list,
.vote-card > .button {
  margin-left: 28px;
  margin-right: 28px;
}

.vote-intro {
  padding-top: 30px;
}

.vote-intro h1,
.vote-card > h1 {
  margin-top: 12px;
  margin-bottom: 14px;
  color: var(--black);
  font-size: 46px;
  line-height: 1;
  text-transform: uppercase;
}

.vote-intro > p:not(.campaign-business) {
  color: var(--muted);
  line-height: 1.5;
}

.vote-prize {
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f2efed;
}

.vote-prize span,
.vote-prize strong {
  display: block;
}

.vote-prize span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.vote-prize strong {
  margin-top: 5px;
}

.vote-form {
  padding: 6px 0 28px;
}

.vote-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.vote-form legend {
  margin-bottom: 12px;
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
}

.vote-candidates {
  display: grid;
  gap: 9px;
}

.vote-option {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
}

.vote-option:has(input:checked) {
  border-color: var(--red);
  background: rgba(215, 25, 42, .06);
  box-shadow: 0 0 0 3px rgba(215, 25, 42, .08);
}

.vote-option input {
  position: absolute;
  opacity: 0;
}

.vote-option strong,
.vote-option small {
  display: block;
}

.vote-option small {
  margin-top: 3px;
  color: var(--muted);
}

.vote-option i {
  width: 21px;
  height: 21px;
  border: 2px solid #bbb;
  border-radius: 50%;
}

.vote-option:has(input:checked) i {
  border: 6px solid var(--red);
}

.vote-form > button {
  width: 100%;
  margin-top: 12px;
}

.privacy-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.campaign-rules {
  margin-top: 0;
  margin-bottom: 22px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.campaign-rules summary {
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

.campaign-rules li {
  margin: 8px 0;
  line-height: 1.4;
}

.vote-success {
  margin-top: 18px;
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 16px;
  background: #f2efed;
}

.vote-success > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.vote-success h2 {
  margin: 8px 0;
  color: var(--black);
  font-size: 30px;
  text-transform: uppercase;
}

.vote-success p {
  color: var(--muted);
}

.results-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: 12px;
  background: #f2efed;
}

.profile-panel {
  padding: 22px;
}

.profile-panel h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 30px;
  text-transform: uppercase;
}

.menu-section + .menu-section {
  margin-top: 18px;
}

.menu-section h3 {
  margin: 0 0 10px;
  color: var(--black);
}

.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.clean-list li {
  padding: 11px 12px;
  border-radius: 14px;
  background: #f1efed;
  color: var(--ink);
  font-weight: 800;
}

.source-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 980px) {
  .featured-grid,
  .catalog-grid,
  .create-section,
  .panel-section,
  .next-layer,
  .catalog-tools,
  .flow-grid,
  .post-section,
  .profile-hero-card,
  .profile-grid,
  .campaign-spotlight,
  .staff-profile-layout,
  .staff-campaign-panel {
    grid-template-columns: 1fr;
  }

  .operator-product-inner {
    grid-template-columns: 1fr;
  }

  .profile-staff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-poster {
    min-height: 620px;
  }

  .intro-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 12px;
    text-align: center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .intro-strip,
  .form-row,
  .campaign-facts,
  .profile-staff-grid,
  .staff-identity {
    grid-template-columns: 1fr;
  }

  .product-pillars {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 166px;
    height: 58px;
  }

  .brand span {
    display: none;
  }

  .operator-product-copy h2 {
    font-size: 42px;
  }

  .campaign-spotlight,
  .staff-identity,
  .staff-campaign-panel {
    padding: 22px;
  }

  .campaign-copy h3 {
    font-size: 34px;
  }

  .staff-identity h1 {
    font-size: 46px;
  }

  .staff-avatar-large {
    width: 96px;
    height: 96px;
    font-size: 30px;
  }

  .story-poster {
    min-height: 520px;
  }

  .vote-intro,
  .vote-form,
  .campaign-rules,
  .vote-success,
  .vote-card > .demo-note,
  .vote-card > .eyebrow,
  .vote-card > h1,
  .vote-card > .results-list,
  .vote-card > .button {
    margin-left: 18px;
    margin-right: 18px;
  }

  .vote-intro h1,
  .vote-card > h1 {
    font-size: 36px;
  }
}

/* ---- Vitrales ----------------------------------------------------- */
/* Each public business card is a "vitral": the business's own stained-
 * glass window onto the bulevar. Admin cards (fichas) stay plain. */

.vitral {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  border: 2px solid rgba(8, 8, 10, .5);
  border-radius: 150px 150px 22px 22px;
  background: rgba(255, 255, 255, .94);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* glass of the arch: red/black facets separated by thin lead lines */
.vitral::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 74px;
  background:
    linear-gradient(112deg,
      rgba(215, 25, 42, .20) 0 18%,
      rgba(255, 255, 255, .10) 18% 20%,
      rgba(143, 7, 17, .22) 20% 40%,
      rgba(255, 255, 255, .10) 40% 42%,
      rgba(8, 8, 10, .14) 42% 60%,
      rgba(255, 255, 255, .10) 60% 62%,
      rgba(215, 25, 42, .16) 62% 82%,
      rgba(255, 255, 255, .10) 82% 84%,
      rgba(143, 7, 17, .18) 84% 100%);
  border-bottom: 2px solid rgba(8, 8, 10, .4);
}

/* inner leading that echoes the arch */
.vitral::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  height: 60px;
  border: 1.5px solid rgba(8, 8, 10, .28);
  border-bottom: none;
  border-radius: 140px 140px 0 0;
  pointer-events: none;
}

.vitral:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(215, 25, 42, .22);
}

.vitral h3 {
  position: relative;
}

@media (max-width: 640px) {
  .vitral {
    padding-top: 78px;
    border-radius: 110px 110px 20px 20px;
  }
  .vitral::before {
    height: 62px;
  }
  .vitral::after {
    height: 50px;
    border-radius: 100px 100px 0 0;
  }
}
