:root {
  --red: #c9182b;
  --red-deep: #8f111f;
  --ink: #121821;
  --ink-soft: #202936;
  --paper: #f4f5f4;
  --paper-warm: #ece9e2;
  --line: rgba(255, 255, 255, 0.18);
  --muted: #65717f;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(9, 12, 17, 0.82), rgba(9, 12, 17, 0.36));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.brand-logo {
  display: block;
  width: clamp(112px, 12vw, 150px);
  height: auto;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.top-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 9px 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 3px;
}

.hero-section {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 54px) clamp(20px, 5vw, 72px) 42px;
  color: var(--white);
  background: #0b0f15;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-rugged-scanner.png");
  background-size: cover;
  background-position: 57% center;
  filter: saturate(0.96) contrast(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.94) 0%, rgba(8, 11, 16, 0.74) 35%, rgba(8, 11, 16, 0.24) 67%, rgba(8, 11, 16, 0.4) 100%),
    linear-gradient(0deg, rgba(8, 11, 16, 0.82) 0%, rgba(8, 11, 16, 0.08) 44%, rgba(8, 11, 16, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding-bottom: clamp(92px, 14vh, 150px);
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  color: #ff4154;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.6vw, 7.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.4rem, 5.2vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
  line-height: 1.1;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 34px rgba(201, 24, 43, 0.24);
}

.button-primary:hover {
  background: var(--red-deep);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-facts {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 26px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-facts div {
  min-width: 0;
  padding: 22px 28px 0 0;
}

.hero-facts strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.12rem, 2vw, 1.7rem);
}

.hero-facts span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.section-inner {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.statement-section {
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding: clamp(78px, 11vw, 140px) 0;
  color: var(--ink);
  background: var(--paper-warm);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
}

.statement-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5.7vw, 6.7rem);
}

.statement-grid p:last-child {
  align-self: end;
  margin: 0;
  color: #424b55;
  font-size: clamp(1.05rem, 1.5vw, 1.34rem);
}

.image-copy-section {
  min-height: 96svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.dark-product {
  color: var(--white);
  background: #101720;
}

.section-media {
  min-height: 680px;
  background-size: cover;
  background-position: center;
}

.product-media {
  background-image:
    linear-gradient(90deg, rgba(16, 23, 32, 0.1), rgba(16, 23, 32, 0.84)),
    url("assets/hero-rugged-scanner.png");
  background-position: 62% center;
}

.section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 104px);
}

.section-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.data-lines {
  display: grid;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.data-lines div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.data-lines dt {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 800;
}

.data-lines dd {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.rollout-section {
  min-height: 86svh;
  display: grid;
  align-items: center;
  padding: clamp(78px, 10vw, 128px) 0;
  background: var(--paper);
}

.rollout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: center;
}

.rollout-copy p:not(.eyebrow) {
  color: #4b5663;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.rollout-track {
  border-top: 2px solid var(--ink);
}

.track-row {
  display: grid;
  grid-template-columns: minmax(108px, 0.36fr) 1fr;
  gap: 26px;
  padding: clamp(22px, 3.6vw, 42px) 0;
  border-bottom: 1px solid rgba(18, 24, 33, 0.2);
}

.track-row span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.track-row strong {
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 3.15rem);
  line-height: 1;
}

.trust-section {
  padding: clamp(78px, 10vw, 132px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 24, 43, 0.16), transparent 38%),
    linear-gradient(180deg, #111821, #0a0e14);
}

.trust-layout {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
}

.trust-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.64fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
}

.trust-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5.7rem);
}

