:root {
  color-scheme: light;
  --bg: #f4f6f2;
  --surface: #ffffff;
  --ink: #18211c;
  --muted: #626e66;
  --line: #dfe6dc;
  --accent: #1f7a5b;
  --accent-dark: #164d3c;
  --blue: #3f6f9e;
  --gold: #c39138;
  --shadow: 0 22px 70px rgba(27, 40, 31, .14);
}

* { box-sizing: border-box; }

html { min-height: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100dvh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(244,246,242,.92) 48%, #eef3ef),
    radial-gradient(circle at 14% 18%, rgba(31,122,91,.16), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(63,111,158,.15), transparent 24rem);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .34;
  background-image:
    linear-gradient(rgba(24,33,28,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,33,28,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 80%);
}

a { color: inherit; text-decoration: none; }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 780;
  line-height: 1;
}

.mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--accent), #66a876 60%, var(--gold));
  box-shadow: 0 12px 26px rgba(31,122,91,.24);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4e5a52;
  font-size: 14px;
  font-weight: 680;
}

nav a {
  min-height: 36px;
  padding: 9px 12px;
  border-radius: 7px;
}

nav a:hover { background: rgba(31,122,91,.09); }

main { padding: 58px 0 42px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: 44px;
  align-items: center;
}

.hero-copy { min-width: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(31,122,91,.24);
  border-radius: 7px;
  background: rgba(255,255,255,.76);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 8px 24px rgba(31,122,91,.08);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(31,122,91,.13);
  flex: 0 0 auto;
}

h1 {
  margin: 22px 0 18px;
  max-width: 720px;
  font-size: clamp(42px, 6.5vw, 74px);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
  box-shadow: 0 10px 24px rgba(27,40,31,.08);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(31,122,91,.22);
}

.console {
  min-height: 434px;
  border: 1px solid rgba(223,230,220,.95);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.console-head {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(250,252,249,.82);
}

.console-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9d1c6;
}

.console-head span:nth-child(1) { background: #e0a24a; }
.console-head span:nth-child(2) { background: #6da778; }
.console-head span:nth-child(3) { background: #648bb5; }

.console-body {
  padding: 22px;
}

.status-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.main-status {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-status strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0;
}

.badge {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(31,122,91,.11);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 820;
}

.meter {
  height: 10px;
  margin: 18px 0 20px;
  border-radius: 999px;
  background: #e8eee6;
  overflow: hidden;
}

.meter span {
  display: block;
  width: 96%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--blue));
}

.timeline {
  display: grid;
  gap: 12px;
}

.event {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(223,230,220,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}

.event time {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.event strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.event p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.info-grid article {
  position: relative;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(223,230,220,.92);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 34px rgba(27,40,31,.07);
  overflow: hidden;
}

.stripe {
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: var(--accent);
}

.stripe.blue { background: var(--blue); }
.stripe.gold { background: var(--gold); }

.info-grid h2 {
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.25;
}

.info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

footer {
  border-top: 1px solid var(--line);
  color: #737d74;
  font-size: 13px;
  padding: 24px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  main { padding-top: 34px; }
  .hero { grid-template-columns: 1fr; }
  .console { min-height: 360px; }
  .info-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .info-grid article { min-height: auto; }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 1120px); }
  h1 { font-size: 42px; }
  .lead { font-size: 16px; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .main-status { flex-direction: column; }
  .event { grid-template-columns: 1fr; gap: 6px; }
  .main-status strong { font-size: 40px; }
}
