:root {
  color-scheme: dark;
  --bg: #0d161b;
  --bg-soft: #132027;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f4f7f5;
  --muted: #aebcbd;
  --line: rgba(255, 255, 255, 0.14);
  --teal: #27d3bf;
  --amber: #f2a93b;
  --blue: #7da7c7;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  color: var(--text);
  background:
    linear-gradient(140deg, rgba(39, 211, 191, 0.12), transparent 34%),
    linear-gradient(320deg, rgba(242, 169, 59, 0.12), transparent 32%),
    var(--bg);
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 28px;
}

.hero {
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
}

.hero__content {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  max-width: 9.8ch;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 6.75rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 550px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 0.98rem;
  font-weight: 700;
}

.status__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(242, 169, 59, 0.12);
}

.hero__visual {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  aspect-ratio: 1.75;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.products article {
  min-height: 190px;
  padding: 24px;
  background: rgba(12, 23, 28, 0.86);
}

.products span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 780;
}

.products h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.2;
}

.products p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.site-footer {
  padding: 26px 0 0;
  color: rgba(244, 247, 245, 0.56);
  font-size: 0.88rem;
  line-height: 1.5;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .page-shell {
    width: min(100% - 32px, 720px);
    padding-top: 26px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .hero__content {
    max-width: 680px;
  }

  h1 {
    max-width: 10.5ch;
  }

  .hero__visual {
    aspect-ratio: 1.42;
  }

  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 24px, 480px);
    padding-bottom: 18px;
  }

  .hero {
    gap: 28px;
    padding-top: 24px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 17vw, 4.25rem);
  }

  .hero__copy {
    margin-top: 22px;
  }

  .status {
    margin-top: 26px;
  }

  .hero__visual {
    aspect-ratio: 1.08;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .products article {
    min-height: 158px;
  }

  .products span {
    margin-bottom: 24px;
  }
}
