*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000;
  --white: #fff;
  --g1: #0d0d0d;
  --g2: #141414;
  --g3: #1e1e1e;
  --g4: #555;
  --g5: #888;
  --g6: #bbb;
  /* ICU accent colours — matching the rainbow logo */
  --orange: #ff6b35;
  --pink: #e91e8c;
  --blue: #2196f3;
  --green: #4caf50;
  --icu: #2196f3;
  /* primary ICU blue */
  --stroke: 1px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Mono', monospace;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: crosshair;
}

::selection {
  background: var(--icu);
  color: #fff;
}

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

.cur {
  width: 10px;
  height: 10px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s;
  mix-blend-mode: difference;
}

.cur.big {
  width: 44px;
  height: 44px;
}

/* ICU LOGO text — I C U each a different color */
.icu-logo-i {
  color: var(--orange);
}

.icu-logo-c {
  color: var(--green);
}

.icu-logo-u {
  color: var(--blue);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 60px;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.nav-back {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g4);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .2s;
}

.nav-back:hover {
  color: var(--white);
}

.nav-back svg {
  width: 14px;
  height: 14px;
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px;
  letter-spacing: 6px;
  text-align: center;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g4);
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-try {
  padding: 7px 18px;
  border: var(--stroke) solid rgba(33, 150, 243, 0.5);
  color: var(--icu);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}

.nav-try:hover {
  background: var(--icu);
  color: var(--white);
}

/* ── HERO — full width with dashboard mockup below title */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 40px 0;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

/* bg grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(33, 150, 243, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(33, 150, 243, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--g4);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '//';
  color: var(--icu);
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 0.87;
  letter-spacing: -2px;
}

.hero-title .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  color: transparent;
  display: block;
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
  gap: 40px;
  padding-bottom: 48px;
}

.hero-desc {
  font-size: 14px;
  color: var(--g5);
  line-height: 1.9;
  max-width: 420px;
}

.hero-desc strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.btn-blue {
  padding: 13px 28px;
  background: var(--icu);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: var(--stroke) solid var(--icu);
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-blue:hover {
  background: #1976d2;
}

.btn-outline {
  padding: 13px 28px;
  border: var(--stroke) solid rgba(255, 255, 255, 0.2);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--g5);
  transition: border-color .2s, color .2s;
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

/* Dashboard mockup — sits at bottom of hero */
.dashboard-mock {
  position: relative;
  z-index: 2;
  border: var(--stroke) solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: #1a1d23;
  margin-top: 60px;
  box-shadow: 0 -40px 80px rgba(33, 150, 243, 0.08);
}

/* mock browser bar */
.mock-browser {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #111317;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.06);
}

.mb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mb-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 10px;
  color: var(--g5);
  letter-spacing: 1px;
  margin: 0 12px;
}

/* dashboard layout */
.dash-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 400px;
}

/* sidebar */
.dash-sidebar {
  background: #111317;
  border-right: var(--stroke) solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.ds-logo {
  padding: 0 16px 20px;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.06);
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.ds-item {
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--g5);
  transition: background .2s, color .2s;
  cursor: pointer;
}

.ds-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.ds-item.active {
  color: var(--white);
  background: rgba(33, 150, 243, 0.1);
  border-left: 2px solid var(--icu);
}

.ds-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ds-section {
  padding: 16px 16px 4px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g4);
  margin-top: 4px;
}

/* main area */
.dash-main {
  padding: 28px 32px;
}

.dm-welcome {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 6px;
}

.dm-sub {
  font-size: 12px;
  color: var(--g5);
  margin-bottom: 28px;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dash-card {
  background: #111317;
  border: var(--stroke) solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 20px;
  transition: border-color .2s;
}

.dash-card:hover {
  border-color: rgba(33, 150, 243, 0.3);
}

.dc-title {
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dc-badge {
  font-size: 10px;
  background: rgba(33, 150, 243, 0.15);
  color: var(--icu);
  padding: 1px 6px;
  border-radius: 4px;
}

.dc-desc {
  font-size: 11px;
  color: var(--g5);
  line-height: 1.7;
  margin-bottom: 16px;
}

.dc-link {
  font-size: 10px;
  color: var(--icu);
  display: block;
  margin-bottom: 4px;
}

.dc-btn {
  display: block;
  width: 100%;
  padding: 7px;
  background: var(--icu);
  color: var(--white);
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
  font-family: 'IBM Plex Mono', monospace;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  border-top: var(--stroke) solid rgba(255, 255, 255, 0.06);
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.06);
  padding: 10px 0;
  background: var(--g1);
}

.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--g4);
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* MODULES — row layout */
#modules {
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.08);
}

