:root {
  --navy: #06477f;
  --navy-deep: #032f57;
  --navy-dark: #021e38;
  --orange: #f7a716;
  --orange-dark: #de8e00;
  --ice: #eaf5fc;
  --mint: #e4f5e9;
  --ink: #0b2340;
  --muted: #5e6d7d;
  --line: #dce6ee;
  --background: #f7f9fc;
  --shadow: 0 24px 70px rgba(5, 55, 96, 0.14);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}
body::selection {
  background: var(--orange);
  color: var(--navy-dark);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 48px, 1260px);
  min-height: 82px;
  margin: 16px auto 0;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(7, 63, 111, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 40px rgba(4, 49, 88, 0.08);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--navy);
  color: white;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -1px;
}
.brand-name {
  color: var(--navy);
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -1.3px;
}
.brand-name span {
  color: var(--orange);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #3f5368;
  font-size: 15px;
  font-weight: 700;
}
.main-nav a,
footer > a {
  transition: color 180ms ease;
}
.main-nav a:hover,
footer > a:hover {
  color: var(--orange-dark);
}
.header-cta {
  justify-self: end;
  padding: 15px 22px;
  border-radius: 15px;
  background: var(--navy);
  color: white;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}
.header-cta:hover {
  transform: translateY(-2px);
  background: var(--navy-deep);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 70px;
  align-items: center;
  width: min(100% - 48px, 1260px);
  min-height: 760px;
  margin: 0 auto;
  padding: 88px 0 72px;
}
.hero::before {
  position: absolute;
  top: 10%;
  left: -20%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(230, 244, 253, 0.8);
  content: "";
  filter: blur(30px);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 3px;
  margin: 0 10px 3px 0;
  border-radius: 3px;
  background: var(--orange);
  content: "";
}
.eyebrow-light {
  color: white;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(58px, 6.5vw, 92px);
  font-weight: 880;
  letter-spacing: -0.065em;
  line-height: 0.97;
}
.hero h1 span {
  color: var(--navy);
}
.hero-lead {
  max-width: 640px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.68;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-size: 15px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button-primary {
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(6, 71, 127, 0.2);
  color: white;
}
.button-primary:hover {
  background: var(--navy-deep);
}
.button-secondary {
  border-color: var(--line);
  background: white;
  color: var(--navy);
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 650px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}
.hero-facts li {
  padding-left: 17px;
  border-left: 3px solid var(--orange);
}
.hero-facts strong,
.hero-facts span {
  display: block;
}
.hero-facts strong {
  font-size: 14px;
}
.hero-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 680px;
}
.hero-visual::before {
  position: absolute;
  inset: 60px 0 20px 45px;
  border-radius: 100px 26px;
  background: var(--navy);
  content: "";
  transform: rotate(-4deg);
}
.phone {
  overflow: hidden;
  border: 9px solid #071827;
  border-radius: 42px;
  background: #071827;
  box-shadow: var(--shadow);
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.phone-main {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50px;
  width: 300px;
  height: 650px;
  transform: rotate(-3deg);
}
.phone-side {
  position: absolute;
  z-index: 2;
  right: -35px;
  bottom: -10px;
  width: 232px;
  height: 516px;
  border-width: 7px;
  border-radius: 34px;
  transform: rotate(5deg);
}
.scan-note {
  position: absolute;
  z-index: 7;
  right: -2px;
  bottom: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  padding: 16px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 50px rgba(0, 25, 50, 0.22);
}
.scan-icon {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 2px solid #1e9b51;
  border-radius: 50%;
  background: var(--mint);
}
.scan-icon::after {
  position: absolute;
  top: 10px;
  left: 15px;
  width: 10px;
  height: 17px;
  border-right: 3px solid #1e9b51;
  border-bottom: 3px solid #1e9b51;
  content: "";
  transform: rotate(43deg);
}
.scan-note strong,
.scan-note span {
  display: block;
}
.scan-note strong {
  color: #1e8748;
  font-size: 15px;
}
.scan-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100% - 48px, 1260px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: var(--orange);
}
.impact-strip p {
  margin: 0;
  padding: 25px 22px;
  color: var(--navy-dark);
  font-size: 15px;
  font-weight: 850;
  text-align: center;
}
.impact-strip p + p {
  border-left: 1px solid rgba(3, 47, 87, 0.18);
}
.impact-strip p::before {
  margin-right: 9px;
  content: "✓";
}
.video-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 90px;
  align-items: center;
}
.video-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 860;
  letter-spacing: -0.052em;
  line-height: 1.04;
}
.video-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.video-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.video-copy li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 750;
}
.video-copy li::before {
  position: absolute;
  left: 0;
  color: #1d994f;
  content: "✓";
  font-size: 18px;
}
.video-pdf-link {
  display: inline-flex;
  margin-top: 32px;
  padding: 16px 20px;
  border-radius: 15px;
  background: var(--ice);
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}
.video-player {
  justify-self: center;
  width: 350px;
  padding: 11px 11px 17px;
  border-radius: 42px;
  background: var(--navy-dark);
  box-shadow: var(--shadow);
}
.video-player video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 32px;
  background: #071827;
  object-fit: cover;
}
.video-player > span {
  display: block;
  padding-top: 13px;
  color: #b8ccdc;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.section {
  width: min(100% - 48px, 1260px);
  margin: 0 auto;
  padding: 130px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}
