:root {
  --bg: #03080d;
  --bg-soft: #06111c;
  --panel: rgba(7, 22, 35, 0.78);
  --panel-strong: rgba(9, 28, 44, 0.92);
  --line: rgba(62, 183, 255, 0.22);
  --line-strong: rgba(82, 195, 255, 0.45);
  --text: #f3f8ff;
  --muted: #a8bacb;
  --cyan: #33c8ff;
  --cyan-soft: #8edfff;
  --support: #ffb35a;
  --support-dark: #e89234;
  --ready: #45f2a2;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1160px;
  --display: "League Spartan", "Arial Black", Impact, "Arial Narrow", system-ui, sans-serif;
  --font: var(--display);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 25%, rgba(24, 154, 225, 0.24), transparent 30%),
    radial-gradient(circle at 78% 34%, rgba(31, 185, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #02070c 0%, #06111c 48%, #02070c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(70, 177, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 177, 255, 0.065) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px, 52px 52px, 13px 13px, 13px 13px;
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.55));
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0 44px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(75, 190, 255, 0.22);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 28, 44, 0.86), rgba(5, 16, 27, 0.84));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(61, 201, 255, 0.55);
  border-radius: 15px;
  padding: 4px;
  overflow: visible;
  background: radial-gradient(circle at 40% 35%, rgba(61, 201, 255, 0.22), rgba(8, 35, 58, 0.70));
  box-shadow: 0 0 26px rgba(51, 200, 255, 0.17);
}

.brand-logo {
  display: block;
  width: 38px;
  height: auto;
  max-width: 38px;
  max-height: 36px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 10px rgba(51, 200, 255, 0.30));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 1000;
  letter-spacing: -0.05em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--cyan-soft);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.status-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(73, 187, 255, 0.16);
  border-radius: 14px;
  background: rgba(3, 15, 25, 0.62);
  color: #d9f5ff;
  font-size: 0.67rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.status-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(66, 196, 255, 0.48);
  background: rgba(13, 44, 68, 0.82);
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ready);
  box-shadow: 0 0 16px rgba(69, 242, 162, 0.86);
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(69, 242, 162, 0.58);
  animation: pulse-ring 1.55s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.55); opacity: 0.9; }
  70% { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}

.view-stage {
  position: relative;
}

.view-panel {
  display: none;
  animation: panel-in 360ms ease both;
}