.mod-header {
  padding: 80px 40px 64px;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.mod-header h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
}

.mod-header h2 .ghost {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  color: transparent;
  display: block;
}

.mod-header p {
  font-size: 12px;
  color: var(--g4);
  max-width: 260px;
  line-height: 1.8;
}

.mod-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  min-height: 180px;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.04);
  transition: background .25s;
  position: relative;
}

.mod-row:last-child {
  border-bottom: none;
}

.mod-row:hover {
  background: var(--g1);
}

.mod-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s ease;
}

.mr-orange::before {
  background: var(--orange);
}

.mr-blue::before {
  background: var(--blue);
}

.mr-green::before {
  background: var(--green);
}

.mr-pink::before {
  background: var(--pink);
}

.mr-teal::before {
  background: #2a7a6a;
}

.mr-purple::before {
  background: #7c3aed;
}

.mod-row:hover::before {
  transform: scaleY(1);
}

.mod-num {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: var(--stroke) solid rgba(255, 255, 255, 0.04);
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--g3);
}

.mod-text {
  padding: 36px 48px;
  border-right: var(--stroke) solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mod-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ml-orange {
  color: var(--orange);
}

.ml-blue {
  color: var(--blue);
}

.ml-green {
  color: var(--green);
}

.ml-pink {
  color: var(--pink);
}

.ml-teal {
  color: #2a7a6a;
}

.ml-purple {
  color: #7c3aed;
}

.mod-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 12px;
}

.mod-desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--g5);
}

.mod-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.mod-tag {
  padding: 3px 8px;
  border: var(--stroke) solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--g4);
}

.mod-visual {
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Module visuals */
.vis-pages {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 220px;
}

.vp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--g2);
  border: var(--stroke) solid rgba(255, 255, 255, 0.06);
  transition: border-color .2s;
}

.vp-row:hover {
  border-color: var(--orange);
}

.vp-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.vp-icon svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.vp-name {
  font-size: 10px;
  color: var(--g5);
  flex: 1;
}

.vp-status {
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 2px;
}

.vp-pub {
  background: rgba(76, 175, 80, 0.15);
  color: var(--green);
}

.vp-dft {
  background: rgba(255, 255, 255, 0.05);
  color: var(--g4);
}

.vis-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 220px;
}

.vc-block {
  padding: 10px 12px;
  background: var(--g2);
  border: var(--stroke) solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-block svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex-shrink: 0;
}

.vc-info {
  flex: 1;
}

.vc-name {
  font-size: 10px;
  color: var(--white);
}

.vc-sub {
  font-size: 9px;
  color: var(--g4);
}

.vis-design {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.vd-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vd-swatch {
  border-radius: 3px;
  transition: transform .2s;
}

.vd-swatch:hover {
  transform: scale(1.1);
}

.vis-email {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 220px;
}

.ve-header {
  padding: 8px 12px;
  background: var(--g2);
  border: var(--stroke) solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  color: var(--g5);
  display: flex;
  justify-content: space-between;
}

.ve-stat {
  font-size: 9px;
  color: var(--pink);
}

.ve-row {
  padding: 8px 12px;
  background: var(--g2);
  border: var(--stroke) solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ve-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ve-text {
  font-size: 10px;
  color: var(--g5);
  flex: 1;
}

.ve-count {
  font-size: 9px;
  color: var(--g4);
}

.vis-settings {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 220px;
}

.vs-row {
  padding: 10px 12px;
  background: var(--g2);
  border: var(--stroke) solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.vs-label {
  font-size: 10px;
  color: var(--g5);
}

.vs-toggle {
  width: 28px;
  height: 14px;
  border-radius: 7px;
  position: relative;
  cursor: pointer;
}

.vs-toggle.on {
  background: #2a7a6a;
}

.vs-toggle.off {
  background: var(--g3);
}

.vs-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  transition: left .2s;
}

.vs-toggle.on::after {
  left: 16px;
}

.vs-toggle.off::after {
  left: 2px;
}

.vis-users {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 220px;
}

.vu-row {
  padding: 8px 12px;
  background: var(--g2);
  border: var(--stroke) solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.vu-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}

.vu-name {
  font-size: 10px;
  color: var(--g5);
  flex: 1;
}

.vu-role {
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 2px;
}

.r-admin {
  background: rgba(233, 30, 140, 0.15);
  color: var(--pink);
}

.r-editor {
  background: rgba(33, 150, 243, 0.15);
  color: var(--blue);
}

.r-viewer {
  background: rgba(255, 255, 255, 0.05);
  color: var(--g4);
}

/* MANIFESTO */
#manifesto {
  padding: 120px 40px;
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(33, 150, 243, 0.05), transparent);
  pointer-events: none;
}

