@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/fonts/AtkinsonHyperlegibleNext-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: optional;
}
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/fonts/AtkinsonHyperlegibleNext-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: optional;
}
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/fonts/AtkinsonHyperlegibleNext-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: optional;
}
html, body, div, header, main, section, footer, p, ul, li, a, img, form {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
:root {
  --fs-small: 18px;
  --fs-medium: 29px;
  --fs-large: 47px;
  --fs-xlarge: 76px;
  --color-white: #ffffff;
}
body {
  margin: 0;
  padding-top: 60px;
  background: #000000;
  color: #ffffff;
  font-family: "Atkinson Hyperlegible Next", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: var(--fs-small);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #000000;
  border-bottom: 1px solid #2a2a2a;
  padding: 18px 24px;
  transition: padding-top 0.2s ease, padding-bottom 0.2s ease;
}
.site-nav.compact {
  padding: 8px 24px;
}
.site-nav .nav-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-nav a {
  color: #ffffff;
  text-decoration: none;
}
.site-nav a:hover {
  color: #a3a3a3;
}
.site-nav a.current {
  font-weight: 800;
}
.site-nav a.nav-hidden {
  display: none;
}
.nav-burger {
  display: none;
}
@media (max-width: 640px) {
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: absolute;
    top: 21px;
    right: 24px;
    width: 22px;
    height: 22px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 11;
    transition: top 0.2s ease;
  }
  .site-nav.compact .nav-burger {
    top: 11px;
  }
  .nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .site-nav.menu-open .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-nav.menu-open .nav-burger span:nth-child(2) {
    opacity: 0;
  }
  .site-nav.menu-open .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .site-nav .nav-inner {
    padding-right: 40px;
  }
  .site-nav .nav-inner a:not(.current) {
    display: none;
  }
  .site-nav.menu-open .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.menu-open .nav-inner a {
    padding: 12px 0;
  }
  .site-nav.menu-open .nav-inner a:not(.current):not(.nav-hidden) {
    display: block;
  }
}
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
header {
  padding: 64px 0 32px;
  text-align: center;
}
.logotype {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto 28px;
}
.logotype-small {
  max-width: 160px;
  margin: 0 auto 40px;
}
.subtitle {
  font-weight: 800;
  font-size: var(--fs-large);
  line-height: 1.15;
  margin: 0 0 24px;
}
.tagline {
  font-weight: 400;
  font-size: var(--fs-small);
  color: #a3a3a3;
  max-width: 560px;
  margin: 0 auto 32px;
}
.lead {
  color: #ffffff;
  font-weight: 800;
  font-size: var(--fs-medium);
  line-height: 1.4;
  margin: 0 0 32px;
}
.fs-small { font-size: var(--fs-small); }
.fs-medium { font-size: var(--fs-medium); }
.fs-large { font-size: var(--fs-large); }
.fs-xlarge { font-size: var(--fs-xlarge); }
.fw-regular { font-weight: 400 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-extrabold { font-weight: 800 !important; }
.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.app-store-badge {
  display: inline-block;
  line-height: 0;
}
#compatibility .cta-row {
  margin-top: 32px;
}
.app-store-badge img {
  height: 48px;
  width: auto;
}
.cta-note {
  color: #999999;
  margin: 0;
}
.meta {
  color: #999999;
  margin: 0 0 32px;
}
.store-links {
  color: #999999;
  margin-top: 8px;
}
.phone-frame {
  position: relative;
  max-width: 336px;
  margin: 40px auto 0;
  padding: 14px;
  background: linear-gradient(180deg, #2b2b2b, #0a0a0a);
  border-radius: 40px;
  box-shadow: 0 0 0 2px #3a3a3a inset, 0 20px 60px rgba(0, 0, 0, 0.6);
}
.phone-frame::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000000;
  border-radius: 999px;
  pointer-events: none;
}
.frame-btn {
  position: absolute;
  background: linear-gradient(90deg, #1a1a1a, #3a3a3a);
}
.frame-btn-power {
  right: -3px;
  top: 22%;
  width: 3px;
  height: 72px;
  border-radius: 0 3px 3px 0;
}
.frame-btn-vol-up {
  left: -3px;
  top: 16%;
  width: 3px;
  height: 44px;
  border-radius: 3px 0 0 3px;
}
.frame-btn-vol-down {
  left: -3px;
  top: 24%;
  width: 3px;
  height: 44px;
  border-radius: 3px 0 0 3px;
}
.video-wrap {
  position: relative;
}
.app-preview-video {
  display: block;
  width: 100%;
  aspect-ratio: 886 / 1920;
  border-radius: 30px;
  background: #141414;
}
.play-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  padding: 0;
}
.play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.play-overlay svg {
  color: #ffffff;
  margin-left: 3px;
}
.play-overlay.hidden {
  display: none;
}
section {
  padding: 56px 0;
  border-top: 1px solid #2a2a2a;
}
h1 {
  font-weight: 800;
  font-size: var(--fs-large);
  margin: 0 0 20px;
  scroll-margin-top: 80px;
}
main > h1:first-child {
  margin-top: 40px;
}
h2 {
  font-weight: 800;
  font-size: var(--fs-large);
  margin: 0 0 20px;
  scroll-margin-top: 80px;
}
blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 3px solid var(--color-white);
}
section p {
  color: #a3a3a3;
  font-weight: 400;
  font-size: var(--fs-medium);
}
#what-it-is p {
  font-size: var(--fs-small);
}
main > p {
  color: #a3a3a3;
  font-weight: 400;
}
.features {
  list-style: none;
  padding: 0;
  margin: 24px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features li {
  padding-left: 20px;
  position: relative;
  color: #ffffff;
  font-weight: 400;
  font-size: var(--fs-medium);
}
#what-it-is .features li {
  font-size: var(--fs-small);
}
#tb-shows-up-list li {
  font-size: var(--fs-small);
}
#privacy-dont-do-list li {
  font-size: var(--fs-small);
}
.features li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: #999999;
}
.plain-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 40px;
  color: #a3a3a3;
}
.plain-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.plain-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: #999999;
}
.screenshot-grid {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.screenshot-grid::-webkit-scrollbar {
  height: 6px;
}
.screenshot-grid::-webkit-scrollbar-track {
  background: transparent;
}
.screenshot-grid::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 3px;
}
.screenshot-tile {
  flex: 0 0 180px;
  scroll-snap-align: start;
  cursor: pointer;
}
.screenshot-tile img {
  width: 100%;
  aspect-ratio: 1125 / 2436;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.screenshot-cap {
  color: #ffffff;
  font-weight: 600;
  font-size: var(--fs-small);
  text-align: center;
  margin: 8px 0 0;
}
.buttondown-placeholder {
  border: 1px dashed #2a2a2a;
  border-radius: 12px;
  padding: 20px;
  color: #999999;
}
.post-list {
  margin-top: 40px;
}
.post-summary {
  padding: 32px 0;
  border-top: 1px solid #2a2a2a;
}
.post-summary:first-child {
  border-top: none;
  padding-top: 0;
}
.post-date {
  color: #999999;
  margin: 0 0 8px;
}
.post-more {
  color: #a3a3a3;
  font-weight: 600;
}
footer {
  padding: 40px 0 64px;
  text-align: center;
  color: #999999;
}
footer a {
  color: #a3a3a3;
}
a {
  color: #ffffff;
}
body.lightbox-open {
  overflow: hidden;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-cap {
  color: #ffffff;
  font-size: var(--fs-medium);
  text-align: center;
  margin: 16px 0 0;
  max-width: 560px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 12px;
}
.lightbox-close {
  top: 16px;
  right: 16px;
  font-size: var(--fs-large);
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fs-xlarge);
  line-height: 1;
}
.lightbox-prev {
  left: 8px;
}
.lightbox-next {
  right: 8px;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #a3a3a3;
}
