body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #f4f7fb;
  color: #17212b;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
}

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  min-height: 72px;
}

.brand {
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.topbar nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.topbar nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.page {
  padding: 28px 0 44px;
}

.row {
  display: flex;
}

.between {
  justify-content: space-between;
}

.center {
  align-items: center;
}

.gap {
  gap: 12px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.5;
}

.card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid #e6ebf2;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
}

.card h3 a {
  text-decoration: none;
  color: inherit;
}

.section-title {
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  color: #667085;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.btn-secondary {
  background: #eef2ff;
  color: #1d4ed8;
}

.btn-secondary:hover {
  box-shadow: 0 10px 20px rgba(29, 78, 216, 0.10);
}

.btn-danger {
  background: #b42318;
  color: #fff;
}

.btn-danger:hover {
  box-shadow: 0 10px 20px rgba(180, 35, 24, 0.18);
}

.flash-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.flash {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
}

.flash-success {
  background: #ecfdf3;
  color: #027a48;
  border-color: #abefc6;
}

.flash-error {
  background: #fef3f2;
  color: #b42318;
  border-color: #fecdca;
}

.flash-info {
  background: #eff8ff;
  color: #175cd3;
  border-color: #b2ddff;
}

.form {
  display: grid;
  gap: 12px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #344054;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  padding: 12px 14px;
  background: #ffffff;
  font: inherit;
  color: #101828;
  outline: none;
  transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #84adff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid #eaecf0;
  background: #fff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.table th {
  background: #f8fafc;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #eaecf0;
}

.table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f2f5;
  vertical-align: top;
}

.table tr:last-child td {
  border-bottom: none;
}

.stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 22px;
  padding: 18px;
  border: 1px solid #e6ebf2;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.stat-label {
  color: #667085;
  font-size: 14px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #101828;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.status-free {
  background: #ecfdf3;
  color: #027a48;
}

.status-reserved {
  background: #fffaeb;
  color: #b54708;
}

.status-occupied {
  background: #fef3f2;
  color: #b42318;
}

.status-offline,
.status-disabled,
.status-stale {
  background: #f2f4f7;
  color: #344054;
}

.legend {
  flex-wrap: wrap;
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-right: 6px;
}

.metro-map {
  width: 100%;
  height: auto;
  display: block;
}

.metro-map a {
  cursor: pointer;
}

.kv {
  display: grid;
  gap: 10px;
}

.kv-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f5;
}

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

.kv-key {
  color: #667085;
}

.kv-value {
  font-weight: 600;
  text-align: right;
}

.mono {
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  background: #f2f4f7;
  padding: 8px 10px;
  border-radius: 12px;
}

.page-head {
  margin-bottom: 18px;
}

.page-head h2 {
  margin: 0 0 6px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.page-head p {
  margin: 0;
  color: #667085;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 12px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.empty {
  color: #667085;
}

hr {
  border: none;
  border-top: 1px solid #eaecf0;
  margin: 16px 0;
}

@media (max-width: 1100px) {
  .grid.five,
  .grid.four,
  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }

  .hero {
    padding: 26px 20px;
  }

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

  .grid.two,
  .grid.three,
  .grid.four,
  .grid.five {
    grid-template-columns: 1fr;
  }

  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 0;
    gap: 10px;
  }
}
.hero-home {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  min-height: 520px;
}

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

.hero-home__content h1 {
  max-width: 760px;
}

.hero-home__content p {
  max-width: 700px;
}

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

.hero-home__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-fact {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.hero-fact__value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hero-fact__label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.booth-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(8, 15, 32, 0.28);
}

.booth-visual-card__img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
}

.booth-visual-card__overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booth-visual-card__chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.feature-card {
  min-height: 190px;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #eef4ff;
  font-size: 26px;
  margin-bottom: 14px;
}

@media (max-width: 1100px) {
  .hero-home {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-home__facts {
    grid-template-columns: 1fr;
  }

  .booth-visual-card,
  .booth-visual-card__img {
    min-height: 360px;
  }
}
.hero-premium {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #081120 0%, #0f1b33 42%, #133d8c 100%);
  box-shadow: 0 30px 80px rgba(6, 18, 40, 0.28);
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .25;
  pointer-events: none;
}

.hero-premium__left,
.hero-premium__right {
  position: relative;
  z-index: 2;
}

.hero-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-premium h1 {
  margin: 18px 0 14px;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #fff;
  max-width: 780px;
}

.hero-premium__lead {
  margin: 0;
  max-width: 720px;
  color: rgba(255,255,255,.80);
  font-size: 17px;
  line-height: 1.65;
}

.hero-premium__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.premium-metric {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.premium-metric__value {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.premium-metric__label {
  margin-top: 6px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.premium-visual {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.premium-visual__img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.premium-visual__glass {
  position: absolute;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 22px;
  background: rgba(10, 18, 35, .46);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.premium-visual__glass--top {
  left: 18px;
  top: 18px;
}

.premium-visual__glass--bottom {
  left: 18px;
  right: 18px;
  bottom: 18px;
  justify-content: space-between;
}

.premium-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #101828;
  font-size: 12px;
  font-weight: 800;
}

.premium-stat {
  min-width: 150px;
}

.premium-stat__label {
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

.premium-stat__value {
  margin-top: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.premium-cards-row .card {
  min-height: 220px;
}

.premium-feature-card {
  position: relative;
  overflow: hidden;
}

.premium-feature-card__num {
  font-size: 13px;
  font-weight: 800;
  color: #1d4ed8;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.premium-surface {
  border-radius: 24px;
}

.premium-dark-panel {
  background: linear-gradient(180deg, #0f172a 0%, #111c34 100%);
  border: 1px solid rgba(255,255,255,.06);
}

.premium-audience-list {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.premium-audience-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 500;
}

.premium-audience-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #60a5fa;
  box-shadow: 0 0 0 6px rgba(96,165,250,.14);
  flex: 0 0 auto;
}

.premium-bottom-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f6f9ff 100%);
}

.premium-bottom-cta__text {
  max-width: 760px;
}

@media (max-width: 1180px) {
  .hero-premium {
    grid-template-columns: 1fr;
  }

  .hero-premium__metrics {
    grid-template-columns: 1fr;
  }

  .premium-visual,
  .premium-visual__img {
    min-height: 420px;
  }

  .premium-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-premium {
    padding: 24px;
  }

  .hero-premium h1 {
    font-size: 36px;
  }

  .premium-visual,
  .premium-visual__img {
    min-height: 320px;
  }
}
.scenario-card,
.economics-card {
  min-height: 220px;
}

.scenario-card__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef4ff 0%, #e0ecff 100%);
  font-size: 28px;
  margin-bottom: 14px;
}

.economics-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}