:root {
  color-scheme: dark;
  --black: #020202;
  --white: #f5f2ee;
  --muted: #b8b8b8;
  --dim: #777;
  --red: #e50914;
  --red-dark: #85000d;
  --line: rgba(229, 9, 20, .62);
  --line-soft: rgba(245, 242, 238, .14);
  --panel: rgba(4, 4, 4, .72);
}

/* LightNet service hub */
.services-page::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .99) 0%, rgba(0, 0, 0, .86) 36%, rgba(0, 0, 0, .5) 70%, rgba(0, 0, 0, .95) 100%),
    radial-gradient(circle at 72% 20%, rgba(229, 9, 20, .32), transparent 34%),
    radial-gradient(circle at 44% 62%, rgba(229, 9, 20, .16), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .96)),
    url("lightnet-city-bg.png?v=20260605a") center top / cover no-repeat;
}

.service-hero {
  min-height: min(720px, calc(100vh - 104px));
  display: grid;
  grid-template-columns: minmax(430px, .74fr) minmax(300px, .36fr);
  gap: clamp(26px, 5vw, 86px);
  align-items: center;
  padding: 58px 0 42px;
}

.service-signal,
.service-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .92)),
    radial-gradient(circle at 18% 12%, rgba(229, 9, 20, .2), transparent 44%),
    rgba(0, 0, 0, .72);
  box-shadow: inset 0 0 42px rgba(229, 9, 20, .08), 0 0 34px rgba(0, 0, 0, .34);
}

.service-signal {
  align-self: end;
  padding: 28px;
  text-transform: uppercase;
}

.service-signal span,
.status-pill {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.service-signal strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: 44px;
  letter-spacing: .08em;
}

.service-signal p {
  color: var(--muted);
  line-height: 1.5;
  text-transform: none;
}

.service-section {
  margin: 0 0 24px;
}

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

.service-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 26px;
}

.service-card h2 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(24px, 2.2vw, 42px);
  line-height: .95;
  letter-spacing: .08em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.status-pill {
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, .56);
}

.status-pill.online {
  border-color: rgba(80, 220, 150, .55);
  color: #8df0bf;
}

.status-pill.protected {
  border-color: rgba(255, 207, 15, .58);
  color: #ffcf0f;
}

.status-pill.planned {
  border-color: rgba(28, 219, 255, .55);
  color: #1cdbff;
}

.service-card.protected {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .46), rgba(0, 0, 0, .94)),
    radial-gradient(circle at 18% 12%, rgba(255, 207, 15, .12), transparent 44%),
    rgba(0, 0, 0, .72);
}

.service-card.planned {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .46), rgba(0, 0, 0, .94)),
    radial-gradient(circle at 18% 12%, rgba(28, 219, 255, .12), transparent 44%),
    rgba(0, 0, 0, .72);
}

.single-status {
  min-height: calc(100vh - 140px);
  display: grid;
  align-content: center;
  gap: 24px;
}

@media (max-width: 1280px) {
  .service-hero,
  .service-grid {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #020202;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

body::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .82) 32%, rgba(0, 0, 0, .22) 62%, rgba(0, 0, 0, .58) 100%),
    radial-gradient(circle at 68% 18%, rgba(229, 9, 20, .34), transparent 33%),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .95)),
    url("lightnet-home-hero.png?v=20260602e") center top / cover no-repeat;
}

body::after {
  inset: 10px;
  border: 1px solid rgba(229, 9, 20, .42);
  box-shadow: inset 0 0 52px rgba(229, 9, 20, .12);
  background:
    linear-gradient(90deg, transparent, rgba(229, 9, 20, .08), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0, rgba(255, 255, 255, .025) 1px, transparent 1px, transparent 9px);
  mix-blend-mode: screen;
  opacity: .55;
}

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

.shell {
  position: relative;
  z-index: 1;
  width: min(1880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 22px;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(260px, auto) 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
}

.mark {
  width: 78px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 47px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 30px rgba(229, 9, 20, .38);
}

.brand strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .46em;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .78em;
  text-align: center;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
}

.site-nav a {
  position: relative;
  padding: 0 28px;
  border-right: 1px solid rgba(245, 242, 238, .18);
}

.site-nav a:last-child {
  border-right: 0;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--red);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -18px;
  height: 2px;
  background: var(--red);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.login-button,
.button,
.panel-button {
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  background: rgba(0, 0, 0, .34);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 900;
}

.icon-button {
  min-width: 46px;
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
}

.login-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-color: var(--line);
  color: var(--red);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: min(740px, calc(100vh - 114px));
  display: grid;
  align-items: center;
  padding: 56px 0 38px;
}

.home-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 104px));
  display: grid;
  grid-template-columns: minmax(420px, .72fr) minmax(260px, .28fr);
  gap: clamp(24px, 5vw, 86px);
  align-items: center;
  padding: 62px 0 46px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
}

.brush-title {
  margin: 0;
  text-transform: uppercase;
  line-height: .76;
}

