:root {
  color-scheme: light;
  --ink: #11100f;
  --ink-muted: #5e5a54;
  --paper: #fbfaf6;
  --paper-deep: #f0ece2;
  --line: #d8d0c3;
  --acid: #c9ff3a;
  --blue: #315cff;
  --coral: #ff6a45;
  --mint: #35c9a7;
  --white: #ffffff;
  --shadow: 0 24px 80px rgb(17 16 15 / 18%);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

.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(1180px, calc(100% - 32px));
  min-height: 56px;
  transform: translateX(-50%);
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: var(--radius);
  background: rgb(17 16 15 / 54%);
  padding: 8px;
  color: var(--white);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: var(--acid);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  font-size: 14px;
  font-weight: 720;
}

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

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

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

.header-download {
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 15px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.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 {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(64px, 13vw, 164px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgb(255 255 255 / 86%);
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.28;
}

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

.hero-fineprint {
  margin: 14px 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

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

.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: 34px 0 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 22%);
}

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

.release-strip dt {
  color: rgb(255 255 255 / 56%);
  font-size: 12px;
  font-weight: 800;
}

.release-strip dd {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.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(--paper-deep);
}

.pricing-card {
  display: grid;
  max-width: 680px;
  margin: 0 auto;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow);
  text-align: center;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pricing-amount {
  font-size: clamp(56px, 9vw, 88px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.pricing-period {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: baseline;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.pricing-points li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.pricing-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pricing-cta .button {
  min-width: 200px;
}

.pricing-footnote {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.pricing-footnote a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

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

.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.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-page h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.doc-page > p:first-of-type {
  margin: 0 0 40px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.55;
}

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

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

.doc-section h2 {
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0;
}

.doc-meta {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.doc-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.doc-section li + li {
  margin-top: 6px;
}

.doc-section a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.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-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.privacy-copy p:not(.section-kicker) {
  margin: 18px auto 0;
  max-width: 720px;
  color: var(--ink-muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.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(--blue);
  box-shadow: inset 0 0 0 2px var(--blue);
}

.card-topline {
  display: flex;
  min-height: 25px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.recommendation {
  visibility: hidden;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  padding: 5px 8px;
  text-transform: none;
}

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

.download-card h3,
.channel-grid h3,
.demo-copy h3 {
  margin: 20px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
  letter-spacing: 0;
}

.download-card p,
.channel-grid p,
.demo-copy p {
  color: var(--ink-muted);
  line-height: 1.5;
}

.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;
}

.tab-button.is-active {
  border-color: var(--acid);
  background: 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-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 950;
}

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

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

.privacy-section {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  align-items: center;
  background: var(--white);
}

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

.privacy-proof {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

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

.privacy-proof span {
  color: var(--ink-muted);
}

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

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
  padding: 34px max(20px, calc((100% - 1180px) / 2));
}

.site-footer p {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 58%);
}

.footer-brand .brand-mark {
  background: var(--coral);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: rgb(255 255 255 / 72%);
  font-size: 14px;
  font-weight: 800;
}

@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 {
    grid-template-columns: 1fr;
  }

  .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;
  }

  .pricing-cta {
    flex-direction: column;
  }

  .pricing-cta .button {
    width: 100%;
  }

  .faq-item summary {
    padding: 18px 18px;
    font-size: 16px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .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;
  }
}

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