:root {
  color-scheme: light;

  /* Canvas / surface */
  --canvas: #fbfaf6;
  --canvas-deep: #f0ece2;
  --surface: #ffffff;

  /* Ink */
  --ink: #11100f;
  --ink-soft: #2a2a28;
  --muted: #5e5a54;

  /* Lines (refined hairline) */
  --hairline: #e8e3d6;

  /* Disciplined accents */
  --accent: #315cff; /* blue — links + primary marks */
  --acid: #c9ff3a; /* brand only — logo mark + footer brand */

  /* Status dots */
  --dot-live: #35c9a7;
  --dot-beta: #ff6a45;
  --dot-info: #1f6c9f;

  /* Pastel chips (tag/badge fills only — never section bg) */
  --pale-green-bg: #edf3ec;
  --pale-green-fg: #346538;
  --pale-blue-bg: #e1f3fe;
  --pale-blue-fg: #1f6c9f;
  --pale-red-bg: #fdebec;
  --pale-red-fg: #9f2f2d;
  --pale-yellow-bg: #fbf3db;
  --pale-yellow-fg: #956400;

  /* Geometry */
  --radius: 8px;
  --radius-pill: 999px;
  --shadow-hover: 0 2px 8px rgb(17 16 15 / 6%);
  --shadow-screen: 0 24px 80px rgb(17 16 15 / 18%);

  /* Type pairing */
  --display: "Instrument Serif", "Newsreader", Georgia, "Times New Roman", serif;
  --sans:
    "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Backward-compat aliases (do not remove without sweeping references) */
  --paper: var(--canvas);
  --paper-deep: var(--canvas-deep);
  --white: var(--surface);
  --line: var(--hairline);
  --ink-muted: var(--muted);
  --blue: var(--accent);
  --coral: var(--dot-beta);
  --mint: var(--dot-live);
  --shadow: var(--shadow-screen);

  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

main section[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  width: auto;
  height: auto;
  clip-path: none;
  border-radius: var(--radius);
  background: var(--acid);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  white-space: normal;
}

.site-header {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 56px;
  transform: translateX(-50%);
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: var(--radius-pill);
  background: rgb(17 16 15 / 56%);
  padding: 7px 8px 7px 16px;
  color: var(--surface);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
}

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

.brand-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a {
  color: rgb(255 255 255 / 82%);
  transition: color 160ms ease;
}

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

.header-download {
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  padding: 9px 16px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  touch-action: manipulation;
  transition:
    background-color 160ms ease,
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-download:hover {
  background: var(--acid);
  color: var(--ink);
}

.header-download:active {
  transform: scale(0.98);
}

.hero {
  position: relative;
  display: grid;
  min-height: 520px;
  height: min(760px, 88svh);
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 0 66%);
  object-fit: cover;
  object-position: 76% 46%;
  opacity: 0.76;
  filter: saturate(0.84) contrast(0.96) blur(0.8px);
  transform: scale(1.012);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgb(17 16 15 / 100%) 0%, rgb(17 16 15 / 94%) 50%, rgb(17 16 15 / 32%) 100%),
    linear-gradient(0deg, rgb(17 16 15 / 48%) 0%, rgb(17 16 15 / 8%) 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(108px, 19svh, 176px);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker,
.demo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  background: var(--surface);
  padding: 5px 11px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow .eyebrow-dot,
.section-kicker .eyebrow-dot,
.demo-label .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--dot-live);
}

.eyebrow-dot--beta {
  background: var(--dot-beta) !important;
}

.eyebrow-dot--info {
  background: var(--dot-info) !important;
}

/* Hero eyebrow needs surface that reads on the dark hero */
.hero .eyebrow {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 22%);
  color: rgb(255 255 255 / 78%);
}

.hero h1 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 124px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  color: rgb(255 255 255 / 78%);
}

.hero-lede {
  max-width: 52ch;
  margin: 26px 0 0;
  color: rgb(255 255 255 / 80%);
  font-family: var(--sans);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.5;
}

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