.brush-title span,
.brush-title strong,
.section-heading h2,
.error-title span,
.error-title strong {
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  transform: skewX(-7deg);
  text-shadow:
    0 0 26px rgba(229, 9, 20, .2),
    8px 0 0 rgba(0, 0, 0, .34);
}

.brush-title span {
  display: block;
  color: var(--white);
  font-size: clamp(82px, 9vw, 178px);
  letter-spacing: .05em;
}

.brush-title strong {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-size: clamp(84px, 10vw, 190px);
  letter-spacing: .11em;
}

.status-card {
  align-self: end;
  justify-self: end;
  width: min(380px, 100%);
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .54)),
    radial-gradient(circle at 16% 12%, rgba(229, 9, 20, .25), transparent 45%);
  box-shadow: 0 0 42px rgba(229, 9, 20, .12);
  text-transform: uppercase;
}

.status-card span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
}

.status-card strong {
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-size: 26px;
  letter-spacing: .08em;
}

.status-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
  text-transform: none;
}

.main-character {
  position: absolute;
  z-index: 1;
  right: clamp(10px, 7vw, 132px);
  bottom: 8px;
  width: min(45vw, 600px);
  max-height: min(82vh, 760px);
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 0 38px rgba(229, 9, 20, .3));
  -webkit-mask-image: radial-gradient(ellipse at 57% 54%, #000 0%, #000 58%, transparent 78%);
  mask-image: radial-gradient(ellipse at 57% 54%, #000 0%, #000 58%, transparent 78%);
  pointer-events: none;
}

.eyebrow,
.kicker,
.subline,
.tagline {
  text-transform: uppercase;
  letter-spacing: .48em;
}

.kicker,
.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.wordmark-title {
  margin: 0;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wordmark-image {
  display: block;
  width: min(620px, 100%);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(229, 9, 20, .14));
}

.subline {
  margin: 30px 0 0;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.subline b,
.lead b {
  color: var(--red);
}

.lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  font-size: 13px;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 46px rgba(229, 9, 20, .24);
}

.hero-meta {
  width: min(700px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.hero-meta div {
  padding: 17px 20px;
  border-right: 1px solid var(--line-soft);
}

.hero-meta div:last-child {
  border-right: 0;
}

.hero-meta strong {
  display: block;
  color: var(--white);
  font-size: 21px;
  text-transform: uppercase;
}

.hero-meta span {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-strip {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 18px;
  align-items: stretch;
  margin: 0 0 24px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, .52);
}

.value-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border-right: 1px solid var(--line-soft);
}

.value-item:last-child {
  border-right: 0;
}

.value-icon,
.value-item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.value-item > span {
  grid-row: 1 / 3;
}

.value-item strong {
  display: block;
  grid-column: 2;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .08em;
}

.value-item small {
  display: block;
  grid-column: 2;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.lightbot-card {
  display: grid;
  align-content: center;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .36)),
    url("card-lightbot.png?v=20260602e") center / cover;
}

.lightbot-card h2 {
  margin: 0;
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: .12em;
}

.lightbot-card p {
  color: var(--muted);
  line-height: 1.45;
}

.home-section {
  margin: 0 0 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(320px, .8fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(229, 9, 20, .09), transparent 42%),
    rgba(0, 0, 0, .7);
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading h2 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 70px);
  line-height: .9;
  letter-spacing: .1em;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.home-dashboard {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, .9fr) minmax(320px, .9fr);
  gap: 18px;
  margin-bottom: 24px;
}

.home-panel {
  min-height: 360px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .52), rgba(0, 0, 0, .92)),
    rgba(0, 0, 0, .72);
  overflow: hidden;
  box-shadow: inset 0 0 38px rgba(229, 9, 20, .08);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.panel-head h2,
.home-panel h2 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1;
  letter-spacing: .14em;
}

.panel-head a,
.release-list a,
.shortcut-grid a {
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.panel-head a {
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.events-panel {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .88)),
    url("card-events.png?v=20260602e") center / cover;
}

.releases-panel {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .92)),
    url("card-lore.png?v=20260602e") center / cover;
}

.event-main {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, .54);
}

.date-badge {
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--red);
  text-transform: uppercase;
}

.date-badge strong {
  display: block;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.date-badge span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.event-main h3,
.news-grid h3 {
  margin: 0 0 7px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.event-main p,
.home-panel p,
.news-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.mini-row,
.release-list a {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, .56);
}

.mini-row span,
.release-list span,
.news-grid span,
.shortcut-grid span {
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.mini-row strong,
.release-list strong,
.shortcut-grid strong {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mini-row small,
.release-list small,
.shortcut-grid small {
  color: var(--muted);
}

.release-list a:hover,
.shortcut-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  background: rgba(229, 9, 20, .12);
}

.lightbot-entry {
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, .92)),
    url("card-lightbot.png?v=20260602e") center / cover;
}

.lightbot-entry .button {
  width: fit-content;
}

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

.news-grid article {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 150px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, .62);
  overflow: hidden;
}

.news-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05) brightness(.72);
}

