:root {
  --ink: #0d1726;
  --muted: #526579;
  --muted-2: #738398;
  --bg: #f7f9fc;
  --bg-2: #eef3f9;
  --panel: #ffffff;
  --panel-2: #f2f6fb;
  --line: #d8e1ec;
  --accent: #1167e8;
  --accent-2: #0097df;
  --success: #16835b;
  --warning: #a66300;
  --danger: #c54141;
  --shadow: 0 24px 65px rgba(35, 65, 104, .13);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 3%, rgba(17, 103, 232, .12), transparent 32rem),
    radial-gradient(circle at 10% 25%, rgba(0, 151, 223, .08), transparent 25rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  background: var(--ink);
  color: var(--bg);
  padding: .75rem 1rem;
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: 6rem 0; }
.section-tight { padding: 3.5rem 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .79rem;
  font-weight: 850;
}
.eyebrow::before { content: ""; width: 1.7rem; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 7vw, 5.8rem); max-width: 13ch; }
h2 { font-size: clamp(2rem, 4.7vw, 3.75rem); max-width: 15ch; }
h3 { font-size: clamp(1.12rem, 2.4vw, 1.42rem); }
p { margin: 0; }
.lede { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 64ch; }
.small { color: var(--muted-2); font-size: .9rem; }

.topbar {
  border-bottom: 1px solid #d9e4f0;
  background: #eaf2ff;
  color: var(--muted);
  font-size: .86rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 38px;
}
.topbar strong { color: #0d1726; }
.topbar-note { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(210, 222, 235, .9);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.logo { display: inline-flex; width: 255px; flex: 0 0 auto; }
.logo img { display: block; width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 1.45rem; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: .93rem; font-weight: 700; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--ink); }
.nav-cta { display: flex; gap: .7rem; align-items: center; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  border-radius: 12px;
  padding: .72rem;
}
.menu-toggle svg { display: block; width: 23px; height: 23px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .85rem 1.2rem;
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
  min-height: 48px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 12px 34px rgba(17,103,232,.22); }
.btn-secondary { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.92); }
.btn-secondary:hover { border-color: #9bb5d2; }
.btn-small { min-height: 42px; padding: .7rem 1rem; font-size: .88rem; }
.btn svg { width: 18px; height: 18px; }
.is-disabled { opacity: .62; cursor: not-allowed; }

.hero { position: relative; overflow: hidden; padding: 5.5rem 0 3.5rem; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13,23,38,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,23,38,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: center; }
.hero-copy { padding: 1rem 0; }
.hero-copy .lede { margin-top: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .7rem 1.25rem; margin-top: 2.2rem; color: var(--muted); font-size: .92rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-proof svg { width: 18px; color: var(--success); }

.diagnostic-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 1.2rem;
  background: linear-gradient(165deg, #ffffff, #edf4fb);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}
.diagnostic-card::after {
  content: "";
  position: absolute;
  inset: 10% -14% -18% 18%;
  z-index: -1;
  background: radial-gradient(circle, rgba(17,103,232,.18), transparent 58%);
  filter: blur(20px);
}
.screen {
  color: #f6f9ff;
  border: 1px solid #294269;
  border-radius: 22px;
  background: #060d18;
  overflow: hidden;
}
.screen-head { color: #9fb0c6; display: flex; justify-content: space-between; align-items: center; padding: .85rem 1rem; border-bottom: 1px solid #1f3150; font-size: .83rem; }
.signal { display: flex; gap: 4px; }
.signal i { width: 5px; border-radius: 4px; background: var(--accent); }
.signal i:nth-child(1) { height: 7px; margin-top: 9px; }
.signal i:nth-child(2) { height: 11px; margin-top: 5px; }
.signal i:nth-child(3) { height: 16px; }
.screen-body { padding: 1.25rem; }
.scan-row { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: .8rem; padding: 1rem 0; border-bottom: 1px solid #172842; }
.scan-row:last-child { border-bottom: 0; }
.scan-icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: rgba(54,214,255,.1); color: var(--accent); }
.scan-icon svg { width: 20px; }
.scan-copy strong { display: block; font-size: .92rem; }
.scan-copy span { color: #91a4bd; font-size: .78rem; }
.status { padding: .35rem .6rem; border-radius: 999px; color: var(--success); background: rgba(108,224,163,.09); font-size: .72rem; font-weight: 850; }
.card-footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem .35rem .1rem; color: var(--muted); font-size: .82rem; }
.card-footer strong { color: var(--ink); }
.screen .scan-copy strong { color: #f7fbff; }

.trust-strip { border-top: 1px solid #dfe7f0; border-bottom: 1px solid #dfe7f0; background: rgba(255,255,255,.78); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.4rem; border-right: 1px solid #dfe7f0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1rem; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.section-head .lede { max-width: 46ch; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  position: relative;
  box-shadow: 0 12px 34px rgba(35,65,104,.06);
  min-height: 235px;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, #ffffff, #f5f8fc);
  overflow: hidden;
}
.card::before { content: ""; position: absolute; top: -6rem; right: -5rem; width: 10rem; height: 10rem; border-radius: 50%; background: rgba(17,103,232,.07); }
.card-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: var(--accent); background: rgba(17,103,232,.08); border: 1px solid rgba(17,103,232,.15); margin-bottom: 1.2rem; }
.card-icon svg { width: 23px; height: 23px; }
.card h3 { margin-bottom: .65rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card-note { display: inline-flex; margin-top: 1rem; color: var(--warning); font-size: .75rem; font-weight: 800; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: center; }
.process-list { display: grid; gap: 1rem; margin-top: 2rem; }
.process-item { display: grid; grid-template-columns: 50px 1fr; gap: 1rem; align-items: start; }
.process-number { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; border: 1px solid var(--line); color: var(--accent); font-weight: 900; background: var(--panel); }
.process-item p { margin-top: .35rem; color: var(--muted); }
.feature-panel { border: 1px solid var(--line); border-radius: 28px; padding: 2rem; background: linear-gradient(150deg, #ffffff, #eef5fd); box-shadow: var(--shadow); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; margin-top: 1.5rem; }
.feature { display: flex; gap: .7rem; padding: .95rem; border-radius: 14px; background: rgba(17,103,232,.045); color: var(--muted); }
.feature svg { width: 19px; min-width: 19px; color: var(--success); margin-top: .15rem; }

.areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.area-card { text-decoration: none; box-shadow: 0 12px 30px rgba(35,65,104,.055); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; background: rgba(255,255,255,.92); transition: transform .2s ease, border-color .2s ease; }
.area-card:hover { transform: translateY(-3px); border-color: #83a8d4; }
.area-card strong { display: flex; align-items: center; justify-content: space-between; font-size: 1.15rem; }
.area-card strong span { color: var(--accent); }
.area-card p { color: var(--muted); margin-top: .6rem; font-size: .9rem; }
.town-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.town-list span { border: 1px solid var(--line); border-radius: 999px; padding: .42rem .7rem; color: var(--muted); background: #ffffff; font-size: .82rem; }

.trade-banner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; border: 1px solid #9fc0e7; border-radius: 28px; padding: 2rem; background: linear-gradient(135deg, rgba(0,151,223,.08), rgba(17,103,232,.09)); }
.trade-banner p { color: var(--muted); margin-top: .75rem; max-width: 60ch; }

.compliance { border: 1px solid rgba(166,99,0,.24); border-radius: var(--radius); padding: 1.5rem; background: rgba(255,199,90,.12); }
.compliance-head { display: flex; gap: .8rem; align-items: flex-start; }
.compliance-head svg { width: 24px; min-width: 24px; color: var(--warning); }
.compliance h3 { margin-bottom: .6rem; }
.compliance p { color: var(--muted); font-size: .93rem; }

.faq { display: grid; gap: .75rem; max-width: 900px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: #ffffff; }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem 1.25rem; font-weight: 800; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.35rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 1.25rem 1.25rem; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2.5rem; }
.contact-copy .lede { margin-top: 1.25rem; }
.contact-methods { display: grid; gap: .8rem; margin-top: 1.6rem; }
.contact-method { display: flex; gap: .9rem; align-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: 15px; background: #ffffff; }
.contact-method svg { width: 22px; color: var(--accent); }
.contact-method strong { display: block; }
.contact-method span { color: var(--muted); font-size: .88rem; }
.form-card { border: 1px solid var(--line); border-radius: 28px; padding: 1.6rem; background: #ffffff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
label { color: #26374a; font-size: .86rem; font-weight: 750; }
input, select, textarea { width: 100%; border: 1px solid #cbd8e6; border-radius: 12px; background: #fbfdff; color: var(--ink); padding: .85rem .9rem; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(17,103,232,.10); }
textarea { min-height: 120px; resize: vertical; }
.form-note { color: var(--muted-2); font-size: .78rem; margin-top: .8rem; }
.hidden { position: absolute; left: -9999px; }

.site-footer { color: var(--ink); padding: 3rem 0 1.5rem; border-top: 1px solid #d8e1ec; background: #eef3f9; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 3rem; }
.footer-brand img { width: 290px; }
.footer-brand p { color: var(--muted); max-width: 43ch; margin-top: 1rem; }
.footer-col h3 { font-size: .95rem; letter-spacing: .01em; margin-bottom: .9rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #d8e1ec; color: var(--muted-2); font-size: .8rem; }

.mobile-bar { display: none; }

.page-hero { padding: 4.75rem 0 3rem; border-bottom: 1px solid #d8e1ec; }
.breadcrumb { color: var(--muted-2); font-size: .86rem; margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--muted); }
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 2.6rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 .7rem; }
.prose p, .prose li { color: var(--muted); }
.prose p + p { margin-top: 1rem; }
.prose ul { padding-left: 1.2rem; }
.side-card { position: sticky; top: 110px; border: 1px solid var(--line); border-radius: 20px; padding: 1.35rem; background: var(--panel); }
.side-card p { color: var(--muted); margin: .65rem 0 1rem; }


.section:nth-of-type(even) { background: rgba(238,243,249,.48); }
.hero + .trust-strip { position: relative; }
.logo img { mix-blend-mode: multiply; }
.footer-brand img { mix-blend-mode: multiply; }
input::placeholder, textarea::placeholder { color: #8d9bad; }
select { color-scheme: light; }


/* Automotive visual system */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 4%, var(--accent) 28%, var(--accent-2) 62%, transparent 96%);
  opacity: .58;
}

.hero {
  padding: 5.75rem 0 4rem;
  border-bottom: 1px solid #dce6f1;
  background:
    linear-gradient(112deg, rgba(255,255,255,.94) 0 54%, rgba(236,244,253,.72) 54% 100%);
}
.hero::before {
  background-image:
    linear-gradient(rgba(13,23,38,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,23,38,.035) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 68%, rgba(17,103,232,.055) 68% 69%, transparent 69% 72%, rgba(0,151,223,.045) 72% 73%, transparent 73%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
}
.hero::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: 2.1rem;
  width: 52%;
  height: 8px;
  transform: skewX(-28deg);
  background: linear-gradient(90deg, transparent, var(--accent-2) 35%, var(--accent) 82%, transparent);
  opacity: .82;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  position: relative;
  letter-spacing: -.058em;
}
.hero-copy h1::after {
  content: "";
  display: block;
  width: min(230px, 52%);
  height: 5px;
  margin-top: 1.25rem;
  transform: skewX(-28deg);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 45px 0 0 rgba(17,103,232,.16);
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.35rem;
}
.tech-tags span {
  padding: .42rem .72rem;
  border: 1px solid #c8d9ea;
  border-radius: 7px;
  background: rgba(255,255,255,.82);
  color: #34506d;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
  box-shadow: 0 7px 18px rgba(36,70,110,.055);
}

.programming-console {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 1rem;
  border: 1px solid #cfdbe8;
  border-radius: 30px 8px 30px 8px;
  background: linear-gradient(145deg, #ffffff, #eaf1f8);
  box-shadow: 0 34px 80px rgba(18,42,71,.22);
  clip-path: polygon(0 0, 96% 0, 100% 6%, 100% 100%, 4% 100%, 0 94%);
}
.programming-console::before {
  content: "";
  position: absolute;
  inset: 10% -7% -8% 18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,103,232,.24), transparent 64%);
  filter: blur(24px);
}
.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border: 1px solid #25415f;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  color: #eef6ff;
  background: linear-gradient(110deg, #071321, #102b49);
}
.console-header strong { display: block; font-size: .98rem; letter-spacing: .01em; }
.console-eyebrow { display: block; color: #7ea9ce; font-size: .64rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.console-status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .65rem;
  border: 1px solid rgba(54,221,159,.25);
  border-radius: 999px;
  color: #83efc3;
  background: rgba(30,166,112,.1);
  font-size: .71rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.console-status i { width: 8px; height: 8px; border-radius: 50%; background: #36dd9f; box-shadow: 0 0 0 5px rgba(54,221,159,.12); }
.console-screen {
  padding: 1rem;
  border: 1px solid #25415f;
  border-top-color: #172d45;
  color: #eef6ff;
  background:
    linear-gradient(rgba(61,118,165,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,118,165,.07) 1px, transparent 1px),
    #06101d;
  background-size: 28px 28px;
}
.console-primary {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: .8rem;
  padding: .95rem;
  border: 1px solid #1d4d73;
  border-radius: 14px;
  background: linear-gradient(115deg, rgba(17,103,232,.2), rgba(0,151,223,.07));
}
.module-id {
  display: grid;
  place-items: center;
  width: 58px;
  height: 52px;
  border: 1px solid #2b75ad;
  border-radius: 10px;
  color: #69c7ff;
  background: #091b2c;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.console-primary div:nth-child(2) span { display: block; color: #8eabc3; font-size: .73rem; }
.console-primary div:nth-child(2) strong { display: block; font-size: .95rem; }
.module-state { color: #74e7bc; font-size: .63rem; font-weight: 900; letter-spacing: .08em; }
.console-modules { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: .7rem; }
.console-module {
  min-width: 0;
  padding: .85rem;
  border: 1px solid #1d334b;
  border-radius: 12px;
  background: rgba(13,31,50,.88);
}
.module-code { display: block; color: #45baff; font-size: .62rem; font-weight: 900; letter-spacing: .1em; }
.console-module strong { display: block; margin-top: .25rem; font-size: .84rem; }
.console-module small { display: block; margin-top: .15rem; color: #8098ae; font-size: .68rem; }
.console-data {
  display: grid;
  grid-template-columns: .9fr .7fr 1.4fr;
  gap: 1px;
  margin-top: .7rem;
  overflow: hidden;
  border: 1px solid #1c334b;
  border-radius: 12px;
  background: #1c334b;
}
.console-data div { min-width: 0; padding: .75rem; background: #0b1a2a; }
.console-data span { display: block; color: #718ca5; font-size: .62rem; text-transform: uppercase; letter-spacing: .09em; }
.console-data strong { display: block; margin-top: .15rem; overflow: hidden; color: #e8f4ff; font-size: .73rem; white-space: nowrap; text-overflow: ellipsis; }
.console-check {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: .7rem;
  padding: .8rem .9rem;
  border: 1px solid rgba(54,221,159,.2);
  border-radius: 12px;
  background: rgba(30,166,112,.07);
}
.console-check span { display: block; color: #7fa18f; font-size: .65rem; }
.console-check strong { display: block; color: #dff8ed; font-size: .78rem; }
.check-mark { display: grid !important; place-items: center; width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; color: #06101d !important; background: #48daa5; font-size: .9rem !important; font-weight: 950; }
.console-footer { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem .4rem .05rem; color: #697e92; font-size: .74rem; }
.console-footer strong { color: #183552; }

.vehicle-strip {
  border-bottom: 1px solid #dce6f1;
  background: #fff;
}
.vehicle-strip-inner {
  display: grid;
  grid-template-columns: 215px 1fr;
  align-items: stretch;
}
.vehicle-strip-title {
  display: grid;
  align-content: center;
  padding: 1.35rem 1.5rem 1.35rem 0;
  border-right: 1px solid #dce6f1;
}
.vehicle-strip-title strong { font-size: .95rem; line-height: 1.25; }
.mini-label {
  color: var(--accent);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.vehicle-types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.vehicle-type {
  display: grid;
  place-items: center;
  gap: .25rem;
  min-height: 106px;
  padding: .75rem .55rem;
  border-right: 1px solid #e2eaf2;
  color: #1d3854;
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.vehicle-type:last-child { border-right: 0; }
.vehicle-type svg { width: 58px; height: 34px; color: var(--accent); transition: transform .2s ease; }
.vehicle-type:hover svg { transform: translateX(3px); }

.card {
  border-radius: 18px 4px 18px 4px;
  border-top: 3px solid #102a46;
  box-shadow: 0 13px 34px rgba(27,58,91,.075);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-top-color: var(--accent);
  box-shadow: 0 22px 48px rgba(24,59,97,.13);
}
.card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 4px;
  transform: skewX(-28deg) translateX(9px);
  transform-origin: right;
  background: linear-gradient(90deg, transparent, var(--accent-2), var(--accent));
}
.card-kicker {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  color: #7890a7;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.card-icon { border-radius: 10px 2px 10px 2px; }

.performance-section {
  position: relative;
  overflow: hidden;
  color: #f2f8ff;
  background:
    linear-gradient(112deg, #071525 0 54%, #0d2745 54% 100%);
}
.performance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(145,195,234,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145,195,234,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 34%, #000 80%, transparent);
}
.performance-grid {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 4rem;
  align-items: center;
}
.performance-visual { position: relative; }
.performance-visual > img {
  display: block;
  width: 100%;
  border: 1px solid rgba(125,186,230,.18);
  border-radius: 28px 7px 28px 7px;
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
}
.calibration-card {
  position: absolute;
  right: -1.2rem;
  bottom: -1.35rem;
  display: grid;
  min-width: 225px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(149,207,247,.25);
  border-radius: 13px;
  background: rgba(5,17,31,.92);
  box-shadow: 0 20px 45px rgba(0,0,0,.28);
}
.calibration-card span, .calibration-card small { color: #8faac1; font-size: .72rem; }
.calibration-card strong { color: #28adff; font-size: 1.05rem; }
.performance-copy .eyebrow { color: #34b6ff; }
.performance-copy h2 { color: #fff; max-width: 16ch; }
.performance-copy .lede { color: #aebfd0; margin-top: 1.4rem; }
.performance-points { display: grid; gap: .75rem; margin-top: 2rem; }
.performance-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .1rem .85rem;
  padding: .95rem 1rem;
  border: 1px solid rgba(138,190,229,.14);
  border-radius: 12px 3px 12px 3px;
  background: rgba(255,255,255,.035);
}
.performance-points span {
  grid-row: 1 / 3;
  color: #34b6ff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.performance-points strong { color: #f6fbff; }
.performance-points p { color: #98adc0; font-size: .86rem; }

.feature-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px 7px 28px 7px;
}
.feature-panel::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -72px;
  width: 220px;
  height: 220px;
  border: 28px solid rgba(17,103,232,.055);
  border-radius: 50%;
}
.process-number { border-radius: 11px 2px 11px 2px; }
.area-card { border-radius: 16px 3px 16px 3px; border-top: 3px solid #102a46; }
.area-card:hover { border-top-color: var(--accent); }
.trade-banner { position: relative; overflow: hidden; border-radius: 25px 6px 25px 6px; }
.trade-banner::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -2.2rem;
  width: 17rem;
  height: 5px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2));
  box-shadow: 0 13px 0 rgba(17,103,232,.12);
}
.form-card { border-radius: 27px 7px 27px 7px; }
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(255,255,255,.96), rgba(235,244,253,.86)),
    linear-gradient(120deg, transparent 0 70%, rgba(17,103,232,.08) 70% 71%, transparent 71%);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -4%;
  bottom: 1.2rem;
  width: 38%;
  height: 5px;
  transform: skewX(-28deg);
  background: linear-gradient(90deg, transparent, var(--accent-2), var(--accent));
}

@media (max-width: 980px) {
  .site-nav { position: fixed; inset: 127px 1rem auto; display: none; padding: 1rem; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 18px; background: #ffffff; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .65rem; }
  .nav-cta .btn-secondary { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .split, .contact-grid, .content-layout, .performance-grid { grid-template-columns: 1fr; }
  .vehicle-strip-inner { grid-template-columns: 1fr; }
  .vehicle-strip-title { border-right: 0; border-bottom: 1px solid #dce6f1; padding: 1.15rem 0; }
  .hero-grid { gap: 2.5rem; }
  .diagnostic-card { transform: none; max-width: 640px; }
  .programming-console { max-width: 690px; }
  .performance-visual { max-width: 620px; }
  .calibration-card { right: 1rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid #d8e1ec; }
  .side-card { position: static; }
}

@media (max-width: 700px) {
  body { padding-bottom: 74px; }
  .topbar .container { justify-content: center; }
  .topbar .topbar-right { display: none; }
  .nav-wrap { min-height: 76px; }
  .logo { width: 205px; }
  .nav-cta > .btn { display: none; }
  .site-nav { inset: 114px .75rem auto; }
  .section { padding: 4.5rem 0; }
  .hero { padding-top: 3.8rem; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.6rem); }
  .section-head { display: grid; gap: 1rem; }
  .cards, .areas, .feature-list, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .vehicle-types { grid-template-columns: repeat(2, 1fr); }
  .vehicle-type { border-bottom: 1px solid #e2eaf2; }
  .vehicle-type:nth-child(2n) { border-right: 0; }
  .vehicle-type:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .programming-console { padding: .72rem; }
  .console-primary { grid-template-columns: 48px 1fr; }
  .module-id { width: 48px; height: 46px; }
  .module-state { grid-column: 2; }
  .console-data { grid-template-columns: 1fr 1fr; }
  .console-data div:last-child { grid-column: 1 / -1; }
  .performance-section { background: linear-gradient(160deg, #071525, #0d2745); }
  .calibration-card { position: relative; right: auto; bottom: auto; margin: -1rem 1rem 0; }
  .field-full { grid-column: auto; }
  .trade-banner { grid-template-columns: 1fr; }
  .trust-item { padding: 1.1rem; }
  .contact-grid { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; }
  .mobile-bar { position: fixed; z-index: 1100; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; padding: .7rem; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); border-top: 1px solid var(--line); }
  .mobile-bar .btn { min-height: 50px; }
}

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


/* Blog and article system */
.blog-hero { padding-bottom: 4.4rem; }
.blog-hero h1 { max-width: 15ch; }
.blog-intro { max-width: 760px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
.blog-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid #102a46;
  border-radius: 21px 5px 21px 5px;
  background: linear-gradient(150deg, #fff, #f2f7fc);
  box-shadow: 0 15px 38px rgba(27,58,91,.08);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.blog-card::after { content: ""; position: absolute; right: -38px; bottom: -52px; width: 150px; height: 150px; border: 22px solid rgba(17,103,232,.06); border-radius: 50%; }
.blog-card:hover { transform: translateY(-5px); border-top-color: var(--accent); box-shadow: 0 24px 50px rgba(27,58,91,.13); }
.blog-card h2, .blog-card h3 { max-width: 18ch; margin: .8rem 0; font-size: clamp(1.45rem, 2.7vw, 2.15rem); }
.blog-card p { color: var(--muted); max-width: 56ch; }
.blog-card .article-link { position: relative; z-index: 2; margin-top: auto; padding-top: 1.5rem; color: var(--accent); font-weight: 850; }
.article-category { display: inline-flex; align-self: flex-start; padding: .35rem .62rem; border: 1px solid rgba(17,103,232,.18); border-radius: 999px; color: var(--accent); background: rgba(17,103,232,.06); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.article-meta { display: flex; flex-wrap: wrap; gap: .55rem 1rem; margin-top: 1.2rem; color: var(--muted-2); font-size: .86rem; }
.article-page .page-hero h1 { max-width: 16ch; font-size: clamp(2.45rem, 6.5vw, 5rem); }
.article-intro { color: #344a61 !important; font-size: clamp(1.08rem, 2vw, 1.23rem); line-height: 1.75; }
.article-callout { margin: 1.8rem 0 2.2rem; padding: 1.25rem 1.35rem; border-left: 4px solid var(--accent); border-radius: 4px 14px 14px 4px; background: #eaf3ff; }
.article-callout strong { display: block; color: var(--ink); margin-bottom: .3rem; }
.article-callout p { color: #3c5873; }
.article-page .prose li + li { margin-top: .45rem; }
.article-page .prose a { color: var(--accent); font-weight: 750; }
.article-cta { margin-top: 3rem; padding: 1.5rem; border: 1px solid #9fc0e7; border-radius: 22px 5px 22px 5px; background: linear-gradient(135deg, rgba(0,151,223,.08), rgba(17,103,232,.09)); }
.article-cta h2 { margin-top: 0; }
.article-cta p { margin: .7rem 0 1.1rem; }
.blog-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.blog-mini-card { display: grid; align-content: space-between; min-height: 225px; padding: 1.25rem; border: 1px solid var(--line); border-radius: 17px 4px 17px 4px; background: #fff; text-decoration: none; box-shadow: 0 12px 30px rgba(35,65,104,.055); transition: transform .2s ease, border-color .2s ease; }
.blog-mini-card:hover { transform: translateY(-3px); border-color: #83a8d4; }
.blog-mini-card h3 { margin: .75rem 0 .6rem; font-size: 1.15rem; }
.blog-mini-card p { color: var(--muted); font-size: .88rem; }
.blog-mini-card span:last-child { color: var(--accent); font-weight: 850; margin-top: 1rem; }
@media (max-width: 980px) { .blog-mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .blog-grid, .blog-mini-grid { grid-template-columns: 1fr; } .blog-card { min-height: 270px; } }

.form-status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: var(--text-muted, #526070);
  font-size: 0.95rem;
}

.form-status.is-error {
  color: #a61b1b;
  font-weight: 700;
}

button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

/* Logo scale update — 70% larger than the previous presentation */
.footer-brand img {
  width: min(493px, 100%);
  height: auto;
}

@media (min-width: 981px) {
  .nav-wrap {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: center;
    gap: .35rem 1.5rem;
    padding: .65rem 0 .85rem;
  }

  .logo {
    grid-area: brand;
    width: 434px;
    max-width: 100%;
  }

  .site-nav {
    grid-area: nav;
    width: 100%;
    justify-content: center;
    padding-top: .6rem;
    border-top: 1px solid rgba(216, 225, 236, .8);
  }

  .nav-cta {
    grid-area: actions;
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 142px;
    gap: .75rem;
  }

  .logo {
    width: 434px;
    max-width: calc(100% - 220px);
  }

  .site-nav {
    inset: 180px 1rem auto;
  }
}

@media (max-width: 760px) {
  .nav-cta > .btn {
    display: none;
  }

  .logo {
    max-width: calc(100% - 70px);
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .45rem;
    padding: .42rem 0;
  }

  .logo {
    width: 285px;
    max-width: calc(100% - 64px);
    justify-content: flex-start;
  }

  .nav-cta {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .menu-toggle {
    padding: .62rem;
  }

  .site-nav {
    inset: 142px .75rem auto;
  }
}
