:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-muted: #eef1f6;
  --text: #171a22;
  --muted: #5b6472;
  --border: #dde3ec;
  --accent: #5850d8;
  --accent-soft: #eef0ff;
  --warm: #f2c84b;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.875rem;
}

.nav-links a {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 44px;
  align-items: center;
  min-height: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.status-row span {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 9px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 650;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 8px;
  padding: 0 15px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 750;
  text-decoration: none;
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.utility-panel {
  max-width: 520px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 28px;
  padding: 16px;
  background: var(--surface);
}

.utility-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.875rem;
}

.utility-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.product-shot {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 0;
  padding: 12px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(27, 33, 48, 0.08);
}

.product-shot img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.section {
  margin: 64px 0;
}

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

.panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
}

.panel p,
.doc p,
.doc li {
  color: var(--muted);
  line-height: 1.65;
}

.doc {
  max-width: 820px;
}

.doc h1 {
  font-size: 3.25rem;
  line-height: 1.05;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  margin-top: 72px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.875rem;
}

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

  .site-nav,
  .hero {
    grid-template-columns: 1fr;
  }

  .site-nav {
    align-items: flex-start;
    margin-bottom: 44px;
  }

  .hero {
    min-height: 0;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

@media (max-width: 460px) {
  h1 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1rem;
  }
}