.news-grid div {
  padding: 18px;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.shortcut-grid a {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, .64);
}

.partner-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 0 0 24px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .5)),
    url("partner-mikes-main.jpg?v=20260602e") center / cover;
}

.partner-teaser h2 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 64px);
  line-height: .92;
  letter-spacing: .08em;
}

.partner-teaser p {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(460px, 1.22fr);
  gap: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(0, 0, 0, .68);
}

.partner-copy,
.partner-visual,
.partner-hours,
.partner-gallery {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-copy {
  padding: 38px 36px;
  align-content: center;
}

.partner-copy h2 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 72px);
  line-height: .9;
  letter-spacing: .08em;
}

.partner-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.partner-tags span {
  border: 1px solid var(--line-soft);
  padding: 9px 13px;
  color: var(--red);
  background: rgba(0, 0, 0, .48);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.partner-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.partner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .06) 48%, rgba(0, 0, 0, .4)),
    linear-gradient(180deg, rgba(229, 9, 20, .18), rgba(0, 0, 0, .46));
  pointer-events: none;
}

.partner-visual img,
.partner-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.partner-badge {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  min-width: 210px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .72);
  text-transform: uppercase;
}

.partner-badge span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
}

.partner-badge strong {
  display: block;
  margin-top: 7px;
  font-size: 28px;
  letter-spacing: .1em;
}

.partner-hours {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(250px, .5fr) minmax(420px, 1fr);
  background:
    radial-gradient(circle at 20% 0%, rgba(229, 9, 20, .22), transparent 32%),
    linear-gradient(135deg, rgba(0, 0, 0, .92), rgba(18, 18, 18, .84));
}

.hours-poster {
  min-height: 420px;
  padding: 24px;
  border-right: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(229, 9, 20, .16), rgba(0, 0, 0, .3)),
    rgba(0, 0, 0, .5);
}

.hours-poster img {
  width: 100%;
  height: 100%;
  max-height: 590px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, .64));
}

.hours-list {
  display: grid;
  align-content: center;
  padding: 38px;
}

.hours-list h2,
.hours-list h3 {
  margin: 0 0 26px;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(34px, 4.5vw, 78px);
  line-height: .86;
  letter-spacing: .08em;
}

.hours-list dl {
  margin: 0;
  display: grid;
  gap: 8px;
}

.hours-list dl div {
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(150px, .8fr) 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 18px;
  border: 1px solid rgba(245, 242, 238, .2);
  background: rgba(0, 0, 0, .62);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
}

.hours-list dt {
  color: var(--white);
  letter-spacing: .16em;
}

.hours-list dd {
  color: var(--white);
  font-size: 20px;
  letter-spacing: .06em;
  text-align: right;
}

.hours-list .closed dd {
  color: var(--red);
}

.hours-note {
  margin: 24px 0 0;
  color: var(--red);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
}

.partner-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.partner-gallery img {
  aspect-ratio: 16 / 9;
  border-right: 1px solid var(--line-soft);
  filter: saturate(.86) contrast(1.08) brightness(.72);
}

.partner-gallery img:last-child {
  border-right: 0;
}

.mikes-page::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .72) 42%, rgba(0, 0, 0, .42)),
    radial-gradient(circle at 74% 18%, rgba(229, 9, 20, .24), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, .44), rgba(0, 0, 0, .94)),
    url("partner-mikes-main.jpg?v=20260602e") center top / cover no-repeat;
}

.mikes-hero {
  display: grid;
  grid-template-columns: minmax(380px, .78fr) minmax(520px, 1.22fr);
  gap: 0;
  min-height: min(660px, calc(100vh - 128px));
  align-items: stretch;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(0, 0, 0, .68);
}

.mikes-hero-copy,
.mikes-hero-image {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mikes-hero-copy {
  display: grid;
  align-content: center;
  padding: 44px 40px;
}

.mikes-hero-copy h1 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(46px, 5vw, 86px);
  line-height: .9;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}

.mikes-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.mikes-hero-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.mikes-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .04) 54%, rgba(0, 0, 0, .46)),
    linear-gradient(180deg, rgba(229, 9, 20, .18), rgba(0, 0, 0, .56));
}

.mikes-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mikes-hero-image span {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .72);
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2em;
}

.mikes-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mikes-category-grid article {
  min-height: 380px;
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #030303;
}

.mikes-category-grid img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(.82) contrast(1.08) brightness(.62);
  transition: transform .25s ease, filter .25s ease;
}

.mikes-category-grid article:hover img {
  transform: scale(1.035);
  filter: saturate(.95) contrast(1.14) brightness(.74);
}

.mikes-category-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .88));
}

.mikes-category-grid div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
}

.mikes-category-grid span {
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .14em;
}

.mikes-category-grid h2 {
  margin: 10px 0 12px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: .16em;
}

.mikes-category-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.mikes-hours-page {
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mikes-booking {
  margin: 24px 0;
}

.bich-page::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .82) 38%, rgba(0, 0, 0, .32) 66%, rgba(0, 0, 0, .76) 100%),
    radial-gradient(circle at 72% 18%, rgba(229, 9, 20, .24), transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, .96)),
    url("bich-consulting-og.jpg?v=20260602g") center top / cover no-repeat;
}

