:root {
  --bg: #faf9f6;
  --text: #1c1b18;
  --muted: #6f6a63;
  --muted-2: #817b74;
  --line: #eee9e1;
  --line-strong: #e7e0d6;
  --accent: #bbb9cd;
  --accent-ink: #5a5676;
  --accent-soft: rgba(187, 185, 205, 0.16);
  --accent-soft-hover: rgba(187, 185, 205, 0.22);
  --max: 780px;
  --shadow-soft: 0 1px 0 rgba(20, 17, 13, 0.02), 0 6px 16px rgba(20, 17, 13, 0.03);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-color: rgba(90, 86, 118, 0.28);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: rgba(90, 86, 118, 0.58);
}

:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 100;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.container-wide {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(238, 233, 225, 0.65);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(58, 52, 88, 0.06);
}

.brand-text {
  display: grid;
  line-height: 1.03;
}

.brand-name {
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--muted-2);
  font-weight: 450;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 540;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  padding: 3px 0;
  border-bottom: 1px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}

.site-nav a:hover {
  color: var(--text);
  border-bottom-color: rgba(90, 86, 118, 0.22);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: rgba(90, 86, 118, 0.34);
}

.landing-main {
  padding-bottom: 34px;
}

.hero {
  padding: clamp(92px, 14vw, 144px) 0 clamp(40px, 7vw, 64px);
}

.hero-eyebrow {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-headline {
  font-size: clamp(2.7rem, 10vw, 5.35rem);
  line-height: 0.93;
  letter-spacing: -0.047em;
  font-weight: 700;
  max-width: 10.4ch;
  text-wrap: balance;
}

.hero-subheadline {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.02rem, 3.6vw, 1.25rem);
  line-height: 1.35;
  max-width: 35ch;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-helper {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 0.82rem;
  letter-spacing: -0.005em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 610;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  transition: background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease, color 120ms ease;
}

.btn-primary {
  background: var(--accent-soft);
  border-color: rgba(187, 185, 205, 0.28);
  color: var(--accent-ink);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--accent-soft-hover);
  border-color: rgba(187, 185, 205, 0.36);
}

.btn-primary:focus-visible {
  outline-offset: 3px;
}

.btn-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: #d8d0c3;
}

.text-link {
  color: var(--muted);
  font-weight: 560;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 86, 118, 0.16);
  padding-bottom: 1px;
  transition: color 120ms ease, border-color 120ms ease;
}

.text-link:hover {
  color: var(--text);
  border-bottom-color: rgba(90, 86, 118, 0.4);
}

.screenshots-section {
  padding: clamp(8px, 2vw, 14px) 0 clamp(36px, 6vw, 52px);
}

.screenshots-heading {
  font-size: clamp(1.06rem, 2.5vw, 1.3rem);
  letter-spacing: -0.015em;
  font-weight: 630;
}

.screenshots-subtext {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: clamp(16px, 2.4vw, 22px);
}

.screenshots-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(16px, 2.2vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 10px;
}

.screenshot-card {
  margin: 0;
  flex: 0 0 min(82vw, 300px);
  width: min(82vw, 300px);
  max-width: 320px;
  scroll-snap-align: start;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(20, 17, 13, 0.07);
}

.feature-statements {
  padding: clamp(14px, 3vw, 20px) 0 clamp(36px, 5vw, 48px);
}

.feature-lines {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.feature-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.feature-name {
  font-weight: 640;
  font-size: 1rem;
  letter-spacing: -0.014em;
  color: var(--text);
}

.feature-copy {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.35;
}

.privacy-note {
  padding: clamp(10px, 2vw, 16px) 0 clamp(54px, 8vw, 72px);
}

.privacy-note p {
  text-align: center;
  color: var(--text);
  font-size: clamp(1.08rem, 3.2vw, 1.26rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.contact-section {
  padding: 0 0 52px;
}

.section-heading {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  font-weight: 640;
}

.section-note {
  margin-top: 6px;
  color: var(--muted);
}

.contact-lines {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-lines a {
  width: fit-content;
  font-size: 0.98rem;
  font-weight: 520;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}

.contact-lines a:hover {
  color: var(--accent-ink);
  border-bottom-color: rgba(90, 86, 118, 0.28);
}

.site-footer {
  padding: 14px 0 28px;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}

.footer-links a:hover {
  color: var(--text);
  border-bottom-color: rgba(90, 86, 118, 0.18);
}

.footer-copy {
  color: var(--muted-2);
}

.legal-main {
  padding: clamp(34px, 6vw, 56px) 0 30px;
}

.legal-card {
  padding: 0;
  background: transparent;
}

.legal-card h1 {
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}

.legal-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

.legal-card h2 {
  margin-top: 24px;
  font-size: 0.99rem;
  letter-spacing: -0.01em;
  font-weight: 650;
}

.legal-card p,
.legal-card li {
  margin-top: 10px;
  color: #403b35;
}

.legal-card ul {
  padding-left: 18px;
  margin-top: 8px;
}

.legal-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 600px) {
  .screenshot-card {
    flex: 0 0 calc((100% - 18px) / 2);
    width: calc((100% - 18px) / 2);
    max-width: 320px;
  }
}

@media (min-width: 560px) {
  .feature-line {
    grid-template-columns: 154px 1fr;
    gap: 10px;
    align-items: baseline;
    padding: 11px 0;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

@media (min-width: 900px) {
  .screenshot-card {
    flex: 0 0 calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3);
    max-width: 320px;
  }

  .hero {
    padding-top: clamp(116px, 14vw, 164px);
  }
}