.section-heading h2,
.detail-intro h2,
.deployment-copy h2,
.contact-section h2 {
  max-width: 800px;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 860;
  letter-spacing: -0.052em;
  line-height: 1.04;
}
.section-heading > p,
.deployment-copy > p,
.contact-action > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.feature {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 205px;
  padding: 38px 34px 38px 0;
  border-bottom: 1px solid var(--line);
}
.feature:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.feature:nth-child(even) {
  padding-left: 34px;
}
.feature > span,
.detail-number {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 850;
}
.feature h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}
.feature p {
  max-width: 420px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 80px;
  width: min(100% - 32px, 1390px);
  min-height: 760px;
  padding: 100px max(40px, calc((100% - 1260px) / 2));
  overflow: hidden;
  border-radius: 48px;
  background: var(--navy);
  color: white;
}
.workflow-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 850;
  letter-spacing: -0.052em;
  line-height: 1.05;
}
.steps {
  display: grid;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.steps li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--orange);
  color: var(--navy-dark);
  font-weight: 900;
}
.steps strong {
  font-size: 18px;
}
.steps p {
  margin: 8px 0 0;
  color: #c6d8e7;
  font-size: 14px;
  line-height: 1.65;
}
.workflow-phones {
  position: relative;
  min-height: 650px;
}
.phone-workflow-back {
  position: absolute;
  top: 55px;
  right: -30px;
  width: 260px;
  height: 570px;
  transform: rotate(6deg);
}
.phone-workflow-front {
  position: absolute;
  z-index: 2;
  top: -20px;
  left: 20px;
  width: 310px;
  height: 690px;
  transform: rotate(-5deg);
}

