:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5d626a;
  --line: #d8dadd;
  --paper: #f7f4ef;
  --surface: #ffffff;
  --accent: #b4232a;
  --amber: #c28a2e;
  --green: #1f7a54;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero-band {
  padding: 28px clamp(18px, 4vw, 56px) 44px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 900;
}

.market-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.hero-grid {
  max-width: 1180px;
  margin: clamp(44px, 9vw, 118px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(64px, 11vw, 156px);
  line-height: 0.9;
  font-weight: 950;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #25282c;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.16;
  font-weight: 650;
}

.gate-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 28px;
  border: 1px solid color-mix(in srgb, var(--accent), #ffffff 55%);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff8f6;
  color: #541316;
  font-size: 15px;
  font-weight: 750;
}

.gate-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.signal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
}

.signal-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-topline strong {
  color: var(--green);
}

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

.status-grid div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-grid div:nth-child(even) {
  border-right: 0;
}

.status-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

dt {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 20px;
  font-weight: 850;
}

.ops-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #ffffff;
}

.ops-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

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

.ops-item span {
  color: var(--amber);
  font-weight: 950;
}

.ops-item strong {
  font-size: 16px;
}

.ops-item.muted strong {
  color: #cfd3d8;
}

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

  .hero-grid {
    align-items: start;
  }

  .signal-panel {
    max-width: 520px;
  }

  .ops-item {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .ops-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .hero-band {
    padding-top: 18px;
  }

  .brand-lockup {
    font-size: 16px;
  }

  h1 {
    font-size: 58px;
  }

  .lead {
    font-size: 20px;
  }

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

  .status-grid div,
  .status-grid div:nth-child(even),
  .status-grid div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-grid div:last-child {
    border-bottom: 0;
  }
}