.bich-hero {
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(520px, 1.22fr);
  min-height: min(670px, calc(100vh - 126px));
  align-items: stretch;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(0, 0, 0, .72);
}

.bich-hero-copy,
.bich-hero-visual {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bich-hero-copy {
  display: grid;
  align-content: center;
  padding: 46px 42px;
}

.bich-hero-copy h1 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(56px, 6.5vw, 118px);
  line-height: .83;
  letter-spacing: .06em;
  transform: skewX(-6deg);
  text-shadow: 0 0 30px rgba(229, 9, 20, .22);
}

.bich-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.bich-hero-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.bich-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08) brightness(.66);
}

.bich-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .05) 56%, rgba(0, 0, 0, .54)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .03) 1px, transparent 1px, transparent 10px);
  pointer-events: none;
}

.bich-scan-card {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  max-width: min(380px, calc(100% - 60px));
  padding: 20px 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(229, 9, 20, .12), rgba(0, 0, 0, .82)),
    rgba(0, 0, 0, .78);
  text-transform: uppercase;
}

.bich-scan-card span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .26em;
}

.bich-scan-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 22px;
  letter-spacing: .08em;
}

.bich-command,
.bich-solution-grid,
.bich-branch-panel,
.bich-process,
.partner-switch {
  margin: 24px 0;
}

.bich-terminal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bich-terminal-grid article,
.bich-process article {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .9)),
    radial-gradient(circle at 16% 10%, rgba(229, 9, 20, .2), transparent 43%),
    rgba(0, 0, 0, .72);
  box-shadow: inset 0 0 42px rgba(229, 9, 20, .08);
}

.bich-terminal-grid span,
.bich-process span {
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .24em;
}

.bich-terminal-grid strong,
.bich-process strong {
  color: var(--white);
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: .08em;
}

.bich-terminal-grid p,
.bich-process p,
.bich-branch-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.bich-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.bich-solution-grid article {
  min-height: 380px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, .92)),
    url("card-lightbot.png?v=20260602e") center / cover;
  overflow: hidden;
}

.bich-solution-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .92)),
    url("bich-consulting-og.jpg?v=20260602g") center / cover;
}

.bich-solution-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .92)),
    url("lightnet-city-bg.png?v=20260602e") center / cover;
}

.bich-solution-grid span {
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .24em;
}

.bich-solution-grid h2,
.bich-branch-copy h2,
.partner-switch h2 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 76px);
  line-height: .88;
  letter-spacing: .08em;
}

.bich-solution-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.bich-solution-grid a {
  width: fit-content;
  margin-top: 8px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.bich-branch-panel {
  display: grid;
  grid-template-columns: minmax(320px, .66fr) minmax(520px, 1.34fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(229, 9, 20, .12), transparent 44%),
    rgba(0, 0, 0, .72);
}

.bich-branch-copy,
.bich-branch-grid {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bich-branch-copy {
  display: grid;
  align-content: center;
  padding: 36px;
}

.bich-branch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bich-branch-grid a {
  min-height: 116px;
  display: grid;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: var(--white);
  background: rgba(0, 0, 0, .52);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  transition: background .18s ease, color .18s ease;
}

.bich-branch-grid a:hover {
  color: var(--red);
  background: rgba(229, 9, 20, .1);
}

.bich-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.partner-switch {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .54)),
    url("lightnet-city-bg.png?v=20260602e") center / cover;
}

.partner-switch p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.partner-switch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.nebelbank-page::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .84) 31%, rgba(0, 0, 0, .22) 62%, rgba(0, 0, 0, .68) 100%),
    radial-gradient(circle at 70% 18%, rgba(229, 9, 20, .34), transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .96)),
    url("lightnet-city-bg.png?v=20260605a") center top / cover no-repeat;
}

.nebelbank-hero {
  min-height: min(760px, calc(100vh - 104px));
  display: grid;
  grid-template-columns: minmax(460px, .7fr) minmax(360px, .58fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: center;
  padding: 64px 0 46px;
}

.nebelbank-hero-copy {
  width: min(780px, 100%);
}

.nebelbank-hero-copy h1 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(72px, 9vw, 174px);
  line-height: .82;
  letter-spacing: .08em;
  transform: skewX(-7deg);
  text-shadow:
    0 0 28px rgba(229, 9, 20, .25),
    8px 0 0 rgba(0, 0, 0, .35);
}

.nebelbank-hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  justify-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .9)),
    url("card-community.png?v=20260605a") center / cover;
  box-shadow: inset 0 0 76px rgba(0, 0, 0, .88), 0 0 42px rgba(229, 9, 20, .12);
  overflow: hidden;
}

.nebelbank-hero-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(229, 9, 20, .42);
  background:
    radial-gradient(circle, rgba(229, 9, 20, .26), transparent 55%),
    repeating-linear-gradient(90deg, rgba(245, 242, 238, .08) 0, rgba(245, 242, 238, .08) 1px, transparent 1px, transparent 18px);
  transform: rotate(-8deg);
  opacity: .62;
}

