:root {
  color-scheme: light;
  --ink: #182018;
  --muted: #5f6d62;
  --paper: #f7f4ec;
  --band: #fffaf0;
  --line: rgba(34, 45, 32, 0.14);
  --green: #4f8f54;
  --green-dark: #2f6d3a;
  --amber: #d9933d;
  --blue: #5e95b8;
  --shadow: 0 18px 50px rgba(23, 31, 21, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.topbar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(13, 18, 12, 0.78), rgba(13, 18, 12, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 24px;
  height: 24px;
  display: inline-block;
  background:
    linear-gradient(90deg, transparent 9px, rgba(255,255,255,0.5) 9px 11px, transparent 11px),
    linear-gradient(transparent 9px, rgba(255,255,255,0.5) 9px 11px, transparent 11px),
    #69a765;
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 22, 15, 0.78), rgba(14, 22, 15, 0.42) 46%, rgba(14, 22, 15, 0.12)),
    linear-gradient(0deg, rgba(247, 244, 236, 1), rgba(247, 244, 236, 0) 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 92px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 11vw, 126px);
  line-height: 0.9;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 20px;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.45;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 850;
  font-size: 15px;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(47, 109, 58, 0.28);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

.button.full {
  width: 100%;
}

.band {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.status-band {
  padding-top: 50px;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.status-tile,
.download-panel,
.feature,
.news-item {
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status-tile {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
}

.label,
.news-item time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-tile strong {
  overflow-wrap: anywhere;
  font-size: 22px;
}

.status-tile strong.online {
  color: var(--green-dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 34px;
  align-items: center;
}

.split p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.download-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.download-panel strong {
  font-size: 36px;
}

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

.feature {
  padding: 24px;
}

.feature .icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 23px;
}

.feature p,
.news-item p {
  color: var(--muted);
  line-height: 1.65;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-item {
  padding: 22px;
}

.news-item h3 {
  margin-top: 8px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .topbar {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .status-grid,
  .features,
  .split {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
