:root {
  --bg: #0f1012;
  --bg-soft: #17191d;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f4f1eb;
  --muted: rgba(244, 241, 235, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #9f1220;
  --accent-strong: #c8162f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(159, 18, 32, 0.28), transparent 30%),
    linear-gradient(180deg, #141519 0%, #0d0e10 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.02), transparent 40%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 24%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 80%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 4px 20px;
}

.brand img {
  width: 120px;
  display: block;
  filter: brightness(0) invert(1);
}

.header-copy {
  text-align: right;
}

.eyebrow,
.hero-kicker,
.section-label,
.status-label,
.info-strip span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
}

.header-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(159, 18, 32, 0.18), transparent 45%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 35%;
  height: 260px;
  background: radial-gradient(circle, rgba(200, 22, 47, 0.24), transparent 60%);
}

.hero-copy,
.hero-panel,
.contact-card,
.info-strip article {
  position: relative;
  z-index: 1;
}

.hero-kicker,
.section-label {
  color: rgba(244, 241, 235, 0.68);
}

.hero h1 {
  margin: 18px 0 18px;
  max-width: 9ch;
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-text {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-panel {
  min-height: 460px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 50%);
  overflow: hidden;
}

.panel-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-panel::before {
  width: 320px;
  height: 320px;
  right: -60px;
  top: 30px;
  background: radial-gradient(circle, rgba(200, 22, 47, 0.7), rgba(200, 22, 47, 0.02) 68%);
}

.hero-panel::after {
  width: 240px;
  height: 240px;
  left: 36px;
  bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.status-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(10, 10, 12, 0.65);
  backdrop-filter: blur(18px);
}

.status-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.status-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header,
  .hero {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-copy {
    text-align: left;
  }

  .hero {
    padding: 28px;
  }

  .hero-panel {
    width: 100%;
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  .brand img {
    width: 98px;
  }

  .hero {
    padding: 22px;
    gap: 20px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .hero-text,
  .status-card p {
    font-size: 0.96rem;
  }
}
