:root {
  --black: #050505;
  --white: #ffffff;
  --paper: #f4f1eb;
  --paper-strong: #ebdac5;
  --ink: #121212;
  --muted: #67615a;
  --orange: #e94e1b;
  --orange-dark: #7f1810;
  --line-light: rgba(18, 18, 18, 0.13);
  --line-dark: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), var(--paper-strong));
  background-size: 88px 88px, auto;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 28px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 58px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.18s ease;
}

.nav a:hover,
.nav a:focus {
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  min-height: calc(100svh - 75px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(233, 78, 27, 0.13), transparent 36%),
    var(--black);
  border-bottom: 8px solid var(--orange);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 78px 44px 48px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--orange);
  border: 1px solid rgba(233, 78, 27, 0.48);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  overflow-wrap: break-word;
}

.lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  line-height: 1.5;
}

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

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus {
  box-shadow: 0 0 0 3px rgba(233, 78, 27, 0.18);
}

.btn:focus-visible {
  outline: 2px solid rgba(233, 78, 27, 0.74);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--orange);
  border-color: var(--orange);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid var(--line-dark);
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--white);
  border-color: rgba(233, 78, 27, 0.72);
  background: rgba(233, 78, 27, 0.12);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border-left: 1px solid var(--line-dark);
}

.status-card {
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.status-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.1;
}

.status-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.page-section {
  padding: 78px 28px;
  border-bottom: 1px solid var(--line-light);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-label {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 900;
  overflow-wrap: break-word;
}

.section-lead {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

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

.card {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px;
  color: rgba(255, 255, 255, 0.58);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  font-weight: 700;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    padding: 16px 22px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 58px 22px 44px;
  }

  .hero-panel {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .topbar,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .footer span,
  .footer a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .topbar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .nav a {
    min-width: 0;
    min-height: 32px;
    justify-content: flex-start;
    white-space: normal;
  }

  .hero-copy,
  .page-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-panel {
    display: none;
  }

  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 18px;
  }
}
