@font-face {
  font-family: "Archivo";
  src: url("/assets/Archivo-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("/assets/Archivo-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/Oswald-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/Oswald-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #eef0ee;
  --white: #fafbf9;
  --ink: #0b1113;
  --graphite: #596164;
  --line: #b7bdbd;
  --teal: #0f6579;
  --teal-dark: #094b5a;
  --impact: #ca3d06;
  --impact-dark: #8e2a05;
  --measure: 78rem;
  --gutter: clamp(1rem, 4vw, 3.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Archivo", sans-serif;
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-color: var(--impact);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--impact-dark);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--measure));
  margin: 0 auto;
}

.site-header {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 2px solid var(--ink);
}

.site-header-dark {
  position: relative;
  z-index: 10;
  min-height: 5.5rem;
  padding-right: max(var(--gutter), calc((100vw - var(--measure)) / 2));
  padding-left: max(var(--gutter), calc((100vw - var(--measure)) / 2));
  border: 0;
  color: var(--white);
  background: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 12rem;
  height: 3.25rem;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0);
}

.site-header-dark .brand img {
  filter: none;
}

.site-nav,
.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.25rem;
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a,
.landing-footer nav a {
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.landing-footer nav a:hover,
.landing-footer nav a:focus-visible {
  color: inherit;
  border-color: var(--impact);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.4rem, 8.5vw, 7.8rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.7rem, 6.5vw, 5.8rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  letter-spacing: -0.015em;
}

.eyebrow,
.section-number,
.datum,
.plate-label,
.form-note,
.meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.section-number {
  color: var(--impact);
}

.lede {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: #2f383b;
  font-size: clamp(1.1rem, 2.1vw, 1.42rem);
  line-height: 1.48;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.25rem;
  margin-top: 2rem;
}

.button,
button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--white);
  background: var(--ink);
  font: 600 0.74rem/1 "Archivo", sans-serif;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 120ms ease, background-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}

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

.button-light {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.button:hover,
.button:focus-visible,
button:hover,
button:focus-visible {
  color: var(--white);
  background: var(--impact-dark);
  box-shadow: 0.35rem 0.35rem 0 var(--ink);
  transform: translate(-0.14rem, -0.14rem);
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow: 0.35rem 0.35rem 0 var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link-light {
  color: var(--white);
  text-decoration-color: var(--white);
}

.text-link-light:hover,
.text-link-light:focus-visible {
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0 2.5rem;
  border-top: 2px solid var(--ink);
  color: var(--graphite);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.landing-footer {
  width: 100%;
  align-items: center;
  padding: 1.6rem max(var(--gutter), calc((100vw - var(--measure)) / 2));
  border-top: 1px solid #3c4446;
  color: #b9c0c1;
  background: var(--ink);
}

.landing-footer nav {
  gap: 1rem;
}

.page-header {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem 2rem;
  padding: clamp(4rem, 9vw, 7rem) 0 3rem;
  border-bottom: 3px solid var(--ink);
}

.page-header > div {
  grid-column: 2;
}

.page-header h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 8vw, 6.8rem);
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
  gap: 1.5rem 3rem;
  padding: 3rem 0 6rem;
}

.policy-grid section {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  padding: 0 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.policy-grid section:last-child {
  border-bottom: 0;
}

.policy-grid h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.policy-grid p,
.policy-grid ul {
  max-width: 49rem;
  margin-top: 0;
}

.policy-grid li + li {
  margin-top: 0.6rem;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.62fr);
  gap: clamp(2rem, 7vw, 6rem);
  padding: 3rem 0 6rem;
}

.confirmation-page {
  display: grid;
  min-height: calc(100svh - 9rem);
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.45fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.confirmation-copy h1 {
  max-width: 10ch;
}

.confirmation-mark {
  display: grid;
  width: min(100%, 22rem);
  aspect-ratio: 1;
  place-items: center;
  border: 0.7rem solid var(--ink);
  color: var(--white);
  background: var(--teal);
  box-shadow: 1rem 1rem 0 var(--impact);
  font: 700 clamp(5rem, 12vw, 9rem)/1 "Archivo", sans-serif;
}

form {
  display: grid;
  gap: 1.15rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: 1rem/1.4 "Archivo", sans-serif;
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--impact);
  outline-offset: 2px;
}

.form-note {
  color: var(--graphite);
  line-height: 1.55;
  text-transform: none;
}

.instrument-card {
  position: relative;
  align-self: start;
  padding: 1.5rem;
  border-top: 0.55rem solid var(--teal);
  color: var(--white);
  background: var(--ink);
}

.instrument-card::before {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--white);
  border-radius: 50%;
  content: "";
}

