:root {
  --paper: #f6f5ef;
  --white: #fff;
  --navy: #102836;
  --navy-2: #173b49;
  --green: #0f7859;
  --green-2: #0a5d46;
  --lime: #c9f24b;
  --mint: #dff5e9;
  --blue: #dceef2;
  --ink: #142b36;
  --muted: #63737a;
  --line: #d8dfdc;
  --danger: #b8493e;
  --radius: 24px;
  --shadow: 0 22px 65px rgba(15, 40, 53, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, svg { max-width: 100%; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -60px; padding: 10px 15px; color: #fff; background: #000; border-radius: 9px; }
.skip-link:focus { top: 16px; }
.disclosure { padding: 7px 20px; color: #c9d8dc; background: #071a24; text-align: center; font-size: 11px; letter-spacing: .2px; }
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 40, 54, .1);
  background: rgba(246, 245, 239, .91);
  backdrop-filter: blur(18px);
}
.header-row { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); text-decoration: none; }
.brand-mark { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; }
.brand-mark svg { width: 43px; height: 43px; overflow: visible; fill: var(--navy); }
.brand-mark .brand-mark__line { fill: none; stroke: var(--lime); stroke-width: 2.2; stroke-linecap: round; }
.brand > span:last-child { display: grid; line-height: 1.12; }
.brand b { font-size: 17px; letter-spacing: -.3px; }
.brand small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 23px; }
.desktop-nav a { position: relative; padding: 28px 0 26px; color: #3f545c; font-size: 13px; font-weight: 720; text-decoration: none; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--navy); }
.desktop-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: 19px; height: 2px; background: var(--green); }
.header-link { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid var(--navy); border-radius: 999px; color: var(--navy); font-size: 12px; font-weight: 800; text-decoration: none; transition: .2s ease; }
.header-link:hover { color: #fff; background: var(--navy); }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary { width: 44px; height: 44px; display: grid; place-content: center; gap: 4px; border: 1px solid var(--line); border-radius: 13px; list-style: none; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 18px; height: 2px; display: block; background: var(--navy); }
.mobile-menu nav { position: absolute; right: 0; top: 52px; width: min(310px, calc(100vw - 30px)); padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.mobile-menu nav a { display: block; padding: 12px; border-radius: 10px; text-decoration: none; font-weight: 750; }
.mobile-menu nav a:hover, .mobile-menu nav a[aria-current="page"] { background: var(--mint); }

.home-hero {
  position: relative;
  min-height: 655px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(16,40,54,.97), rgba(16,40,54,.91)),
    radial-gradient(circle at 70% 20%, #297a7c, transparent 35%);
}
.home-hero::before, .home-hero::after { content: ""; position: absolute; border: 1px solid rgba(201,242,75,.18); border-radius: 50%; pointer-events: none; }
.home-hero::before { width: 510px; height: 510px; top: -250px; right: 8%; }
.home-hero::after { width: 760px; height: 760px; bottom: -600px; left: 28%; }
.home-hero__grid { position: relative; z-index: 1; padding-block: 70px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 66px; }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: 1.65px; text-transform: uppercase; }
.home-hero .eyebrow { color: var(--lime); }
.eyebrow > span { width: 28px; height: 1px; display: inline-block; margin: 0 9px 4px 0; background: currentColor; }
.hero-copy h1 { max-width: 690px; margin: 0; font-size: clamp(47px, 5.6vw, 76px); line-height: .98; letter-spacing: -4.5px; }
.hero-copy__lead { max-width: 640px; margin: 23px 0 28px; color: #c6d5d9; font-size: 18px; line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.button { min-height: 51px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 12px; font-size: 14px; font-weight: 850; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button--lime { color: var(--navy); background: var(--lime); }
.button--lime:hover { background: #d8ff61; }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.35); background: transparent; }
.button--ghost:hover { border-color: #fff; }
.button--dark { color: #fff; background: var(--navy); }
.button--dark:hover { background: var(--green-2); }
.hero-points { margin: 25px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; color: #acc1c8; font-size: 11px; list-style: none; }
.hero-points i { margin-right: 5px; color: var(--lime); font-style: normal; font-weight: 900; }

.launch-panel { position: relative; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; overflow: hidden; color: var(--ink); background: #edf0e8; box-shadow: 0 35px 80px rgba(0,0,0,.28); transform: rotate(1.1deg); }
.launch-panel__top { height: 46px; padding: 0 17px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid #d0d8d4; color: #617178; font-size: 9px; font-style: normal; letter-spacing: .9px; }
.launch-panel__top > span { display: flex; gap: 5px; }
.launch-panel__top i { width: 8px; height: 8px; border-radius: 50%; background: #b5bfbb; }
.launch-panel__top b { color: var(--navy); font-size: 9px; }
.launch-panel__top em { justify-self: end; font-style: normal; }
.launch-panel__body { padding: 28px; display: grid; grid-template-columns: 180px 1fr; gap: 26px; align-items: center; }
.launch-panel__qr { text-align: center; }
.launch-panel__qr p { margin: 10px 0 0; color: #77858a; font-size: 10px; line-height: 1.35; }
.launch-panel__qr p b { color: var(--danger); }
.demo-qr { position: relative; display: grid; place-items: center; color: var(--navy); background: #fff; border-radius: 18px; box-shadow: inset 0 0 0 1px #d7dfdc; }
.demo-qr svg { display: block; width: 100%; height: 100%; filter: blur(.23px); }
.demo-qr > span { position: absolute; left: 50%; top: 50%; padding: 4px 6px; transform: translate(-50%, -50%) rotate(-8deg); border: 2px solid #fff; border-radius: 5px; color: #fff; background: var(--danger); font-size: 9px; font-weight: 950; letter-spacing: .8px; box-shadow: 0 3px 9px rgba(16,40,54,.2); }
.demo-qr--hero { width: 164px; height: 164px; padding: 9px; margin-inline: auto; }
.demo-qr--large { width: 260px; height: 260px; padding: 12px; }
.demo-qr--large > span { padding: 6px 8px; font-size: 11px; }
.status-label { margin: 0 0 7px; color: #748388; font-size: 9px; font-weight: 850; letter-spacing: 1.2px; text-transform: uppercase; }
.launch-panel__status h2 { margin: 0 0 16px; color: var(--navy); font-size: 22px; line-height: 1.15; }
.launch-panel__status ul { margin: 0 0 17px; padding: 0; border-top: 1px solid #d4dcda; list-style: none; }
.launch-panel__status li { padding: 9px 0; display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid #d4dcda; font-size: 10px; }
.launch-panel__status li span { color: #718086; }
.launch-panel__status li b { color: var(--green); }
.launch-panel__status > a { color: var(--navy); font-size: 11px; font-weight: 850; text-decoration: none; }
.launch-panel__status > a span { margin-left: 4px; color: var(--green); }
.launch-panel__note { margin: 0; padding: 12px 18px; border-top: 1px solid #d0d8d4; color: #64747a; background: #fff; text-align: center; font-size: 9.5px; }
.launch-panel__note b { color: var(--navy); }

.quick-links { width: min(1180px, calc(100% - 48px)); margin: -34px auto 0; position: relative; z-index: 3; display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--line); box-shadow: var(--shadow); }
.quick-links a { min-height: 112px; padding: 19px 17px; display: grid; grid-template-columns: 35px 1fr; align-content: center; column-gap: 10px; color: var(--navy); background: #fff; text-decoration: none; transition: background .18s ease, color .18s ease; }
.quick-links a:hover { background: var(--mint); }
.quick-links span { grid-row: 1/3; width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; color: var(--lime); background: var(--navy); font-size: 9px; font-weight: 900; }
.quick-links b { font-size: 12px; line-height: 1.15; }
.quick-links small { margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.25; }

.section { padding: 92px max(24px, calc((100vw - 1180px) / 2)); }
.section--compact { padding-top: 74px; padding-bottom: 74px; }
.section--tint { background: #e8eee9; }
.section--dark { color: #fff; background: var(--navy); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head--row { max-width: none; display: grid; grid-template-columns: 1fr 420px; gap: 50px; align-items: end; }
.section-head h2 { margin: 0; color: var(--navy); font-size: clamp(35px, 4.6vw, 56px); line-height: 1.03; letter-spacing: -2.6px; }
.section-head > p:last-child, .section-head--row > p { color: var(--muted); font-size: 16px; }
.section-head--light h2 { color: #fff; }
.section-head--light .eyebrow { color: var(--lime); }
.diagnostic { padding: 32px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 16px 45px rgba(15,40,53,.08); }
.diagnostic__intro { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.diagnostic__state { margin: 0 0 6px; color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .8px; text-transform: uppercase; }
.diagnostic__intro h3 { margin: 0 0 5px; font-size: 25px; letter-spacing: -.7px; }
.diagnostic__intro p:last-child { margin: 0; color: var(--muted); }
.check-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.check-grid article { min-height: 94px; padding: 16px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 16px; background: #f8faf7; transition: .25s ease; }
.check-grid article i { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; color: var(--navy); background: var(--blue); font-style: normal; font-weight: 900; }
.check-grid article b, .check-grid article span { display: block; }
.check-grid article b { font-size: 12px; }
.check-grid article span { margin-top: 4px; color: var(--muted); font-size: 9.5px; line-height: 1.3; }
.check-grid article.is-ok { border-color: #9bc9b6; background: #f0fbf5; }
.check-grid article.is-ok i { color: #fff; background: var(--green); }
.check-grid article.is-bad { border-color: #e4aea8; background: #fff5f3; }
.check-grid article.is-bad i { color: #fff; background: var(--danger); }
.diagnostic__result { margin: 18px 0 0; padding: 14px 16px; border-left: 3px solid var(--green); color: #36525c; background: var(--mint); border-radius: 0 12px 12px 0; font-size: 13px; }

.issue-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.issue-grid > * { min-height: 250px; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid #d2dcd7; border-radius: 20px; background: rgba(255,255,255,.7); text-decoration: none; transition: .2s ease; }
.issue-grid > a:hover { transform: translateY(-4px); border-color: var(--green); background: #fff; box-shadow: 0 16px 40px rgba(15,40,53,.09); }
.issue-grid__mark { min-width: 43px; height: 43px; padding: 0 8px; display: grid; place-items: center; border-radius: 12px; color: var(--lime); background: var(--navy); font-size: 10px; font-weight: 950; letter-spacing: .6px; }
.issue-grid h3 { margin: 22px 0 8px; font-size: 21px; line-height: 1.15; letter-spacing: -.6px; }
.issue-grid p { margin: 0 0 20px; color: var(--muted); font-size: 13px; }
.issue-grid b { margin-top: auto; color: var(--green); font-size: 11px; }
.issue-grid--three { grid-template-columns: repeat(3, 1fr); }
.issue-grid--three > * { min-height: 230px; }

.split-copy { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 76px; align-items: center; }
.split-copy h2 { margin: 0 0 20px; color: var(--navy); font-size: clamp(34px, 4vw, 50px); line-height: 1.06; letter-spacing: -2.2px; }
.split-copy p { color: var(--muted); font-size: 16px; }
.text-link { display: inline-block; margin-top: 8px; color: var(--green); font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.safe-note { position: relative; padding: 31px; border-radius: 22px 22px 22px 6px; color: #d7e6e8; background: var(--navy); box-shadow: var(--shadow); }
.safe-note > span { color: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; }
.safe-note h3 { margin: 13px 0 10px; color: #fff; font-size: 25px; line-height: 1.15; letter-spacing: -.7px; }
.safe-note p { margin: 0; color: #b7cbd0; font-size: 13px; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare article { padding: 32px; border: 1px solid rgba(255,255,255,.15); border-radius: 23px; background: rgba(255,255,255,.04); }
.compare article:first-child { border-color: rgba(201,242,75,.5); }
.compare small { color: var(--lime); font-weight: 850; letter-spacing: .8px; text-transform: uppercase; }
.compare h3 { margin: 12px 0 10px; font-size: 28px; }
.compare p { color: #b7cbd0; }
.compare a { color: var(--lime); font-size: 13px; font-weight: 850; }
.faq-list { display: grid; gap: 9px; }
.faq-list details { border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.faq-list summary { position: relative; padding: 19px 54px 19px 20px; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 19px; top: 13px; font-size: 25px; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0; padding: 0 20px 19px; color: var(--muted); font-size: 14px; }
.faq-list--wide { max-width: 900px; margin-inline: auto; }
.launch-steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; list-style: none; counter-reset: launch-step; }
.launch-steps li { min-height: 175px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: #fff; counter-increment: launch-step; }
.launch-steps li::before { content: "0" counter(launch-step); margin-bottom: 35px; color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: 1px; }
.launch-steps b { color: var(--navy); font-size: 15px; line-height: 1.25; }
.launch-steps span { margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.address-note { margin: 18px 0 0; padding: 15px 18px; border-left: 3px solid var(--green); border-radius: 0 12px 12px 0; color: #4f666d; background: #edf2ee; font-size: 12px; line-height: 1.55; }
.address-note p { margin: 0; }
.intent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.intent-grid article { min-height: 255px; padding: 25px; display: flex; flex-direction: column; border: 1px solid #d2dcd7; border-radius: 20px; background: rgba(255,255,255,.75); }
.intent-grid small { color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: .9px; text-transform: uppercase; }
.intent-grid h3 { margin: 17px 0 9px; font-size: 22px; line-height: 1.12; }
.intent-grid p { margin: 0 0 20px; color: var(--muted); font-size: 13px; }
.intent-grid a { margin-top: auto; color: var(--green); font-size: 11px; font-weight: 850; }

.article-hero { position: relative; padding: 56px 0 68px; color: #fff; background: var(--navy); overflow: hidden; }
.article-hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -300px; border: 1px solid rgba(201,242,75,.22); border-radius: 50%; }
.breadcrumbs { position: relative; z-index: 1; margin-bottom: 40px; display: flex; gap: 9px; color: #8fa9b0; font-size: 11px; }
.breadcrumbs a { color: var(--lime); }
.article-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 280px; gap: 80px; align-items: end; }
.article-hero .eyebrow { color: var(--lime); }
.article-hero h1 { max-width: 860px; margin: 0 0 20px; font-size: clamp(43px, 5.5vw, 68px); line-height: 1; letter-spacing: -3.7px; }
.article-hero__grid > div > p:last-child { max-width: 780px; margin: 0; color: #bacdd2; font-size: 17px; }
.article-hero__stamp { padding: 24px; display: grid; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.04); }
.article-hero__stamp b { color: var(--lime); font-size: 11px; letter-spacing: .7px; text-transform: uppercase; }
.article-hero__stamp span { margin-top: 6px; color: #afc3c9; font-size: 13px; }
.article-hero__stamp i { margin-top: 16px; color: var(--lime); font-size: 30px; font-style: normal; }
.article-section { padding-top: 78px; }
.article-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 72px; align-items: start; }
.prose { max-width: 820px; }
.prose h2 { margin: 42px 0 14px; color: var(--navy); font-size: 32px; line-height: 1.12; letter-spacing: -1.2px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); }
.number-list { margin: 0; padding: 0; display: grid; gap: 13px; list-style: none; counter-reset: item; }
.number-list li { position: relative; min-height: 68px; padding: 16px 18px 16px 62px; border: 1px solid var(--line); border-radius: 16px; background: #fff; counter-increment: item; }
.number-list li::before { content: counter(item); position: absolute; left: 17px; top: 17px; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; color: var(--lime); background: var(--navy); font-size: 10px; font-weight: 900; }
.number-list b, .number-list span { display: block; }
.number-list b { color: var(--navy); }
.number-list span { margin-top: 3px; font-size: 13px; }
.aside-card { position: sticky; top: 112px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 15px 40px rgba(15,40,53,.06); }
.status-list { margin: 0; padding: 0; list-style: none; }
.status-list li { padding: 13px 0; display: flex; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--line); }
.status-list li:last-child { border: 0; }
.status-list b, .status-list span { font-size: 12px; }
.status-list span { color: var(--green); text-align: right; }
.table-wrap { overflow-x: auto; border: 1px solid #ccd8d3; border-radius: 20px; background: rgba(255,255,255,.75); }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 18px 20px; border-bottom: 1px solid #d2dcd7; text-align: left; font-size: 13px; }
th { color: #fff; background: var(--navy); font-size: 11px; letter-spacing: .4px; }
td:first-child { color: var(--navy); font-weight: 850; }
tr:last-child td { border: 0; }
.qr-workbench { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: center; }
.qr-workbench__visual { padding: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 28px; background: #eaf0ea; }
.mini-steps { display: grid; gap: 10px; }
.mini-steps p { margin: 0; padding: 15px 17px; display: grid; border-left: 3px solid var(--green); color: var(--muted); background: #fff; border-radius: 0 13px 13px 0; }
.mini-steps b { color: var(--navy); font-size: 14px; }
.mini-steps span { margin-top: 3px; font-size: 12px; }
.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.decision-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.decision-card--accent { color: #fff; background: var(--navy); border-color: var(--navy); }
.decision-card small { color: var(--green); font-weight: 850; text-transform: uppercase; letter-spacing: 1px; }
.decision-card--accent small, .decision-card--accent a { color: var(--lime); }
.decision-card h2 { margin: 11px 0 12px; color: var(--navy); font-size: 34px; line-height: 1.1; }
.decision-card--accent h2 { color: #fff; }
.decision-card p, .decision-card li { color: var(--muted); }
.decision-card--accent p, .decision-card--accent li { color: #b9cdd1; }
.decision-card a { color: var(--green); font-weight: 850; }
.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step-cards article { padding: 27px; border: 1px solid #d2dcd7; border-radius: 20px; background: rgba(255,255,255,.7); }
.step-cards article > b { color: var(--green); font-size: 11px; letter-spacing: 1px; }
.step-cards h3 { margin: 14px 0 7px; font-size: 21px; }
.step-cards p { margin: 0; color: var(--muted); font-size: 13px; }
.symptom-list { display: grid; gap: 14px; }
.symptom-list article { padding: 30px; display: grid; grid-template-columns: 150px 1fr 1fr; gap: 24px; align-items: start; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.symptom-list article > span { width: fit-content; padding: 7px 10px; border-radius: 8px; color: var(--green); background: var(--mint); font-size: 10px; font-weight: 900; }
.symptom-list h2 { margin: 0; color: var(--navy); font-size: 26px; line-height: 1.13; }
.symptom-list p { margin: 0; color: var(--muted); font-size: 13px; }
.symptom-list ol { margin: 0; padding-left: 18px; color: var(--muted); font-size: 12px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.timeline > div { position: relative; padding: 0 20px 0 0; }
.timeline > div::before { content: ""; position: absolute; top: 17px; left: 34px; right: 0; height: 1px; background: #b8c9c1; }
.timeline b { position: relative; z-index: 1; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--lime); background: var(--navy); font-size: 10px; }
.timeline p { margin: 19px 0 0; }
.timeline strong, .timeline span { display: block; }
.timeline strong { color: var(--navy); font-size: 14px; }
.timeline span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.security-board { padding: 42px; display: grid; grid-template-columns: 1fr 410px; gap: 70px; border-radius: 28px; color: #fff; background: var(--navy); }
.security-board h2 { margin: 0 0 15px; font-size: 40px; line-height: 1.06; letter-spacing: -1.7px; }
.security-board p { color: #b6cbd0; }
.security-checks { margin: 0; padding: 0; display: grid; gap: 8px; list-style: none; }
.security-checks li { padding: 13px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.04); }
.security-checks li > span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 8px; color: var(--navy); background: var(--lime); font-weight: 900; }
.security-checks p { margin: 0; }
.security-checks b, .security-checks small { display: block; }
.security-checks b { color: #fff; font-size: 12px; }
.security-checks small { margin-top: 2px; color: #9fb8bf; font-size: 9px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.contact-grid h2 { margin: 0 0 12px; overflow-wrap: anywhere; font-size: clamp(32px, 4vw, 48px); }
.contact-grid article > p:not(.eyebrow) { color: var(--muted); }
.contact-stack { display: grid; gap: 34px; }
.contact-stack article + article { padding-top: 30px; border-top: 1px solid var(--line); }
.contact-grid .contact-address { max-width: 680px; font-size: clamp(27px, 3.2vw, 39px); line-height: 1.1; }
.legal { margin-inline: auto; }
.related-pages { padding: 68px 0; border-top: 1px solid var(--line); background: #edf2ee; }
.related-pages h2 { margin: 0 0 25px; color: var(--navy); font-size: clamp(30px, 4vw, 44px); letter-spacing: -1.8px; }
.related-pages nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.related-pages a { min-height: 110px; padding: 20px; display: flex; flex-direction: column; border: 1px solid #cfdad5; border-radius: 16px; color: var(--navy); background: #fff; text-decoration: none; }
.related-pages a:hover { border-color: var(--green); }
.related-pages b { font-size: 14px; }
.related-pages span { margin-top: 6px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.not-found { min-height: 570px; display: grid; place-items: center; color: #fff; background: var(--navy); }
.not-found .wrap { max-width: 730px; text-align: center; }
.not-found .eyebrow { color: var(--lime); }
.not-found h1 { margin: 0; font-size: clamp(52px, 8vw, 90px); letter-spacing: -4px; }
.not-found p { color: #b8ccd1; font-size: 17px; }
.not-found .hero-actions { justify-content: center; }

.footer { padding: 66px 0 20px; color: #a9bec4; background: #071a24; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 54px; }
.brand--footer { color: #fff; }
.brand--footer .brand-mark svg { fill: #fff; }
.footer-grid > div:first-child > p { max-width: 300px; margin-top: 20px; font-size: 12px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid > div > b { margin-bottom: 7px; color: #fff; font-size: 12px; }
.footer-grid a:not(.brand) { color: #a9bec4; font-size: 11px; text-decoration: none; }
.footer-grid a:hover { color: var(--lime); }
.footer-location { color: #829ba3; font-size: 10px; }
.footer-bottom { margin-top: 54px; padding-top: 20px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10.5px; }
.footer-bottom p { max-width: 740px; margin: 0; }

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .header-link { margin-left: auto; }
  .home-hero__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero-copy h1 { font-size: clamp(45px, 6.3vw, 67px); }
  .launch-panel__body { grid-template-columns: 145px 1fr; padding: 22px; gap: 18px; }
  .demo-qr--hero { width: 135px; height: 135px; }
  .issue-grid { grid-template-columns: 1fr 1fr; }
  .quick-links { grid-template-columns: repeat(3, 1fr); }
  .intent-grid { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2/4; }
  .symptom-list article { grid-template-columns: 120px 1fr; }
  .symptom-list article > :last-child { grid-column: 2; }
  .security-board { grid-template-columns: 1fr 360px; gap: 35px; }
}

@media (max-width: 820px) {
  .wrap { width: min(100% - 32px, 680px); }
  .header-row { min-height: 69px; }
  .header-link { display: none; }
  .mobile-menu { display: block; }
  .home-hero { min-height: auto; }
  .home-hero__grid { padding-block: 54px 70px; grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 650px; }
  .launch-panel { max-width: 590px; transform: none; }
  .launch-panel__body { grid-template-columns: 170px 1fr; }
  .demo-qr--hero { width: 158px; height: 158px; }
  .quick-links { width: calc(100% - 32px); margin-top: -24px; grid-template-columns: 1fr 1fr; }
  .quick-links a { min-height: 100px; }
  .section { padding: 72px 16px; }
  .section--compact { padding-top: 64px; padding-bottom: 64px; }
  .section-head--row, .split-copy, .article-grid, .qr-workbench, .security-board, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .aside-card { position: static; }
  .article-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .article-hero__stamp { max-width: 300px; }
  .decision-grid, .compare { grid-template-columns: 1fr; }
  .step-cards { grid-template-columns: 1fr; }
  .launch-steps { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .issue-grid--three { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .related-pages nav { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/3; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .disclosure { padding-inline: 12px; font-size: 10px; line-height: 1.4; }
  .brand small { display: none; }
  .home-hero__grid { padding-top: 46px; }
  .hero-copy h1 { font-size: 42px; letter-spacing: -2.6px; }
  .hero-copy__lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-points { display: grid; gap: 6px; }
  .launch-panel__body { padding: 20px; grid-template-columns: 1fr; }
  .launch-panel__qr { display: grid; grid-template-columns: 135px 1fr; align-items: center; gap: 15px; text-align: left; }
  .demo-qr--hero { width: 135px; height: 135px; }
  .section { padding-block: 60px; }
  .quick-links { grid-template-columns: 1fr 1fr; }
  .quick-links a { min-height: 94px; padding: 15px 12px; grid-template-columns: 31px 1fr; column-gap: 8px; }
  .quick-links span { width: 31px; height: 31px; }
  .quick-links small { font-size: 9px; }
  .section-head h2, .split-copy h2 { font-size: 34px; letter-spacing: -1.7px; }
  .diagnostic { padding: 21px; }
  .diagnostic__intro { align-items: stretch; flex-direction: column; }
  .check-grid { grid-template-columns: 1fr; }
  .issue-grid { grid-template-columns: 1fr; }
  .intent-grid, .launch-steps { grid-template-columns: 1fr; }
  .launch-steps li { min-height: 145px; }
  .launch-steps li::before { margin-bottom: 24px; }
  .issue-grid > * { min-height: 220px; }
  .article-hero { padding: 38px 0 50px; }
  .breadcrumbs { margin-bottom: 28px; }
  .article-hero h1 { font-size: 42px; letter-spacing: -2.5px; }
  .article-hero__grid > div > p:last-child { font-size: 15px; }
  .demo-qr--large { width: 230px; height: 230px; }
  .qr-workbench__visual { padding: 22px; }
  .decision-card { padding: 25px; }
  .symptom-list article { grid-template-columns: 1fr; }
  .symptom-list article > :last-child { grid-column: auto; }
  .timeline { grid-template-columns: 1fr; }
  .timeline > div::before { display: none; }
  .security-board { padding: 25px; }
  .security-board h2 { font-size: 33px; }
  .footer-grid { grid-template-columns: 1fr; }
  .related-pages nav { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 380px) {
  .hero-copy h1 { font-size: 38px; letter-spacing: -2.1px; }
  .article-hero h1 { font-size: 36px; letter-spacing: -2px; }
}

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