:root {
  --bg: #ffffff;
  --ink: #101013;
  --muted: #6b6b74;
  --faint: #9a9aa3;
  --rule: #e6e6e9;
  --panel: #f6f6f7;
  --accent: #0b6bff;
  --btn-bg: #101013;
  --btn-ink: #ffffff;
  --maxw: 60rem;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0b0c;
    --ink: #f4f4f5;
    --muted: #9d9da6;
    --faint: #74747d;
    --rule: #232327;
    --panel: #141416;
    --accent: #6aa4ff;
    --btn-bg: #f4f4f5;
    --btn-ink: #101013;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
        Helvetica, Arial, sans-serif;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-weight: 600; letter-spacing: -.01em; }
.brand img { width: 26px; height: 26px; border-radius: 7px; }
.bar nav { display: flex; align-items: center; gap: 1.5rem; font-size: .94rem; }
.bar nav a { color: var(--muted); text-decoration: none; }
.bar nav a:hover { color: var(--ink); }
.bar .hide-sm { display: none; }
@media (min-width: 640px) { .bar .hide-sm { display: inline; } }

/* ---------- type ---------- */
h1, h2, h3 { letter-spacing: -.028em; line-height: 1.05; margin: 0; font-weight: 650; }
h1 { font-size: clamp(2.4rem, 7.2vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4.6vw, 2.7rem); }
h3 { font-size: 1.06rem; line-height: 1.35; letter-spacing: -.012em; font-weight: 600; }
p { margin: 0; }
.lede { font-size: clamp(1.06rem, 2.1vw, 1.22rem); color: var(--muted); max-width: 34rem; line-height: 1.55; }

.label {
  font-size: .74rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--faint); margin: 0 0 2.2rem;
  display: flex; align-items: center; gap: .8rem;
}
.label::after { content: ""; flex: 1; height: 1px; background: var(--rule); }

section { padding: clamp(4rem, 9vw, 7rem) 0; border-top: 1px solid var(--rule); }
section:first-of-type { border-top: 0; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(3.5rem, 8vw, 6rem); padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.hero h1 { max-width: 20ch; }
.hero .lede { margin-top: 1.5rem; }
.cta-row { margin-top: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.note { font-size: .88rem; color: var(--faint); }

/* Proportioned after Apple's official badge: ~10px corner radius (its artwork
   uses r/height ≈ 0.22, not a pill), the store name roughly twice the size of
   the line above it, and both lines at full opacity. */
.appstore {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--btn-bg); color: var(--btn-ink);
  text-decoration: none; padding: .5rem 1.1rem .55rem;
  border-radius: 10px;
  transition: opacity .15s ease, transform .15s ease;
}
.appstore:hover { opacity: .85; transform: translateY(-1px); }
.appstore svg { width: 24px; height: 29px; fill: currentColor; flex: none; }
.appstore .appstore-text { display: block; }
.appstore .lead { display: block; font-size: .66rem; font-weight: 400; letter-spacing: .005em; line-height: 1.25; }
.appstore .store { display: block; font-size: 1.3rem; font-weight: 550; letter-spacing: -.025em; line-height: 1.15; }

/* ---------- shots ---------- */
.shots {
  display: flex; gap: 1.5rem;
  overflow-x: auto; padding: 0 1.5rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.shots::-webkit-scrollbar { display: none; }
.shots figure { margin: 0; flex: none; width: 244px; scroll-snap-align: center; }
.shots img {
  width: 100%; border-radius: 26px;
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
}
.shots figcaption { margin-top: .9rem; font-size: .88rem; color: var(--muted); text-align: center; }
@media (min-width: 900px) {
  .shots { justify-content: center; padding-left: 1.5rem; padding-right: 1.5rem; gap: 1.75rem; }
  .shots figure { width: 272px; }
}

/* ---------- steps ---------- */
.steps { display: grid; gap: 2.6rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2.4rem; } }
.step .n {
  font-variant-numeric: tabular-nums; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; color: var(--accent); margin-bottom: .9rem;
}
.step p { color: var(--muted); margin-top: .55rem; font-size: .97rem; }

/* ---------- features ---------- */
.features { display: grid; gap: 0; }
@media (min-width: 760px) { .features { grid-template-columns: 1fr 1fr; column-gap: 3.5rem; } }
.feature { padding: 1.5rem 0; border-top: 1px solid var(--rule); }
.feature p { color: var(--muted); margin-top: .4rem; font-size: .97rem; }

/* ---------- statement ---------- */
.statement h2 { max-width: 17ch; }
.statement .lede { margin-top: 1.4rem; }
.statement .cols { display: grid; gap: 1.6rem; margin-top: 2.6rem; }
@media (min-width: 760px) { .statement .cols { grid-template-columns: repeat(3, 1fr); gap: 2.4rem; } }
.statement .cols div strong { display: block; font-weight: 600; font-size: .97rem; }
.statement .cols div span { display: block; color: var(--muted); font-size: .94rem; margin-top: .35rem; }

/* ---------- languages ---------- */
.langs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .4rem; }
.langs span {
  border: 1px solid var(--rule); border-radius: 999px;
  padding: .38rem .85rem; font-size: .9rem; color: var(--muted);
}
.langs span.auto { border-color: var(--accent); color: var(--accent); }

/* ---------- plans ---------- */
.plans { display: grid; gap: 1rem; }
@media (min-width: 760px) { .plans { grid-template-columns: 1fr 1fr; gap: 1.2rem; } }
.plan { border: 1px solid var(--rule); border-radius: 18px; padding: 1.8rem; background: var(--panel); }
.plan.pro { background: transparent; border-color: color-mix(in srgb, var(--accent) 45%, var(--rule)); }
.plan .name { font-size: .78rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--faint); }
.plan.pro .name { color: var(--accent); }
/* Sits where a price used to. It carries a positioning line ("For everyday
   posting"), so it is sized as a subheading rather than as a number. */
.plan .tagline { font-size: 1.15rem; font-weight: 600; letter-spacing: -.015em; margin: .55rem 0 1.3rem; }
.plan ul { list-style: none; margin: 0; padding: 0; font-size: .96rem; }
.plan li { color: var(--muted); padding: .42rem 0 .42rem 1.35rem; position: relative; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: .78rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--faint);
}
.plan.pro li::before { background: var(--accent); }
.fineprint { margin-top: 1.6rem; font-size: .84rem; color: var(--faint); max-width: 46rem; line-height: 1.55; }

/* ---------- closing ---------- */
.closing { text-align: center; }
.closing h2 { margin: 0 auto; max-width: 16ch; }
.closing .cta-row { justify-content: center; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--rule); padding: 3rem 0 4rem; font-size: .9rem; color: var(--muted); }
.foot { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; justify-content: space-between; align-items: flex-start; }
.foot nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.foot a { text-decoration: none; color: var(--muted); }
.foot a:hover { color: var(--ink); }
.foot .legal { color: var(--faint); font-size: .84rem; }

/* ---------- language switcher ---------- */
.lang {
  display: inline-flex; align-items: center; gap: .1rem;
  border: 1px solid var(--rule); border-radius: 999px; padding: .15rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
}
.lang a {
  color: var(--faint); text-decoration: none;
  padding: .2rem .5rem; border-radius: 999px; line-height: 1.5;
}
.lang a:hover { color: var(--ink); }
.lang a.active { color: var(--btn-ink); background: var(--btn-bg); }
.lang > span.active { padding: .2rem .5rem; border-radius: 999px; line-height: 1.5; color: var(--btn-ink); background: var(--btn-bg); }
