:root {
  --canvas: #f7f7f4;
  --surface: #fbfbf8;
  --ink: #11130f;
  --muted: #6d7068;
  --faint: #e4e5df;
  --soft: #efefeb;
  --blue: #dbeafe;
  --green: #d9f4e4;
  --yellow: #ffed9e;
  --red: #ffdcd2;
  --feature: #f0f0f4;
  --radius: 8px;
  --page: 840px;
  --wide: 1120px;
  --shadow: 0 12px 36px rgb(24 26 20 / 8%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 4px;
}

.page-column,
.wide-column,
.nav-shell,
.footer-shell {
  width: calc(100% - 40px);
  margin-inline: auto;
}

.page-column {
  max-width: var(--page);
}

.wide-column {
  max-width: var(--wide);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(17 19 15 / 5%);
  background: rgb(247 247 244 / 92%);
  backdrop-filter: blur(16px);
}

.nav-shell {
  max-width: 1000px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  display: inline-flex;
  border-radius: 7px;
}

.brand-mark img {
  border-radius: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: #484b44;
}

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

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

.hero {
  padding-block: 92px 112px;
}

.app-icon {
  width: 84px;
  aspect-ratio: 1;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 28px 0 4px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
}

.hero-tagline {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.closing-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.button-primary:hover {
  transform: translateY(-2px);
  background: #292c25;
}

.text-link {
  font-weight: 500;
}

.hero-meta,
.closing-meta {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.story {
  padding-bottom: 116px;
}

.proof-counter {
  margin-bottom: 42px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.counter-value {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--surface);
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 5px 0 #d9dad4;
}

.counter-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.story p {
  margin-bottom: 42px;
  font-size: 24px;
  line-height: 1.6;
}

.story-lead {
  font-weight: 500;
}

mark {
  padding: 0 4px;
  border-radius: 3px;
  color: inherit;
}

.mark-yellow {
  background: var(--yellow);
}

.mark-green {
  background: var(--green);
}

.mark-blue {
  background: var(--blue);
}

code {
  padding: 2px 7px;
  border-radius: 4px;
  background: #e9eae5;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82em;
}

.inline-reference {
  padding: 0 4px 2px;
  border: 1px solid #de6e53;
  border-radius: 4px;
  color: #a6331b;
  text-decoration: none;
}

.screenshots {
  padding-bottom: 128px;
}

.section-heading {
  width: 100%;
  margin-bottom: 34px;
}

.eyebrow {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h2,
.features > h2,
.comparison > h2 {
  margin-bottom: 28px;
  font-size: 32px;
  line-height: 1.2;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.screenshot-grid a {
  display: block;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-grid a:hover {
  transform: translateY(-7px);
}

.screenshot-grid img {
  width: 100%;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
}

.features {
  padding-bottom: 126px;
}

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

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card svg {
  width: 20px;
  height: 20px;
  margin-bottom: 30px;
  color: #565a51;
  stroke-width: 1.6;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.25;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.comparison {
  padding-bottom: 136px;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--faint);
  text-align: left;
  font-weight: 400;
}

thead th,
tbody th {
  font-weight: 600;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.featured-column {
  background: var(--feature);
  color: var(--ink);
  font-weight: 600;
}

.table-note {
  margin: 13px 0 0;
  color: #90938b;
  font-size: 11px;
  text-align: center;
}

.closing {
  padding-bottom: 124px;
}

.closing h2 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: 46px;
  line-height: 1.25;
  font-weight: 500;
  color: #85887f;
}

.closing h2 strong {
  color: var(--ink);
  font-weight: 700;
}

.closing h2 span {
  color: #5a5d55;
}

.site-footer {
  border-top: 1px solid var(--faint);
  background: #f0f0ed;
}

.footer-shell {
  max-width: 1000px;
  min-height: 220px;
  padding-block: 56px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-shell img {
  border-radius: 8px;
}

.footer-shell p {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 10px 28px;
  align-content: start;
  font-size: 13px;
  color: var(--muted);
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
}

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: min(420px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid #d7d8d1;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 60px rgb(24 26 20 / 16%);
}

.consent-banner p {
  margin-bottom: 14px;
  color: #484b44;
  font-size: 14px;
  line-height: 1.45;
}

.consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.consent-button {
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.consent-button-primary {
  background: var(--ink);
  color: var(--surface);
}

.consent-button-secondary {
  background: transparent;
  color: var(--ink);
}

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

@media (max-width: 900px) {
  h1 {
    font-size: 42px;
  }

  .story p {
    font-size: 21px;
  }

  .screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
    margin-inline: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .page-column,
  .wide-column,
  .nav-shell,
  .footer-shell {
    width: calc(100% - 28px);
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3) {
    display: none;
  }

  .hero {
    padding-block: 66px 86px;
  }

  .app-icon {
    width: 72px;
    border-radius: 16px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-actions,
  .closing-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .story,
  .screenshots,
  .features,
  .comparison {
    padding-bottom: 90px;
  }

  .proof-counter {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .story p {
    margin-bottom: 34px;
    font-size: 19px;
    line-height: 1.58;
  }

  .section-heading h2,
  .features > h2,
  .comparison > h2 {
    font-size: 27px;
  }

  .screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 190px;
  }

  .closing {
    padding-bottom: 86px;
  }

  .closing h2 {
    font-size: 34px;
  }

  .footer-shell {
    min-height: 260px;
    flex-direction: column;
  }

  .consent-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
