:root {
  --paper: #f8f8f4;
  --ink: #111315;
  --muted: #5d646b;
  --soft: #eceff1;
  --panel: #ffffff;
  --line: #d7d9d8;
  --green: #207948;
  --orange: #f28b21;
  --bluegray: #dfe7eb;
  --rail: min(1080px, calc(100vw - 40px));
  --article: min(700px, calc(100vw - 40px));
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, var(--paper) 340px),
    var(--paper);
  color: var(--ink);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

.site-header {
  align-items: center;
  background: rgba(248, 248, 244, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 12px max(20px, calc((100vw - var(--rail)) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.brand img {
  height: 30px;
  width: 30px;
}

.nav-links {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 22px;
}

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

.hero {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  margin: 0 auto;
  min-height: calc(100svh - 55px);
  padding: clamp(44px, 8vw, 94px) 0 clamp(34px, 6vw, 74px);
  width: var(--rail);
}

.hero-copy {
  align-self: center;
  max-width: 700px;
}

.section-label,
.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 850;
  line-height: 1.04;
  margin-top: 18px;
  max-width: 760px;
  text-wrap: balance;
}

.dek {
  color: #31373d;
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.58;
  margin-top: 22px;
  max-width: 650px;
}

.byline {
  align-items: center;
  border-left: 3px solid var(--orange);
  color: var(--muted);
  display: flex;
  font-size: 14px;
  gap: 12px;
  line-height: 1.35;
  margin-top: 24px;
  padding-left: 14px;
}

.founder-byline img {
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.founder-byline div {
  display: grid;
  gap: 3px;
}

.founder-byline span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.hero-download-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  margin-top: 24px;
  max-width: 520px;
  padding: 14px 16px 16px;
}

.hero-download-panel p {
  color: #313b43;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.hero-download-panel .store-row {
  margin-top: 10px;
}

.store-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-row.centered {
  justify-content: center;
}

.badge-link {
  align-items: center;
  display: inline-flex;
  min-height: 48px;
}

.badge-link img {
  height: 48px;
  object-fit: contain;
  width: auto;
}

.apple-link img {
  height: 40px;
}

.google-link img {
  height: 58px;
}

.availability {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  margin-top: 6px;
}

.brand:focus-visible,
.nav-links a:focus-visible,
.badge-link:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(32, 121, 72, 0.28);
  outline-offset: 4px;
}

.hero-figure {
  align-self: center;
  justify-self: end;
  width: min(100%, 700px);
}

.hero-figure img {
  margin: 0 auto;
  object-fit: contain;
}

.app-flow-figure img {
  filter: drop-shadow(0 26px 42px rgba(17, 19, 21, 0.12));
  max-height: none;
}

figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 13px;
  text-align: center;
}

.article-section,
.workflow-section,
.faq-section,
.final-cta {
  margin: 0 auto;
  width: var(--article);
}

.article-section {
  border-top: 1px solid var(--line);
  padding-top: clamp(38px, 7vw, 72px);
  margin-top: clamp(34px, 7vw, 72px);
}

.section-copy h2,
.workflow-intro h2,
.download-band h2,
.faq-section h2,
.final-cta h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 850;
  line-height: 1.12;
  margin-top: 12px;
}

.section-copy p:not(.eyebrow),
.workflow-intro p,
.download-band p,
.faq-list p,
.final-cta p {
  color: #313b43;
  font-size: 18px;
  line-height: 1.72;
}

.section-copy h2 + p,
.section-copy p + p,
.workflow-intro h2 + p,
.download-band h2 + p,
.final-cta h2 + p {
  margin-top: 18px;
}

.pullquote {
  border-left: 4px solid var(--orange);
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  margin-top: 32px;
  padding-left: 18px;
}

.split {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 260px;
  width: var(--rail);
}

.split .section-copy {
  justify-self: end;
  max-width: 760px;
}

.field-note {
  align-self: start;
  background: #111315;
  color: #fff;
  padding: 24px;
}

.field-note .note-label {
  color: #a7d9b9;
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-note p {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 12px;
}

.workflow-section {
  border-top: 1px solid var(--line);
  margin-top: clamp(44px, 7vw, 82px);
  padding-top: clamp(38px, 7vw, 72px);
  width: var(--rail);
}

.workflow-intro {
  margin: 0 auto;
  max-width: 760px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1px;
  list-style: none;
  margin: clamp(28px, 5vw, 44px) auto 0;
  max-width: 960px;
  padding: 0;
}

.steps li {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 32px);
}

.steps span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.steps h3,
.benefits h3 {
  font-size: 22px;
  line-height: 1.15;
}

