:root {
  color-scheme: dark;
  font-family: Roboto, sans-serif;
  font-synthesis: none;
  --green: #00bd00;
  --text: #d7d7d7;
  --muted: #9c9c9c;
  --dim: #6f6f6f;
  --surface: rgba(17, 17, 17, 0.72);
  --border: #262626;
}

* {
  box-sizing: border-box;
}
html {
  background: #0a0a0a;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: #0a0a0a url('/assets/background.jpg') repeat center / 1400px auto;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--text);
  text-decoration: none;
}
a:hover {
  color: #fff;
}
::selection {
  color: #0a0a0a;
  background: var(--green);
}
[hidden] {
  display: none !important;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid #7ad47a;
  outline-offset: 3px;
}

.page-shell {
  min-height: 100vh;
  padding: 0 24px 72px;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.88) 60%,
    #0a0a0a 100%
  );
}
.home-container {
  max-width: 1000px;
  margin: 0 auto;
}
.topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.home-container .brand img {
  border: 1px solid #2e2e2e;
}
.event-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  border: 1px solid #2c4a2c;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.8);
}
.event-status-dot,
.stats-live-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.event-status > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.event-status small {
  color: #7a7a7a;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.event-status strong {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.event-status[data-phase='live'] {
  border-color: #4a2626;
}
.event-status[data-phase='live'] .event-status-dot {
  background: #e04f4f;
  box-shadow: 0 0 10px #e04f4f;
}
.event-status[data-phase='over'] {
  border-color: #2a2a2a;
}
.event-status[data-phase='over'] .event-status-dot {
  background: #5e5e5e;
  box-shadow: none;
}
.event-status[data-phase='over'] strong {
  color: #8c8c8c;
}
.official-link {
  padding: 9px 15px;
  border: 1px solid #2c4a2c;
  border-radius: 999px;
  color: #7ad47a;
  background: rgba(0, 189, 0, 0.1);
  font-size: 13px;
  font-weight: 500;
  transition: 0.25s;
}
.official-link:hover {
  border-color: var(--green);
  color: #a5e6a5;
  background: rgba(0, 189, 0, 0.18);
}
.edition-over {
  margin-top: 26px;
  padding: 22px 26px;
  border: 1px solid #2c4a2c;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.8);
}
.edition-over-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  width: 100%;
}
.edition-thanks {
  min-width: 200px;
}
.edition-thanks small {
  color: #7ad47a;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.edition-thanks p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.edition-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 18px;
  flex: 1;
  margin: 0;
}
.edition-results div {
  padding-left: 18px;
  border-left: 1px solid #2c4a2c;
}
.edition-results dt {
  color: #7a7a7a;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.edition-results dd {
  margin: 5px 0 0;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.edition-over a {
  padding: 13px 20px;
  border: 1px solid #2c4a2c;
  border-radius: 8px;
  color: #7ad47a;
  background: rgba(0, 189, 0, 0.12);
  font-size: 15px;
  font-weight: 500;
}
.nav-spacer,
.footer-spacer {
  flex: 1;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.7);
}
.language-switcher a,
.language-switcher button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  border: 0;
  border-radius: 999px;
  color: #8c8c8c;
  background: transparent;
  font:
    500 12px Roboto,
    sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.language-switcher a[aria-current='page'],
