:root {
    --bg: #111111;
    --surface: #1a1a1a;
    --surface-soft: #222222;
    --text: #f2f2f2;
    --muted: #b8b8b8;
    --border: #333333;
    --accent: #c93333;
    --max-width: 1120px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
  }
  
  a {
    color: inherit;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px clamp(20px, 5vw, 64px);
    border-bottom: 1px solid var(--border);
    background: rgba(17, 17, 17, 0.92);
  }
  
  .site-logo {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
  }
  
  .site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
  }
  
  .site-nav a {
    text-decoration: none;
  }
  
  .site-nav a:hover {
    color: var(--text);
  }
  
  .hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 80px clamp(20px, 5vw, 64px);
  }
  
  .hero__content {
    width: min(100%, var(--max-width));
    margin: 0 auto;
  }
  
  .eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  h1,
  h2,
  h3,
  p {
    margin-top: 0;
  }
  
  h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(56px, 10vw, 112px);
    line-height: 0.95;
    letter-spacing: -0.06em;
  }
  
  h2 {
    margin-bottom: 16px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -0.04em;
  }
  
  h3 {
    margin-bottom: 12px;
    font-size: 24px;
  }
  
  .hero__subtitle {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
  }
  
  .hero__text {
    max-width: 760px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 18px;
  }
  
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    text-decoration: none;
    background: var(--surface);
  }
  
  .button--primary {
    border-color: var(--accent);
    background: var(--accent);
  }
  
  .section {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 72px clamp(20px, 5vw, 64px);
  }
  
  .section__header {
    max-width: 720px;
    margin-bottom: 32px;
  }
  
  .section--split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .section__text {
    color: var(--muted);
    font-size: 18px;
  }
  
  .section__note {
    max-width: 760px;
    margin-top: 28px;
    color: var(--muted);
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  
  .card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
  }
  
  .card p {
    color: var(--muted);
  }
  
  .card a {
    margin-top: auto;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
  }
  
  .card__status {
    width: fit-content;
    margin-bottom: 24px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
  }
  
  .status-list {
    display: grid;
    gap: 12px;
  }
  
  .status-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface-soft);
  }
  
  .status-item span {
    color: var(--muted);
  }
  
  .site-footer {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding: 40px clamp(20px, 5vw, 64px);
    border-top: 1px solid var(--border);
    color: var(--muted);
  }
  
  .site-footer p {
    margin: 8px 0 0;
  }
  
  .site-footer address {
    font-style: normal;
  }
  
  @media (max-width: 800px) {
    .site-header {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .hero {
      min-height: auto;
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .cards,
    .section--split {
      grid-template-columns: 1fr;
    }
  
    .status-item,
    .site-footer {
      flex-direction: column;
    }
  }