:root {
  color-scheme: dark;
  --ink: #f7f2e8;
  --muted: #c8c0af;
  --dim: #8f887b;
  --night: #10110f;
  --forest: #1f3429;
  --field: #7f8b55;
  --brass: #d68b2f;
  --brass-light: #f0b35a;
  --paper: #e8ddc7;
  --line: rgba(247, 242, 232, 0.16);
  --panel: rgba(21, 23, 20, 0.84);
  --panel-solid: #181b17;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 0%, rgba(214, 139, 47, 0.16), transparent 28rem),
    linear-gradient(180deg, #11130f 0%, #191d16 42%, #0f120f 100%);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 15, 13, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.button,
.store-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button {
  padding: 12px 18px;
  border: 1px solid rgba(214, 139, 47, 0.52);
  color: #20150b;
  background: linear-gradient(180deg, var(--brass-light), var(--brass));
  box-shadow: 0 14px 38px rgba(214, 139, 47, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  box-shadow: none;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-width: 166px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: #080908;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.store-button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.store-button span {
  display: block;
  color: #c8c8c8;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.05;
}

.store-button strong {
  display: block;
  font-size: 1rem;
  line-height: 1.12;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(9, 12, 10, 0.88) 0%, rgba(9, 12, 10, 0.58) 43%, rgba(9, 12, 10, 0.08) 100%),
    linear-gradient(180deg, rgba(9, 12, 10, 0.08), rgba(9, 12, 10, 0.74)),
    url("assets/hunt-field.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(180deg, transparent, #11130f);
  z-index: -1;
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 36px;
  align-items: center;
  padding: 58px 0 94px;
}

.eyebrow {
  color: var(--brass-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(3.3rem, 8vw, 7.4rem);
}

.hero p {
  max-width: 650px;
  margin: 22px 0 28px;
  color: #eee4d2;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.hero-proof {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(var(--max), calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(13, 15, 13, 0.72);
  backdrop-filter: blur(16px);
}

.proof-item {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  font-size: 1.35rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.phone-stack {
  position: relative;
  min-height: 540px;
}

.phone {
  position: absolute;
  width: min(310px, 80vw);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: linear-gradient(180deg, #2d312b, #0b0d0c);
  box-shadow: var(--shadow);
}

.phone.primary {
  right: 50px;
  top: 20px;
}

.phone.secondary-phone {
  right: 250px;
  bottom: 12px;
  width: min(260px, 65vw);
  transform: rotate(-5deg);
  opacity: 0.95;
}

.phone-screen {
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(214, 139, 47, 0.14), transparent 32%),
    #111510;
}

.screenshot-phone .phone-screen {
  aspect-ratio: 1290 / 2796;
  background: #eef4e8;
}

.screenshot-phone .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-phone .phone-screen {
  min-height: 0;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.signal {
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.screen-card {
  margin: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.screen-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.solution-grid div {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.solution-grid b {
  display: block;
  color: var(--brass-light);
  font-size: 1.7rem;
  line-height: 1;
}

.mini-table {
  width: calc(100% - 32px);
  margin: 16px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.mini-table th,
.mini-table td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: right;
}

.mini-table th:first-child,
.mini-table td:first-child {
  text-align: left;
}

.reticle-preview {
  width: calc(100% - 32px);
  margin: 16px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  background: #000;
}

.reticle-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding: 54px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.035);
  border-block: 1px solid var(--line);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-header h2,
.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.section-header p,
.page-hero p,
.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-card,
.support-card,
.manual-card,
.contact-panel,
.callout,
.spec-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.feature-card {
  min-height: 210px;
  padding: 22px;
}

.feature-card svg,
.manual-card svg,
.support-card svg {
  width: 28px;
  height: 28px;
  color: var(--brass-light);
}

.feature-card h3,
.support-card h3,
.manual-card h3 {
  margin-top: 18px;
  font-size: 1.18rem;
}

.feature-card p,
.support-card p,
.manual-card p,
.spec-row p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #070807;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tool-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.privacy-band {
  background:
    linear-gradient(90deg, rgba(31, 52, 41, 0.96), rgba(18, 22, 18, 0.95)),
    url("assets/reticle-card.png");
  background-size: cover;
  background-position: center;
}

.privacy-band .section-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.privacy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.privacy-list div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
}

.page-hero {
  padding: 78px 0 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(11, 13, 11, 0.92), rgba(11, 13, 11, 0.64)),
    url("assets/hunt-field.jpg");
  background-size: cover;
  background-position: center 42%;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--brass-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.support-grid,
.manual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-card,
.manual-card,
.contact-panel {
  padding: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
}

.contact-item span {
  display: block;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.form-shell label {
  display: block;
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 700;
}

.form-shell input,
.form-shell textarea,
.manual-search input {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(0, 0, 0, 0.26);
  font: inherit;
}

.form-shell textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note,
.tiny {
  color: var(--dim);
  font-size: 0.9rem;
}

.manual-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.manual-nav {
  position: sticky;
  top: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 18, 15, 0.88);
}

.manual-nav a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.manual-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.manual-content {
  display: grid;
  gap: 18px;
}

.manual-section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.manual-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.policy-content h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.policy-content a {
  color: var(--brass-light);
}

.manual-section h3 {
  margin-top: 24px;
  font-size: 1.1rem;
}

.manual-section p,
.manual-section li {
  color: var(--muted);
}

.manual-section li {
  margin: 8px 0;
}

.manual-search {
  margin: 24px 0 0;
  max-width: 560px;
}

.callout {
  padding: 18px;
  border-color: rgba(214, 139, 47, 0.42);
  background: rgba(214, 139, 47, 0.11);
}

.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px;
  margin-top: 12px;
}

.spec-row strong {
  color: var(--brass-light);
}

.cta-band {
  padding: 62px 0;
  background: linear-gradient(90deg, #d68b2f, #7f8b55);
  color: #14150f;
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band p {
  max-width: 650px;
  color: rgba(20, 21, 15, 0.82);
}

.cta-band .button {
  background: #10110f;
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0c0a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  padding: 34px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

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

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .privacy-band .section-inner,
  .contact-layout,
  .manual-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-bottom: 250px;
  }

  .phone-stack {
    min-height: 420px;
  }

  .phone.primary {
    right: 6%;
  }

  .phone.secondary-phone {
    right: 42%;
  }

  .feature-grid,
  .support-grid,
  .manual-grid,
  .privacy-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .manual-nav {
    position: static;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    padding: 18px 20px 26px;
    background: rgba(11, 12, 10, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 14px 10px;
  }

  .hero-inner {
    display: block;
    min-height: calc(100svh - 72px);
    padding-top: 42px;
    padding-bottom: 210px;
  }

  .phone-stack {
    display: none;
  }

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

  .proof-item {
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(n+3) {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  .section-header,
  .cta-band .section-inner {
    display: block;
  }

  .feature-grid,
  .support-grid,
  .manual-grid,
  .privacy-list,
  .tool-list {
    grid-template-columns: 1fr;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 460px) {
  .nav-wrap,
  .section-inner,
  .footer-inner,
  .hero-inner,
  .hero-proof {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: 3rem;
  }

  .hero-proof {
    bottom: 14px;
  }

  .proof-item {
    padding: 12px;
  }

  .store-button {
    width: 100%;
  }
}