.language-switcher button[aria-pressed='true'] {
  color: #071007;
  background: var(--green);
}
.language-switcher a:hover,
.language-switcher button:hover {
  color: #fff;
}
.language-switcher a[aria-current='page']:hover,
.language-switcher button[aria-pressed='true']:hover {
  color: #071007;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 84px 0 76px;
  text-align: center;
}
.hero-logo {
  width: 148px;
  height: 148px;
  border-radius: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  margin: 26px 0 0;
  padding: 5px 12px;
  border: 1px solid #1f3a1f;
  border-radius: 999px;
  color: #7ad47a;
  background: rgba(0, 189, 0, 0.08);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: 'Space Grotesk', sans-serif;
}
.hero h1 {
  margin: 20px 0 0;
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero h1 span {
  color: var(--green);
}
.hero-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: #a8a8a8;
  font-size: 18px;
  line-height: 1.55;
  text-wrap: pretty;
}
.fundraising-live {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.fundraising-live > strong {
  color: var(--green);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  text-shadow: 0 0 46px rgba(0, 189, 0, 0.32);
}
.fundraising-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.fundraising-caption span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 189, 0, 0), rgba(0, 189, 0, 0.55));
}
.fundraising-caption span:last-child {
  transform: rotate(180deg);
}
.fundraising-caption small,
.fundraising-live > small {
  color: #8c8c8c;
  font-size: 13px;
}
.fundraising-live > p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0;
  color: var(--text);
  font-size: 14px;
}
.fundraising-live > p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e04f4f;
  box-shadow: 0 0 9px rgba(224, 79, 79, 0.8);
}
.fundraising-live > p b {
  color: #fff;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border: 1px solid;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.25s;
}
.button-primary {
  padding-inline: 26px;
  border-color: var(--green);
  color: #071007;
  background: var(--green);
  font-weight: 500;
}
.button-primary:hover {
  border-color: #00d600;
  color: #071007;
  background: #00d600;
}
.button-secondary {
  border-color: #3c3c3c;
  color: var(--text);
  background: rgba(17, 17, 17, 0.8);
}
.button-secondary:hover {
  border-color: #595959;
  background: #222;
}
@keyframes live-ping {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70%,
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
.button-status {
  gap: 11px;
  border-color: #2c4a2c;
  color: #d7d7d7;
  background: linear-gradient(180deg, rgba(0, 189, 0, 0.14), rgba(0, 189, 0, 0.05));
}
.button-status:hover {
  border-color: var(--green);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 189, 0, 0.22), rgba(0, 189, 0, 0.08));
}
.button-status-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  flex: none;
  align-items: center;
  justify-content: center;
}
.button-status-dot i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
}
.button-status-dot i:first-child {
  animation: live-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.button-status-dot i:last-child {
  box-shadow: 0 0 8px var(--green);
}
.button-status > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}
.button-status small {
  color: #7a7a7a;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.button-status strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-note,
.preview-note {
  color: var(--dim);
  font-size: 13px;
}
.hero-note {
  margin: 18px 0 0;
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -34px 0 76px;
  padding: 8px 4px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}
.stats-overview > div {
  padding: 20px 22px;
}
.stats-overview > div + div {
  border-left: 1px solid #232323;
}
.stats-overview strong {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stats-overview p {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0;
}
.stats-overview small {
  display: block;
  margin-top: 5px;
  color: #8c8c8c;
  font-size: 13px;
}
.stats-overview .stats-delta {
  padding: 2px 6px;
  border: 1px solid #1f3a1f;
  border-radius: 5px;
  color: #7ad47a;
  background: rgba(0, 189, 0, 0.1);
  font-size: 12px;
  white-space: nowrap;
}
.stats-overview footer {
  display: flex;
  align-items: center;
  grid-column: 1 / -1;
  gap: 8px;
  margin: 4px 18px 0;
  padding: 12px 4px;
  border-top: 1px solid #232323;
}
.stats-overview footer small {
  margin: 0;
  color: var(--dim);
  font-size: 12px;
}
.stats-overview footer a {
  margin-left: auto;
  color: #7ad47a;
  font-size: 13px;
}
.stats-live-dot {
  width: 7px;
  height: 7px;
  box-shadow: none;
}
.stats-live-dot[data-error='true'] {
  background: #e0a24f;
}

.home-section {
  padding: 0 0 76px;
}
.home-section:first-of-type {
  padding-top: 8px;
}
.section-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}
.section-heading h2,
.standalone-title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-heading span {
  color: var(--dim);
  font-size: 13px;
}
.standalone-title {
  margin-bottom: 26px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 14px;
}
.feature-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition: 0.25s;
}
.feature-card:hover {
  border-color: #3d5c3d;
}
.feature-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-title > span {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
}
.feature-title h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}
.feature-card p {
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.tag {
  display: inline-flex;
  padding: 4px 8px;
  border: 1px solid #2e2e2e;
  border-radius: 5px;
  color: #7a7a7a;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.discord-preview {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.message-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.message-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.message-author span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.message-author strong {
  padding: 2px 5px;
  border-radius: 4px;
  color: #071007;
  background: var(--green);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.message-author time {
  color: var(--dim);
  font-size: 12px;
}
.discord-embed {
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  border-radius: 5px;
  background: #141414;
}
.discord-embed small {
  color: #7a7a7a;
  font-size: 12px;
}
.discord-embed h3 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
}
.discord-embed > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.discord-embed dl {
  display: flex;
  gap: 22px;
  margin: 14px 0 0;
}
.discord-embed dt {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.discord-embed dd {
  margin: 3px 0 0;
  color: #fff;
  font-size: 15px;
}
.preview-note {
  margin: 14px 0 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  padding-top: 18px;
  border-top: 1px solid #2a2a2a;
}
.steps span {
  color: var(--green);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.steps h3 {
  margin: 10px 0 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.steps code {
  color: #d7d7d7;
}
.faq {
  padding-bottom: 64px;
}
.faq .standalone-title {
  margin-bottom: 22px;
}
.faq article {
  padding: 18px 0;
  border-top: 1px solid #212121;
}
.faq article:last-child {
  border-bottom: 1px solid #212121;
}
.faq h3 {
  margin: 0 0 7px;
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.faq p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid #1c1c1c;
  color: var(--dim);
  font-size: 13px;
}
.footer em {
  color: #b05d5d;
  font-style: normal;
}
.footer a {
  color: #8c8c8c;
  text-decoration: underline;
}
.footer a:hover {
  color: #fff;
}

.legal-container {
  max-width: 780px;
  margin: 0 auto;
}
.legal-shell {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.9) 50%,
    #0a0a0a 100%
  );
}
.legal-back {
  color: #8c8c8c;
  font-size: 13px;
}
.legal-header {
  padding: 64px 0 40px;
  border-bottom: 1px solid #1c1c1c;
}
.legal-header .legal-kicker {
  margin: 0;
  color: #7ad47a;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-header h1 {
  margin: 14px 0 0;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.legal-header h1 span,
.legal-content .zevent-z {
  color: var(--green);
}
.legal-updated {
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 14px;
}
.legal-content {
  padding-top: 8px;
  color: #b4b4b4;
  font-size: 16px;
  line-height: 1.7;
}
.legal-content > p:first-child {
  margin-top: 32px;
}
.legal-content section > h2 {
  margin: 44px 0 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.legal-content h3 {
  margin: 26px 0 10px;
  color: #e4e4e4;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.legal-content p {
  margin: 0 0 10px;
  text-wrap: pretty;
}
.legal-content strong {
  color: #fff;
  font-weight: 400;
}
.legal-content ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
}
.legal-content a {
  color: #7ad47a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: #a5e6a5;
}
.legal-footer {
  margin-top: 56px;
}

.stats-shell {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.9) 45%,
    #0a0a0a 100%
  );
}
.stats-container {
  max-width: 1060px;
  margin: 0 auto;
}
.stats-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 18px;
  padding: 56px 0 34px;
}
.stats-header > div:first-child p {
  margin: 0;
  color: #7ad47a;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stats-header h1 {
  margin: 12px 0 0;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.stats-header aside {
  margin-left: auto;
  text-align: right;
}
.stats-header aside strong {
  display: block;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 500;
}
.stats-header aside small {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 13px;
}
.stats-intro {
  width: 100%;
  max-width: 640px;
  margin-top: 4px;
  color: #a8a8a8;
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
}
.stats-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-bottom: 26px;
}
.stats-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.7);
}
.stats-tabs:last-child {
  margin-left: auto;
}
.stats-tabs button {
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  color: #8c8c8c;
  background: transparent;
  font:
    500 13px Roboto,
    sans-serif;
  white-space: nowrap;
  cursor: pointer;
}
.stats-tabs button[aria-pressed='true'] {
  color: #071007;
  background: var(--green);
}
.stats-feedback {
  display: none;
  margin: -10px 0 18px;
  color: var(--dim);
  font-size: 13px;
}
.stats-feedback[data-error='true'] {
  display: block;
  color: #e0a24f;
}
.history-card {
  margin-bottom: 16px;
  padding: 24px 26px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}