.nebelbank-emblem {
  position: relative;
  z-index: 1;
  width: min(340px, 68%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 120px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(78px, 8vw, 150px);
  letter-spacing: .02em;
  text-shadow: 0 0 28px rgba(229, 9, 20, .5);
  box-shadow: 0 0 58px rgba(229, 9, 20, .25), inset 0 0 42px rgba(229, 9, 20, .12);
}

.nebelbank-grid,
.nebelbank-server-wall {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.nebelbank-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nebelbank-server-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nebelbank-grid article,
.nebelbank-server-wall article {
  min-height: 240px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .9)),
    radial-gradient(circle at 18% 12%, rgba(229, 9, 20, .22), transparent 44%),
    rgba(0, 0, 0, .68);
  box-shadow: inset 0 0 42px rgba(229, 9, 20, .08);
}

.nebelbank-server-wall article:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .9)),
    url("card-lore.png?v=20260605a") center / cover;
}

.nebelbank-server-wall article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, .9)),
    url("card-events.png?v=20260605a") center / cover;
}

.nebelbank-server-wall article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, .92)),
    url("lightnet-city-bg.png?v=20260605a") center / cover;
}

.nebelbank-grid span,
.nebelbank-server-wall span {
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
}

.nebelbank-grid strong,
.nebelbank-server-wall strong {
  color: var(--white);
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: .08em;
}

.nebelbank-grid p,
.nebelbank-server-wall p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.booking-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.booking-action-grid a {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .9)),
    radial-gradient(circle at 18% 12%, rgba(229, 9, 20, .2), transparent 44%),
    rgba(0, 0, 0, .68);
  box-shadow: inset 0 0 42px rgba(229, 9, 20, .08);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.booking-action-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 242, 238, .32);
  background:
    linear-gradient(180deg, rgba(229, 9, 20, .12), rgba(0, 0, 0, .9)),
    rgba(0, 0, 0, .72);
}

.booking-action-grid span {
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
}

.booking-action-grid strong {
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(24px, 2.2vw, 42px);
  line-height: .95;
  letter-spacing: .08em;
}

.booking-action-grid small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.story-card {
  min-height: 270px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, .72fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, .76);
  overflow: hidden;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .58) 54%, rgba(0, 0, 0, .14));
  pointer-events: none;
}

.story-card .copy,
.story-card .media {
  position: relative;
  z-index: 1;
}

.story-card .copy {
  padding: 34px 34px 28px;
}

.story-card .media {
  background-position: center;
  background-size: cover;
  min-height: 100%;
}

.story-card h2 {
  margin: 0 0 28px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: .24em;
}

.number {
  margin: 0 0 8px;
  color: var(--red) !important;
  font-size: 20px !important;
  font-weight: 900;
  letter-spacing: .12em;
}

.story-card h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 16px;
  background: var(--red);
}

.story-card p,
.story-card li {
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.story-card ul {
  margin: 0;
  padding-left: 18px;
}

.panel-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 0 18px;
  font-size: 12px;
}

.media-history {
  background-image: url("card-community.png?v=20260602e");
}

.media-lore {
  background-image: url("card-lore.png?v=20260602e");
}

.media-philosophy {
  background-image: url("card-events.png?v=20260602e");
}

.media-network {
  background-image: url("card-lightbot.png?v=20260602e");
}

.media-team {
  background-image: url("card-community.png?v=20260602e");
}

.values-card {
  grid-template-columns: 1fr 1fr;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

.values-list div {
  color: var(--muted);
  line-height: 1.35;
}

.values-list strong {
  display: block;
  color: var(--white);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .16em;
}

.cta-band {
  margin-top: 20px;
  padding: 26px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(229, 9, 20, .14), rgba(0, 0, 0, .8));
}

.cta-band .tagline {
  color: var(--white);
  font-size: 24px;
  text-align: center;
}

.cta-band .tagline b {
  display: block;
  margin-top: 8px;
  color: var(--red);
  letter-spacing: .62em;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, .64);
}

.stat-row div {
  min-height: 86px;
  padding: 18px 24px;
  border-right: 1px solid var(--line-soft);
}

.stat-row div:last-child {
  border-right: 0;
}

.stat-row strong {
  display: block;
  font-size: 20px;
}

.stat-row span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) repeat(3, minmax(150px, .5fr)) minmax(260px, .7fr);
  gap: 34px;
  margin-top: 34px;
  padding: 30px 0 12px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .18em;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 9px;
  color: var(--muted);
  line-height: 1.45;
}

.social {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.social a {
  color: var(--red);
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  color: var(--dim);
  font-size: 12px;
  text-transform: uppercase;
}

.error-page::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .8) 34%, rgba(0, 0, 0, .18) 66%, rgba(0, 0, 0, .66) 100%),
    radial-gradient(circle at 70% 24%, rgba(229, 9, 20, .34), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, .92)),
    url("lightnet-home-hero.png?v=20260602e") center top / cover no-repeat;
}