.manifesto-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(44px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: -1px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.manifesto-title .ghost {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  color: transparent;
}

.manifesto-title .blue {
  color: var(--icu);
}

.manifesto-sub {
  font-size: 15px;
  color: var(--g5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
  position: relative;
  z-index: 2;
}

.manifesto-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.mp {
  padding: 8px 20px;
  border: var(--stroke) solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: var(--g5);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}

.mp:hover {
  border-color: var(--icu);
  color: var(--icu);
}

/* STATS */
#stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--stroke) solid rgba(255, 255, 255, 0.06);
  border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.06);
}

.stat-cell {
  padding: 56px 36px;
  border-right: var(--stroke) solid rgba(255, 255, 255, 0.05);
  transition: background .25s;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell:hover {
  background: var(--g1);
}

.stat-big {
  font-family: 'Bebas Neue', cursive;
  font-size: 64px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}

.stat-big em {
  font-style: normal;
  color: var(--icu);
}

.stat-lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g4);
}

/* CTA */
#cta {
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: -1px;
}

.cta-title .blue {
  color: var(--icu);
}

.cta-title .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  color: transparent;
  display: block;
}

.cta-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--g4);
  margin-bottom: 36px;
  max-width: 360px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-url {
  font-size: 11px;
  color: var(--g4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-url a {
  color: var(--g6);
}

/* FOOTER */
footer {
  background: var(--g1);
  padding: 48px 40px 32px;
  border-top: var(--stroke) solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  letter-spacing: 6px;
}

.footer-mid {
  font-size: 11px;
  color: var(--g4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-right {
  font-size: 11px;
  color: var(--g4);
}

.footer-right a {
  color: var(--g6);
}

/* ANIM */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-up.in {
  opacity: 1;
  transform: none;
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-left.in {
  opacity: 1;
  transform: none;
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-right.in {
  opacity: 1;
  transform: none;
}

@media(max-width:1100px) {
  .dash-cards {
    grid-template-columns: 1fr 1fr;
  }

  .dash-cards .dash-card:nth-child(3) {
    grid-column: span 2;
  }
}

@media(max-width:1024px) {
  nav {
    grid-template-columns: auto 1fr;
    padding: 0 20px;
  }

  .nav-links,
  .nav-try {
    display: none;
  }

  .nav-logo {
    text-align: left;
  }

  #hero {
    padding: 90px 24px 0;
  }

  .hero-row {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 36px;
  }

  .dash-layout {
    grid-template-columns: 140px 1fr;
  }

  .dash-cards {
    grid-template-columns: 1fr;
  }

  .dash-cards .dash-card {
    grid-column: span 1;
  }

  .mod-row {
    grid-template-columns: 60px 1fr;
  }

  .mod-visual {
    display: none;
  }

  .mod-header {
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
  }

  #stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .stat-cell:nth-child(3) {
    border-top: var(--stroke) solid rgba(255, 255, 255, 0.06);
    border-right: var(--stroke) solid rgba(255, 255, 255, 0.06);
  }

  .stat-cell:nth-child(4) {
    border-top: var(--stroke) solid rgba(255, 255, 255, 0.06);
    border-right: none;
  }

  #cta {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 36px 20px;
  }

  #manifesto {
    padding: 80px 24px;
  }
}

@media(max-width:640px) {
  .dash-layout {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

  #stats {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    border-right: none;
    border-bottom: var(--stroke) solid rgba(255, 255, 255, 0.05);
  }
}