.history-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 26px;
}
.history-summary > div > small {
  color: #8c8c8c;
  font-size: 13px;
}
.history-summary > div > strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.history-summary > div > p {
  margin: 7px 0 0;
  color: var(--dim);
  font-size: 13px;
}
.history-summary aside {
  min-width: 210px;
  margin-left: auto;
  padding: 12px 16px;
  border: 1px solid #232323;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.6);
  text-align: right;
}
.history-summary aside[data-active='true'] {
  border-color: #2c4a2c;
}
.history-summary aside small {
  color: var(--dim);
  font-size: 12px;
}
.history-summary aside strong {
  display: block;
  margin-top: 5px;
  color: #5e5e5e;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.history-summary aside[data-active='true'] strong {
  color: var(--green);
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--dim);
  font-size: 12px;
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.chart-legend i {
  display: inline-block;
  width: 12px;
}
.legend-past {
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--green), #067806);
}
.legend-future {
  height: 4px;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, #333 0 2px, transparent 2px 4px);
}
.chart-legend .legend-event {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border: 1.5px solid #f5a524;
}
.chart-legend .legend-event[data-event='past'] {
  background: #f5a524;
}
.chart-legend .legend-event[data-event='future'] {
  background: #1a1408;
}
.chart-legend time {
  margin-left: auto;
}
.chart-scroll {
  overflow: visible;
}
.history-chart {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.chart-group {
  display: flex;
  min-width: 64px;
  flex-basis: 0;
  flex-direction: column;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 210px;
}
.chart-bar {
  position: relative;
  display: flex;
  min-width: 2px;
  height: 100%;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: crosshair;
}
.chart-bar:hover,
.chart-bar:focus-visible {
  z-index: 40;
}
.chart-bar:hover .chart-column,
.chart-bar:focus-visible .chart-column {
  opacity: 0.85;
}
.chart-marker-slot {
  display: flex;
  height: 26px;
  align-items: flex-start;
  justify-content: center;
}
.chart-marker {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border: 1.5px solid transparent;
  border-radius: 1px;
}
.chart-marker[data-event='past'] {
  border-color: #f5a524;
  background: #f5a524;
  box-shadow: 0 0 10px rgba(245, 165, 36, 0.5);
}
.chart-marker[data-event='future'] {
  border-color: #f5a524;
  background: #1a1408;
}
.chart-column {
  position: relative;
  width: 100%;
  min-height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--green), #067806);
}
.chart-column[data-empty='true'] {
  height: 3px !important;
  background: repeating-linear-gradient(90deg, #333 0 2px, transparent 2px 4px);
}
.chart-tooltip {
  position: absolute;
  z-index: 50;
  bottom: calc(100% + 9px);
  left: 50%;
  display: block;
  min-width: 130px;
  max-width: min(320px, 72vw);
  padding: 10px 14px;
  transform: translateX(-50%) translateY(4px);
  border: 1px solid #2c4a2c;
  border-radius: 9px;
  opacity: 0;
  background: #121212;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
  color: #d7d7d7;
  pointer-events: none;
  text-align: left;
  visibility: hidden;
  white-space: nowrap;
  transition:
    opacity 120ms ease,
    transform 120ms ease,
    visibility 120ms ease;
}
.chart-tooltip[data-align='start'] {
  left: 0;
  transform: translateY(4px);
}
.chart-tooltip[data-align='end'] {
  right: 0;
  left: auto;
  transform: translateY(4px);
}
.chart-bar:hover .chart-tooltip,
.chart-bar:focus-visible .chart-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}
.chart-bar:hover .chart-tooltip[data-align='start'],
.chart-bar:hover .chart-tooltip[data-align='end'],
.chart-bar:focus-visible .chart-tooltip[data-align='start'],
.chart-bar:focus-visible .chart-tooltip[data-align='end'] {
  transform: translateY(0);
}
.chart-tooltip > time {
  display: block;
  color: #7a7a7a;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.chart-tooltip > strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.chart-tooltip > strong[data-empty='true'] {
  color: #8c8c8c;
}
.chart-tooltip > small {
  display: block;
  margin-top: 2px;
  color: #6f6f6f;
  font-size: 11px;
}
.chart-tooltip-events {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid #262626;
}
.chart-tooltip-events > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d7d7d7;
  font-size: 13px;
}
.chart-tooltip-events > span > i {
  width: 6px;
  height: 6px;
  flex: none;
  transform: rotate(45deg);
  background: #f5a524;
}
.chart-tooltip-arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -4px) rotate(45deg);
  border-right: 1px solid #2c4a2c;
  border-bottom: 1px solid #2c4a2c;
  background: #121212;
}
.chart-tooltip[data-align='start'] .chart-tooltip-arrow {
  left: 8px;
  transform: translateY(-4px) rotate(45deg);
}
.chart-tooltip[data-align='end'] .chart-tooltip-arrow {
  right: 8px;
  left: auto;
  transform: translateY(-4px) rotate(45deg);
}
.chart-rail {
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: var(--green);
}
.chart-group[data-partial='true'] .chart-rail {
  background: #2f4a2f;
}
.chart-group footer {
  margin-top: 9px;
  text-align: center;
}
.chart-group footer strong {
  display: block;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.chart-group footer small {
  display: block;
  margin-top: 3px;
  color: #5e5e5e;
  font-size: 11px;
}
.stats-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 60px;
}
.stats-kpis article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.stats-kpis small {
  color: #8c8c8c;
  font-size: 13px;
}
.stats-kpis strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stats-kpis span {
  display: block;
  margin-top: 7px;
  color: #7ad47a;
  font-size: 12px;
}
.daily-section {
  margin-bottom: 60px;
}
.daily-section h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.daily-table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.daily-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--text);
  font-size: 15px;
}
.daily-table th,
.daily-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #232323;
  text-align: right;
}
.daily-table th {
  color: var(--dim);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.daily-table th:first-child,
.daily-table td:first-child {
  width: 32%;
  text-align: left;
}
.daily-table td:first-child strong {
  display: block;
  color: #fff;
  font-weight: 400;
}
.daily-table td:first-child small {
  display: block;
  margin-top: 3px;
  color: var(--dim);
  font-size: 12px;
}
.daily-section > p {
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 13px;
}

@media (max-width: 900px) {
  .chart-scroll {
    margin-top: -120px;
    padding: 120px 0 8px;
    overflow-x: auto;
  }
  .history-chart {
    min-width: 820px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding-inline: 18px;
  }
  .event-status {
    order: 3;
    width: 100%;
  }
  .official-link {
    display: none;
  }
  .edition-over a {
    width: 100%;
    text-align: center;
  }
  .edition-results {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero {
    padding-block: 68px 64px;
  }
  .hero-logo {
    width: 128px;
    height: 128px;
    border-radius: 24px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .fundraising-live > strong {
    font-size: 42px;
  }
  .hero-copy {
    font-size: 17px;
  }
  .hero-actions,
  .button {
    width: 100%;
  }
  .button {
    justify-content: center;
  }
  .section-heading {
    display: block;
  }
  .section-heading span {
    display: block;
    margin-top: 8px;
  }
  .feature-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .stats-overview {
    grid-template-columns: 1fr 1fr;
  }
  .stats-overview > div + div {
    border-left: 0;
  }
  .stats-overview > div:nth-child(even) {
    border-left: 1px solid #232323;
  }
  .stats-overview > div:nth-child(n + 3) {
    border-top: 1px solid #232323;
  }
  .stats-overview footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .stats-overview footer a {
    width: 100%;
    margin-left: 15px;
  }
  .stats-header {
    padding-top: 46px;
  }
  .stats-header aside {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }
  .stats-controls,
  .stats-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-radius: 14px;
  }
  .stats-tabs:last-child {
    margin-left: 0;
  }
  .history-card {
    padding-inline: 18px;
  }
  .history-summary aside {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }
  .chart-legend time {
    width: 100%;
    margin-left: 0;
  }
  .stats-kpis {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card p {
    min-height: 0;
  }
  .footer-spacer {
    display: none;
  }
  .footer {
    align-items: flex-start;
  }
  .footer > span {
    width: 100%;
  }
  .legal-back {
    max-width: 110px;
    text-align: right;
  }
  .legal-header h1 {
    font-size: 36px;
  }
}

@media (max-width: 430px) {
  .stats-overview,
  .stats-kpis {
    grid-template-columns: 1fr;
  }
  .stats-overview > div:nth-child(even) {
    border-left: 0;
  }
  .stats-overview > div + div {
    border-top: 1px solid #232323;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Installation and configuration guides */
.guide-container {
  max-width: 1000px;
  margin: 0 auto;
}
.guide-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
}
.guide-nav .brand {
  gap: 14px;
}
.guide-nav .brand img {
  border: 1px solid #2e2e2e;
}
.guide-back {
  margin-left: auto;
  color: #8c8c8c;
  font-size: 13px;
}
.guide-header {
  padding-top: 76px;
}
.guide-header-install {
  max-width: 660px;
  padding-bottom: 54px;
}
.guide-header-config {
  max-width: 680px;
  padding-bottom: 48px;
}
.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid #1f3a1f;
  border-radius: 999px;
  color: #7ad47a;
  background: rgba(0, 189, 0, 0.08);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.guide-header h1 {
  margin: 20px 0 0;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.guide-header > p {
  margin: 18px 0 0;
  color: #a8a8a8;
  font-size: 18px;
  line-height: 1.55;
  text-wrap: pretty;
}
.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.guide-container .button {
  width: auto;
  gap: 10px;
  padding: 13px 20px;
  font-size: 15px;
}
.guide-container .button-primary {
  padding-inline: 20px;
}
.guide-container .button-secondary {
  gap: 8px;
  padding-inline: 18px;
}
.install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  padding-bottom: 60px;
}
.install-card {
  border: 1px solid #262626;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.72);
  display: flex;
  flex-direction: column;
  padding: 26px;
  transition: 0.25s;
}
.install-card:hover {
  border-color: #3d5c3d;
}
.install-card-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7ad47a;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.install-card-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: '';
}
.install-card h2 {
  margin: 12px 0 0;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.install-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.install-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.install-card li {
  display: flex;
  gap: 10px;
  color: #b8b8b8;
  font-size: 15px;
  line-height: 1.5;
}
.install-card li::before {
  color: var(--green);
  content: '✓';
}
.install-card li.install-limit {
  color: #6f6f6f;
}
.install-card li.install-limit::before {
  color: #5e5e5e;
  content: '—';
}
.install-card .guide-actions {
  margin-top: auto;
  padding-top: 24px;
}
.guide-content-section {
  padding-bottom: 64px;
}
.guide-content-section > h2 {
  margin: 0 0 22px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.comparison-card,
.command-table {
  overflow: hidden;
  border: 1px solid #262626;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.72);
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 15px 22px;
  border-bottom: 1px solid #1c1c1c;
}
.comparison-row > * {
  font-size: 15px;
}
.comparison-row strong {
  color: #d7d7d7;
  font-weight: 400;
}
.comparison-row span {
  color: #d7d7d7;
}
.comparison-heading {
  padding-block: 14px;
  border-bottom-color: #232323;
}
.comparison-heading span {
  color: #7a7a7a;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.comparison-heading span:first-child {
  color: #6f6f6f;
}
.comparison-row .comparison-yes {
  color: #7ad47a;
}
.comparison-row .comparison-no {
  color: #6f6f6f;
}
.comparison-section > p,
.guide-caption {
  margin: 14px 0 0;
  color: #6f6f6f;
  font-size: 13px;
}
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 64px;
}
.guide-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid #2a2a2a;
}
.guide-step-number {
  padding-top: 4px;
  color: var(--green);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.guide-step h2 {
  margin: 0;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 500;
}
.guide-step p {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.guide-step code,
.command-example code,
.command-row code,
.notification-types code {
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
}
.command-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1.4fr;
  gap: 20px;
  padding: 15px 22px;
  border-bottom: 1px solid #1c1c1c;
}
.command-row code {
  color: #fff;
  font-size: 14px;
}
.command-row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.command-example {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #242424;
  border-left: 3px solid #00bd00;
  border-radius: 6px;
  background: #141414;
}
.command-example code {
  color: #8c8c8c;
  font-size: 14px;
}
.command-example code:first-child {
  color: #fff;
}
.notification-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.notification-types > div {
  padding: 14px 16px;
  border: 1px solid #262626;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.72);
}
.notification-types code {
  color: #7ad47a;
  font-size: 13px;
}
.notification-types p {
  margin: 6px 0 0;
  color: #9c9c9c;
  font-size: 14px;
  line-height: 1.45;
}
.guide-faq {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.guide-faq > div {
  padding: 18px 0;
  border-top: 1px solid #212121;
}
.guide-faq > div:last-child {
  border-bottom: 1px solid #212121;
}
.guide-faq h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.guide-faq p {
  margin: 0;
  color: #9c9c9c;
  font-size: 15px;
  line-height: 1.55;
}
.guide-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 20px 24px;
  border: 1px solid #262626;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.72);
}
.guide-support span {
  flex: 1;
  color: #9c9c9c;
  font-size: 15px;
}
.guide-support a {
  padding: 12px 18px;
  border: 1px solid #2c4a2c;
  border-radius: 8px;
  color: #7ad47a;
  background: rgba(0, 189, 0, 0.12);
  font-size: 15px;
  transition: 0.25s;
}
.guide-support a:hover {
  border-color: #00bd00;
  color: #a5e6a5;
  background: rgba(0, 189, 0, 0.2);
}
.install-feedback {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid #2c4a2c;
  border-radius: 8px;
  color: #a5e6a5;
  background: rgba(0, 189, 0, 0.08);
}
.install-feedback[data-kind='error'] {
  border-color: #5f3030;
  color: #e8a2a2;
  background: rgba(190, 50, 50, 0.08);
}
.guide-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid #1c1c1c;
  color: #6f6f6f;
  font-size: 13px;
}
.guide-footer > span {
  margin-right: auto;
}
.guide-heart {
  color: #b05d5d;
}
.guide-footer a {
  color: #8c8c8c;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .guide-header {
    padding-top: 58px;
  }
  .guide-header h1 {
    font-size: 38px;
  }
  .comparison-row {
    grid-template-columns: 1.4fr 1fr 1fr;
    padding-inline: 14px;
  }
  .command-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

/* Status page — faithful implementation of site-theme/Statut.dc.html. */
@keyframes status-pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
@keyframes status-placeholder-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.7;
  }
}
.status-shell {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.88) 60%,
    #0a0a0a 100%
  );
}
.status-container {
  max-width: 1000px;
  margin: 0 auto;
}
.status-brand img {
  border: 1px solid #2e2e2e;
}
.status-header {
  max-width: 700px;
  padding: 70px 0 40px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 5px 12px;
  border: 1px solid #1f3a1f;
  border-radius: 999px;
  color: #7ad47a;
  background: rgba(0, 189, 0, 0.08);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.status-header h1 {
  margin: 20px 0 0;
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.status-intro {
  margin: 18px 0 0;
  color: #a8a8a8;
  font-size: 18px;
  line-height: 1.55;
  text-wrap: pretty;
}
.status-refresh {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #6f6f6f;
  font-size: 13px;
}
.status-refresh > span:first-child {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  animation: status-pulse-dot 2.4s ease-in-out infinite;
}
.status-section {
  padding-bottom: 56px;
}
.status-section-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}
.status-section-heading h2,
.status-journal-title {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.status-section-heading > span {
  color: #6f6f6f;
  font-size: 13px;
}
.status-crawler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
}
.status-crawler-card,
.status-delivery-card,
.status-error-card,
.status-infrastructure-card,
.status-journal {
  border: 1px solid #262626;
  background: rgba(17, 17, 17, 0.72);
}
.status-crawler-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px 24px;
  border-radius: 14px;
}
.status-placeholder-card {
  min-height: 312px;
}
.status-placeholder {
  width: 100%;
  height: 12px;
  margin-top: 16px;
  border-radius: 4px;
  background: #282828;
  animation: status-placeholder-pulse 1.8s ease-in-out infinite;
}
.status-placeholder-short {
  width: 32%;
  margin-top: 0;
}
.status-placeholder-title {
  width: 58%;
  height: 20px;
}
.status-placeholder-value {
  width: 42%;
  height: 32px;
  margin-top: 30px;
}
.status-delivery-card {
  padding: 26px 28px;
  border-radius: 14px;
}
.status-delivery-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}
.status-delivery-kpis small,
.status-hourly-heading > span:first-child {
  color: #6f6f6f;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-delivery-kpis > div > strong,
.status-delivery-kpis p strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.status-delivery-kpis p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}
.status-delivery-kpis p span {
  color: #7a7a7a;
  font-size: 14px;
}
.status-hourly-panel {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #212121;
}
.status-hourly-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.status-hourly-heading > span:nth-child(2) {
  flex: 1;
}
.status-hourly-heading small,
.status-hourly-axis {
  color: #5e5e5e;
  font-size: 12px;
}
.status-hourly-chart {
  position: relative;
  display: flex;
  height: 96px;
  align-items: flex-end;
  gap: 4px;
}
.status-threshold {
  position: absolute;
  right: 0;
  bottom: 50%;
  left: 0;
  border-top: 1px dashed #3a3a3a;
  pointer-events: none;
}
.status-hourly-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.status-error-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.status-infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.status-infrastructure-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
  border-radius: 14px;
}
.status-infrastructure-card[data-severity='critical'] {
  border-color: #4a2626;
}
.status-infrastructure-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}
.status-infrastructure-heading > div {
  min-width: 0;
}
.status-infrastructure-heading h3 {
  margin: 0;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.status-infrastructure-heading small {
  display: block;
  margin-top: 4px;
  color: #6f6f6f;
  font-size: 12px;
}
.status-infrastructure-heading > i {
  flex: 1;
}
.status-infrastructure-state {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 7px;
  color: var(--status-color);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-infrastructure-state::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-color);
  content: '';
}
.status-infrastructure-total {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 18px;
}
.status-infrastructure-total strong {
  color: var(--status-number-color, #fff);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.status-infrastructure-total span {
  color: #7a7a7a;
  font-size: 15px;
}
.status-infrastructure-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #212121;
}
.status-infrastructure-stats[data-columns='3'] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 10px;
}
.status-infrastructure-stat small,
.status-infrastructure-subtitle {
  color: #6f6f6f;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-infrastructure-stat strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.status-infrastructure-stats:not([data-columns='3']) .status-infrastructure-stat strong {
  font-size: 22px;
}
.status-infrastructure-oldest {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #222;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.6);
}
.status-infrastructure-oldest strong {
  display: block;
  margin-top: 5px;
  color: var(--status-color);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.status-infrastructure-oldest p {
  margin: 4px 0 0;
  color: #7a7a7a;
  font-size: 13px;
  line-height: 1.45;
}
.status-coordinator-panel,
.status-backlog-panel,
.status-dlq-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #212121;
}
.status-coordinator-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 10px;
}
.status-coordinator-head,
.status-coordinator-row {
  display: grid;
  grid-template-columns: 7px minmax(55px, 1fr) 48px 62px 45px;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.status-coordinator-head {
  color: #666;
  font-size: 8px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-coordinator-head span:nth-child(2) {
  text-align: left;
}
.status-coordinator-row i {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--status-color);
}
.status-coordinator-row span:first-of-type {
  min-width: 0;
  color: #d7d7d7;
  font-size: 14px;
}
.status-coordinator-row span:not(:first-of-type) {
  color: #8c8c8c;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}
.status-coordinator-note {
  margin: 7px 0 0;
  color: #666;
  font-size: 10px;
  line-height: 1.4;
}
.status-coordinator-row span:last-child {
  min-width: 52px;
  color: var(--status-color);
  text-align: right;
}
.status-backlog-panel {
  margin-top: auto;
}
.status-backlog-chart {
  display: flex;
  height: 38px;
  align-items: flex-end;
  gap: 3px;
  margin-top: 8px;
}
.status-backlog-bar {
  appearance: none;
  position: relative;
  display: flex;
  height: 100%;
  min-width: 0;
  flex: 1;
  align-items: flex-end;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
}
.status-backlog-column {
  width: 100%;
  min-height: 2px;
  border-radius: 2px 2px 0 0;
  background: #2f7a2f;
}
.status-backlog-column[data-severity='warning'] {
  background: #c9922c;
}
.status-backlog-tooltip {
  position: absolute;
  z-index: 5;
  bottom: calc(100% + 9px);
  left: 50%;
  display: none;
  min-width: 168px;
  padding: 11px 13px;
  transform: translateX(-50%);
  border: 1px solid #333;
  border-radius: 10px;
  color: #7a7a7a;
  background: #0d0d0d;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.9);
  font-size: 12px;
  text-align: left;
  pointer-events: none;
}
.status-backlog-bar:first-child .status-backlog-tooltip,
.status-backlog-bar:nth-child(2) .status-backlog-tooltip {
  left: 0;
  transform: none;
}
.status-backlog-bar:nth-last-child(-n + 2) .status-backlog-tooltip {
  right: 0;
  left: auto;
  transform: none;
}
.status-backlog-bar:hover .status-backlog-tooltip,
.status-backlog-bar:focus-visible .status-backlog-tooltip {
  display: block;
}
.status-backlog-tooltip time {
  display: block;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-backlog-tooltip strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}
.status-backlog-tooltip span {
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #232323;
  color: #d7d7d7;
  white-space: nowrap;
}
.status-dlq-note {
  margin-top: auto;
  color: #7a7a7a;
  font-size: 13px;
  line-height: 1.5;
}
.status-infrastructure-note {
  margin: 14px 0 0;
  color: #6f6f6f;
  font-size: 13px;
}
.status-journal-title {
  margin-bottom: 18px;
}
.status-journal {
  border-radius: 14px;
  overflow: hidden;
}
.status-empty {
  margin: 0;
  padding: 26px 22px;
  color: #6f6f6f;
  font-size: 14px;
  text-align: center;
}
.status-grid-empty {
  grid-column: 1 / -1;
  border: 1px solid #3f3020;
  border-radius: 12px;
  color: #d99a50;
  background: rgba(217, 154, 80, 0.06);
}
.status-privacy-note {
  margin: 14px 0 0;
  color: #6f6f6f;
  font-size: 13px;
}
.status-footer {
  margin-top: 0;
}
.status-refresh[data-error='true'] {
  color: #d99a50;
}
.status-refresh[data-error='true'] > span:first-child {
  background: var(--status-red, #e05555);
  animation: none;
}
.status-crawler-state {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--status-color);
}
.status-crawler-state i {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--status-color);
}
.status-crawler-state span {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.status-crawler-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.status-crawler-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.status-crawler-link {
  flex: none;
  padding: 5px 8px;
  border: 1px solid #2d442d;
  border-radius: 6px;
  color: #7ad47a;
  font-size: 11px;
  line-height: 1;
  text-decoration: none;
}
.status-crawler-link:hover,
.status-crawler-link:focus-visible {
  border-color: #4d7a4d;
  color: #a1e8a1;
  background: rgba(0, 189, 0, 0.08);
}
.status-crawler-description {
  min-height: 3em;
  margin: 8px 0 0;
  color: #8c8c8c;
  font-size: 14px;
  line-height: 1.5;
}
.status-crawler-age {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 20px;
}
.status-crawler-age strong {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.status-crawler-age span {
  color: #7a7a7a;
  font-size: 14px;
}
.status-freshness {
  height: 5px;
  margin-top: 14px;
  border-radius: 3px;
  overflow: hidden;
  background: #1e1e1e;
}
.status-freshness span {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--status-color);
  transition: width 250ms ease;
}
.status-crawler-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #212121;
}
.status-crawler-detail {
  display: flex;
  gap: 12px;
  font-size: 13px;
}
.status-crawler-detail span {
  flex: 1;
  color: #6f6f6f;
}
.status-crawler-detail code {
  color: #b8b8b8;
}
.status-crawler-detail code.status-good {
  color: #7ad47a;
}
.status-crawler-detail code.status-warning {
  color: #f5a524;
}
.status-delivery-kpis strong[data-severity='good'] {
  color: #7ad47a;
}
.status-delivery-kpis strong[data-severity='warning'] {
  color: #f5a524;
}
.status-delivery-kpis strong[data-severity='critical'] {
  color: #e05555;
}
.status-hourly-bar {
  position: relative;
  display: flex;
  min-width: 3px;
  height: 100%;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: crosshair;
}
.status-hourly-bar:hover,
.status-hourly-bar:focus-visible {
  z-index: 20;
}
.status-hourly-column {
  position: relative;
  display: block;
  width: 100%;
  min-height: 3px;
  border-radius: 2px 2px 0 0;
  background: #2f7a2f;
}
.status-hourly-column[data-severity='warning'] {
  background: #f5a524;
}
.status-hourly-column[data-severity='critical'] {
  background: #e05555;
}
.status-hourly-column[data-empty='true'] {
  background: #292929;
}
.status-hourly-tooltip {
  position: absolute;
  z-index: 30;
  bottom: calc(100% + 9px);
  left: 50%;
  display: block;
  min-width: 170px;
  padding: 10px 13px;
  transform: translateX(-50%) translateY(4px);
  border: 1px solid #2c4a2c;
  border-radius: 9px;
  opacity: 0;
  background: #121212;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
  pointer-events: none;
  text-align: left;
  visibility: hidden;
  white-space: nowrap;
  transition:
    opacity 120ms ease,
    transform 120ms ease,
    visibility 120ms ease;
}
.status-hourly-bar:first-of-type .status-hourly-tooltip,
.status-hourly-bar:nth-of-type(2) .status-hourly-tooltip {
  left: 0;
  transform: translateY(4px);
}
.status-hourly-bar:nth-last-child(-n + 2) .status-hourly-tooltip {
  right: 0;
  left: auto;
  transform: translateY(4px);
}
.status-hourly-bar:hover .status-hourly-tooltip,
.status-hourly-bar:focus-visible .status-hourly-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}
.status-hourly-bar:first-of-type:hover .status-hourly-tooltip,
.status-hourly-bar:nth-of-type(2):hover .status-hourly-tooltip,
.status-hourly-bar:first-of-type:focus-visible .status-hourly-tooltip,
.status-hourly-bar:nth-of-type(2):focus-visible .status-hourly-tooltip,
.status-hourly-bar:nth-last-child(-n + 2):hover .status-hourly-tooltip,
.status-hourly-bar:nth-last-child(-n + 2):focus-visible .status-hourly-tooltip {
  transform: translateY(0);
}
.status-hourly-tooltip time {
  display: block;
  color: #7a7a7a;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-hourly-tooltip strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 500;
}
.status-hourly-tooltip small {
  display: block;
  margin-top: 2px;
  color: #6f6f6f;
  font-size: 11px;
}
.status-hourly-tooltip-arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -4px) rotate(45deg);
  border-right: 1px solid #2c4a2c;
  border-bottom: 1px solid #2c4a2c;
  background: #121212;
}
.status-hourly-bar:first-of-type .status-hourly-tooltip-arrow,
.status-hourly-bar:nth-of-type(2) .status-hourly-tooltip-arrow {
  left: 8px;
  transform: translateY(-4px) rotate(45deg);
}
.status-hourly-bar:nth-last-child(-n + 2) .status-hourly-tooltip-arrow {
  right: 8px;
  left: auto;
  transform: translateY(-4px) rotate(45deg);
}
.status-error-card {
  padding: 18px 20px;
  border-radius: 12px;
}
.status-error-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.status-error-count strong {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.status-error-count span {
  color: #6f6f6f;
  font-size: 13px;
}
.status-error-card h3,
.status-error-card-empty > strong {
  display: block;
  margin: 6px 0 0;
  color: #b8b8b8;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.status-error-card p {
  margin: 4px 0 0;
  color: #7a7a7a;
  font-size: 13px;
  line-height: 1.45;
}
.status-error-card-empty {
  grid-column: 1 / -1;
  border-color: #243824;
}
.status-error-card-empty > strong {
  margin-top: 0;
  color: #7ad47a;
}
.status-journal-item {
  border-bottom: 1px solid #1c1c1c;
}
.status-journal-item:last-child {
  border-bottom: 0;
}
.status-journal-row {
  appearance: none;
  display: grid;
  width: 100%;
  grid-template-columns: 26px 88px 150px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 13px 22px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease;
}
.status-journal-row:hover,
.status-journal-row:focus-visible {
  background: rgba(255, 255, 255, 0.025);
}
.status-journal-row:focus-visible {
  outline: 1px solid #2c4a2c;
  outline-offset: -1px;
}
.status-journal-toggle {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  border-radius: 6px;
  color: #8c8c8c;
  font-size: 13px;
  line-height: 1;
}
.status-journal-row[aria-expanded='true'] .status-journal-toggle {
  border-color: #2c4a2c;
  color: #7ad47a;
}
.status-journal-row time {
  color: #6f6f6f;
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 13px;
}
.status-journal-source {
  color: #d7d7d7;
  font-size: 14px;
}
.status-journal-detail {
  min-width: 0;
  color: #8c8c8c;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.status-journal-outcome {
  color: #7ad47a;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-journal-signals {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}
.status-journal-badge {
  padding: 3px 7px;
  border: 1px solid #2c4a2c;
  border-radius: 999px;
  color: #7ad47a;
  background: rgba(0, 189, 0, 0.06);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.status-journal-item[data-outcome='failure'] .status-journal-outcome {
  color: #e05555;
}
.status-journal-expanded {
  padding: 4px 22px 20px 64px;
}
.status-journal-expanded[hidden] {
  display: none;
}
.status-journal-expanded-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.status-journal-expanded-heading span {
  color: #6f6f6f;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.status-journal-expanded-heading i {
  height: 1px;
  flex: 1;
  background: #212121;
}
.status-journal-metrics {
  display: flex;
  max-width: 620px;
  flex-direction: column;
}
.status-journal-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #1a1a1a;
}
.status-journal-metric strong {
  order: 2;
  color: #fff;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  white-space: nowrap;
}
.status-journal-metric span {
  min-width: 0;
  flex: 1;
  color: #8c8c8c;
  font-size: 14px;
}

@media (max-width: 900px) {
  .status-infrastructure-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .status-header {
    padding-top: 52px;
  }
  .status-header h1 {
    font-size: 38px;
  }
  .status-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .status-delivery-card {
    padding: 22px 20px;
  }
  .status-crawler-age {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .status-journal-row {
    grid-template-columns: 26px 78px 1fr auto;
    gap: 8px 12px;
    padding: 13px 16px;
  }
  .status-journal-source {
    grid-column: 3;
  }
  .status-journal-detail {
    grid-column: 2 / -1;
    grid-row: 2;
  }
  .status-journal-signals {
    grid-column: 4;
  }
  .status-journal-expanded {
    padding: 4px 16px 18px 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-status-dot i:first-child,
  .status-refresh > span:first-child,
  .status-placeholder {
    animation: none;
  }
}