.error-main {
  min-height: calc(100vh - 180px);
  display: grid;
  align-items: center;
}

.error-hero {
  width: min(740px, 100%);
}

.error-title {
  margin: 0;
  line-height: .78;
  text-transform: uppercase;
}

.error-title span,
.error-title strong {
  display: block;
  font-family: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  transform: skewX(-8deg);
}

.error-title span {
  color: var(--white);
  font-size: 112px;
}

.error-title strong {
  color: var(--red);
  font-size: 164px;
}

.error-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.error-footer .tagline {
  color: var(--white);
  text-align: center;
}

.error-footer .tagline b {
  display: block;
  margin-top: 8px;
  color: var(--red);
  letter-spacing: .48em;
}

.fivedays-page::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .82) 30%, rgba(0, 0, 0, .2) 62%, rgba(0, 0, 0, .66) 100%),
    radial-gradient(circle at 72% 18%, rgba(229, 9, 20, .32), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .95)),
    url("lightnet-city-bg.png?v=20260603a") center top / cover no-repeat;
}

.fivedays-hero {
  min-height: min(780px, calc(100vh - 104px));
  display: grid;
  grid-template-columns: minmax(460px, .7fr) minmax(360px, .6fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: center;
  padding: 64px 0 46px;
}

.fivedays-hero-copy {
  width: min(780px, 100%);
}

.fivedays-title span {
  font-size: clamp(72px, 8vw, 154px);
}

.fivedays-title strong {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-size: clamp(40px, 4.4vw, 82px);
  letter-spacing: .18em;
}

.fivedays-hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  justify-items: center;
}

.fivedays-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 4%;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(229, 9, 20, .1), rgba(0, 0, 0, .86)),
    url("card-lore.png?v=20260603a") center / cover;
  opacity: .78;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, .85), 0 0 42px rgba(229, 9, 20, .14);
}

.fivedays-hero-visual img {
  position: relative;
  z-index: 1;
  width: min(420px, 70%);
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(229, 9, 20, .28));
}

.server-command {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 18px;
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .82);
}

.server-command span,
.server-grid span,
.world-grid span,
.faction-grid span,
.roadmap-strip span {
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
}

.server-command strong,
.server-grid strong,
.world-grid strong,
.roadmap-strip strong {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.server-command small,
.server-grid p,
.world-grid p,
.faction-grid p,
.roadmap-strip small,
.control-copy p {
  color: var(--muted);
  line-height: 1.5;
}

.fivedays-status,
.fivedays-world,
.fivedays-roadmap {
  margin-bottom: 24px;
}

.server-grid,
.world-grid,
.roadmap-strip {
  display: grid;
  gap: 14px;
}

.server-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.server-grid article,
.world-grid article,
.roadmap-strip div {
  min-height: 180px;
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .9)),
    rgba(0, 0, 0, .64);
}

.control-embed {
  display: grid;
  grid-template-columns: minmax(320px, .45fr) minmax(520px, .85fr);
  gap: 18px;
  margin-bottom: 24px;
}

.control-copy,
.control-frame-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, .1), transparent 45%),
    rgba(0, 0, 0, .74);
  box-shadow: inset 0 0 44px rgba(229, 9, 20, .08);
}

.control-copy {
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
}

.control-copy h2,
.faction-grid h2 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 56px);
  line-height: .95;
  letter-spacing: .1em;
}

.control-frame-shell {
  min-height: 520px;
  padding: 10px;
  overflow: hidden;
}

.control-frame {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  background: #050505;
}

.world-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.world-grid article:nth-child(1),
.world-grid article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .46), rgba(0, 0, 0, .9)),
    url("lightnet-home-hero.png?v=20260603a") center / cover;
}

.world-grid article:nth-child(2),
.world-grid article:nth-child(6) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .9)),
    url("card-community.png?v=20260603a") center / cover;
}

.faction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.faction-grid article {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, .92)),
    url("card-lore.png?v=20260603a") center / cover;
}

.faction-grid article:nth-child(2) {
  border-color: rgba(28, 219, 255, .45);
  box-shadow: inset 0 0 38px rgba(28, 219, 255, .07);
}

.faction-grid article:nth-child(2) span {
  color: #1cdbff;
}

