:root {
  --canvas: #fffefb;
  --paper: #ffffff;
  --soft: #f8f4f0;
  --soft-2: #f0ebe4;
  --ink: #201515;
  --ink-soft: #2f2a26;
  --body: #605d52;
  --muted: #939084;
  --line: #ded8cc;
  --line-strong: #c5c0b1;
  --orange: #ff4f00;
  --orange-dark: #df4500;
  --orange-soft: #fff1ea;
  --green: #35c57a;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--canvas);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.header-inner {
  width: min(calc(100% - 48px), var(--content));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  font-size: 18px;
  font-weight: 750;
  line-height: 1;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 8px;
}

.desktop-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.site-footer nav a {
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.icon-link,
.menu-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.icon-link:hover,
.menu-button:hover {
  border-color: var(--ink);
  background: var(--soft);
}

.icon-link svg,
.menu-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 12px 24px 22px;
  background: var(--canvas);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 120ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  border-color: var(--orange);
  background: var(--orange);
  color: var(--canvas);
  font-size: 14px;
}

.button-small:hover,
.button-primary:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
}

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--canvas);
}

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

.button-secondary:hover {
  background: var(--soft);
}

.hero {
  overflow: hidden;
  background: var(--canvas);
}

.hero-inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 26px 0 18px;
  text-align: center;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--body);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 670;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-statement {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 25px;
  font-weight: 550;
  line-height: 1.25;
}

.hero-description {
  max-width: 680px;
  margin: 10px auto 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.release-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.release-meta span,
.release-meta a {
  position: relative;
}

.release-meta span + span::before,
.release-meta span + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 3px;
  height: 3px;
  background: var(--line-strong);
}

.release-meta a:hover {
  color: var(--orange);
}

.product-frame {
  width: min(100%, 650px);
  margin: 20px auto 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 24px 60px rgba(32, 21, 21, 0.12);
  text-align: left;
}

.product-preview-link {
  display: block;
  background: var(--soft);
}

.product-frame img {
  width: 100%;
  height: auto;
}

.signal-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.signal-grid {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 20px 34px;
  border-left: 1px solid var(--line);
}

.signal-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.signal-grid strong {
  font-size: 17px;
}

.signal-grid span {
  color: var(--body);
  font-size: 13px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  width: min(calc(100% - 48px), 780px);
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.precision-copy h2,
.privacy-copy h2,
.download-inner h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--body);
}

.workflow-grid {
  width: min(calc(100% - 48px), var(--content));
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.workflow-step {
  min-width: 0;
  padding: 34px 30px 38px;
  border-left: 1px solid var(--line);
}

.workflow-step:last-child {
  border-right: 1px solid var(--line);
}

.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--canvas);
  font-size: 12px;
  font-weight: 800;
}

.workflow-step h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.workflow-step p {
  margin: 13px 0 0;
  color: var(--body);
  font-size: 14px;
}

.precision-band {
  background: var(--ink);
  color: var(--canvas);
}

.precision-inner {
  width: min(calc(100% - 48px), var(--content));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 96px;
  padding: 90px 0;
}

.precision-copy .eyebrow {
  justify-content: flex-start;
}

.eyebrow-light {
  color: #c9beb8;
}

.precision-copy > p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: #c9beb8;
}

.precision-list {
  border-top: 1px solid rgba(255, 254, 251, 0.22);
}

.precision-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 254, 251, 0.22);
}

.precision-list svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.precision-list span {
  color: #c9beb8;
  font-size: 14px;
}

.precision-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--canvas);
  font-size: 16px;
}

.privacy {
  background: var(--paper);
}

.privacy-layout {
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 88px;
}

.privacy-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--soft);
}

.privacy-mark img {
  width: 160px;
  height: 160px;
  border-radius: 8px;
}

.privacy-copy .eyebrow {
  justify-content: flex-start;
}

.privacy-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--body);
}

.privacy-copy ul {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.privacy-copy li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 650;
}

.privacy-copy li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--orange);
}

.download-band {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  background: var(--orange-soft);
}

.download-inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 72px;
}

.download-inner .eyebrow {
  justify-content: flex-start;
}

.download-inner h2 {
  max-width: 680px;
}

.download-inner p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--body);
}

.download-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  text-align: center;
}

.download-actions > span {
  color: var(--body);
  font-size: 11px;
  font-weight: 600;
}

.site-footer {
  padding: 44px 0 22px;
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.footer-inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-size: 16px;
}

.copyright {
  margin: 42px 24px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--body);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.not-found {
  min-height: calc(100svh - 76px);
  display: grid;
  place-items: center;
  padding: 40px 24px;
  text-align: center;
}

.not-found > div {
  max-width: 620px;
}

.not-found strong {
  display: block;
  color: var(--orange);
  font-size: 14px;
}

.not-found h1 {
  margin: 10px 0 0;
  font-size: 52px;
  line-height: 1.05;
}

.not-found p {
  margin: 18px 0 28px;
  color: var(--body);
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 79, 0, 0.35);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions > .icon-link,
  .header-actions > .button-small {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero-inner {
    padding-top: 32px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-statement {
    font-size: 23px;
  }

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

  .workflow-step,
  .workflow-step:last-child {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .step-number {
    margin-bottom: 0;
  }

  .precision-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .privacy-layout {
    grid-template-columns: 220px 1fr;
    gap: 48px;
  }

  .download-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
  }

  .download-actions {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-inner,
  .signal-grid,
  .workflow-grid,
  .precision-inner,
  .privacy-layout,
  .download-inner,
  .footer-inner {
    width: min(calc(100% - 32px), var(--content));
  }

  .header-inner {
    min-height: 66px;
  }

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

  .hero-inner {
    padding: 34px 0 26px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-statement {
    margin-top: 14px;
    font-size: 21px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .release-meta {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .release-meta span + span::before,
  .release-meta span + a::before {
    left: -9px;
  }

  .product-frame {
    margin-top: 30px;
  }

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

  .signal-grid > div,
  .signal-grid > div:last-child {
    min-height: 82px;
    padding: 15px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .signal-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    width: min(calc(100% - 32px), 780px);
  }

  .section-heading h2,
  .precision-copy h2,
  .privacy-copy h2,
  .download-inner h2 {
    font-size: 34px;
  }

  .workflow-grid {
    margin-top: 42px;
  }

  .workflow-step,
  .workflow-step:last-child {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px 30px;
  }

  .precision-inner {
    min-height: 0;
    padding: 72px 0;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-mark {
    width: 180px;
  }

  .privacy-mark img {
    width: 104px;
    height: 104px;
  }

  .download-band {
    padding: 70px 0;
  }

  .download-actions,
  .download-actions .button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .copyright {
    margin-top: 30px;
  }

  .not-found h1 {
    font-size: 38px;
  }
}

@media (max-width: 360px) {
  .hero-inner {
    padding-top: 16px;
    padding-bottom: 8px;
  }

  .product-frame {
    width: min(100%, 220px);
    margin-top: 12px;
  }
}

@media (min-width: 901px) and (max-height: 780px) {
  .hero-inner {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-statement {
    margin-top: 12px;
    font-size: 23px;
  }

  .hero-description {
    margin-top: 10px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .release-meta {
    margin-top: 10px;
  }

  .product-frame {
    width: min(100%, 360px);
    margin-top: 24px;
  }
}

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

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