:root {
  --navy: #09233f;
  --blue: #1175bc;
  --bright: #20a7df;
  --cyan: #eaf8fd;
  --ink: #10263c;
  --muted: #607386;
  --line: #dce7ee;
  --paper: #fff;
  --cream: #f5f8fa;
  --orange: #ffb000;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  background: #fff;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
body,
button,
input,
select,
textarea {
  font: inherit;
}
button,
input,
select,
textarea {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
textarea:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #ffb000;
}
.wrap {
  width: min(1160px, 100% - 48px);
  margin: auto;
}
.utility {
  background: var(--navy);
  color: #bcd1df;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 34px;
  font-size: 11px;
}
.utilityInner {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}
.utilityInner div {
  gap: 28px;
  display: flex;
}
.utility a:hover {
  color: #fff;
}
.siteHeader {
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #09233f12;
  height: 88px;
  position: sticky;
  top: 0;
}
.navWrap {
  align-items: center;
  height: 100%;
  display: flex;
}
.brand img {
  width: 247px;
  height: auto;
  display: block;
}
.navWrap nav {
  align-items: center;
  gap: 27px;
  margin-left: auto;
  display: flex;
}
.navWrap nav a {
  color: #334b61;
  font-size: 13px;
  font-weight: 700;
}
.navWrap nav a:hover {
  color: var(--blue);
}
.mobileMenu {
  display: none;
}
.button {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.02em;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  display: inline-flex;
}
.button:hover {
  background: #075f9a;
  border-color: #075f9a;
  transform: translateY(-1px);
}
.button:disabled {
  cursor: wait;
  opacity: 0.7;
}
.buttonSmall {
  margin-left: 28px;
  padding: 11px 18px;
}
.buttonOutline {
  color: var(--blue);
  background: #fff;
}
.buttonOutline:hover {
  color: #fff;
}
.buttonOutlineBlue {
  color: var(--blue);
  background: #fff;
}
.buttonOutlineBlue:hover {
  color: #fff;
}
.buttonWide {
  width: 100%;
  margin-top: 15px;
}
.hero {
  background: linear-gradient(115deg, #f4fbfe 0, #fff 56%, #eef8fc 100%);
  padding: 92px 0 116px;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  background-image:
    linear-gradient(#1175bc09 1px, #0000 1px),
    linear-gradient(90deg, #1175bc09 1px, #0000 1px);
  background-size: 36px 36px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(90deg, #000, #0000 75%);
  mask-image: linear-gradient(90deg, #000, #0000 75%);
}
.heroGrid {
  z-index: 1;
  grid-template-columns: 47% 53%;
  align-items: center;
  display: grid;
  position: relative;
}
.eyebrow,
.kicker {
  color: var(--blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
}
.eyebrowDot {
  background: var(--orange);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px #ffb00021;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1,
.pageHero h1 {
  color: var(--navy);
  letter-spacing: -0.055em;
  margin: 24px 0;
  font-family:
    Georgia,
    Times New Roman,
    serif;
  font-size: 69px;
  font-weight: 700;
  line-height: 0.98;
}
.hero h1 em {
  color: var(--blue);
  font-weight: 400;
  display: block;
}
.heroLead {
  color: #50667a;
  max-width: 570px;
  font-size: 18px;
  line-height: 1.65;
}
.heroActions {
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  display: flex;
}
.textLink {
  color: var(--blue);
  border-bottom: 1px solid #abd4ea;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 800;
}
.trustRow {
  border-top: 1px solid var(--line);
  gap: 30px;
  max-width: 560px;
  margin-top: 48px;
  padding-top: 26px;
  display: flex;
}
.trustRow div {
  flex-direction: column;
  display: flex;
}
.trustRow strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 19px;
}
.trustRow span {
  color: #748797;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  font-size: 10px;
}
.productStage {
  height: 490px;
  position: relative;
}
.browserCard {
  background: #fff;
  border: 1px solid #d8e8ef;
  border-radius: 11px;
  width: 625px;
  position: absolute;
  top: 20px;
  left: 36px;
  overflow: hidden;
  transform: rotate(1deg);
  box-shadow: 0 25px 70px #09233f2b;
}
.browserBar {
  background: #eaf1f5;
  align-items: center;
  gap: 6px;
  height: 35px;
  padding: 0 12px;
  display: flex;
}
.browserBar > span {
  background: #b7c7d0;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}
.browserBar div {
  color: #60778b;
  text-align: center;
  background: #fff;
  border-radius: 4px;
  width: 260px;
  margin-left: 52px;
  padding: 5px;
  font-size: 8px;
  font-weight: 700;
}
.actualAppCard {
  background: #eef7fd;
}
.actualAppCard > img {
  object-fit: cover;
  object-position: top left;
  width: 100%;
  height: 365px;
  display: block;
}
.scanCard {
  background: #fff;
  border-radius: 8px;
  grid-template-columns: 42px 1fr 25px;
  align-items: center;
  gap: 11px;
  width: 305px;
  padding: 17px;
  display: grid;
  position: absolute;
  bottom: 15px;
  left: 0;
  box-shadow: 0 15px 40px #09233f2e;
}
.scanIcon {
  color: var(--blue);
  background: #e6f7fc;
  border-radius: 6px;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 22px;
  display: grid;
}
.scanCard div {
  flex-direction: column;
  display: flex;
}
.scanCard small,
.labelCard small {
  color: #8497a5;
  letter-spacing: 0.12em;
  font-size: 7px;
}
.scanCard strong {
  margin: 4px 0;
  font-size: 11px;
}
.scanCard p {
  color: #82929e;
  margin: 0;
  font-size: 8px;
}
.success {
  color: #19965a;
  background: #dff5ea;
  border-radius: 50%;
  place-items: center;
  width: 22px;
  height: 22px;
  display: grid;
}
.labelCard {
  background: var(--navy);
  color: #fff;
  border-radius: 7px;
  flex-direction: column;
  width: 190px;
  padding: 14px 17px;
  display: flex;
  position: absolute;
  bottom: 25px;
  right: -4px;
  box-shadow: 0 15px 40px #09233f33;
}
.labelCard .diamonds {
  color: #fff;
  letter-spacing: 7px;
  margin-bottom: 10px;
  font-size: 17px;
}
.labelCard small {
  color: #7fb8d6;
}
.labelCard strong {
  margin-top: 4px;
  font-size: 11px;
}
.glow {
  border-radius: 50%;
  position: absolute;
}
.glowOne {
  background: #caeffb;
  width: 360px;
  height: 360px;
  top: -60px;
  right: -80px;
}
.glowTwo {
  border: 26px solid #ffb0001f;
  width: 160px;
  height: 160px;
  bottom: -20px;
  left: 90px;
}
.slant {
  background: #fff;
  height: 42px;
  position: absolute;
  bottom: -23px;
  left: -3%;
  right: -3%;
  transform: rotate(-1deg);
}
.problemStrip {
  background: var(--navy);
  color: #fff;
  padding: 44px 0;
}
.stripGrid {
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
  gap: 55px;
  display: grid;
}
.stripIntro span {
  color: #63c5ec;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 10px;
}
.stripIntro h2 {
  margin: 8px 0 0;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
}
.stripItem {
  border-left: 1px solid #34506a;
  align-items: flex-start;
  gap: 18px;
  padding-left: 32px;
  display: flex;
}
.stripItem > b {
  color: #38aee0;
  font-family: Georgia, serif;
  font-size: 18px;
}
.stripItem strong {
  font-size: 13px;
}
.stripItem p {
  color: #9fb2c3;
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.5;
}
.section {
  padding: 110px 0;
}
.sectionHead {
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 48px;
  display: grid;
}
.sectionHead h2,
.centerHead h2,
.faqIntro h2,
.contactInfo h2,
.formPanel h2 {
  color: var(--navy);
  letter-spacing: -0.035em;
  margin: 17px 0 0;
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1.06;
}
.sectionHead > p,
.centerHead > p,
.faqIntro > p,
.contactInfo > p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}
.featureGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  display: grid;
}
.featureCard {
  border: 1px solid var(--line);
  background: #fff;
  min-height: 310px;
  padding: 34px;
  position: relative;
}
.featureCard.featured {
  background: #f5fafc;
  grid-column: span 2;
  grid-template-columns: 1fr 1fr;
  min-height: 455px;
  padding: 0;
  display: grid;
}
.featureVisual {
  background: linear-gradient(140deg, #e9f8fd, #c9edf8);
  place-items: center;
  display: grid;
  overflow: hidden;
}
.realScreen {
  background: #fff;
  border: 1px solid #b9d7e7;
  border-radius: 8px;
  width: 88%;
  overflow: hidden;
  transform: rotate(-1.2deg);
  box-shadow: 0 22px 45px #09233f2e;
}
.realScreen img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 330px;
}
.screenLabel {
  background: var(--navy);
  color: #fff;
  letter-spacing: 0.14em;
  padding: 10px 14px;
  font-size: 8px;
  font-weight: 800;
}
.featureText {
  padding: 66px 55px;
}
.number {
  color: #a5c5d8;
  font-family: Georgia, serif;
  font-size: 16px;
}
.featureCard h3 {
  color: var(--navy);
  margin: 17px 0 14px;
  font-family: Georgia, serif;
  font-size: 26px;
}
.featureCard p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.featureCard ul,
.priceCard ul,
.includedList {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.featureCard li,
.priceCard li,
.includedList li,
.featureRow li {
  color: #42596b;
  align-items: center;
  gap: 9px;
  margin: 10px 0;
  font-size: 12px;
  display: flex;
}
.check {
  color: #188b55;
  background: #ddf5e8;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: inline-grid;
}
.iconBox {
  color: var(--blue);
  background: #e8f7fc;
  border-radius: 4px;
  place-items: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: grid;
}
.featureCard > a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  bottom: 28px;
}
.darkCard {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.darkCard .iconBox {
  color: #68c9ed;
  background: #173b58;
}
.darkCard h3 {
  color: #fff;
}
.darkCard p {
  color: #a8bdcc;
}
.actualLabelPreview {
  background: #fff;
  border: 1px solid #486176;
  border-radius: 3px;
  height: 150px;
  margin: 20px -10px -5px;
  overflow: hidden;
}
.actualLabelPreview img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
.labelFeature {
  overflow: hidden;
}
.sectionLink {
  text-align: center;
  margin-top: 35px;
}
.autopilot {
  background: var(--blue);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.autopilot:after {
  color: #ffffff09;
  content: "A";
  font-family: Georgia, serif;
  font-size: 550px;
  position: absolute;
  bottom: -240px;
  right: -80px;
}
.autopilotGrid {
  z-index: 1;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  display: grid;
  position: relative;
}
.kicker.light {
  color: #a8def3;
}
.autopilot h2 {
  margin: 18px 0 24px;
  font-family: Georgia, serif;
  font-size: 47px;
  line-height: 1.08;
}
.autopilot p {
  color: #cce7f3;
  max-width: 530px;
  font-size: 15px;
  line-height: 1.75;
}
.buttonLight {
  color: var(--blue);
  background: #fff;
  border-color: #fff;
  margin-top: 20px;
}
.buttonLight:hover {
  color: var(--blue);
  background: #e8f7fc;
  border-color: #e8f7fc;
}
.process {
  padding-top: 5px;
}
.process > div {
  grid-template-columns: 48px 1fr;
  gap: 18px;
  display: grid;
}
.process b {
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
  place-items: center;
  width: 48px;
  height: 48px;
  font-family: Georgia, serif;
  display: grid;
}
.process span {
  flex-direction: column;
  padding-top: 3px;
  display: flex;
}
.process strong {
  font-size: 15px;
}
.process small {
  color: #b9dcec;
  margin-top: 7px;
  line-height: 1.5;
}
.process i {
  border-left: 1px dashed #79c7e6;
  height: 38px;
  margin: 4px 0 4px 23px;
  display: block;
}
.pricingSection {
  background: #f5f8fa;
}
.centerHead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.centerHead .kicker {
  justify-content: center;
}
.centerHead > p {
  margin-top: 15px;
}
.pricingGrid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: auto;
  display: grid;
}
.priceCard {
  border: 1px solid var(--line);
  background: #fff;
  padding: 38px;
  position: relative;
}
.priceCard.popular {
  border: 2px solid var(--blue);
  box-shadow: 0 18px 50px #09233f1c;
}
.popularFlag {
  background: var(--orange);
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  font-size: 9px;
  font-weight: 900;
  position: absolute;
  top: -13px;
  right: 24px;
}
.priceTop > span {
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.priceTop h2,
.priceTop h3 {
  color: var(--navy);
  margin: 9px 0;
  font-family: Georgia, serif;
  font-size: 32px;
}
.priceTop p {
  color: var(--muted);
  min-height: 64px;
  font-size: 13px;
  line-height: 1.65;
}
.starting {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: #617483;
  margin: 24px 0;
  padding: 21px 0;
  font-size: 12px;
}
.starting strong {
  color: var(--navy);
  margin: 4px 0;
  font-family: Georgia, serif;
  font-size: 27px;
  display: block;
}
.starting span {
  font-size: 10px;
  display: block;
}
.priceCard ul {
  min-height: 170px;
}
.pricingNote,
.pricingFootnote {
  color: #6f8190;
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
}
.pricingNote a,
.pricingFootnote a {
  color: var(--blue);
  font-weight: 700;
}
.faqGrid {
  grid-template-columns: 360px 1fr;
  gap: 110px;
  display: grid;
}
.faqIntro {
  align-self: start;
  position: sticky;
  top: 145px;
}
.faqIntro p {
  margin: 20px 0;
}
.accordions details {
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
}
.accordions summary {
  color: var(--navy);
  cursor: pointer;
  justify-content: space-between;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  display: flex;
}
.accordions summary::-webkit-details-marker {
  display: none;
}
.accordions summary span {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 400;
}
.accordions details[open] summary span {
  transform: rotate(45deg);
}
.accordions details > p,
.faqAnswer {
  color: var(--muted);
  margin: 15px 45px 0 0;
  font-size: 13px;
  line-height: 1.7;
}
.faqAnswer p,
.faqAnswer ul,
.faqAnswer ol {
  margin: 0 0 12px;
}
.faqAnswer li {
  margin: 7px 0;
}
.cta {
  background: var(--navy);
  color: #fff;
  padding: 65px 0;
}
.ctaInner {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.ctaInner > div:first-child span {
  color: #68c8eb;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
}
.cta h2 {
  margin: 9px 0 0;
  font-family: Georgia, serif;
  font-size: 35px;
}
.ctaInner > div:last-child {
  flex-direction: column;
  align-items: center;
  display: flex;
}
.ctaInner > div:last-child > a:last-child {
  color: #a8bccb;
  border-bottom: 1px solid #5d7486;
  margin-top: 12px;
  font-size: 10px;
}
footer {
  color: #9cb0bf;
  background: #06192c;
  padding: 70px 0 25px;
}
.footerGrid {
  grid-template-columns: 2fr 1fr 1.35fr;
  gap: 100px;
  display: grid;
}
.footerBrand img {
  filter: brightness(0) invert();
  opacity: 0.95;
  width: 255px;
}
.footerBrand p {
  max-width: 340px;
  font-size: 12px;
  line-height: 1.7;
}
.veteran {
  color: #d8aa3f;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 18px;
  font-size: 10px;
}
.footerGrid h3 {
  color: #fff;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 3px 0 18px;
  font-size: 10px;
}
.footerGrid > div:not(:first-child) {
  flex-direction: column;
  gap: 11px;
  font-size: 11px;
  display: flex;
}
.footerGrid a:hover {
  color: #fff;
}
.footerGrid p {
  margin: 0;
  line-height: 1.7;
}
.footerBottom {
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-top: 1px solid #23384c;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 22px;
  font-size: 9px;
  display: flex;
}
.footerBottom div {
  gap: 24px;
  display: flex;
}
.pageHero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #f3fbfe, #fff 58%, #eaf7fc), #f5fbfd;
  padding: 82px 0 88px;
  position: relative;
  overflow: hidden;
}
.pageHero:after {
  content: "";
  background-image:
    linear-gradient(#1175bc0a 1px, #0000 1px),
    linear-gradient(90deg, #1175bc0a 1px, #0000 1px);
  background-size: 36px 36px;
  position: absolute;
  inset: 0 0 0 55%;
  -webkit-mask-image: linear-gradient(90deg, #0000, #000);
  mask-image: linear-gradient(90deg, #0000, #000);
}
.pageHero .wrap {
  z-index: 1;
  position: relative;
}
.pageHero h1 {
  max-width: 920px;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
}
.pageHero p {
  color: var(--muted);
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}
.pageHero.notFound {
  align-items: center;
  min-height: 52vh;
  display: grid;
}
.pageHero.notFound .heroActions {
  margin-top: 28px;
}
.featureRows {
  gap: 22px;
  display: grid;
}
.featureRow {
  border: 1px solid var(--line);
  background: #fff;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  min-height: 430px;
  display: grid;
}
.featureRow:nth-child(2n) > div:first-child {
  grid-area: 1/2;
}
.featureRow:nth-child(2n) .featureRowVisual {
  grid-area: 1/1;
}
.featureRow > div:first-child {
  padding: 60px;
}
.featureRow h2 {
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 14px 0;
  font-family: Georgia, serif;
  font-size: 38px;
}
.featureRow p {
  color: var(--muted);
  line-height: 1.75;
}
.featureRow ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.featureRowVisual {
  background: linear-gradient(140deg, #e8f8fd, #cbeef8);
  align-items: center;
  padding: 38px;
  display: flex;
  overflow: hidden;
}
.featureRowVisual img {
  object-fit: cover;
  object-position: top;
  border: 1px solid #bad8e6;
  border-radius: 8px;
  width: 100%;
  max-height: 350px;
  transform: rotate(-1deg);
  box-shadow: 0 22px 45px #09233f2b;
}
.pricingDetail {
  background: var(--cream);
}
.pricingDetailGrid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  display: grid;
}
.detailPriceCard {
  border: 1px solid var(--line);
  background: #fff;
  padding: 44px;
  position: relative;
}
.detailPriceCard.autopilotPrice {
  border: 2px solid var(--blue);
  box-shadow: 0 18px 50px #09233f1c;
}
.detailPriceCard .includedList {
  min-height: 195px;
}
.detailPriceCard > h3 {
  color: var(--navy);
  margin: 34px 0 12px;
  font-family: Georgia, serif;
  font-size: 20px;
}
.tableWrap {
  overflow-x: auto;
}
.pricingTable {
  border-collapse: collapse;
  width: 100%;
  min-width: 420px;
}
.pricingTable th,
.pricingTable td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 15px 16px;
}
.pricingTable th {
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #eaf6fb;
  font-size: 11px;
}
.pricingTable td {
  color: #52697c;
  font-size: 14px;
}
.pricingTable td:last-child {
  color: var(--navy);
  font-weight: 800;
}
.faqArchive {
  background: var(--cream);
}
.faqCategory {
  border: 1px solid var(--line);
  background: #fff;
  grid-template-columns: 300px 1fr;
  gap: 55px;
  margin-bottom: 20px;
  padding: 42px;
  display: grid;
}
.faqCategory > h2 {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1.2;
}
.faqCategory .accordions details:first-child {
  padding-top: 0;
}
.knowledgeSection {
  background: var(--cream);
}
.knowledgeGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  display: grid;
}
.knowledgeCard {
  border: 1px solid var(--line);
  background: #fff;
  flex-direction: column;
  min-height: 310px;
  padding: 32px;
  display: flex;
}
.knowledgeCard > span {
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.knowledgeCard h2 {
  color: var(--navy);
  margin: 18px 0 12px;
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.2;
}
.knowledgeCard p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.knowledgeCard a {
  color: var(--blue);
  margin-top: auto;
  padding-top: 25px;
  font-size: 12px;
  font-weight: 800;
}
.articleSection {
  background: var(--cream);
}
.articleLayout {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 70px;
  display: grid;
}
.articleLayout > article,
.legalProse {
  border: 1px solid var(--line);
  background: #fff;
  padding: 48px;
}
.legacyNotice {
  border-left: 4px solid var(--orange);
  color: #5e512c;
  background: #fff7df;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 36px;
  padding: 17px 20px;
  font-size: 12px;
  line-height: 1.6;
  display: flex;
}
.articleAside {
  position: sticky;
  top: 145px;
}
.articleAside h2 {
  color: var(--navy);
  margin: 16px 0;
  font-family: Georgia, serif;
  font-size: 29px;
}
.articleAside p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.articleAside > a:last-child {
  color: var(--blue);
  margin-top: 24px;
  font-size: 12px;
  font-weight: 800;
  display: block;
}
.prose {
  color: #40576a;
  font-size: 16px;
  line-height: 1.8;
}
.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: var(--navy);
  scroll-margin-top: 140px;
  font-family: Georgia, serif;
  line-height: 1.2;
}
.prose h1 {
  margin: 0 0 28px;
  font-size: 40px;
}
.prose h2 {
  border-top: 1px solid var(--line);
  margin: 50px 0 18px;
  padding-top: 38px;
  font-size: 31px;
}
.prose h3 {
  margin: 38px 0 16px;
  font-size: 23px;
}
.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose figure,
.prose table,
.prose > img {
  margin-bottom: 24px;
}
.prose ul,
.prose ol {
  padding-left: 26px;
}
.prose li {
  margin: 8px 0;
}
.prose a {
  color: var(--blue);
  text-underline-offset: 3px;
  text-decoration: underline;
}
.prose img {
  border: 1px solid var(--line);
  object-fit: contain;
  background: #f6fafc;
  border-radius: 5px;
  height: auto;
  max-height: 700px;
  margin: 28px auto;
  padding: 6px;
}
.prose blockquote {
  border-left: 4px solid var(--bright);
  background: #eef8fc;
  margin-left: 0;
  padding: 20px 24px;
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 38px 0;
}
.prose table {
  border-collapse: collapse;
  width: 100%;
}
.prose th,
.prose td {
  border: 1px solid var(--line);
  text-align: left;
  padding: 12px;
}
.prose th {
  background: #eaf6fb;
}
.videoEmbed {
  aspect-ratio: 16 / 9;
  background: #06192c;
  border-radius: 5px;
  margin: 24px 0 34px;
  overflow: hidden;
}
.videoEmbed iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}
.legalProse {
  max-width: 900px;
}
.legalProse > h1:empty {
  display: none;
}
.contactSection {
  background: var(--cream);
}
.contactGrid {
  grid-template-columns: 360px 1fr;
  align-items: start;
  gap: 70px;
  display: grid;
}
.contactInfo h2,
.formPanel h2 {
  font-size: 38px;
}
.contactInfo > p {
  margin: 20px 0 32px;
}
.contactMethod {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}
.contactMethod small {
  color: #8293a1;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 800;
  display: block;
}
.contactMethod a {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 20px;
}
.contactMethod p {
  color: #52697c;
  margin: 0;
  line-height: 1.65;
}
.contactInfo .textLink {
  margin-top: 22px;
  display: inline-block;
}
.formPanel {
  border: 1px solid var(--line);
  background: #fff;
  padding: 44px;
}
.formPanel > p {
  color: var(--muted);
  margin: 12px 0 30px;
  font-size: 12px;
}
.contactForm label {
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
}
.contactForm label span {
  color: #8394a1;
  text-transform: none;
  font-size: 9px;
  font-weight: 400;
  display: inline;
}
.formGrid {
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
  display: grid;
}
.contactForm input,
.contactForm select,
.contactForm textarea {
  letter-spacing: 0;
  text-transform: none;
  background: #fff;
  border: 1px solid #cddde6;
  border-radius: 3px;
  width: 100%;
  padding: 13px 14px;
  font-size: 14px;
}
.contactForm input:focus,
.contactForm select:focus,
.contactForm textarea:focus {
  border-color: var(--blue);
}
.contactForm textarea {
  resize: vertical;
  line-height: 1.6;
}
.honeypot {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  left: -10000px;
  overflow: hidden;
}
.formActions {
  align-items: center;
  gap: 20px;
  display: flex;
}
.formStatus {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}
.formStatus.sent {
  color: #147447;
}
.formStatus.error {
  color: #a22b2b;
}
@media (width<=1100px) {
  .navWrap nav {
    display: none;
  }
  .mobileMenu {
    margin-left: 14px;
    display: block;
    position: relative;
  }
  .mobileMenu summary {
    cursor: pointer;
    gap: 4px;
    padding: 12px 5px;
    list-style: none;
    display: grid;
  }
  .mobileMenu summary::-webkit-details-marker {
    display: none;
  }
  .mobileMenu summary span {
    background: var(--navy);
    width: 23px;
    height: 2px;
    display: block;
  }
  .mobileMenu > div {
    border: 1px solid var(--line);
    background: #fff;
    flex-direction: column;
    min-width: 230px;
    padding: 12px;
    display: flex;
    position: absolute;
    top: 52px;
    right: 0;
    box-shadow: 0 18px 45px #09233f24;
  }
  .mobileMenu > div a {
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    padding: 13px 10px;
    font-size: 13px;
    font-weight: 700;
  }
  .mobileMenu > div a:last-child {
    background: var(--blue);
    color: #fff;
    text-align: center;
    margin-top: 8px;
  }
  .hero {
    padding-top: 65px;
  }
  .heroGrid {
    grid-template-columns: 1fr;
  }
  .heroCopy {
    max-width: 680px;
  }
  .productStage {
    margin-top: 35px;
  }
  .browserCard {
    left: 8%;
  }
  .stripGrid {
    grid-template-columns: 1fr 1fr;
  }
  .stripIntro {
    grid-column: span 2;
  }
  .sectionHead {
    gap: 40px;
  }
  .autopilotGrid {
    gap: 55px;
  }
  .faqGrid,
  .contactGrid {
    gap: 50px;
  }
  .footerGrid {
    gap: 45px;
  }
  .knowledgeGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articleLayout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 40px;
  }
}
@media (width<=700px) {
  .wrap {
    width: min(100% - 32px, 1160px);
  }
  .utilityInner > span {
    display: none;
  }
  .utilityInner {
    justify-content: center;
  }
  .utilityInner div {
    gap: 15px;
  }
  .utilityInner div a:last-child {
    display: none;
  }
  .siteHeader {
    height: 72px;
  }
  .brand img {
    width: 190px;
  }
  .buttonSmall {
    display: none;
  }
  .mobileMenu {
    margin-left: auto;
  }
  .hero {
    padding: 58px 0 78px;
  }
  .hero h1,
  .pageHero h1 {
    font-size: 49px;
  }
  .heroLead,
  .pageHero p {
    font-size: 16px;
  }
  .heroActions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .trustRow {
    flex-wrap: wrap;
    gap: 12px;
  }
  .trustRow div {
    width: 30%;
  }
  .productStage {
    height: 335px;
    margin-top: 45px;
  }
  .browserCard {
    transform-origin: 0 0;
    width: 580px;
    left: 5px;
    transform: scale(0.57);
  }
  .scanCard {
    transform-origin: 0 100%;
    bottom: 8px;
    transform: scale(0.73);
  }
  .labelCard {
    bottom: 15px;
    right: 0;
    transform: scale(0.78);
  }
  .stripGrid {
    display: block;
  }
  .stripIntro {
    margin-bottom: 30px;
  }
  .stripItem {
    margin: 18px 0;
  }
  .section {
    padding: 75px 0;
  }
  .sectionHead,
  .autopilotGrid,
  .pricingGrid,
  .faqGrid,
  .footerGrid,
  .featureRow,
  .pricingDetailGrid,
  .faqCategory,
  .knowledgeGrid,
  .articleLayout,
  .contactGrid {
    display: block;
  }
  .sectionHead h2,
  .centerHead h2,
  .faqIntro h2,
  .contactInfo h2,
  .formPanel h2 {
    font-size: 36px;
  }
  .sectionHead > p {
    margin-top: 18px;
  }
  .featureGrid {
    display: block;
  }
  .featureCard,
  .featureCard.featured {
    margin-bottom: 14px;
  }
  .featureCard.featured {
    display: block;
  }
  .featureVisual {
    height: 405px;
  }
  .featureText {
    padding: 38px 28px;
  }
  .featureCard:not(.featured) {
    min-height: 290px;
  }
  .actualLabelPreview {
    height: 135px;
  }
  .autopilot {
    padding: 75px 0;
  }
  .autopilot h2 {
    font-size: 37px;
  }
  .process {
    margin-top: 50px;
  }
  .priceCard,
  .detailPriceCard {
    margin-bottom: 18px;
    padding: 30px 24px;
  }
  .faqIntro,
  .articleAside {
    margin-bottom: 35px;
    position: static;
  }
  .ctaInner {
    text-align: center;
    display: block;
  }
  .ctaInner > div:last-child {
    margin-top: 28px;
  }
  .footerGrid {
    gap: 35px;
  }
  .footerBottom {
    line-height: 2;
    display: block;
  }
  .footerBottom div {
    margin-top: 8px;
  }
  .footerBrand img {
    width: 230px;
  }
  .pageHero {
    padding: 60px 0 65px;
  }
  .featureRow {
    min-height: 0;
    margin-bottom: 16px;
  }
  .featureRow:nth-child(2n) > div:first-child,
  .featureRow:nth-child(2n) .featureRowVisual {
    grid-area: auto;
  }
  .featureRow > div:first-child {
    padding: 34px 25px;
  }
  .featureRow h2 {
    font-size: 32px;
  }
  .featureRowVisual {
    min-height: 280px;
    padding: 24px;
  }
  .detailPriceCard .includedList {
    min-height: 0;
  }
  .faqCategory {
    padding: 28px 23px;
  }
  .faqCategory > h2 {
    margin-bottom: 25px;
  }
  .knowledgeCard {
    min-height: 270px;
    margin-bottom: 15px;
  }
  .articleLayout > article,
  .legalProse {
    padding: 28px 22px;
  }
  .articleAside {
    border: 1px solid var(--line);
    background: #fff;
    padding: 25px;
  }
  .prose {
    font-size: 15px;
  }
  .prose h2 {
    font-size: 27px;
  }
  .formPanel {
    margin-top: 40px;
    padding: 28px 22px;
  }
  .formGrid {
    display: block;
  }
  .formActions {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