.faction-grid article:nth-child(3) {
  border-color: rgba(245, 242, 238, .28);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .92)),
    url("lightnet-city-bg.png?v=20260603a") center / cover;
}

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

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .home-strip,
  .home-hero,
  .section-heading,
  .home-dashboard,
  .news-grid,
  .booking-action-grid,
  .partner-teaser,
  .partner-section,
  .partner-hours,
  .mikes-hero,
  .mikes-category-grid,
  .bich-hero,
  .bich-terminal-grid,
  .bich-solution-grid,
  .bich-branch-panel,
  .bich-process,
  .nebelbank-hero,
  .nebelbank-grid,
  .nebelbank-server-wall,
  .fivedays-hero,
  .server-grid,
  .control-embed,
  .world-grid,
  .faction-grid,
  .roadmap-strip,
  .partner-switch,
  .about-layout,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .value-strip,
  .partner-gallery,
  .bich-branch-grid,
  .shortcut-grid,
  .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-gallery {
    grid-column: auto;
  }

  .hours-poster {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-card .media {
    min-height: 180px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 680px);
    padding-top: 22px;
  }

  body::after {
    inset: 8px;
  }

  .site-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .top-actions {
    display: none;
  }

  .brand strong {
    font-size: 20px;
    letter-spacing: .24em;
  }

  .brand small {
    letter-spacing: .44em;
  }

  .mark {
    width: 54px;
    font-size: 31px;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 36px;
  }

  .main-character {
    right: -86px;
    bottom: 34px;
    width: 420px;
    max-width: none;
    opacity: .48;
  }

  .wordmark-image {
    width: min(100%, 520px);
  }

  .kicker,
  .eyebrow,
  .subline,
  .tagline {
    letter-spacing: .28em;
  }

  .subline {
    font-size: 18px;
  }

  .lead {
    font-size: 16px;
  }

  .actions {
    flex-direction: column;
  }

  .button,
  .login-button {
    width: 100%;
  }

  .hero-meta,
  .value-strip,
  .news-grid,
  .booking-action-grid,
  .shortcut-grid,
  .partner-gallery,
  .stat-row,
  .values-list {
    grid-template-columns: 1fr;
  }

  .hero-meta div,
  .value-item,
  .stat-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .story-card .copy {
    padding: 26px 22px;
  }

  .section-heading,
  .home-panel {
    padding: 24px 18px;
  }

  .home-hero {
    min-height: auto;
    padding: 48px 0 34px;
  }

  .brush-title span {
    font-size: clamp(58px, 18vw, 92px);
  }

  .brush-title strong {
    font-size: clamp(64px, 20vw, 106px);
    letter-spacing: .08em;
  }

  .status-card {
    justify-self: stretch;
    margin-bottom: 0;
  }

  .booking-action-grid a {
    min-height: 170px;
    padding: 22px;
  }

  .news-grid article {
    grid-template-columns: 1fr;
  }

  .news-grid img {
    aspect-ratio: 16 / 9;
  }

  .partner-copy {
    padding: 30px 22px;
  }

  .partner-visual {
    min-height: 270px;
  }

  .partner-teaser {
    padding: 28px 22px;
  }

  .mikes-hero-copy {
    padding: 32px 22px;
  }

  .bich-hero-copy,
  .bich-branch-copy {
    padding: 32px 22px;
  }

  .bich-hero-visual {
    min-height: 300px;
  }

  .bich-terminal-grid,
  .bich-solution-grid,
  .bich-branch-grid,
  .bich-process,
  .nebelbank-grid,
  .nebelbank-server-wall,
  .server-grid,
  .world-grid,
  .faction-grid,
  .roadmap-strip {
    grid-template-columns: 1fr;
  }

  .bich-terminal-grid article,
  .bich-process article {
    min-height: 170px;
    padding: 22px;
  }

  .bich-solution-grid article {
    min-height: 320px;
    padding: 24px;
  }

  .fivedays-hero {
    min-height: auto;
    padding: 48px 0 32px;
  }

  .fivedays-hero-visual,
  .nebelbank-hero-visual,
  .control-frame-shell {
    min-height: 340px;
  }

  .control-frame {
    min-height: 330px;
  }

  .control-copy {
    min-height: auto;
    padding: 28px 22px;
  }

  .server-grid article,
  .world-grid article,
  .roadmap-strip div {
    min-height: 170px;
  }

  .partner-switch {
    padding: 28px 22px;
  }

  .partner-switch-actions {
    justify-content: stretch;
  }

  .mikes-hero-image {
    min-height: 290px;
  }

  .mikes-category-grid article {
    min-height: 320px;
  }

  .hours-poster {
    min-height: 330px;
    padding: 18px;
  }

  .hours-list {
    padding: 28px 22px;
  }

  .hours-list dl div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px 14px;
  }

  .hours-list dd {
    text-align: left;
    font-size: 18px;
  }

  .partner-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .story-card h2 {
    font-size: 18px;
  }

  .error-title span {
    font-size: 72px;
  }

  .error-title strong {
    font-size: 98px;
  }

  .copyright {
    flex-direction: column;
  }
}

/* Mobile polish: keep cards, buttons and form-like embeds inside the viewport. */
.shell,
.shell *,
.home-hero > *,
.mikes-hero > *,
.bich-hero > *,
.nebelbank-hero > *,
.fivedays-hero > *,
.control-embed > * {
  min-width: 0;
}

