:root {
  color-scheme: dark;
  --bg: #08090d;
  --surface: rgba(19, 21, 28, .82);
  --surface-strong: rgba(27, 30, 39, .92);
  --surface-soft: rgba(255, 255, 255, .065);
  --line: rgba(255, 255, 255, .09);
  --text: #f7f8fb;
  --muted: rgba(247, 248, 251, .68);
  --quiet: rgba(247, 248, 251, .48);
  --accent: #ff315a;
  --accent-soft: rgba(255, 49, 90, .14);
  --cyan: #3fd5e8;
  --green: #35d99d;
  --violet: #8b5cf6;
  --shadow: 0 24px 64px rgba(0, 0, 0, .34);
  --max: 1160px;
  --radius-card: 12px;
  --radius-panel: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% -8%, rgba(255, 49, 90, .16), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(63, 213, 232, .1), transparent 32%),
    linear-gradient(135deg, #090a0f 0%, #11131b 54%, #08090d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .28) .5px, transparent .5px);
  background-size: 4px 4px;
  opacity: .035;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

code,
kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

code {
  padding: 2px 5px;
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, .08);
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 13, .72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text);
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.logo img,
.footer-brand img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
  transition: color .16s ease, background .16s ease, transform .16s ease;
}

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

.nav-links .nav-btn {
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--surface-soft);
}

.nav-links .nav-btn:hover {
  background: rgba(255, 255, 255, .11);
  transform: translateY(-1px);
}

.hero,
.section,
footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  align-items: center;
  min-height: 820px;
  padding: 132px 0 72px;
  gap: 52px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

h1,
h2 {
  max-width: 780px;
  color: var(--text);
  font-weight: 810;
  letter-spacing: 0;
  line-height: .98;
}

h1 {
  font-size: clamp(48px, 6.6vw, 78px);
}

h2 {
  font-size: clamp(34px, 4.2vw, 56px);
}

h3 {
  color: var(--text);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-lede,
.section-heading > p,
.text-panel > p,
.screenshot-card p,
.feature-card p,
.settings-list strong,
.install-steps p {
  color: var(--muted);
}

.hero-lede {
  max-width: 560px;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.45;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 760;
  text-decoration: none;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(255, 49, 90, .18);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(255, 49, 90, .26);
}

.btn-secondary {
  color: var(--text);
  background: var(--surface-soft);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 36px;
  gap: 10px;
}

.proof-row div {
  padding: 14px;
  border-radius: var(--radius-card);
  background: var(--surface-soft);
}

.proof-row dt {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.proof-row dd {
  margin-top: 4px;
  color: var(--quiet);
  font-size: 13px;
}

.hero-media,
.screenshot-card,
.feature-card,
.settings-list,
.privacy-band,
.install,
.container {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent),
    var(--surface);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.hero-media {
  padding: 10px;
}

.hero-media img {
  width: 100%;
  border-radius: 12px;
}

.section {
  padding: 78px 0;
}

.compact-section {
  padding-top: 42px;
}

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

.section-heading > p {
  max-width: 680px;
  margin-top: 16px;
  font-size: 18px;
}

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

.feature-card {
  min-height: 220px;
  padding: 22px;
}

.feature-dot {
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-dot.cyan {
  background: var(--cyan);
}

.feature-dot.green {
  background: var(--green);
}

.feature-dot.violet {
  background: var(--violet);
}

.feature-card p {
  margin-top: 12px;
  font-size: 15px;
}

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

.screenshot-card {
  overflow: hidden;
}

.screenshot-card.wide {
  grid-column: 1 / -1;
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0b0c12;
}

.screenshot-card div {
  padding: 22px;
}

.screenshot-card p {
  margin-top: 10px;
  font-size: 16px;
}

.split-section,
.privacy-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 24px;
}

.text-panel {
  max-width: 560px;
}

.text-panel > p {
  margin-top: 18px;
  font-size: 18px;
}

.settings-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.settings-list div {
  min-height: 128px;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--surface-soft);
}

.settings-list span {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 760;
}

.settings-list strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
}

.shortcuts .section-heading {
  margin-inline: auto;
  text-align: center;
}

.shortcuts .eyebrow {
  justify-content: center;
}

.shortcut-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.shortcut-table div {
  display: grid;
  gap: 12px;
  min-height: 122px;
  padding: 16px;
  border-radius: var(--radius-card);
  background: var(--surface-soft);
}

kbd {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .24);
  font-size: 13px;
  font-weight: 760;
}

.shortcut-table span {
  color: var(--muted);
  font-size: 15px;
}

.privacy-band {
  padding: 36px;
}

.privacy-band .btn {
  justify-self: end;
}

.install {
  padding: 36px;
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.install-steps li {
  min-height: 144px;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--surface-soft);
}

.install-steps span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

footer {
  padding: 52px 0 34px;
  border-top: 1px solid var(--line);
}

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

.copyright {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 14px;
  text-align: center;
}

.container {
  width: min(820px, calc(100% - 48px));
  margin: 128px auto 64px;
  padding: 36px;
}

.container h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.container h2 {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 28px;
  line-height: 1.12;
}

.container h3 {
  margin-top: 24px;
}

.container p,
.container ul {
  color: var(--muted);
}

.container p {
  margin-top: 16px;
}

.container ul {
  margin-top: 16px;
  padding-left: 20px;
}

.container li + li {
  margin-top: 8px;
}

.container code {
  padding: 2px 5px;
  border-radius: 6px;
  color: var(--text);
  background: var(--surface-soft);
}

.meta {
  color: var(--quiet);
}

.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}

.delay-4 {
  transition-delay: .32s;
}

@media (max-width: 980px) {
  .navbar {
    padding-inline: 20px;
  }

  .logo span {
    max-width: 310px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    display: none;
  }

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

  .feature-grid,
  .shortcut-table,
  .install-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .privacy-band .btn {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .hero,
  .section,
  footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .logo span {
    max-width: 248px;
    font-size: 14px;
  }

  .hero {
    gap: 30px;
    padding-bottom: 48px;
  }

  .hero-copy,
  .hero-lede {
    max-width: 340px;
  }

  h1 {
    max-width: 340px;
    font-size: 36px;
    line-height: 1.04;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lede,
  .section-heading > p,
  .text-panel > p {
    font-size: 16px;
  }

  .proof-row,
  .feature-grid,
  .showcase-grid,
  .settings-list,
  .shortcut-table,
  .install-steps {
    grid-template-columns: 1fr;
  }

  .screenshot-card.wide {
    grid-column: auto;
  }

  .privacy-band,
  .install,
  .container {
    padding: 24px;
  }

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

  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
  }
}
