:root {
  --ink: #14171f;
  --muted: #667085;
  --line: #d8dde7;
  --paper: #f7f8fb;
  --white: #ffffff;
  --accent: #b88a44;
  --accent-dark: #7c5622;
  --steel: #243247;
  --mist: #edf1f6;
  --shadow: 0 24px 80px rgba(21, 32, 55, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(237, 241, 246, 0.86)),
    radial-gradient(circle at 18% 15%, rgba(184, 138, 68, 0.16), transparent 30%),
    linear-gradient(120deg, var(--paper), #e6ebf2);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(36, 50, 71, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 50, 71, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.site-shell {
  display: grid;
  min-height: 100vh;
  padding: 28px;
  place-items: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 36px 48px;
  width: min(1120px, 100%);
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 221, 231, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand-card {
  display: grid;
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(237, 241, 246, 0.88)),
    linear-gradient(90deg, transparent, rgba(184, 138, 68, 0.12));
  border: 1px solid var(--line);
  border-radius: 8px;
  place-items: center;
}

.brand-logo {
  width: min(100%, 420px);
  height: auto;
  filter: contrast(1.04);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--steel);
  font-size: clamp(2.3rem, 5vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--white);
  background: var(--steel);
}

.primary:hover {
  background: #182436;
}

.secondary {
  color: var(--steel);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.secondary:hover {
  border-color: rgba(184, 138, 68, 0.7);
}

.status-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(180px, 0.28fr) 1fr minmax(220px, 0.5fr);
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  background: rgba(20, 23, 31, 0.94);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.status-row {
  display: grid;
  gap: 5px;
}

.status-row span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-row strong {
  color: var(--white);
  font-size: 1.05rem;
}

.progress {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #e5c48d);
  border-radius: inherit;
}

.status-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .site-shell {
    padding: 18px;
  }

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

  .brand-card {
    min-height: 190px;
  }

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

@media (max-width: 520px) {
  .site-shell {
    padding: 0;
  }

  .hero {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 3.2rem);
  }

  .actions,
  .button {
    width: 100%;
  }
}
