:root {
  --paper: #f8fafc;
  --ink: #0f172a;
  --muted: #475569;
  --line: #dbe4ef;
  --accent: #7dd3fc;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:hover {
  color: #0369a1;
}
a:focus-visible {
  outline: 3px solid #0284c7;
  outline-offset: 6px;
  border-radius: 3px;
}
.wrap {
  max-width: 1160px;
  margin: auto;
  padding-left: 36px;
  padding-right: 36px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.brand {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mark {
  border-radius: 7px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 24px;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}
.header nav a {
  text-decoration: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 60px;
  padding-top: 76px;
  padding-bottom: 88px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin: 0 0 26px;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0284c7;
  margin-right: 8px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(52px, 6.1vw, 78px);
  line-height: 1.03;
  letter-spacing: -4px;
  margin-bottom: 28px;
}
h1 span {
  color: #0369a1;
}
.intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 410px;
  line-height: 1.65;
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: var(--ink);
  color: white;
  padding: 14px 22px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.button:hover {
  background: #172554;
  color: white;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
}
.platforms {
  font-size: 12px;
  color: var(--muted);
  margin: 21px 0 0;
}
.platforms .platform-note {
  display: block;
  margin-top: 2px;
}
.visual {
  background: #e8f3fc;
  border: 1px solid #d2e5f5;
  border-radius: 20px;
  min-height: 485px;
  padding: 30px 32px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(#b6d5ea 1px, transparent 1px);
  background-size: 16px 16px;
}
.visual-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  align-self: flex-start;
}
.speaker {
  margin-top: 32px;
  width: 180px;
  height: 137px;
  background: #172554;
  border-radius: 24px;
  box-shadow: 0 15px 20px #0f172a24;
  position: relative;
  overflow: hidden;
  transform: rotate(-5deg);
}
.speaker-grille {
  position: absolute;
  inset: 10px;
  border-radius: 19px;
  background: radial-gradient(#475569 0.8px, #0f172a 1.4px);
  background-size: 4px 4px;
}
.speaker-light {
  position: absolute;
  bottom: 14px;
  left: 87px;
  height: 3px;
  width: 7px;
  background: var(--accent);
  border-radius: 4px;
}
.connection {
  height: 63px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.connection i {
  height: 15px;
  border-left: 1px dashed #6488a3;
}
.connection span {
  font-size: 22px;
  line-height: 29px;
}
.volume-card {
  width: 100%;
  max-width: 300px;
  padding: 21px 24px;
  background: #ffffff;
  border-radius: 13px;
  box-shadow: 0 12px 30px #0f172a0c;
}
.volume-card > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.volume-card strong {
  font-size: 25px;
  font-weight: 500;
}
.volume-card strong span {
  font-size: 13px;
  color: var(--muted);
}
.track {
  height: 7px;
  border-radius: 5px;
  background: #e2e8f0;
  margin: 16px 0 22px;
}
.track > span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: 5px;
  background: #0284c7;
  position: relative;
}
.track > span:after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #0284c7;
  border: 2px solid #fff;
}
.keys {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
}
kbd {
  display: grid;
  place-items: center;
  width: 29px;
  height: 25px;
  border: 1px solid #cbd5e1;
  border-bottom: 3px solid #cbd5e1;
  border-radius: 5px;
  font-size: 16px;
}
.visual-caption {
  font-size: 10px;
  color: var(--muted);
  margin: 23px 0 0;
}
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 19px;
  padding-bottom: 19px;
  font-size: 12px;
  color: var(--muted);
}
.strip span:before {
  content: "✓";
  margin-right: 10px;
  color: #0369a1;
}
.section {
  padding-top: 88px;
  padding-bottom: 88px;
}
h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -1.8px;
  margin-bottom: 26px;
}
h3 {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 46px;
}
.features article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.number {
  font-size: 10px;
  letter-spacing: 1.1px;
  color: var(--muted);
  display: block;
  margin-bottom: 24px;
}
.features p,
.steps p,
.details p {
  font-size: 14px;
  color: var(--muted);
}
.setup {
  background: #edf4fb;
}
.setup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.steps {
  list-style: none;
  counter-reset: steps;
  margin: 0;
  padding: 0;
}
.steps li {
  counter-increment: steps;
  position: relative;
  padding: 0 0 20px 57px;
}
.steps li:before {
  content: "0" counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
}
.steps li:last-child {
  padding-bottom: 0;
}
.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.privacy-callout {
  background: var(--accent);
  border-radius: 16px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}