.steps p,
.benefits p,
.price-table p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.workflow-proof {
  margin: clamp(28px, 5vw, 44px) auto 0;
  max-width: 330px;
}

.workflow-proof img {
  background: transparent;
  clip-path: inset(0 0 0 5px);
  filter: drop-shadow(0 18px 32px rgba(17, 19, 21, 0.12));
  height: auto;
  object-fit: contain;
  width: 100%;
}

.benefits {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.benefits div,
.price-table div {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 24px;
}

.benefits p {
  margin-top: 10px;
}

.download-band {
  align-items: center;
  background: #111315;
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: clamp(48px, 8vw, 86px) auto 0;
  padding: clamp(28px, 5vw, 44px);
  width: var(--rail);
}

.download-band .eyebrow {
  color: #a7d9b9;
}

.download-band p {
  color: #d9dde1;
  max-width: 620px;
}

.download-band .store-row {
  justify-content: flex-end;
  margin-top: 0;
  min-width: 300px;
}

.pricing-section {
  width: var(--article);
}

.price-note {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  padding: 18px 20px;
}

.price-note span {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-note p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  margin-top: 8px;
}

.price-table strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  margin-top: 8px;
}

.price-table p {
  margin-top: 8px;
}

.faq-section {
  border-top: 1px solid var(--line);
  margin-top: clamp(42px, 7vw, 72px);
  padding-top: clamp(38px, 7vw, 72px);
}

.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

summary::marker {
  color: var(--orange);
}

details p {
  margin-top: 12px;
}

.final-cta {
  padding: clamp(48px, 8vw, 86px) 0 clamp(86px, 10vw, 120px);
  text-align: center;
}

.final-cta p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
}

.mobile-download-bar {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --rail: min(100vw - 28px, 760px);
    --article: min(100vw - 34px, 720px);
  }

  .site-header {
    padding-left: 17px;
    padding-right: 17px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 34px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-figure img {
    width: min(100%, 680px);
  }

  .split {
    grid-template-columns: 1fr;
    width: var(--article);
  }

  .split .section-copy {
    justify-self: auto;
  }

  .field-note {
    padding: 22px;
  }

  .download-band {
    grid-template-columns: 1fr;
    width: var(--article);
  }

  .download-band .store-row {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 0;
  }

  body.show-mobile-download-bar {
    padding-bottom: 82px;
  }

  .brand {
    font-size: 15px;
  }

  .hero {
    padding-bottom: 24px;
  }

  .hero-download-panel {
    padding: 12px 12px 14px;
  }

  h1 {
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.08;
    max-width: 100%;
  }

  .dek {
    font-size: 18px;
    line-height: 1.58;
  }

  .store-row {
    gap: 8px;
  }

  .badge-link img {
    height: 44px;
  }

  .apple-link img {
    height: 38px;
  }

  .google-link img {
    height: 54px;
  }

  .section-copy p:not(.eyebrow),
  .workflow-intro p,
  .download-band p,
  .faq-list p,
  .final-cta p {
    font-size: 17px;
    line-height: 1.68;
  }

  .section-copy h2,
  .workflow-intro h2,
  .download-band h2,
  .faq-section h2,
  .final-cta h2 {
    font-size: clamp(27px, 7.6vw, 34px);
    line-height: 1.14;
  }

  .workflow-proof {
    max-width: min(100%, 280px);
  }

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

  .download-band {
    margin-top: 48px;
    padding: 28px 22px;
  }

  .download-band .store-row {
    gap: 6px;
  }

  summary {
    font-size: 18px;
  }

  .final-cta {
    padding-bottom: 36px;
  }

  .mobile-download-bar {
    align-items: center;
    background: rgba(17, 19, 21, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    bottom: 0;
    display: grid;
    gap: 4px 8px;
    grid-template-columns: 1fr auto auto;
    left: 0;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(105%);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    z-index: 30;
    backdrop-filter: blur(14px);
  }

  body.show-mobile-download-bar .mobile-download-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-download-bar span {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
  }

  .mobile-download-bar .badge-link {
    min-height: 36px;
  }

  .mobile-download-bar .apple-link img {
    height: 32px;
  }

  .mobile-download-bar .google-link img {
    height: 45px;
  }
}

@media (max-width: 390px) {
  :root {
    --rail: min(100vw - 24px, 760px);
    --article: min(100vw - 28px, 720px);
  }

  .badge-link img {
    height: 40px;
  }

  .apple-link img {
    height: 34px;
  }

  .google-link img {
    height: 48px;
  }

  h1 {
    font-size: clamp(29px, 8vw, 32px);
  }

  .mobile-download-bar {
    grid-template-columns: auto auto;
  }

  .mobile-download-bar span {
    display: none;
  }
}