.documents-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 65px;
  align-items: center;
}
.documents-copy h2,
.labels-copy h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 860;
  letter-spacing: -0.052em;
  line-height: 1.04;
}
.documents-lead,
.labels-copy > p {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.document-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.document-actions div {
  padding: 20px;
  border-radius: 18px;
  background: var(--ice);
}
.document-actions strong,
.document-actions span {
  display: block;
}
.document-actions strong {
  color: var(--navy);
  font-size: 17px;
}
.document-actions span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}
.signature-shot {
  height: 610px;
  overflow: hidden;
  border: 8px solid var(--navy-dark);
  border-radius: 38px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.signature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.pdf-previews {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.pdf-previews a {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 35px rgba(5, 52, 91, 0.08);
  transition: transform 180ms ease;
}
.pdf-previews a:hover {
  transform: translateY(-4px);
}
.pdf-previews img {
  width: 145px;
  height: 185px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
}
.pdf-previews span,
.pdf-previews strong,
.pdf-previews small {
  display: block;
}
.pdf-previews strong {
  color: var(--navy);
  font-size: 20px;
}
.pdf-previews small {
  margin-top: 10px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.labels-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 75px;
  align-items: center;
  width: min(100% - 32px, 1390px);
  padding: 100px max(40px, calc((100% - 1260px) / 2));
  border-radius: 48px;
  background: #fff4df;
}
.labels-copy ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.labels-copy li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 750;
}
.labels-copy li::before {
  position: absolute;
  left: 0;
  color: #1d994f;
  content: "✓";
  font-size: 18px;
}
.camera-note {
  display: grid;
  gap: 5px;
  margin-top: 35px;
  padding: 20px;
  border-radius: 18px;
  background: white;
}
.camera-note strong {
  color: var(--navy);
}
.camera-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.label-visuals {
  position: relative;
  min-height: 650px;
}
.label-dialog {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 300px;
  height: 650px;
  overflow: hidden;
  border: 8px solid var(--navy-dark);
  border-radius: 38px;
  background: var(--navy-dark);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}
.label-dialog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.label-sample {
  position: absolute;
  right: 0;
  bottom: 55px;
  width: 285px;
  padding: 15px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 20px 50px rgba(5, 52, 91, 0.17);
  transform: rotate(3deg);
}
.label-sample img {
  width: 100%;
}
.label-sample span {
  display: block;
  padding: 12px 5px 3px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.detail-section {
  padding-bottom: 70px;
}
.detail-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 100px;
}
.detail-story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.6fr);
  gap: 100px;
  align-items: center;
  min-height: 660px;
  padding: 60px 90px;
  border-radius: 44px;
  background: var(--ice);
}
.detail-story + .detail-story {
  margin-top: 44px;
}
.detail-story-reverse {
  grid-template-columns: minmax(360px, 0.6fr) minmax(0, 0.85fr);
  background: #fff4df;
}
.detail-story-reverse .detail-copy {
  grid-column: 2;
}
.detail-story-reverse .detail-shot {
  grid-column: 1;
  grid-row: 1;
}
.detail-copy h3 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 55px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.detail-copy > p {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.detail-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.detail-copy li {
  position: relative;
  padding-left: 27px;
  font-size: 14px;
  font-weight: 750;
}
.detail-copy li::before {
  position: absolute;
  left: 0;
  color: #1d994f;
  content: "✓";
  font-size: 18px;
}
.detail-shot {
  justify-self: center;
  display: block;
  width: min(100%, 330px);
  height: 560px;
  overflow: hidden;
  border: 8px solid white;
  border-radius: 34px;
  background: white;
  box-shadow: 0 24px 65px rgba(5, 60, 102, 0.17);
  transform: rotate(-2deg);
  transition: transform 200ms ease;
}
.detail-story-reverse .detail-shot {
  transform: rotate(2deg);
}
.detail-shot:hover {
  transform: rotate(0) translateY(-5px);
}
.detail-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.gallery-section {
  overflow: hidden;
}
.gallery-heading {
  margin-bottom: 48px;
}
.gallery {
  display: grid;
  grid-auto-columns: 285px;
  grid-auto-flow: column;
  gap: 22px;
  max-width: 100%;
  padding: 10px 0 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) var(--line);
}
.gallery-item {
  display: block;
  scroll-snap-align: start;
}
.gallery-phone {
  height: 560px;
  overflow: hidden;
  border: 7px solid var(--navy-dark);
  border-radius: 34px;
  background: var(--navy-dark);
  box-shadow: 0 16px 38px rgba(5, 52, 91, 0.14);
  transition: transform 200ms ease;
}
.gallery-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.gallery-item:hover .gallery-phone {
  transform: translateY(-6px);
}
.gallery-item > strong {
  display: block;
  margin-top: 19px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.4;
}
.gallery-item > span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.deployment-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 100px;
  align-items: start;
}
.deployment-copy > p {
  max-width: 650px;
  margin-top: 30px;
}
.deployment-points {
  border-top: 1px solid var(--line);
}
.deployment-points > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.deployment-points span {
  grid-row: span 2;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 850;
}
.deployment-points strong {
  color: var(--navy);
  font-size: 18px;
}
.deployment-points p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  width: min(100% - 32px, 1390px);
  margin: 20px auto 0;
  padding: 90px max(40px, calc((100% - 1260px) / 2));
  border-radius: 48px 48px 0 0;
  background: var(--navy-dark);
  color: white;
}
.contact-section h2 {
  color: white;
}
.contact-action {
  align-self: end;
}
.contact-action > p {
  color: #c6d8e7;
}
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #dbe8f2;
  font-size: 12px;
  font-weight: 800;
}
.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.09);
  color: white;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}
