:root {
  --navy: #223142;
  --off-white: #F5F2EC;
  --white: #FFFFFF;
  --charcoal: #31363B;
  --light-gray: #E7EBEE;
  --slate: #73808B;
  --divider: #D8D9D6;
  --leather: #8A6845;
  --header-tan: #E7D9C3;
  --how-tan: #D4BD9A;
  --about-parchment: #E6D7C0;
  --max: 1200px;
  --radius: 6px;
  --header-height: 118px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(231,217,195,.985);
  border-bottom: 1px solid var(--divider);
}
.header-inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  width: 175px;
  text-decoration: none;
  color: var(--navy);
  display: grid;
  line-height: .9;
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.brand-op { font-size: 12px; letter-spacing: .13em; }
.brand-boots { font-size: 31px; letter-spacing: .055em; margin: 2px 0 1px; }
.brand-ground { font-size: 13px; letter-spacing: .075em; }

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 350px;
  text-decoration: none;
  color: var(--navy);
}
.header-logo {
  width: 102px;
  height: 96px;
  flex: 0 0 102px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-wordmark {
  width: 224px;
  height: auto;
  overflow: visible;
  color: var(--navy);
}
.header-wordmark text {
  fill: currentColor;
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.header-wordmark line {
  stroke: currentColor;
  stroke-width: 2;
}
.header-wordmark .wordmark-operation {
  font-size: 27px;
  letter-spacing: .02em;
}
.header-wordmark .wordmark-boots {
  font-size: 63px;
}
.header-wordmark .wordmark-ground {
  font-size: 25px;
  letter-spacing: .01em;
}


.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--navy);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .02em;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--leather);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.menu-bars { width: 24px; display: grid; gap: 4px; }
.menu-bars span { height: 2px; background: currentColor; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.section { padding: 100px 0; }
.section-light { background: var(--off-white); }
.section-white { background: var(--white); }
.section-dark { background: var(--navy); color: var(--light-gray); }
.how { background: var(--how-tan); }
.about-section { background: var(--about-parchment); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow-dark { color: var(--light-gray); }
h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.04;
}
h1 { font-size: clamp(50px, 5vw, 68px); letter-spacing: -.02em; }
h2 { font-size: clamp(38px, 3.5vw, 48px); letter-spacing: -.012em; }
h3 { font-size: 27px; line-height: 1.1; }
.section-dark h2, .section-dark h3 { color: var(--white); }

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--navy);
}
.hero-copy {
  min-height: 660px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: var(--navy);
  color: var(--light-gray);
}
.hero-copy-inner { width: min(600px, 100%); padding: 82px 70px 82px 28px; }
.hero h1 { color: var(--white); max-width: 560px; }
.hero-lede { max-width: 560px; margin: 26px 0 34px; font-size: 19px; line-height: 1.65; }
.hero-image-wrap { min-height: 660px; overflow: hidden; background: #c8c9c5; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }

.button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.button-hero { background: var(--off-white); color: var(--navy); border: 1px solid var(--off-white); }
.button-hero:hover, .button-hero:focus-visible { background: var(--navy); color: var(--white); border-color: var(--slate); }

.centered-intro { text-align: center; max-width: 780px; margin: 0 auto; }
.centered-intro h2 { max-width: 760px; margin: 0 auto; }
.centered-intro > p:last-child { margin: 22px auto 0; max-width: 700px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.step { padding: 44px 42px 46px; min-height: 320px; }
.step + .step { border-left: 1px solid var(--divider); }
.step-number {
  display: block;
  color: var(--slate);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 24px;
}
.step p { margin: 17px 0 0; }

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  grid-template-areas:
    "intro device"
    "caps device";
  column-gap: 72px;
  row-gap: 48px;
  align-items: start;
}
.app-intro { grid-area: intro; max-width: 680px; }
.app-intro h2 { margin-bottom: 22px; }
.app-intro > p:last-child { margin: 24px 0 0; max-width: 680px; }
.status-badge {
  display: inline-block;
  padding: 8px 11px 7px;
  border: 1px solid rgba(231,235,238,.36);
  border-radius: 4px;
  color: var(--light-gray);
  font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.capabilities-grid { grid-area: caps; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid rgba(115,128,139,.55); }
.capability { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 28px 24px 28px 0; border-bottom: 1px solid rgba(115,128,139,.55); }
.capability:nth-child(odd) { padding-right: 32px; }
.capability:nth-child(even) { padding-left: 32px; border-left: 1px solid rgba(115,128,139,.55); }
.capability > span { color: var(--slate); font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif; font-size: 29px; font-weight: 700; line-height: 1; }
.capability h3 { font-size: 22px; }
.capability p { margin: 12px 0 0; font-size: 15px; line-height: 1.6; }

.device-stage { grid-area: device; display: flex; justify-content: center; align-items: center; min-height: 650px; }
.phone { width: min(390px, 100%); padding: 13px; border: 1px solid #576471; border-radius: 38px; background: #17222d; box-shadow: 0 22px 44px rgba(0,0,0,.18); }
.phone-speaker { width: 76px; height: 5px; margin: 1px auto 10px; border-radius: 4px; background: #63707c; }
.phone-screen { overflow: hidden; border-radius: 26px; background: var(--off-white); color: var(--charcoal); min-height: 610px; }
.app-preview-top { background: var(--white); border-bottom: 1px solid var(--divider); padding: 18px 20px 14px; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.mini-brand { color: var(--navy); display: grid; font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif; font-size: 8px; font-weight: 700; line-height: .95; letter-spacing: .08em; }
.mini-brand strong { font-size: 21px; line-height: .9; letter-spacing: .045em; }
.preview-tag { max-width: 86px; text-align: right; color: var(--slate); font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif; font-size: 8px; line-height: 1.2; font-weight: 700; letter-spacing: .08em; }
.preview-body { padding: 24px 20px 26px; }
.preview-kicker { margin: 0 0 5px; color: var(--leather); font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .09em; }
.preview-body h3 { font-size: 31px; }
.preview-copy { margin: 10px 0 20px; font-size: 13px; line-height: 1.55; color: #596067; }
.fake-field { margin-top: 11px; padding: 11px 12px; background: var(--white); border: 1px solid var(--divider); border-radius: 5px; }
.fake-field span, .preview-needs > span { display: block; margin-bottom: 2px; color: var(--slate); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.fake-field strong { color: #4c5359; font-size: 12px; font-weight: 500; }
.preview-needs { margin-top: 20px; }
.need-chip { display: inline-block; margin: 7px 5px 0 0; padding: 7px 8px; background: var(--white); border: 1px solid var(--divider); border-radius: 4px; color: var(--navy); font-size: 10px; font-weight: 600; }
.preview-submit { margin-top: 24px; padding: 12px 16px; text-align: center; background: var(--navy); color: var(--white); border-radius: 5px; font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif; font-size: 13px; font-weight: 700; }

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  grid-template-areas:
    "image heading"
    "image copy";
  gap: 26px 72px;
  align-items: start;
}
.about-heading { grid-area: heading; }
.about-heading h2 { max-width: 610px; }
.about-image { grid-area: image; align-self: stretch; min-height: 640px; overflow: hidden; border-radius: 4px; }
.about-image img { height: 100%; object-fit: cover; object-position: center 40%; }
.about-copy { grid-area: copy; max-width: 650px; }
.prose p { margin: 0 0 20px; }
.prose p:last-child { margin-bottom: 0; }

.involved-intro { max-width: 760px; }
.involvement .involved-intro > p:last-child { color: var(--light-gray); }
.involvement-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid rgba(115,128,139,.62); border-bottom: 1px solid rgba(115,128,139,.62); }
.involvement-path { min-height: 340px; padding: 42px 38px 40px; display: flex; flex-direction: column; align-items: flex-start; color: var(--light-gray); }
.involvement-path + .involvement-path { border-left: 1px solid rgba(115,128,139,.62); }
.involvement-path h3 { color: var(--white); font-size: 23px; letter-spacing: .05em; }
.involvement-path p { margin: 18px 0 26px; color: var(--light-gray); }
.status-involved {
  margin-top: auto;
  color: #D6C1A3;
  border-color: rgba(214,193,163,.55);
  background: rgba(138,104,69,.12);
}

.contact-section { padding: 90px 0; background: var(--off-white); border-top: 1px solid var(--divider); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 70px; align-items: start; }
.contact-copy { max-width: 520px; }
.contact-copy h2 { font-size: 42px; }
.contact-copy p:last-child { margin: 18px 0 0; }
.contact-links { border-top: 1px solid var(--divider); }
.contact-item { display: grid; grid-template-columns: 120px 1fr; gap: 22px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--divider); }
.contact-item > span { color: var(--slate); font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .1em; }
.contact-item a { color: var(--navy); text-decoration-color: var(--leather); text-decoration-thickness: 1px; text-underline-offset: 4px; font-weight: 600; overflow-wrap: anywhere; }
.contact-item a:hover, .contact-item a:focus-visible { color: var(--leather); }

.site-footer { background: var(--navy); color: var(--light-gray); padding: 52px 0; }
.footer-inner { display: grid; grid-template-columns: 220px 1fr auto; gap: 40px; align-items: end; }
.footer-brand { display: block; width: 205px; color: var(--white); text-decoration: none; }
.footer-wordmark { display: block; width: 100%; height: auto; overflow: visible; color: currentColor; }
.footer-wordmark text { fill: currentColor; font-family: "Barlow Semi Condensed", "Arial Narrow", Arial, sans-serif; font-weight: 700; text-transform: uppercase; }
.footer-wordmark line { stroke: currentColor; stroke-width: 2; }
.footer-wordmark .wordmark-operation { font-size: 27px; letter-spacing: .02em; }
.footer-wordmark .wordmark-boots { font-size: 63px; }
.footer-wordmark .wordmark-ground { font-size: 25px; letter-spacing: .01em; }
.footer-inner p { margin: 0; font-size: 14px; }
.copyright { color: #b8c0c6; text-align: right; }

:focus-visible { outline: 3px solid var(--leather); outline-offset: 4px; }

@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .header-inner { gap: 24px; }
  .header-brand { min-width: 300px; gap: 9px; }
  .header-logo { width: 86px; height: 82px; flex-basis: 86px; }
  .header-wordmark { width: 196px; }
  .hero-copy-inner { padding-right: 45px; }
  .app-layout { column-gap: 45px; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .capability:nth-child(even) { padding-left: 0; border-left: 0; }
  .capability:nth-child(odd) { padding-right: 0; }
  .about-layout { gap: 26px 48px; }
}

@media (max-width: 900px) {
  :root { --header-height: 82px; }
  body { font-size: 16px; }
  .site-header { height: var(--header-height); }
  .header-inner { padding: 0 20px; }
  .header-brand { min-width: 0; gap: 7px; }
  .header-logo { width: 58px; height: 56px; flex-basis: 58px; }
  .header-wordmark { width: 132px; }
  .menu-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: var(--header-tan);
    border-bottom: 1px solid var(--divider);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--divider); font-size: 18px; }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }

  .container { padding-left: 20px; padding-right: 20px; }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(44px, 13vw, 57px); }
  h2 { font-size: clamp(34px, 9vw, 42px); }
  h3 { font-size: 25px; }

  .hero { display: flex; flex-direction: column; min-height: 0; }
  .hero-copy { min-height: 0; justify-content: flex-start; }
  .hero-copy-inner { width: 100%; padding: 72px 20px 68px; }
  .hero-lede { font-size: 17px; margin-top: 22px; }
  .hero-image-wrap { min-height: 430px; height: 54vh; max-height: 560px; }
  .hero-image-wrap img { object-position: center 55%; }

  .centered-intro { text-align: left; }
  .steps-grid { grid-template-columns: 1fr; margin-top: 48px; border-bottom: 0; }
  .step { min-height: 0; padding: 34px 0 36px; border-bottom: 1px solid var(--divider); }
  .step + .step { border-left: 0; }
  .step-number { font-size: 42px; margin-bottom: 17px; }

  .app-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "device" "caps";
    gap: 42px;
  }
  .app-intro > p:last-child { margin-top: 22px; }
  .device-stage { min-height: 0; }
  .phone { width: min(380px, 92vw); }
  .capabilities-grid { grid-template-columns: 1fr; }
  .capability { grid-template-columns: 40px 1fr; padding: 25px 0; }
  .capability:nth-child(even), .capability:nth-child(odd) { padding-left: 0; padding-right: 0; border-left: 0; }

  .about-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "image" "copy";
    gap: 32px;
  }
  .about-image { min-height: 0; height: 70vh; max-height: 650px; }
  .about-copy { margin-top: 2px; }

  .involvement-grid { grid-template-columns: 1fr; margin-top: 48px; border-bottom: 0; }
  .involvement-path { min-height: 0; padding: 34px 0 36px; border-bottom: 1px solid rgba(115,128,139,.62); }
  .involvement-path + .involvement-path { border-left: 0; }
  .status-involved { margin-top: 5px; }

  .contact-section { padding: 72px 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .contact-item { grid-template-columns: 1fr; gap: 5px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .footer-brand { width: min(205px, 68vw); }
  .copyright { text-align: left; }
}

@media (max-width: 420px) {
  .menu-label { display: none; }
  .hero-image-wrap { height: 420px; min-height: 420px; }
  .phone { width: 100%; border-radius: 31px; }
  .phone-screen { border-radius: 22px; }
  .app-preview-top { padding-left: 16px; padding-right: 16px; }
  .preview-body { padding-left: 16px; padding-right: 16px; }
  .about-image { height: 520px; }
}