.trust-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-grid article {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid h3 {
  color: var(--white);
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-strip span,
.service-strip strong {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.9rem;
}

.service-strip span {
  color: var(--white);
  background: var(--red);
  border-color: transparent;
}

.service-strip strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.process-section {
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: clamp(78px, 10vw, 132px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 24, 43, 0.14), transparent 34%),
    linear-gradient(180deg, #151c26, #080b10);
}

.process-heading {
  max-width: 900px;
  margin-bottom: clamp(34px, 6vw, 78px);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.process-list article {
  min-width: 0;
  padding: 28px clamp(18px, 2.4vw, 34px) 0 0;
  border-right: 1px solid var(--line);
}

.process-list article:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 42px;
  color: #ff4154;
  font-weight: 900;
}

.process-list p {
  color: rgba(255, 255, 255, 0.68);
}

.inquiry-section {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--paper-warm);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: start;
}

.inquiry-copy {
  position: sticky;
  min-width: 0;
  top: calc(var(--header-h) + 34px);
}

.inquiry-copy h2 {
  font-size: clamp(2.35rem, 3.6vw, 3.8rem);
}

.inquiry-copy p:not(.eyebrow) {
  color: #4b5663;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.inquiry-note {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.inquiry-note strong {
  color: var(--red);
}

.inquiry-form {
  min-width: 0;
  padding: clamp(22px, 4vw, 44px);
  color: var(--white);
  background: #111821;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  min-width: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  padding: 13px 12px;
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-color: rgba(255, 65, 84, 0.78);
}

.inquiry-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.74) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.inquiry-form option {
  color: var(--ink);
}

.inquiry-form ::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.form-wide {
  grid-column: 1 / -1;
}

.inquiry-form fieldset {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inquiry-form legend {
  padding: 0 0 12px;
  color: var(--white);
  font-weight: 900;
}

.choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid legend {
  grid-column: 1 / -1;
}

.inquiry-form fieldset label,
.privacy-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}

.inquiry-form input[type="checkbox"],
.inquiry-form input[type="radio"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.privacy-line {
  margin-top: 18px;
}

.form-button {
  width: 100%;
  margin-top: 22px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #080b10;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .brand {
    padding: 6px 8px;
  }

  .top-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
    font-size: 0.86rem;
  }

  .hero-section {
    min-height: 860px;
    padding-top: 118px;
  }

  .hero-image {
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 11, 16, 0.94), rgba(8, 11, 16, 0.62)),
      linear-gradient(0deg, rgba(8, 11, 16, 0.9) 0%, rgba(8, 11, 16, 0.18) 52%, rgba(8, 11, 16, 0.48) 100%);
  }

  .hero-content {
    padding-bottom: 230px;
  }

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

  .hero-facts div {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .statement-grid,
  .image-copy-section,
  .rollout-layout,
  .trust-heading,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .section-media {
    min-height: 460px;
  }

  .section-copy {
    padding: 58px 24px 72px;
  }

  .rollout-track {
    margin-top: 10px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list article:nth-child(2) {
    border-right: 0;
  }

  .inquiry-copy {
    position: static;
  }
}

@media (max-width: 1180px) {
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-copy {
    position: static;
  }

  .inquiry-copy h2 {
    max-width: 820px;
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 86px;
  }

  .site-header {
    gap: 12px;
    padding: 14px 18px;
  }

  .brand-logo {
    width: 118px;
  }

  .top-nav a:not(.nav-cta) {
    display: none;
  }

  .hero-section {
    min-height: 900px;
    padding: 118px 20px 26px;
  }

  .hero-image {
    background-position: 70% top;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 306px;
  }

  h1 {
    max-width: calc(100vw - 40px);
    font-size: clamp(2.7rem, 13.4vw, 3.55rem);
    line-height: 0.96;
  }

  h2,
  .statement-grid h2 {
    font-size: clamp(2.18rem, 9.8vw, 3.35rem);
    line-height: 1;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-facts {
    grid-template-columns: 1fr;
    left: 20px;
    right: 20px;
    bottom: 18px;
  }

  .section-inner {
    width: min(100% - 32px, 1220px);
  }

  .statement-section,
  .rollout-section,
  .trust-section,
  .process-section,
  .inquiry-section {
    min-height: auto;
    padding: 68px 0;
  }

  .statement-grid {
    gap: 28px;
  }

  .image-copy-section {
    min-height: auto;
  }

  .section-media {
    min-height: 360px;
  }

  .product-media {
    background-position: 72% center;
  }

  .section-copy {
    padding: 48px 18px 58px;
  }

  .data-lines div,
  .track-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .track-row strong {
    font-size: clamp(1.62rem, 8vw, 2.5rem);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

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

  .service-strip {
    display: grid;
  }

  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .process-list article {
    padding-right: 0;
    border-right: 0;
  }

  .process-list span {
    margin-bottom: 18px;
  }

  .inquiry-layout {
    gap: 30px;
  }

  .inquiry-form {
    padding: 22px 16px;
  }

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

  .footer-inner {
    display: grid;
    justify-content: start;
  }
}