.contact-form input:not([type="checkbox"]) {
  min-height: 48px;
  padding: 0 14px;
}
.contact-form textarea {
  min-height: 110px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.14);
}
.contact-consent {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
  line-height: 1.5;
}
.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}
.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.button-orange {
  width: fit-content;
  background: var(--orange);
  color: var(--navy-dark);
  cursor: pointer;
}
.button-orange:hover {
  background: #ffb92c;
  box-shadow: 0 15px 35px rgba(247, 167, 22, 0.2);
}
.button-orange:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}
.contact-action small {
  display: block;
  max-width: 460px;
  color: #8da8bd;
  font-size: 11px;
  line-height: 1.5;
}
.contact-action small a {
  color: white;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-status {
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}
.contact-status:not(:empty) {
  padding: 13px 15px;
}
.contact-status-success {
  background: rgba(78, 204, 126, 0.16);
  color: #baf1ce;
}
.contact-status-error {
  background: rgba(255, 104, 104, 0.16);
  color: #ffd0d0;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 120px;
  padding: 30px max(24px, calc((100% - 1260px) / 2));
  background: #01182d;
  color: #a9bfd1;
  font-size: 13px;
}
footer .brand-name {
  color: white;
}
footer p {
  margin: 0;
}
footer > a:last-child {
  justify-self: end;
  color: white;
  font-weight: 750;
}
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
    gap: 25px;
  }
  .hero h1 {
    font-size: clamp(55px, 7vw, 76px);
  }
  .hero-visual {
    transform: scale(0.85);
    transform-origin: center right;
  }
  .workflow-section {
    gap: 30px;
  }
  .detail-story {
    gap: 55px;
    padding: 50px 55px;
  }
  .deployment-section {
    gap: 60px;
  }
  .labels-section {
    gap: 35px;
  }
  .label-sample {
    width: 230px;
  }
}