.button,
.login-button,
.panel-button,
.shortcut-grid a,
.booking-action-grid a,
.partner-switch-actions a {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.control-frame-shell,
.control-frame,
img,
iframe {
  max-width: 100%;
}

.brush-title span,
.brush-title strong,
.section-heading h2,
.mikes-hero-copy h1,
.bich-hero-copy h1,
.nebelbank-hero-copy h1,
.fivedays-title span,
.fivedays-title strong,
.partner-switch h2,
.partner-teaser h2 {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .home-title span,
  .home-title strong {
    letter-spacing: .055em;
  }

  .home-dashboard,
  .home-panel,
  .section-heading,
  .value-strip,
  .news-grid article,
  .shortcut-grid a,
  .booking-action-grid a,
  .partner-switch,
  .partner-teaser {
    width: 100%;
  }

  .event-main {
    grid-template-columns: 1fr;
  }

  .panel-head {
    flex-direction: column;
  }

  .partner-switch-actions .button {
    width: 100%;
  }
}

/* Canonical page format: Mike's Diner layout is the reference for all main pages. */
.home-hero,
.fivedays-hero,
.nebelbank-hero,
.bich-hero {
  display: grid;
  grid-template-columns: minmax(380px, .78fr) minmax(520px, 1.22fr);
  gap: 0;
  min-height: min(660px, calc(100vh - 128px));
  align-items: stretch;
  margin-top: 28px;
  margin-bottom: 24px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(0, 0, 0, .68);
}

.hero-copy,
.fivedays-hero-copy,
.nebelbank-hero-copy,
.bich-hero-copy,
.status-card,
.fivedays-hero-visual,
.nebelbank-hero-visual,
.bich-hero-visual {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-copy,
.fivedays-hero-copy,
.nebelbank-hero-copy,
.bich-hero-copy {
  width: auto;
  display: grid;
  align-content: center;
  padding: 44px 40px;
}

.home-title span,
.home-title strong,
.fivedays-title span,
.fivedays-title strong,
.nebelbank-hero-copy h1,
.bich-hero-copy h1 {
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(46px, 5vw, 86px);
  line-height: .9;
  letter-spacing: .04em;
  transform: none;
  text-shadow: none;
  overflow-wrap: anywhere;
}

.home-title strong,
.fivedays-title strong {
  display: block;
  margin-top: 0;
  color: var(--white);
}

.hero-copy .lead,
.fivedays-hero-copy .lead,
.nebelbank-hero-copy .lead,
.bich-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.status-card,
.fivedays-hero-visual,
.nebelbank-hero-visual,
.bich-hero-visual {
  position: relative;
  width: auto;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
}

.status-card {
  align-self: stretch;
  justify-self: stretch;
  display: grid;
  align-content: end;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .9)),
    url("lightnet-home-hero.png?v=20260607a") center / cover;
  box-shadow: none;
}

.fivedays-hero-visual,
.nebelbank-hero-visual {
  display: grid;
  align-items: end;
  justify-items: center;
  background: #030303;
}

.fivedays-hero-visual::before,
.nebelbank-hero-visual::before {
  inset: 0;
  border: 0;
  opacity: 1;
  transform: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .04) 54%, rgba(0, 0, 0, .46)),
    linear-gradient(180deg, rgba(229, 9, 20, .18), rgba(0, 0, 0, .56)),
    url("card-lore.png?v=20260607a") center / cover;
  box-shadow: none;
}

.nebelbank-hero-visual::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .04) 54%, rgba(0, 0, 0, .46)),
    linear-gradient(180deg, rgba(229, 9, 20, .18), rgba(0, 0, 0, .56)),
    url("card-community.png?v=20260607a") center / cover;
}

.fivedays-hero-visual img {
  width: min(360px, 58%);
  max-height: 520px;
}

.nebelbank-emblem {
  width: min(260px, 58%);
  margin-bottom: 112px;
  font-size: clamp(62px, 6vw, 116px);
}

.server-command {
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px 20px;
}

.home-dashboard,
.server-grid,
.world-grid,
.faction-grid,
.roadmap-strip,
.nebelbank-grid,
.nebelbank-server-wall,
.bich-terminal-grid,
.bich-process,
.bich-solution-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.home-panel,
.server-grid article,
.world-grid article,
.faction-grid article,
.roadmap-strip div,
.nebelbank-grid article,
.nebelbank-server-wall article,
.bich-terminal-grid article,
.bich-process article,
.bich-solution-grid article {
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

@media (max-width: 1280px) {
  .home-hero,
  .fivedays-hero,
  .nebelbank-hero,
  .bich-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-hero,
  .fivedays-hero,
  .nebelbank-hero,
  .bich-hero {
    min-height: auto;
    margin-top: 22px;
  }

  .hero-copy,
  .fivedays-hero-copy,
  .nebelbank-hero-copy,
  .bich-hero-copy {
    padding: 32px 22px;
  }

  .home-title span,
  .home-title strong,
  .fivedays-title span,
  .fivedays-title strong,
  .nebelbank-hero-copy h1,
  .bich-hero-copy h1 {
    font-size: clamp(40px, 13vw, 62px);
    letter-spacing: .035em;
  }

  .status-card,
  .fivedays-hero-visual,
  .nebelbank-hero-visual,
  .bich-hero-visual {
    min-height: 290px;
  }

  .server-command {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
