:root {
  color-scheme: light dark;
  --bg: #f5f7f4;
  --surface: #ffffff;
  --surface-muted: #eaf0ec;
  --surface-strong: #dce8e1;
  --text: #17211f;
  --muted: #52605c;
  --line: rgba(23, 33, 31, 0.14);
  --accent: #0b8f77;
  --accent-blue: #0a84ff;
  --accent-amber: #bf7b00;
  --accent-red: #c94332;
  --ink: #07100e;
  --shadow: 0 18px 42px rgba(18, 31, 28, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #07100e;
    --surface: #121c19;
    --surface-muted: #182520;
    --surface-strong: #22332d;
    --text: #eff7f4;
    --muted: #a8b8b2;
    --line: rgba(239, 247, 244, 0.16);
    --accent: #63dbc0;
    --accent-blue: #75baff;
    --accent-amber: #f3b341;
    --accent-red: #ff7c69;
    --ink: #050b0a;
    --shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 4px;
}

.site-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  padding: 22px 0;
  background: var(--bg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #0a84ff, #0b8f77 58%, #7acb3a);
  box-shadow: var(--shadow);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

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

.hero-landing {
  position: relative;
  display: flex;
  min-height: 560px;
  height: min(680px, calc(100svh - 88px));
  align-items: flex-end;
  overflow: hidden;
  color: #f7fffb;
  background: var(--ink);
}

.hero-landing::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 14, 13, 0.9), rgba(5, 14, 13, 0.58) 42%, rgba(5, 14, 13, 0.2) 76%),
    linear-gradient(180deg, rgba(5, 14, 13, 0.16), rgba(5, 14, 13, 0.78));
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 92px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #8ee6c8;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 5rem;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.08rem;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.24rem;
}

.hero-content .lead {
  color: rgba(247, 255, 251, 0.88);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(247, 255, 251, 0.86);
  font-weight: 650;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
}

.hero-facts li + li::before {
  width: 6px;
  height: 6px;
  margin: 0 12px;
  border-radius: 50%;
  background: #8ee6c8;
  content: "";
}

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

.small-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-content .small-note {
  color: rgba(247, 255, 251, 0.7);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-weight: 650;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: var(--accent);
  color: #001f1a;
}

.hero-content .button {
  border-color: rgba(247, 255, 251, 0.36);
  background: rgba(247, 255, 251, 0.92);
  color: #07100e;
}

.hero-content .button.primary {
  border-color: transparent;
  background: #8ee6c8;
}

.section {
  padding: 72px 0;
}

.section-intro {
  background: var(--bg);
}

.visual-band,
.data-band {
  background: var(--surface-muted);
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  max-width: 660px;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.card,
.list-card,
.screenshot-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(23, 33, 31, 0.03);
}

.card {
  min-height: 100%;
  padding: 22px;
}

.card-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 750;
}

.card p,
.list-card p,
.page-content p,
.page-content li {
  color: var(--muted);
}

.card p,
.list-card p {
  margin: 10px 0 0;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.2fr) minmax(220px, 0.72fr);
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
}

.screenshot-card img {
  width: 100%;
  background: var(--surface-strong);
}

.screenshot-card.tall img {
  aspect-ratio: 9 / 18.4;
  object-fit: cover;
  object-position: top center;
}

.screenshot-card.wide img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.screenshot-card.watch img {
  aspect-ratio: 295 / 360;
  object-fit: cover;
  object-position: center;
}

.screenshot-card figcaption {
  margin: 0;
  padding: 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

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

.list-card {
  padding: 18px;
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.data-layout p {
  margin: 18px 0 0;
  color: var(--muted);
}

.data-points {
  display: grid;
  gap: 14px;
}

.data-points div {
  padding: 0 0 0 18px;
  border-left: 4px solid var(--accent);
}

.data-points div:nth-child(2) {
  border-left-color: var(--accent-blue);
}

.data-points div:nth-child(3) {
  border-left-color: var(--accent-amber);
}

.data-points strong,
.data-points span {
  display: block;
}

.data-points strong {
  margin-bottom: 6px;
}

.data-points span {
  color: var(--muted);
}

.page-header {
  padding: 48px 0 22px;
}

.page-header h1 {
  max-width: 760px;
  font-size: 3.8rem;
}

.page-content {
  max-width: 780px;
  padding: 24px 0 56px;
}

.page-content h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.page-content ul {
  padding-left: 1.2rem;
}

.note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 12px;
}

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

  h2 {
    font-size: 2.1rem;
  }

  .feature-grid,
  .screenshot-grid,
  .split-section,
  .data-layout {
    grid-template-columns: 1fr;
  }

  .screenshot-grid {
    max-width: 620px;
  }

  .screenshot-card.tall img {
    aspect-ratio: 9 / 15;
  }
}

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-landing {
    min-height: 540px;
    height: auto;
  }

  .hero-landing::before {
    background:
      linear-gradient(90deg, rgba(5, 14, 13, 0.88), rgba(5, 14, 13, 0.64)),
      linear-gradient(180deg, rgba(5, 14, 13, 0.08), rgba(5, 14, 13, 0.82));
  }

  .hero-media {
    object-position: 70% center;
  }

  .hero-content {
    padding: 64px 0 42px;
  }

  h1 {
    font-size: 3rem;
  }

  h2,
  .page-header h1 {
    font-size: 2.15rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .section {
    padding: 50px 0;
  }

  .hero-facts {
    display: grid;
    gap: 8px;
  }

  .hero-facts li + li::before {
    display: none;
  }
}