@media (max-width: 850px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 28px, 740px);
    margin-top: 10px;
  }
  .main-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 700px);
    padding-top: 70px;
  }
  .hero-copy,
  .hero .eyebrow {
    text-align: center;
  }
  .hero-lead,
  .hero-facts {
    margin-right: auto;
    margin-left: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    width: min(100%, 560px);
    margin: -20px auto 0;
    transform: none;
  }
  .section-heading,
  .detail-intro,
  .deployment-section,
  .contact-section,
  .documents-section,
  .labels-section {
    grid-template-columns: 1fr;
  }
  .video-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .section-heading {
    gap: 25px;
  }
  .workflow-section {
    grid-template-columns: 1fr;
    padding-right: 50px;
    padding-left: 50px;
  }
  .workflow-phones {
    min-height: 650px;
  }
  .workflow-phones .phone-workflow-front {
    left: 12%;
  }
  .workflow-phones .phone-workflow-back {
    right: 10%;
  }
  .detail-story,
  .detail-story-reverse {
    grid-template-columns: 1fr;
    padding: 55px;
  }
  .detail-story-reverse .detail-copy,
  .detail-story-reverse .detail-shot {
    grid-column: auto;
    grid-row: auto;
  }
  .detail-story-reverse .detail-copy {
    grid-row: 1;
  }
  .signature-shot {
    justify-self: center;
    width: 300px;
  }
  .pdf-previews {
    grid-column: auto;
  }
  .labels-section {
    padding-right: 50px;
    padding-left: 50px;
  }
  .label-visuals {
    width: min(100%, 580px);
    margin: 0 auto;
  }
  .deployment-section,
  .contact-section {
    gap: 45px;
  }
  footer {
    grid-template-columns: 1fr auto;
  }
  footer p {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 8px 9px 8px 12px;
    border-radius: 18px;
  }
  .brand {
    gap: 8px;
  }
  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 11px;
    font-size: 13px;
  }
  .brand-name {
    font-size: 24px;
  }
  .header-cta {
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 12px;
  }
  .hero {
    min-height: auto;
    padding: 62px 0 55px;
  }
  .hero::before {
    display: none;
  }
  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
    line-height: 1.01;
  }
  .hero-lead {
    margin-top: 25px;
    font-size: 17px;
    line-height: 1.6;
  }
  .hero-actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .hero-facts {
    grid-template-columns: 1fr;
    gap: 15px;
    width: fit-content;
    margin-top: 38px;
    text-align: left;
  }
  .hero-visual {
    min-height: 560px;
    margin-top: 0;
  }
  .hero-visual::before {
    inset: 65px 0 15px;
    border-radius: 60px 22px;
  }
  .phone-main {
    left: 5%;
    width: 250px;
    height: 548px;
  }
  .phone-side {
    right: -2%;
    width: 170px;
    height: 380px;
  }
  .scan-note {
    right: 1%;
    bottom: 42px;
    min-width: 230px;
  }
  .impact-strip {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 560px);
  }
  .impact-strip p {
    padding: 18px;
  }
  .impact-strip p + p {
    border-top: 1px solid rgba(3, 47, 87, 0.18);
    border-left: 0;
  }
  .section {
    width: min(100% - 36px, 560px);
    padding: 90px 0;
  }
  .section-heading h2,
  .detail-intro h2,
  .deployment-copy h2,
  .contact-section h2 {
    font-size: 40px;
  }
  .video-copy h2 {
    font-size: 40px;
  }
  .video-player {
    width: min(100%, 340px);
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .feature,
  .feature:nth-child(even) {
    grid-template-columns: 48px 1fr;
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
  }
  .workflow-section {
    width: min(100% - 20px, 600px);
    padding: 70px 28px;
    border-radius: 32px;
  }
  .workflow-copy h2 {
    font-size: 40px;
  }
  .workflow-phones {
    min-height: 525px;
  }
  .phone-workflow-front {
    left: 0 !important;
    width: 240px;
    height: 535px;
  }
  .phone-workflow-back {
    right: -4% !important;
    width: 190px;
    height: 425px;
  }
  .detail-intro {
    margin-bottom: 55px;
  }
  .detail-story,
  .detail-story-reverse {
    gap: 40px;
    min-height: 0;
    padding: 38px 22px 30px;
    border-radius: 30px;
  }
  .detail-copy h3 {
    font-size: 38px;
  }
  .detail-shot {
    width: min(100%, 300px);
    height: 540px;
  }
  .documents-section {
    gap: 42px;
  }
  .documents-copy h2,
  .labels-copy h2 {
    font-size: 40px;
  }
  .document-actions,
  .pdf-previews {
    grid-template-columns: 1fr;
  }
  .pdf-previews a {
    grid-template-columns: 105px 1fr;
  }
  .pdf-previews img {
    width: 105px;
    height: 140px;
  }
  .labels-section {
    width: min(100% - 20px, 600px);
    padding: 70px 28px;
    border-radius: 32px;
  }
  .label-visuals {
    min-height: 540px;
  }
  .label-dialog {
    width: 240px;
    height: 520px;
  }
  .label-sample {
    right: -10px;
    bottom: 20px;
    width: 190px;
  }
  .gallery {
    grid-auto-columns: min(78vw, 280px);
  }
  .gallery-phone {
    height: 540px;
  }
  .deployment-points > div {
    grid-template-columns: 42px 1fr;
  }
  .contact-section {
    width: min(100% - 20px, 600px);
    padding: 70px 28px;
    border-radius: 32px 32px 0 0;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-submit-row {
    display: grid;
  }
  footer {
    padding: 28px 18px;
  }
  footer .brand-name {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
