:root {
  color-scheme: light dark;
  --bg: #f5f7f6;
  --surface: #ffffff;
  --panel: rgba(255, 255, 255, 0.82);
  --text: #101615;
  --muted: #63706d;
  --line: rgba(18, 30, 29, 0.12);
  --teal: #00a9ac;
  --blue: #176cf0;
  --violet: #7357f3;
  --ember: #e55f30;
  --green: #1f8a5b;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #090d0f;
    --surface: #11181a;
    --panel: rgba(21, 29, 32, 0.84);
    --text: #f4f8f7;
    --muted: #aab7b4;
    --line: rgba(238, 246, 244, 0.14);
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--bg) 92%, var(--surface)));
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(22px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
}

.nav-inner,
.wrap {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
}

.nav-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

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

.links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.hero {
  min-height: calc(100vh - 66px);
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 40px;
  align-items: center;
  padding: 54px 0 42px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 780;
  letter-spacing: 0;
}

.hero h1,
.page h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.9rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }

.lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
  max-width: 720px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 74%, transparent);
  font-weight: 700;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--blue), var(--violet));
  border-color: transparent;
}

.device-stage {
  min-height: 560px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 169, 172, 0.12), rgba(23, 108, 240, 0.08)),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.shot {
  display: block;
  position: absolute;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.shot.tablet {
  width: min(78%, 720px);
  right: 24px;
  top: 42px;
}

.shot.phone {
  width: min(36%, 280px);
  left: 28px;
  bottom: 30px;
  z-index: 2;
}

.band {
  border-top: 1px solid var(--line);
  padding: 64px 0;
  background: color-mix(in srgb, var(--surface) 46%, transparent);
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.split h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list article,
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.feature-list strong {
  display: block;
  margin-bottom: 5px;
}

.feature-list span,
.card p,
.page p,
.page li {
  color: var(--muted);
  line-height: 1.65;
}

.section { padding: 54px 0; border-top: 1px solid var(--line); }

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

.card h2,
.card h3 { margin: 0 0 8px; }

.page {
  padding: 62px 0;
  max-width: 920px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 720;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 38px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; padding-top: 44px; }

  .device-stage { min-height: 480px; }

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

@media (max-width: 620px) {
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .links { justify-content: flex-start; gap: 10px; }
  .device-stage { min-height: 390px; }
  .shot.tablet { width: 88%; right: -36px; top: 32px; }
  .shot.phone { width: 42%; left: 16px; bottom: 24px; }
}
