:root {
  --bg: #ededed;
  --bg-deep: #e2e2e2;
  --paper: #f7f7f7;
  --ink: #3a322f;
  --ink-soft: #6a5e59;
  --line: #d4d4d4;
  --accent: #5c4f4c;
  --accent-2: #8a6f6a;
  --halo: rgb(58 50 47 / 0.08);
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "Source Sans 3", "Source Sans Pro", "Avenir Next", "Segoe UI", sans-serif;
  --phone-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --phone-bezel: #4f4340;
  --phone-screen: #f4f3f1;
  --phone-card: #ffffff;
  --phone-muted: #6e6a66;
  --phone-line: #e6e2dc;
  --phone-preview: #eceae6;
  --phone-thumb: #d8d5d0;
  --max: 68rem;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1c1916;
    --bg-deep: #141210;
    --paper: #26211d;
    --ink: #f3ead0;
    --ink-soft: #c2b6a6;
    --line: #4a423a;
    --accent: #e4d3b0;
    --accent-2: #c4a8a2;
    --halo: rgb(0 0 0 / 0.35);
    --phone-bezel: #e8dcc0;
    --phone-screen: #1c1b19;
    --phone-card: #2a2724;
    --phone-muted: #b4aaa2;
    --phone-line: #3d3833;
    --phone-preview: #35312d;
    --phone-thumb: #4a4440;
    color-scheme: dark;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(900px 480px at 100% 0%, rgba(92, 79, 76, 0.07), transparent 45%), var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
}
@media (prefers-color-scheme: dark) {
  body {
    background: radial-gradient(1000px 480px at 8% -8%, rgba(243, 234, 208, 0.06), transparent 50%), var(--bg);
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
}
a:hover {
  color: var(--accent-2);
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 20;
  padding: 0.4rem 0.7rem;
  background: var(--paper);
  color: var(--ink);
}
.skip:focus {
  top: 0.75rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wrap {
  width: min(var(--max), 100% - 2.5rem);
  margin-inline: auto;
}
@media (max-width: 560px) {
  .wrap {
    width: min(var(--max), 100% - 1.5rem);
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}
.brand img {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: none;
  box-shadow: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 560;
  letter-spacing: -0.02em;
}
@media (max-width: 560px) {
  .brand-name {
    display: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.35rem;
  font-size: 0.95rem;
}
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
}
.nav a:hover, .nav a[aria-current=page] {
  color: var(--ink);
}
@media (max-width: 560px) {
  .nav {
    gap: 0.7rem 0.95rem;
    font-size: 0.88rem;
  }
}

.site-footer {
  padding: 1.5rem 0 2.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}
.site-footer a {
  color: var(--ink-soft);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3.5rem;
  align-items: center;
  padding: 2.25rem 0 1.5rem;
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.15rem);
  font-optical-sizing: auto;
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-top: 1.25rem;
  }
}

.kicker {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lede {
  max-width: 34rem;
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.5;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  align-items: baseline;
  margin: 0 0 1.75rem;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.price-row strong {
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}
.btn:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}
.btn-quiet {
  background: transparent;
  color: var(--ink);
}
.btn-quiet:hover {
  background: transparent;
  color: var(--accent-2);
  border-color: var(--accent-2);
}

.device-banner {
  padding: 0 0 3.5rem;
}
.device-banner img {
  display: block;
  width: min(100%, 64rem);
  height: auto;
  margin-inline: auto;
}

.platforms {
  margin: 1.15rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.platforms a {
  color: inherit;
  text-underline-offset: 0.15em;
}
.platforms a:hover {
  color: var(--accent);
}

.phone-stage {
  justify-self: end;
}
@media (max-width: 860px) {
  .phone-stage {
    justify-self: center;
  }
}

.phone {
  --phone-w: 18.15rem;
  width: var(--phone-w);
  height: 38.1rem;
  padding: 0.62rem;
  border: 2px solid var(--phone-bezel);
  border-radius: 2.6rem;
  background: var(--phone-bezel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 28px 50px var(--halo);
}
@media (max-width: 560px) {
  .phone {
    --phone-w: min(18.15rem, 86vw);
    height: min(38.1rem, 148vw);
  }
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border-radius: 2.05rem;
  background: var(--phone-screen);
}

.island {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  z-index: 3;
  width: 5.4rem;
  height: 1.15rem;
  border-radius: 999px;
  background: var(--phone-bezel);
  transform: translateX(-50%);
}

.app-bar {
  display: flex;
  align-items: flex-end;
  height: 3.35rem;
  padding: 0 1rem 0.45rem;
  font-family: var(--phone-ui);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.card-stack {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.feed-card {
  position: absolute;
  top: 0;
  right: 0.7rem;
  left: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  height: 33.3333333333%;
  padding: 0.55rem 0.15rem 0.45rem;
  border-bottom: 1px solid var(--phone-line);
  background: var(--phone-card);
  font-family: var(--phone-ui);
  transform: translate3d(0, calc(var(--slot) * 100%), 0);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.feed-card.is-jumping {
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .feed-card {
    transition: none;
  }
}

.card-top {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr) auto;
  gap: 0.45rem;
  align-items: start;
}

.avatar {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--avatar, #8a6f6a);
  color: #fbf4dc;
  font-size: 0.58rem;
  font-weight: 700;
}

.who {
  min-width: 0;
}
.who-name {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.who-name span {
  margin-left: 0.28rem;
  color: var(--phone-muted);
  font-size: 0.56rem;
  font-weight: 500;
}
.who-handle {
  overflow: hidden;
  color: var(--phone-muted);
  font-size: 0.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.when {
  color: var(--phone-muted);
  font-size: 0.58rem;
}

.card-body {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.link-preview {
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.28rem 0.4rem 0.28rem 0.28rem;
  border-radius: 0.45rem;
  background: var(--phone-preview);
}

.thumb {
  width: 2.15rem;
  height: 1.85rem;
  border-radius: 0.28rem;
  background: var(--phone-thumb);
}

.link-domain {
  overflow: hidden;
  color: var(--phone-muted);
  font-size: 0.55rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  color: var(--phone-muted);
  font-size: 0.55rem;
  white-space: nowrap;
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  height: 3.15rem;
  padding: 0.2rem 0.4rem 0.55rem;
  border-top: 1px solid var(--phone-line);
  background: var(--phone-card);
  color: var(--phone-muted);
  font-family: var(--phone-ui);
  font-size: 0.55rem;
  text-align: center;
}
.app-tabs span {
  display: grid;
  gap: 0.12rem;
  justify-items: center;
}
.app-tabs svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
.app-tabs .is-on {
  color: var(--ink);
}

.home-bar {
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  width: 6.2rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--phone-bezel);
  opacity: 0.45;
  transform: translateX(-50%);
}

.band {
  padding: 0.5rem 0 4.5rem;
}
.band h2 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 560;
  letter-spacing: -0.03em;
}

.section-kicker {
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
}
.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}
@media (max-width: 560px) {
  .feature-list li {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.7rem;
  }
}
.feature-list b {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 560;
  letter-spacing: -0.03em;
}
.feature-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 560;
}
.feature-list p {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  padding: 1.6rem 1.5rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--paper);
}
.price-card p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
}
.price-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-card strong span {
  margin-left: 0.15rem;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.fine {
  margin: 1.15rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.legal {
  padding: 1.5rem 0 4rem;
}
.legal-inner {
  max-width: 40rem;
}
.legal h1 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 560;
  letter-spacing: -0.03em;
}
.legal .updated {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.legal h2 {
  margin: 2rem 0 0.55rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 560;
}
.legal p,
.legal li {
  color: var(--ink-soft);
}
.legal ul {
  padding-left: 1.15rem;
}

.docs .legal-inner {
  max-width: 46rem;
}
.docs h3 {
  margin: 1.35rem 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 560;
}
.docs kbd {
  padding: 0.05em 0.35em;
  border: 1px solid var(--line);
  border-radius: 0.28rem;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 0.88em;
}
.docs .keys {
  white-space: nowrap;
}
.docs .keys kbd {
  margin-inline: 0.12rem;
}
.docs table {
  width: 100%;
  margin: 0.85rem 0 1.4rem;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.docs th,
.docs td {
  padding: 0.45rem 0.75rem 0.45rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.docs th {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.changelog .release {
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}
.changelog .release:first-child {
  padding-top: 0.35rem;
  border-top: 0;
}
.changelog h2 {
  margin: 0 0 0.25rem;
  font-family: var(--serif);
  font-size: 1.7rem;
}
.changelog .release-date {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.changelog h3 {
  margin: 1.15rem 0 0.45rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.changelog ul {
  margin: 0;
  padding-left: 1.15rem;
}
.changelog li {
  margin: 0.4rem 0;
}
.changelog li + li {
  margin-top: 0.55rem;
}
.changelog strong {
  color: var(--ink);
  font-weight: 600;
}

.btn-large {
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
}

.newsletter-cta .hero-actions {
  margin-top: 0.35rem;
}

.newsletter-form {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
  margin: 1.75rem 0 0;
}
.newsletter-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}
.newsletter-form input[type=text],
.newsletter-form input[type=email] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.newsletter-form input[type=text]:focus,
.newsletter-form input[type=email]:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: 1px;
}
.newsletter-form .btn {
  justify-self: start;
  margin-top: 0.25rem;
  cursor: pointer;
}

.newsletter-disclosure {
  margin: 0.25rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}
.newsletter-disclosure:not([open]):not(.is-visible) {
  display: none;
}
.newsletter-disclosure summary {
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.92rem;
  list-style: none;
}
.newsletter-disclosure summary::-webkit-details-marker {
  display: none;
}
.newsletter-disclosure summary:hover {
  color: var(--ink);
}
.newsletter-disclosure[open] summary {
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.newsletter-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}
.newsletter-consent input {
  margin-top: 0.2rem;
}
.newsletter-consent strong {
  color: var(--ink);
}

.newsletter-expect {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}
.newsletter-expect strong {
  color: var(--ink);
}

.newsletter-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-panel {
  margin: 1.75rem 0 0;
}

.cta-panel .btn-large {
  width: 100%;
  max-width: 22rem;
}

.newsletter-block {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.newsletter-block h2 {
  margin: 0 0 0.45rem;
}
.newsletter-block > p {
  margin: 0;
  max-width: 36rem;
  color: var(--ink-soft);
}

/*# sourceMappingURL=site.css.map */