.privacy-callout p:not(.eyebrow) {
  max-width: 450px;
  font-size: 15px;
}
.privacy-symbol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 160px;
  line-height: 1.2;
  color: #172554;
}
.privacy-symbol span {
  font-size: 10px;
  letter-spacing: 2px;
  margin-top: 20px;
}
.end {
  text-align: center;
}
.end p {
  color: var(--muted);
  font-size: 15px;
}
.end .actions {
  justify-content: center;
}
footer {
  border-top: 1px solid var(--line);
  padding-top: 30px !important;
  padding-bottom: 32px !important;
}
.footer-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-top > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.footer-top > div > a,
.footer-top > div > button {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-underline-offset: 5px;
  white-space: nowrap;
}
.footer-top > div > button:hover {
  color: #0369a1;
}
footer p {
  font-size: 11px;
  color: var(--muted);
  max-width: 850px;
  line-height: 1.8;
}
footer small {
  font-size: 10px;
  color: var(--muted);
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--ink);
  color: white;
  padding: 12px;
  z-index: 10;
}
.skip:focus {
  top: 12px;
}
.policy {
  max-width: 820px;
  padding-top: 64px;
  padding-bottom: 80px;
}
.policy h1 {
  font-size: 48px;
  letter-spacing: -2px;
}
.policy h2 {
  font-size: 25px;
  letter-spacing: -0.6px;
  margin-top: 40px;
  margin-bottom: 16px;
}
.policy p,
.policy li {
  color: var(--muted);
}
.website-policy {
  border-top: 1px solid var(--line);
  margin-top: 45px;
}
code {
  font-size: 0.95em;
}
@media (max-width: 850px) {
  .hero {
    gap: 30px;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .setup-grid,
  .details {
    gap: 40px;
  }
  .privacy-callout {
    margin: 0 24px;
  }
  .visual {
    padding: 24px 20px;
  }
  .header nav {
    gap: 18px;
  }
}
@media (max-width: 620px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .header nav {
    gap: 26px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
    padding-bottom: 45px;
    gap: 40px;
  }
  h1 {
    letter-spacing: -2.5px;
  }
  .hero .intro {
    max-width: none;
  }
  .visual {
    min-height: 460px;
  }
  .strip .wrap {
    flex-direction: column;
    gap: 7px;
  }
  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .features {
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .features article {
    padding-top: 18px;
  }
  .number {
    margin-bottom: 12px;
  }
  .setup-grid,
  .details,
  .privacy-callout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .privacy-callout {
    padding: 30px;
  }
  .privacy-symbol {
    display: none;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-top > div {
    flex-wrap: wrap;
    gap: 18px;
  }
  .policy {
    padding-top: 35px;
  }
  .policy h1 {
    font-size: 38px;
  }
  .actions {
    gap: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.github-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.platform {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.platform svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.platforms .platform-note {
  margin-top: 10px;
}

.downloads {
  border-top: 1px solid var(--line);
}
.downloads .intro {
  max-width: 620px;
}
.download-version,
.download-help {
  font-size: 13px;
  color: var(--muted);
}
.download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin: 32px 0 24px;
}
.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  grid-template-rows: auto;
  column-gap: 36px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  gap: 16px;
}
.download-card h3 {
  font-size: 24px;
  margin: 0;
}
.download-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.download-card .button {
  width: 100%;
  justify-content: center;
  gap: 10px;
}
.download-card small {
  font-size: 12px;
  color: var(--muted);
}
.header nav {
  flex-wrap: wrap;
}
@media (max-width: 850px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
}

.platform-heading,
.distribution-icons,
.distribution-icons span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.platform-heading svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.download-card .button svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.distribution-icons {
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
}
.distribution-icons svg {
  width: 22px;
  height: 22px;
}

.download-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.button-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.button-secondary:hover {
  background: #e8f3fc;
  color: var(--ink);
}
.download-note {
  width: 100%;
}
.download-options {
  width: 100%;
  grid-column: 2;
  grid-row: 1;
}
.download-card > p {
  grid-column: 1;
}
.download-note {
  margin-top: 10px;
}
@media (max-width: 620px) {
  .download-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .download-options {
    grid-column: 1;
    grid-row: auto;
  }
}

.download-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.download-details .download-note {
  margin-top: 0;
}

.setup + .privacy-callout {
  margin-top: 64px;
}
@media (max-width: 620px) {
  .setup + .privacy-callout {
    margin-top: 40px;
  }
}

/* Consent is non-modal: the site remains usable without accepting tracking. */
.consent-banner[hidden],
.consent-banner [hidden] {
  display: none;
}
.consent-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 1088px;
  margin: auto;
  z-index: 100;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 10px 48px #0f172a30;
  max-height: 80vh;
  overflow-y: auto;
}
.consent-banner h2 {
  font-size: 23px;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}
.consent-banner p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.consent-banner button {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 7px;
  cursor: pointer;
}
.consent-banner button:hover {
  background: #172554;
}
.consent-banner button:focus-visible,
.consent-open:focus-visible,
.consent-banner input:focus-visible {
  outline: 3px solid #0284c7;
  outline-offset: 3px;
}
.consent-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.consent-option strong,
.consent-option span span {
  display: block;
}
.consent-option span span,
.consent-option p {
  font-size: 13px;
  color: var(--muted);
}
.consent-option input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  accent-color: #0369a1;
}
#consent-save {
  margin-top: 16px;
}
#consent-status:not(:empty) {
  margin-top: 14px;
}
.consent-open {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 12px;
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 620px) {
  .consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px;
  }
  .consent-actions button {
    flex: 1 1 auto;
  }
}
