:root {
  --bg: #ececec;
  --surface: #ffffff;
  --surface-muted: #f4f4f4;
  --text-main: #1f1f1f;
  --text-soft: #5e5e5e;
  --border: #d7d7d7;
  --accent: #b11f24;
  --accent-dark: #7f171b;
  --steel: #2c2f33;
  --steel-soft: #464b52;
  --shadow: 0 24px 50px rgba(24, 24, 24, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Barlow", sans-serif;
  color: var(--text-main);
  background:
    linear-gradient(180deg, #202327 0 96px, var(--bg) 96px 100%),
    linear-gradient(135deg, #efefef, #dfdfdf);
}

.top-strip {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, #1f2327, #2e3338);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-shell {
  min-height: calc(100vh - 48px);
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.hero-panel {
  width: min(1180px, 100%);
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 5px solid var(--accent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 34px;
  background: linear-gradient(90deg, #ffffff, #f4f4f4);
  border-bottom: 1px solid var(--border);
}

.header-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.header-kicker {
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-note {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 0;
}

.hero-copy {
  padding: 52px 34px 56px;
  background:
    linear-gradient(120deg, rgba(177, 31, 36, 0.06), transparent 38%),
    linear-gradient(180deg, #ffffff, #f7f7f7);
}

.info-card {
  padding: 0;
  background: linear-gradient(180deg, var(--steel), #222529);
  color: #fff;
}

.info-block {
  padding: 30px 28px;
}

.info-block + .info-block {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.info-label {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-block h2 {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
}

.info-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.brand-logo {
  max-width: 220px;
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.3rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.lead {
  margin: 22px 0 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.status-row {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--steel);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(177, 31, 36, 0.12);
}

.status-text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .top-strip {
    gap: 14px;
    flex-wrap: wrap;
    min-height: auto;
  }

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

  .header-copy {
    align-items: flex-start;
    text-align: left;
  }

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

  .brand-logo {
    max-width: 190px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 20px 14px;
  }

  .hero-header,
  .hero-copy,
  .info-block {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-copy {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
}