.hero-fineprint {
  margin: 14px 0 0;
  color: rgb(255 255 255 / 70%);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 22px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  touch-action: manipulation;
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.button:active {
  transform: scale(0.98);
}

.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.button-light {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}

.button-light:hover {
  background: var(--acid);
  border-color: var(--acid);
}

.button-outline:hover {
  border-color: var(--surface);
  background: rgb(255 255 255 / 10%);
}

.button-dark:hover {
  background: var(--ink-soft);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--surface);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.button-link::after {
  content: "→";
  color: var(--muted);
  margin-left: 2px;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button-link:hover {
  color: var(--accent);
}

.button-link:hover::after {
  transform: translateX(2px);
}

.keystroke {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--hairline);
  border-radius: 5px;
  background: var(--surface);
  padding: 4px 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero .keystroke {
  border-color: rgb(255 255 255 / 22%);
  background: rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 80%);
}

.button-light {
  background: var(--acid);
  color: var(--ink);
}

.button-outline {
  border-color: rgb(255 255 255 / 38%);
  background: rgb(255 255 255 / 8%);
  color: var(--white);
}

.button-dark {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.button-secondary {
  width: 100%;
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.release-strip {
  display: grid;
  width: min(620px, 100%);
  margin: 36px 0 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.release-strip div {
  padding: 16px 16px 0 0;
}

.release-strip dt {
  color: rgb(255 255 255 / 52%);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-strip dd {
  margin: 6px 0 0;
  color: var(--surface);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.download-band,
.product-section,
.channel-section,
.privacy-section,
.pricing-section,
.faq-section {
  padding: clamp(64px, 9vw, 118px) max(20px, calc((100% - 1180px) / 2));
}

.pricing-section {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
}

.pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: end;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto 44px;
  text-align: left;
}

.pricing-head h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.pricing-head h2 em {
  font-style: italic;
  color: var(--muted);
}

.pricing-head p {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.tier {
  display: flex;
  flex-direction: column;
  padding: 36px 30px 32px;
  position: relative;
}

.tier + .tier {
  border-left: 1px solid var(--hairline);
}

.tier--highlight {
  background: var(--canvas);
}

.tier--highlight::after {
  content: "recommended";
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: var(--radius-pill);
  background: var(--pale-green-bg);
  color: var(--pale-green-fg);
  padding: 3px 9px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tier-name {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.tier-sub {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  min-height: 38px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.tier-price small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.tier-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.tier-features li {
  padding: 10px 0;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
  border-bottom: 1px solid var(--hairline);
}

.tier-features li::before {
  content: "— ";
  color: var(--muted);
}

.tier-features li:last-child {
  border-bottom: 0;
}

.tier .button {
  width: 100%;
  margin-top: auto;
}

.pricing-footnote {
  max-width: 1120px;
  margin: 22px auto 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.pricing-footnote a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.pricing-footnote a:hover {
  color: var(--accent);
}

.faq-section {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
}

.faq-grid {
  display: grid;
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  transition: background-color 160ms ease;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  touch-action: manipulation;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.faq-item summary:hover {
  background: var(--canvas);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-index {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.faq-question {
  font-family: var(--display);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--ink);
  text-wrap: balance;
}

.faq-toggle {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: var(--muted);
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    color 160ms ease;
  transform-origin: center;
}

.faq-item:hover .faq-toggle {
  color: var(--ink);
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  padding: 0 28px 26px;
}

.faq-answer-body {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 60ch;
}

.faq-answer-body a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-answer-body a:hover {
  color: var(--accent);
}

.doc-page {
  padding: clamp(132px, 18svh, 200px) max(20px, calc((100% - 880px) / 2)) clamp(64px, 9vw, 118px);
  background: var(--paper);
  min-height: calc(100svh - 200px);
}

.doc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  background: var(--surface);
  padding: 5px 11px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.doc-eyebrow .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--dot-info);
}

.doc-page h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.doc-page > p.doc-lede,
.doc-lede {
  margin: 0 0 56px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  max-width: 62ch;
  text-wrap: pretty;
}

.doc-section {
  margin-top: 56px;
  border-top: 1px solid var(--hairline);
  padding-top: 40px;
}

.doc-section:first-of-type {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.doc-section h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
  text-wrap: balance;
  scroll-margin-top: 96px;
}

.doc-section h2 em {
  font-style: italic;
  color: var(--muted);
}

.doc-meta {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doc-section p,
.doc-section li {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.doc-section ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.doc-section li {
  padding: 10px 0 10px 22px;
  border-top: 1px solid var(--hairline);
  position: relative;
}

.doc-section li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--muted);
}

.doc-section li:first-child {
  border-top: 0;
}

.doc-section li strong {
  color: var(--ink);
  font-weight: 600;
}

.doc-section a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.doc-section a:hover {
  color: var(--accent);
}

.doc-section code {
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: var(--canvas-deep);
  padding: 1px 6px;
  font-family: var(--mono);
  font-size: 0.86em;
  font-weight: 500;
}

.release-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 16px;
}

.release-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--canvas);
  padding: 4px 11px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.release-status {
  color: var(--pale-green-fg);
  background: var(--pale-green-bg);
  border-radius: var(--radius-pill);
  padding: 4px 11px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-status[data-status="alpha"] {
  color: var(--pale-yellow-fg);
  background: var(--pale-yellow-bg);
}

.release-date {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.download-band {
  background: var(--paper);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.privacy-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.section-heading h2 em,
.privacy-copy h2 em,
.hero h1 em,
.doc-page h1 em {
  font-style: italic;
  color: var(--muted);
}

.section-heading p:not(.section-kicker),
.privacy-copy p:not(.section-kicker) {
  margin: 20px auto 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  text-wrap: pretty;
}

.download-grid,
.channel-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-card,
.channel-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.download-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.download-card[data-recommended="true"] {
  border-color: var(--ink);
}

.card-topline {
  display: flex;
  min-height: 25px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recommendation {
  visibility: hidden;
  border-radius: var(--radius-pill);
  background: var(--pale-green-bg);
  color: var(--pale-green-fg);
  padding: 4px 10px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-card[data-recommended="true"] .recommendation {
  visibility: visible;
}

.download-card h3,
.channel-grid h3,
.demo-copy h3 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.download-card p,
.channel-grid p,
.demo-copy p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.download-card p {
  margin: 16px 0 0;
}

.download-card .button {
  margin-top: auto;
}

.download-note {
  min-height: 42px;
  font-size: 13px;
}

.product-section {
  background: var(--ink);
  color: var(--white);
}

.product-section .section-heading p:not(.section-kicker) {
  color: rgb(255 255 255 / 70%);
}

.product-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: stretch;
}

.product-controls {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  border-left: 4px solid var(--acid);
  padding: 4px 0 4px 24px;
}

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

.tab-button {
  min-height: 46px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 7%);
  color: rgb(255 255 255 / 76%);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  touch-action: manipulation;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.tab-button:hover {
  border-color: rgb(255 255 255 / 38%);
  color: var(--white);
}

.tab-button.is-active {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.tab-button.is-active:hover {
  border-color: var(--acid);
  color: var(--ink);
}

.demo-copy {
  padding-top: 28px;
}

.demo-copy p {
  color: rgb(255 255 255 / 68%);
}

.screen-frame {
  margin: 0;
}

.screen-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius);
  background: #1f1f1f;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.screen-frame figcaption {
  margin-top: 12px;
  color: rgb(255 255 255 / 54%);
  font-size: 13px;
}

.channel-section {
  background: var(--paper-deep);
}

.channel-grid article {
  min-height: 270px;
}

.channel-number {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  padding: 3px 11px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.channel-grid article:nth-child(2) .channel-number {
  background: var(--ink);
  color: var(--canvas);
}

.channel-grid article:nth-child(3) .channel-number {
  border-color: var(--hairline);
  color: var(--muted);
}

.privacy-section {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  align-items: start;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
}

.privacy-copy p:not(.section-kicker) {
  margin-left: 0;
}

.privacy-proof {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--canvas);
}

.privacy-proof div {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid var(--hairline);
  padding: 18px 22px;
}

.privacy-proof div:last-child {
  border-bottom: 0;
}

.privacy-proof span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-proof strong {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: var(--canvas);
  color: var(--ink);
  padding: 36px max(20px, calc((100% - 1120px) / 2));
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.footer-meta .footer-brand {
  align-items: center;
}

.footer-meta .brand-name {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
}

.footer-brand .brand-mark {
  background: var(--acid);
  width: 26px;
  height: 26px;
  font-size: 14px;
}

.site-footer p,
.site-footer .footer-tagline {
  margin: 4px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.footer-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

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

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: auto auto;
    width: min(100% - 24px, 680px);
  }

  .nav-links {
    display: none;
  }

  .header-download {
    justify-self: end;
  }

  .hero {
    min-height: 540px;
    height: min(720px, 88svh);
  }

  .hero-media img {
    clip-path: inset(0 0 0 86%);
    object-position: 78% center;
    opacity: 0.5;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgb(17 16 15 / 98%) 0%, rgb(17 16 15 / 90%) 58%, rgb(17 16 15 / 56%) 100%),
      linear-gradient(0deg, rgb(17 16 15 / 58%) 0%, rgb(17 16 15 / 10%) 44%);
  }

  .hero-inner {
    width: min(100% - 28px, 680px);
    padding-top: 106px;
  }

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

  .release-strip div {
    display: grid;
    grid-template-columns: 132px 1fr;
    align-items: baseline;
    padding-top: 9px;
  }

  .download-grid,
  .channel-grid,
  .product-shell,
  .privacy-section,
  .pricing-head,
  .pricing-band {
    grid-template-columns: 1fr;
  }

  .pricing-head {
    gap: 16px;
    align-items: start;
  }

  .tier + .tier {
    border-left: 0;
    border-top: 1px solid var(--hairline);
  }

  .download-card {
    min-height: 290px;
  }

  .product-controls {
    border-left: 0;
    border-top: 4px solid var(--acid);
    padding: 24px 0 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    min-height: 50px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-download {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 512px;
    height: min(690px, 88svh);
  }

  .hero-inner {
    width: calc(100% - 24px);
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(56px, 20vw, 86px);
  }

  .hero-lede {
    margin-top: 18px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .release-strip {
    margin-top: 22px;
  }

  .download-band,
  .product-section,
  .channel-section,
  .privacy-section,
  .pricing-section,
  .faq-section {
    padding-block: 56px;
  }

  .tier {
    padding: 28px 22px 26px;
  }

  .tier--highlight::after {
    top: 14px;
    right: 14px;
  }

  .faq-item summary {
    grid-template-columns: 38px 1fr auto;
    padding: 18px 18px;
    gap: 12px;
  }

  .faq-question {
    font-size: 17px;
  }

  .faq-answer {
    grid-template-columns: 38px 1fr;
    padding: 0 18px 18px;
    gap: 12px;
  }

  .faq-toggle {
    font-size: 22px;
  }

  .doc-page {
    padding-top: 112px;
  }

  .section-heading h2,
  .privacy-copy h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .download-card,
  .channel-grid article {
    padding: 18px;
  }

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

  .privacy-proof div {
    grid-template-columns: 1fr;
  }

  .privacy-proof strong {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }

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

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