.instrument-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.instrument-card p {
  margin: 0.6rem 0 0;
}

.quiet-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #4a5254;
}

.visually-hidden,
.honeypot {
  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) {
  .landing-hero {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.58fr);
    gap: 2rem;
  }

  .landing-hero::after {
    width: 30%;
  }

  .section-heading {
    grid-template-columns: 6rem minmax(0, 1fr);
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .procedure-copy {
    grid-column: 1 / 7;
  }

  .screen-plate {
    grid-column: 8 / 13;
  }

  .plate-label {
    right: -1.5rem;
  }

  .faq-section {
    grid-template-columns: minmax(12rem, 0.5fr) minmax(0, 1.5fr);
    gap: 3rem;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .site-footer,
  .landing-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header-dark {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand img {
    width: 10rem;
    height: 2.75rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.35rem 0.7rem;
    font-size: 0.63rem;
  }

  .landing-hero {
    display: block;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .landing-hero::after {
    top: auto;
    left: 0;
    width: 100%;
    height: 37%;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .product-stage {
    width: min(92%, 23rem);
    margin-top: 4rem;
    padding-left: 0;
  }

  .product-stage figcaption {
    right: -0.5rem;
  }

  .field-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .field-strip span:nth-child(2) {
    border-right: 0;
  }

  .field-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid #394044;
  }

  .section-heading,
  .procedure-grid,
  .evidence-section,
  .proof-layout,
  .privacy-band,
  .faq-section,
  .page-header,
  .policy-grid,
  .policy-grid section,
  .support-layout {
    display: block;
  }

  .confirmation-page {
    display: block;
  }

  .confirmation-mark {
    width: min(80%, 18rem);
    margin-top: 4rem;
  }

  .section-heading .section-number {
    display: block;
    margin-bottom: 1rem;
  }

  .section-heading > p:last-child {
    margin-top: 1.5rem;
  }

  .procedure-grid {
    padding-top: 3rem;
  }

  .procedure-copy,
  .screen-plate,
  .target-plot {
    margin-top: 3.5rem;
  }

  .screen-plate {
    width: min(90%, 22rem);
    justify-self: auto;
    margin-right: auto;
    margin-left: auto;
  }

  .target-plot {
    width: 100%;
  }

  .procedure-copy-last {
    margin-bottom: 1rem;
  }

  .evidence-section,
  .privacy-band {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .instrument-ledger,
  .privacy-band > div:last-child,
  .proof-layout > * + *,
  .faq-list,
  .policy-grid section,
  .support-layout > * + * {
    margin-top: 2.5rem;
  }

  .instrument-ledger div {
    display: block;
  }

  .instrument-ledger dd {
    margin-top: 0.45rem;
  }

  .privacy-band > div:last-child {
    padding-top: 1.5rem;
  }

  .page-header .section-number {
    display: block;
    margin-bottom: 0.75rem;
  }

  .policy-grid section {
    padding-bottom: 2rem;
  }

  .policy-grid section h2 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 420px) {
  .site-nav a:nth-child(2) {
    display: none;
  }

  .product-stage figcaption {
    min-width: 8.5rem;
  }

  .spec-line,
  .target-plot figcaption {
    display: block;
  }

  .spec-line strong,
  .target-plot figcaption strong {
    display: block;
    margin-top: 0.25rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Landing page: cold range photography, real product screens, no instrument-panel decoration. */
.landing-page {
  color-scheme: dark;
  --landing-bg: #090d0e;
  --landing-panel: #111719;
  --landing-panel-raised: #182023;
  --landing-ink: #f2f4f1;
  --landing-muted: #aeb7b5;
  --landing-line: rgba(242, 244, 241, 0.18);
  --landing-accent: #d55b2d;
  margin: 0;
  overflow-x: hidden;
  color: var(--landing-ink);
  background: var(--landing-bg);
}

.landing-page .landing-nav {
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 5rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--landing-line);
  color: var(--landing-ink);
  background: var(--landing-bg);
}

.landing-page .brand img {
  width: 20rem;
  height: auto;
  max-height: 4.35rem;
}

.landing-page .site-nav {
  flex-wrap: nowrap;
}

.landing-page .site-nav a,
.landing-page .landing-footer a {
  color: var(--landing-ink);
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  color: var(--landing-ink);
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}

.launch-hero {
  display: grid;
  min-height: calc(100dvh - 5rem);
  grid-template-rows: auto minmax(21rem, 1fr);
  padding: clamp(3.25rem, 7vh, 5rem) max(var(--gutter), calc((100vw - var(--measure)) / 2)) 0;
  background: var(--landing-bg);
}

.launch-hero .hero-copy {
  display: flex;
  width: min(100%, 44rem);
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 clamp(2.5rem, 5vh, 3.75rem);
}

.launch-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 6.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.launch-hero .hero-copy > p {
  max-width: 34rem;
  margin: 1.8rem 0 0;
  color: var(--landing-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 2.2rem;
}

.landing-page .button-impact {
  min-height: 3.2rem;
  border-color: var(--landing-accent);
  color: #090d0e;
  background: var(--landing-accent);
}

.landing-page .button-impact:hover,
.landing-page .button-impact:focus-visible {
  border-color: #ee794d;
  color: #090d0e;
  background: #ee794d;
  box-shadow: none;
  transform: translateY(-2px);
}

.landing-page .text-link-light {
  color: var(--landing-ink);
  text-decoration-color: var(--landing-accent);
}

.landing-page .text-link-light:hover,
.landing-page .text-link-light:focus-visible {
  color: var(--landing-ink);
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 21rem;
  margin: 0;
  overflow: hidden;
}

.hero-photo::after {
  content: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.78) contrast(1.03) brightness(0.9);
}

.promise-line {
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
  border-bottom: 1px solid var(--landing-line);
  background: var(--landing-panel);
}

.promise-line p {
  width: min(100%, var(--measure));
  margin: 0 auto;
  color: var(--landing-muted);
  font-size: clamp(1.3rem, 2.6vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.promise-line strong {
  color: var(--landing-accent);
  font-weight: 600;
}

.measurement-story,
.target-story,
.ballistics-story,
.privacy-story,
.landing-page .faq-section,
.landing-page .release-band {
  width: min(100%, var(--measure));
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) var(--gutter);
}

.story-heading {
  max-width: 58rem;
}

.story-heading h2,
.target-copy h2,
.ballistics-intro h2,
.privacy-story h2,
.landing-page .faq-section h2,
.landing-page .release-band h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

.story-heading p,
.target-copy > p,
.ballistics-intro > p,
.privacy-story > div p,
.landing-page .release-band > p {
  max-width: 45rem;
  margin: 1.5rem 0 0;
  color: var(--landing-muted);
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  line-height: 1.55;
}

.measurement-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.app-shot {
  position: relative;
  margin: 0;
}

.app-shot img {
  width: 100%;
  border: 1px solid var(--landing-line);
  background: var(--landing-panel-raised);
  box-shadow: none;
}

.app-shot-measure {
  width: min(100%, 26rem);
}

.measurement-copy {
  display: grid;
  gap: 0;
}

.measurement-copy article {
  padding: 1.8rem 0;
}

.measurement-copy article + article {
  border-top: 1px solid var(--landing-line);
}

.measurement-copy h3,
.proof-note h3 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1;
}

.measurement-copy p,
.proof-note p,
.ballistics-grid dd {
  max-width: 36rem;
  margin: 0.75rem 0 0;
  color: var(--landing-muted);
  line-height: 1.55;
}

.target-story {
  display: grid;
  grid-template-columns: minmax(17rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
  border-top: 1px solid var(--landing-line);
}

.app-shot-targets {
  width: min(100%, 24rem);
  justify-self: center;
}

.target-copy {
  align-self: center;
}

.target-note {
  padding-left: 1.25rem;
  border-left: 3px solid var(--landing-accent);
}

.ballistics-story {
  width: 100%;
  max-width: none;
  padding-right: max(var(--gutter), calc((100vw - var(--measure)) / 2));
  padding-left: max(var(--gutter), calc((100vw - var(--measure)) / 2));
  background: var(--landing-panel);
}

.ballistics-intro {
  max-width: var(--measure);
}

.ballistics-grid {
  display: grid;
  max-width: var(--measure);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  border-top: 1px solid var(--landing-line);
}

.ballistics-grid div {
  min-height: 13rem;
  padding: 1.6rem 1.8rem 1.8rem 0;
}

.ballistics-grid div + div {
  padding-left: 1.8rem;
  border-left: 1px solid var(--landing-line);
}

.ballistics-grid dt {
  color: var(--landing-ink);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.ballistics-grid dd {
  margin-left: 0;
}

.proof-note {
  max-width: var(--measure);
  margin-top: 1rem;
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--landing-line);
}

.proof-note h3 {
  max-width: 18ch;
}

.privacy-story {
  padding-top: clamp(7rem, 13vw, 12rem);
  padding-bottom: clamp(7rem, 13vw, 12rem);
}

.privacy-story > div {
  max-width: 48rem;
  margin-top: 2rem;
}

.privacy-story .text-link {
  margin-top: 1rem;
}

.landing-page .faq-section {
  display: block;
  border-top: 1px solid var(--landing-line);
}

.landing-page .faq-section header {
  max-width: 48rem;
}

.landing-page .faq-list {
  max-width: 62rem;
  margin: 3.5rem 0 0 auto;
  border-top: 1px solid var(--landing-line);
}

.landing-page .faq-list details {
  border-bottom: 1px solid var(--landing-line);
}

.landing-page .faq-list summary {
  color: var(--landing-ink);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.2rem, 2.3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.landing-page .faq-list summary::after {
  color: var(--landing-accent);
}

.landing-page .faq-list details p {
  color: var(--landing-muted);
}

.landing-page .release-band {
  width: 100%;
  max-width: none;
  padding-right: max(var(--gutter), calc((100vw - var(--measure)) / 2));
  padding-left: max(var(--gutter), calc((100vw - var(--measure)) / 2));
  border-top: 1px solid var(--landing-line);
  color: var(--landing-ink);
  background: var(--landing-panel);
}

.landing-page .release-band h2 {
  max-width: 12ch;
}

.landing-page .landing-footer {
  border-top-color: var(--landing-line);
  color: var(--landing-muted);
  background: var(--landing-bg);
}

@media (prefers-color-scheme: light) {
  .landing-page {
    color-scheme: light;
    --landing-bg: #eef0ee;
    --landing-panel: #e3e7e5;
    --landing-panel-raised: #f8faf8;
    --landing-ink: #0b1113;
    --landing-muted: #4d5858;
    --landing-line: rgba(11, 17, 19, 0.18);
  }

  .landing-page .landing-nav {
    background: var(--landing-bg);
  }

  .landing-page .brand img {
    filter: brightness(0);
  }
}

@media (max-width: 980px) {
  .ballistics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ballistics-grid div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--landing-line);
    border-left: 0;
  }

  .ballistics-grid div:nth-child(4) {
    border-top: 1px solid var(--landing-line);
  }
}

@media (max-width: 760px) {
  .landing-page .landing-nav {
    min-height: 4.75rem;
    align-items: center;
    flex-direction: row;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .landing-page .brand img {
    width: 15rem;
    max-height: 3.6rem;
  }

  .landing-page .site-nav {
    width: auto;
    justify-content: flex-end;
  }

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

  .launch-hero {
    min-height: calc(100dvh - 4.75rem);
    grid-template-rows: auto minmax(18rem, 1fr);
    padding: 3rem 1rem 0;
  }

  .launch-hero .hero-copy {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
    padding: 0 0 2.5rem;
    border: 0;
  }

  .launch-hero h1 {
    max-width: none;
    font-size: clamp(3.4rem, 14vw, 4.8rem);
    line-height: 0.96;
  }

  .hero-photo {
    height: 100%;
    min-height: 18rem;
  }

  .promise-line {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .measurement-story,
  .target-story,
  .ballistics-story,
  .privacy-story,
  .landing-page .faq-section,
  .landing-page .release-band {
    width: 100%;
    padding: 6rem 1rem;
  }

  .measurement-layout,
  .target-story {
    display: block;
  }

  .app-shot-measure,
  .app-shot-targets {
    width: min(86%, 23rem);
    margin-right: auto;
    margin-left: auto;
  }

  .measurement-copy,
  .target-copy {
    margin-top: 4rem;
  }

  .ballistics-grid {
    display: block;
  }

  .ballistics-grid div,
  .ballistics-grid div + div,
  .ballistics-grid div:nth-child(3),
  .ballistics-grid div:nth-child(4) {
    min-height: auto;
    padding: 1.6rem 0;
    border-top: 1px solid var(--landing-line);
    border-left: 0;
  }

  .landing-page .faq-list {
    margin-top: 2.5rem;
  }

  .landing-page .landing-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .landing-page .brand img {
    width: 14rem;
  }

  .landing-page .site-nav a:first-child {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-hero h1 {
    font-size: clamp(3.15rem, 15vw, 4rem);
  }
}
