:root {
  color-scheme: light;
  --paper: #f4f6f8;
  --card: #ffffff;
  --ink: #20242a;
  --slate: #66717d;
  --line: #dce2e8;
  --burgundy: #991a2d;
  --forest: #2f7656;
  --amber: #b8771d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(244, 246, 248, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 226, 232, 0.8);
}

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

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

nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--slate);
}

nav a {
  text-decoration: none;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 80px;
  background-image:
    linear-gradient(90deg, rgba(244, 246, 248, 0.98) 0%, rgba(244, 246, 248, 0.9) 42%, rgba(244, 246, 248, 0.22) 100%),
    url("assets/dashboard.png");
  background-size: cover, min(48vw, 520px);
  background-repeat: no-repeat;
  background-position: center, right 8vw center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--burgundy);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
}

.hero p:not(.eyebrow),
.band p,
.plain-list {
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--burgundy);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid rgba(153, 26, 45, 0.35);
}

.band {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--card);
}

.band.alt {
  background: #eef3f1;
}

.content {
  max-width: 1120px;
  margin: 0 auto;
}

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

.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.screen {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(32, 36, 42, 0.18);
}

.plain-list {
  padding-left: 22px;
}

.disclaimer {
  margin-top: 22px;
  color: var(--burgundy) !important;
  font-weight: 700;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--slate);
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    gap: 14px;
    padding: 12px 18px;
  }

  nav {
    flex: 0 0 auto;
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 360px 24px 64px;
    background-image:
      linear-gradient(180deg, rgba(244, 246, 248, 0.42) 0%, rgba(244, 246, 248, 0.98) 56%),
      url("assets/dashboard.png");
    background-size: cover, min(88vw, 340px);
    background-position: center, center 86px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 4.6rem);
  }

  .feature-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .screen {
    max-width: 340px;
    margin: 0 auto;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    gap: 8px;
  }

  nav {
    gap: 12px;
    font-size: 0.86rem;
  }
}