.view-panel.is-active {
  display: block;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px) scale(0.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 600px;
  padding: clamp(72px, 10vh, 120px) 0 36px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  margin: 0 0 24px;
  padding: 0 14px;
  border: 1px solid rgba(69, 194, 255, 0.22);
  border-radius: 999px;
  background: rgba(6, 28, 45, 0.72);
  color: var(--cyan-soft);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(51, 200, 255, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

h1 {
  max-width: 735px;
  font-size: clamp(4.8rem, 9.2vw, 9rem);
  font-weight: 1000;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

h1 em,
.gradient-text {
  display: inline-block;
  font-style: normal;
  color: transparent;
  background: linear-gradient(180deg, #e7f9ff 0%, #7ddaff 36%, #20b7f5 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #edf7ff;
  font-size: clamp(1.1rem, 1.65vw, 1.38rem);
  font-weight: 900;
  line-height: 1.23;
  letter-spacing: -0.02em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 13px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.link-card:hover,
.power-card:hover,
.module-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #04131e;
  background: linear-gradient(180deg, #68d9ff, #27bcf4 62%, #11a4df);
  box-shadow: 0 15px 35px rgba(26, 186, 244, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-secondary {
  color: #dff7ff;
  border-color: rgba(89, 196, 255, 0.28);
  background: rgba(5, 20, 32, 0.72);
}

.btn-secondary:hover {
  border-color: rgba(89, 196, 255, 0.56);
  background: rgba(13, 44, 68, 0.86);
}

.btn-support {
  color: #111a20;
  border-color: rgba(255, 222, 168, 0.72);
  background: linear-gradient(180deg, #ffc46c, #ffad4e 55%, #ee9436);
  box-shadow: 0 16px 38px rgba(255, 179, 90, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.btn-support-strong {
  position: relative;
  isolation: isolate;
  box-shadow:
    0 18px 42px rgba(255, 179, 90, 0.28),
    0 0 32px rgba(255, 179, 90, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.btn-support-strong::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: 17px;
  border: 1px solid rgba(255, 196, 108, 0.34);
  opacity: 0.72;
  pointer-events: none;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 13px;
  border: 1px solid rgba(139, 212, 255, 0.15);
  border-radius: 999px;
  background: rgba(2, 13, 21, 0.64);
  color: #d4e4f0;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.link-section {
  padding: 18px 0 44px;
}

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

.section-head .eyebrow {
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.link-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 112px;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: 18px;
  border: 1px solid rgba(73, 190, 255, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(8, 28, 44, 0.78), rgba(4, 16, 27, 0.86));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.link-card:hover {
  border-color: rgba(65, 199, 255, 0.5);
  background: linear-gradient(180deg, rgba(12, 42, 65, 0.88), rgba(4, 18, 30, 0.92));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34), 0 0 36px rgba(45, 186, 244, 0.08);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(67, 199, 255, 0.46);
  border-radius: 15px;
  color: var(--cyan-soft);
  background: rgba(8, 34, 54, 0.78);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 22px rgba(50, 198, 255, 0.09);
}

.card-copy strong {
  display: block;
  color: #f5faff;
  font-size: 1.16rem;
  font-weight: 1000;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.card-copy small {
  display: block;
  max-width: 440px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(46, 183, 242, 0.12);
  font-size: 1.25rem;
  font-weight: 900;
}

.support-card {
  border-color: rgba(255, 179, 90, 0.42);
  background: linear-gradient(180deg, rgba(52, 33, 12, 0.62), rgba(20, 18, 16, 0.84));
}

.support-card:hover {
  border-color: rgba(255, 196, 108, 0.78);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34), 0 0 38px rgba(255, 179, 90, 0.11);
}

.support-card .card-icon,
.support-card .arrow {
  color: #17120c;
  border-color: rgba(255, 222, 168, 0.72);
  background: linear-gradient(180deg, #ffc46c, #ffad4e 55%, #ee9436);
  box-shadow: 0 10px 26px rgba(255, 179, 90, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

/* MCS Detail Panel */
.mcs-panel {
  padding: clamp(48px, 7vw, 82px) 0 44px;
}

.panel-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74, 190, 255, 0.23);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(8, 28, 44, 0.82), rgba(4, 16, 27, 0.92)),
    radial-gradient(circle at 82% 12%, rgba(51, 200, 255, 0.18), transparent 32%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.panel-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.58;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(70, 177, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 177, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.panel-inner {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 42px);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(89, 196, 255, 0.28);
  border-radius: 13px;
  background: rgba(4, 18, 30, 0.74);
  color: #dff7ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.back-btn:hover {
  border-color: rgba(89, 196, 255, 0.56);
  background: rgba(13, 44, 68, 0.86);
}

.mcs-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.mcs-title h2 {
  max-width: 650px;
  font-size: clamp(3rem, 7.4vw, 7.9rem);
}

.mcs-title .lead {
  max-width: 670px;
}

.soon-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 620px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(159, 231, 255, 0.62);
  border-radius: 16px;
  color: #04131e;
  background: linear-gradient(180deg, #68d9ff, #27bcf4 62%, #11a4df);
  box-shadow: 0 18px 42px rgba(26, 186, 244, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.soon-plus {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(4, 19, 30, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 1.45rem;
  font-weight: 1000;
  line-height: 1;
}

.soon-banner strong,
.soon-banner small {
  display: block;
}

.soon-banner strong {
  font-size: 0.86rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soon-banner small {
  margin-top: 3px;
  color: rgba(4, 19, 30, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.32;
}

.power-console {
  border: 1px solid rgba(73, 190, 255, 0.26);
  border-radius: 24px;
  background: rgba(2, 13, 21, 0.62);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(73, 190, 255, 0.16);
  background: rgba(5, 22, 36, 0.8);
}

.console-header strong {
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: -0.02em;
}

.console-header small,
.ready-text {
  color: var(--ready);
  font-size: 0.66rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-body {
  padding: 18px;
}

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

.module-slot {
  min-height: 88px;
  padding: 14px;
  border: 1px dashed rgba(64, 192, 255, 0.46);
  border-radius: 16px;
  background:
    repeating-linear-gradient(90deg, rgba(51, 200, 255, 0.12) 0 10px, rgba(51, 200, 255, 0.04) 10px 22px),
    rgba(6, 28, 45, 0.62);
}

.module-slot strong {
  display: block;
  color: #f5faff;
  font-size: 0.84rem;
  font-weight: 1000;
}

.module-slot small {
  display: block;
  margin-top: 8px;
  color: #a8bacb;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
}

.console-status {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(73, 190, 255, 0.16);
  border-radius: 16px;
  background: rgba(2, 13, 21, 0.54);
}

.status-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #d4e4f0;
  font-size: 0.76rem;
  font-weight: 900;
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(26px, 4vw, 42px);
}

.power-card,
.module-card {
  border: 1px solid rgba(73, 190, 255, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(8, 28, 44, 0.74), rgba(4, 16, 27, 0.86));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.power-card {
  min-height: 178px;
  padding: 18px;
}

.power-card:hover,
.module-card:hover {
  border-color: rgba(65, 199, 255, 0.48);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34), 0 0 36px rgba(45, 186, 244, 0.08);
}

.power-card strong {
  display: block;
  margin-top: 14px;
  color: #f5faff;
  font-size: 1.1rem;
  font-weight: 1000;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.power-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.4;
}

.power-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 28px;
  border: 1px solid rgba(67, 199, 255, 0.36);
  border-radius: 10px;
  color: var(--cyan-soft);
  background: rgba(8, 34, 54, 0.78);
  font-size: 0.68rem;
  font-weight: 1000;
}

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

.module-card {
  min-height: 122px;
  padding: 18px;
}

.module-card strong {
  display: block;
  color: #f5faff;
  font-size: 1.02rem;
  font-weight: 1000;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.module-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1.4;
}

.mcs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 38px);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 190, 255, 0.14);
  color: #8fa5b8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

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

  .module-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, var(--max));
    padding-top: 12px;
  }

  .topbar {
    top: 10px;
    border-radius: 18px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 1.28rem;
  }

  .status-pill {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.58rem;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
    gap: 30px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .mcs-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .back-btn {
    width: 100%;
  }

  .meta-row span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .link-grid,
  .power-grid,
  .slot-grid {
    grid-template-columns: 1fr;
  }

  .link-card {
    min-height: 104px;
    padding: 15px;
    gap: 12px;
  }

  .card-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .card-copy strong {
    font-size: 1rem;
  }

  .card-copy small {
    font-size: 0.78rem;
  }

  .arrow {
    width: 30px;
    height: 30px;
  }

  h2 {
    font-size: 2.5rem;
  }

  .panel-topline {
    align-items: stretch;
    flex-direction: column;
  }
}


@media (max-width: 720px) {
  .soon-banner {
    width: 100%;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .topbar {
    padding: 9px 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 28px;
    height: 28px;
  }

  .brand-copy strong {
    font-size: 1.04rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
  }

  .status-pill {
    padding: 0 10px;
    letter-spacing: 0.06em;
  }

  .eyebrow {
    font-size: 0.58rem;
    padding: 0 11px;
  }
}

/* V7 typography sync with original MCS website */

html,
body,
button,
input,
textarea,
select,
a,
p,
span,
small,
strong,
b,
li,
h1,
h2,
h3,
h4,
h5,
h6,
.topbar,
.brand,
.status-pill,
.view-panel,
.hero,
.eyebrow,
.lead,
.btn,
.meta-row,
.section-head,
.link-card,
.card-copy,
.status-card,
.mcs-panel,
.mcs-card,
.footer {
  font-family: var(--display) !important;
}

body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

p,
.lead,
.card-copy small,
.status-card span,
.mcs-card p,
.footer,
.info-copy,
.coming-soon-copy {
  font-weight: 700;
  letter-spacing: 0.005em;
}

h1,
h2,
h3,
.brand-copy strong,
.btn,
.link-card strong,
.status-pill,
.eyebrow,
.meta-row span,
.card-icon,
.arrow {
  font-weight: 950;
}


/* V8 logo fix: clean transparent logo, centered without cropping */
.brand-mark {
  flex: 0 0 48px;
  aspect-ratio: 1 / 1;
}
.brand-logo {
  margin: auto;
  image-rendering: auto;
}
@media (max-width: 680px) {
  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    padding: 4px;
  }
  .brand-logo {
    width: 35px;
    max-width: 35px;
    max-height: 33px;
  }
}
