/* ============================================================
   VIN Safety Check — shared styles
   Aesthetic: automotive instrument panel. Deep ink-navy base,
   signal-amber accent (recall warning light), IBM Plex family
   with Space Grotesk display. VIN entry styled as a dashboard readout.
   ============================================================ */

:root{
  --ink:#0A1220;
  --navy:#101E33;
  --navy-2:#162944;
  --paper:#F8FAFD;
  --mist:#EDF1F7;
  --mist-2:#E1E8F1;
  --line:#D5DEEA;
  --line-soft:#E6ECF4;
  --slate:#516079;
  --slate-2:#6B7A93;
  --blue:#245EEA;
  --blue-ink:#1749BD;
  --amber:#F4A11A;
  --amber-deep:#C97D06;
  --green:#12934E;
  --green-soft:#E6F5EC;
  --red:#D33A3F;
  --red-soft:#FBE9E9;

  --radius:14px;
  --radius-lg:22px;
  --radius-sm:9px;
  --shadow-sm:0 1px 2px rgba(10,18,32,.06), 0 1px 3px rgba(10,18,32,.08);
  --shadow-md:0 6px 18px rgba(10,18,32,.08), 0 2px 6px rgba(10,18,32,.05);
  --shadow-lg:0 22px 60px rgba(10,18,32,.16), 0 8px 24px rgba(10,18,32,.10);

  --maxw:1140px;
  --ease:cubic-bezier(.22,.61,.36,1);

  --display:"Space Grotesk","IBM Plex Sans",system-ui,sans-serif;
  --body:"IBM Plex Sans",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --mono:"IBM Plex Mono",ui-monospace,SFMono-Regular,Menlo,monospace;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

body{
  margin:0;
  font-family:var(--body);
  color:var(--navy);
  background:var(--paper);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:var(--blue);text-decoration:none}
a:hover{color:var(--blue-ink)}
img{max-width:100%;display:block}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.narrow{max-width:760px;margin:0 auto;padding:0 24px}

h1,h2,h3{font-family:var(--display);font-weight:600;letter-spacing:-.02em;line-height:1.08;color:var(--ink);margin:0}
h2{font-size:clamp(28px,4vw,40px)}
h3{font-size:20px;letter-spacing:-.01em}
p{margin:0 0 1em}

.eyebrow{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--amber-deep);
  font-weight:500;
  display:inline-flex;
  align-items:center;
  gap:9px;
}
.eyebrow::before{
  content:"";width:22px;height:1.5px;background:var(--amber);display:inline-block;
}

/* ---------- header ---------- */
.site-head{
  position:sticky;top:0;z-index:50;
  background:rgba(251,252,254,.82);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid var(--line-soft);
}
.site-head .wrap{display:flex;align-items:center;justify-content:space-between;height:70px}
.brand{display:flex;align-items:center;gap:11px;font-family:var(--display);font-weight:600;font-size:18px;letter-spacing:-.02em;color:var(--ink)}
.brand:hover{color:var(--ink)}
.brand .mark{
  width:34px;height:34px;border-radius:9px;flex:none;
  background:linear-gradient(155deg,var(--navy),var(--ink));
  display:grid;place-items:center;box-shadow:var(--shadow-sm);
  position:relative;
}
.brand .mark svg{width:19px;height:19px}
.brand .mark::after{
  content:"";position:absolute;inset:0;border-radius:9px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
.nav{display:flex;align-items:center;gap:30px}
.nav a.navlink{color:var(--slate);font-size:15px;font-weight:500}
.nav a.navlink:hover{color:var(--ink)}
@media (max-width:820px){.nav .navlink{display:none}}

/* ---------- buttons ---------- */
.btn{
  font-family:var(--body);font-weight:600;font-size:15px;
  border:0;cursor:pointer;border-radius:11px;
  padding:12px 22px;display:inline-flex;align-items:center;gap:9px;
  transition:transform .15s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--blue);color:#fff;box-shadow:0 1px 2px rgba(30,68,166,.4),0 8px 20px rgba(42,91,215,.28)}
.btn-primary:hover{background:var(--blue-ink);color:#fff;box-shadow:0 1px 2px rgba(30,68,166,.5),0 12px 26px rgba(42,91,215,.34)}
.btn-ghost{background:transparent;color:var(--ink);box-shadow:inset 0 0 0 1.5px var(--line)}
.btn-ghost:hover{background:var(--mist);color:var(--ink)}
.btn-amber{background:var(--ink);color:#fff}
.btn-amber:hover{background:#050a12;color:#fff}
.btn-lg{padding:16px 30px;font-size:16px;border-radius:13px}
.btn-block{width:100%;justify-content:center}

/* ============================================================
   VIN readout — the signature element (dashboard instrument)
   ============================================================ */
.readout{
  --glow:rgba(245,166,35,.0);
  background:linear-gradient(180deg,#132139 0%,#0B1526 100%);
  border-radius:16px;
  padding:20px;
  box-shadow:var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.06);
  position:relative;
  overflow:hidden;
}
.readout::before{ /* brushed sheen */
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(120% 80% at 80% -10%,rgba(90,130,200,.16),transparent 55%);
}
.readout-label{
  display:flex;align-items:center;justify-content:space-between;
  font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:#7C93B6;margin-bottom:12px;position:relative;
}
.readout-label .dot{width:7px;height:7px;border-radius:50%;background:var(--amber);box-shadow:0 0 10px var(--amber);display:inline-block;margin-right:7px;vertical-align:middle}
.vin-field{position:relative}
.vin-field input{
  width:100%;
  font-family:var(--mono);
  font-size:clamp(19px,3.4vw,27px);
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#F4F8FF;
  background:#060E1B;
  border:1.5px solid #23375A;
  border-radius:10px;
  padding:16px 18px;
  outline:none;
  transition:border-color .2s,box-shadow .2s;
  caret-color:var(--amber);
}
.vin-field input::placeholder{color:#3A4E6E;letter-spacing:.14em}
.vin-field input:focus{
  border-color:var(--amber);
  box-shadow:0 0 0 3px rgba(245,166,35,.18), inset 0 0 22px rgba(245,166,35,.05);
}
.vin-meta{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:12px;font-family:var(--mono);font-size:12px;color:#6E86AB;position:relative;
}
.vin-count{color:#9DB3D6}
.vin-count b{color:var(--amber);font-weight:600}
.readout .btn{margin-top:16px;position:relative}

/* scanline shown while checking */
.scanline{
  position:absolute;left:0;right:0;top:0;height:2px;
  background:linear-gradient(90deg,transparent,var(--amber),transparent);
  opacity:0;pointer-events:none;
}
.readout.is-checking .scanline{animation:scan 1.1s var(--ease) infinite;opacity:1}
@keyframes scan{0%{top:0}100%{top:100%}}
@media (prefers-reduced-motion:reduce){.readout.is-checking .scanline{animation:none;opacity:.5;top:50%}}

.vin-error{
  color:#FFB4B4;font-family:var(--mono);font-size:12.5px;margin-top:10px;
  min-height:16px;position:relative;
}

/* ---------- hero ---------- */
.hero{position:relative;overflow:hidden;background:var(--paper)}
.hero::before{
  content:"";position:absolute;inset:0;z-index:0;
  background:
    radial-gradient(60% 50% at 88% 12%,rgba(42,91,215,.07),transparent 60%),
    radial-gradient(50% 40% at 6% 90%,rgba(245,166,35,.06),transparent 60%);
}
.hero-grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center;
  padding:76px 0 84px;
}
.hero h1{font-size:clamp(34px,5.2vw,58px);margin:18px 0 20px}
.hero .lede{font-size:clamp(17px,2vw,20px);color:var(--slate);max-width:33ch;margin-bottom:26px}
.hero-trust{display:flex;gap:22px;flex-wrap:wrap;margin-top:26px}
.hero-trust .t{display:flex;align-items:center;gap:9px;font-size:14px;color:var(--slate);font-weight:500}
.hero-trust svg{width:17px;height:17px;color:var(--green);flex:none}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;gap:36px;padding:52px 0 60px}
  .hero .lede{max-width:46ch}
}

/* ---------- generic sections ---------- */
.section{padding:88px 0}
.section-tint{background:linear-gradient(180deg,var(--mist),#F4F7FB)}
.section-ink{background:var(--ink);color:#C9D6EA}
.section-head{max-width:620px;margin-bottom:52px}
.section-head h2{margin:14px 0 14px}
.section-head p{color:var(--slate);font-size:18px;margin:0}
.section-ink .section-head h2{color:#fff}
.section-ink .section-head p{color:#93A6C4}

/* steps */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.step{
  background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius-lg);
  padding:30px 26px;box-shadow:var(--shadow-sm);position:relative;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease);
}
.step:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.step .num{
  font-family:var(--mono);font-size:13px;font-weight:600;color:var(--amber-deep);
  letter-spacing:.1em;
}
.step h3{margin:14px 0 8px}
.step p{color:var(--slate);font-size:15.5px;margin:0}
.step .ic{
  width:44px;height:44px;border-radius:12px;background:var(--mist);
  display:grid;place-items:center;margin-bottom:18px;
}
.step .ic svg{width:22px;height:22px;color:var(--navy)}
@media (max-width:820px){.steps{grid-template-columns:1fr}}

/* feature cards */
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.feature{
  background:#0E1B30;border:1px solid #1E3252;border-radius:var(--radius-lg);
  padding:28px 26px;
}
.feature .ic{width:40px;height:40px;border-radius:11px;background:rgba(245,166,35,.12);display:grid;place-items:center;margin-bottom:16px}
.feature .ic svg{width:21px;height:21px;color:var(--amber)}
.feature h3{color:#fff;font-size:18px;margin-bottom:8px}
.feature p{color:#8FA3C2;font-size:15px;margin:0}
@media (max-width:820px){.feature-grid{grid-template-columns:1fr}}

/* explainer split */
.split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.split .card-panel{
  background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius-lg);
  padding:30px;box-shadow:var(--shadow-md);
}
.mini-recall{display:flex;gap:14px;padding:16px 0;border-bottom:1px solid var(--line-soft)}
.mini-recall:last-child{border-bottom:0;padding-bottom:0}
.mini-recall .badge-ic{width:34px;height:34px;border-radius:9px;flex:none;display:grid;place-items:center;background:var(--amber);}
.mini-recall .badge-ic svg{width:18px;height:18px;color:var(--ink)}
.mini-recall b{display:block;color:var(--ink);font-size:15px}
.mini-recall span{font-size:13.5px;color:var(--slate)}
.split ul.plain{list-style:none;padding:0;margin:18px 0 0}
.split ul.plain li{display:flex;gap:12px;padding:9px 0;color:var(--slate);font-size:16px}
.split ul.plain svg{width:20px;height:20px;color:var(--green);flex:none;margin-top:2px}
@media (max-width:820px){.split{grid-template-columns:1fr;gap:34px}}

/* faq */
.faq{border-top:1px solid var(--line-soft)}
.faq details{border-bottom:1px solid var(--line-soft)}
.faq summary{
  cursor:pointer;list-style:none;padding:22px 0;
  font-family:var(--display);font-weight:600;font-size:18px;color:var(--ink);
  display:flex;justify-content:space-between;align-items:center;gap:20px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-family:var(--mono);font-size:22px;color:var(--amber-deep);transition:transform .2s}
.faq details[open] summary::after{content:"–"}
.faq .ans{padding:0 0 22px;color:var(--slate);font-size:16px;max-width:70ch}

/* cta band */
.cta-band{background:linear-gradient(140deg,var(--navy),var(--ink));border-radius:var(--radius-lg);padding:56px 48px;text-align:center;position:relative;overflow:hidden}
.cta-band::before{content:"";position:absolute;inset:0;background:radial-gradient(60% 120% at 50% -20%,rgba(245,166,35,.14),transparent 60%)}
.cta-band h2{color:#fff;position:relative;margin-bottom:14px}
.cta-band p{color:#9DB0CE;position:relative;max-width:48ch;margin:0 auto 28px}
.cta-band .btn{position:relative}

/* ---------- footer ---------- */
.site-foot{background:var(--ink);color:#8093AE;padding:60px 0 34px;font-size:14.5px}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid #1B2C46}
.site-foot .brand{color:#fff;margin-bottom:14px}
.site-foot .brand:hover{color:#fff}
.foot-about{max-width:34ch;color:#7285A1;font-size:14px;line-height:1.7}
.foot-col h4{font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:#61759A;margin:0 0 16px;font-weight:500}
.foot-col a{display:block;color:#93A6C4;margin-bottom:11px;font-size:14.5px}
.foot-col a:hover{color:#fff}
.foot-bottom{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;padding-top:26px;color:#5F7396;font-size:13px}
.foot-disclaimer{max-width:70ch;color:#556a8e;font-size:12.5px;line-height:1.7;margin-top:22px}
@media (max-width:820px){.foot-grid{grid-template-columns:1fr;gap:30px}}

/* ---------- results (check page) ---------- */
.result{margin-top:22px}
.result-card{
  background:#fff;border:1px solid var(--line-soft);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);overflow:hidden;
}
.result-top{padding:26px 28px;display:flex;align-items:center;gap:18px;border-bottom:1px solid var(--line-soft)}
.result-top .status-ic{width:52px;height:52px;border-radius:13px;flex:none;display:grid;place-items:center}
.result-top.ok .status-ic{background:var(--green-soft)}
.result-top.ok .status-ic svg{color:var(--green)}
.result-top.warn .status-ic{background:#FEF3E0}
.result-top.warn .status-ic svg{color:var(--amber-deep)}
.result-top.err .status-ic{background:var(--red-soft)}
.result-top.err .status-ic svg{color:var(--red)}
.result-top .status-ic svg{width:26px;height:26px}
.result-top h3{font-size:20px;margin-bottom:3px}
.result-top .veh{font-family:var(--mono);font-size:13px;color:var(--slate);text-transform:uppercase;letter-spacing:.04em}
.result-count{margin-left:auto;text-align:right;flex:none}
.result-count b{font-family:var(--display);font-size:30px;color:var(--ink);display:block;line-height:1}
.result-count span{font-size:12px;color:var(--slate);text-transform:uppercase;letter-spacing:.08em}

.recall-list{padding:8px 28px 8px}
.recall-item{padding:22px 0;border-bottom:1px solid var(--line-soft)}
.recall-item:last-child{border-bottom:0}
.recall-item .rhead{display:flex;align-items:center;gap:12px;margin-bottom:12px;flex-wrap:wrap}
.recall-item .comp{font-family:var(--display);font-weight:600;font-size:17px;color:var(--ink)}
.recall-item .tag{font-family:var(--mono);font-size:11px;letter-spacing:.06em;color:var(--amber-deep);background:#FEF3E0;padding:4px 9px;border-radius:6px}
.recall-item .tag.date{color:var(--slate);background:var(--mist)}
.recall-item dl{margin:0;display:grid;grid-template-columns:auto 1fr;gap:6px 16px}
.recall-item dt{font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--slate-2);padding-top:2px}
.recall-item dd{margin:0;font-size:15px;color:var(--navy);line-height:1.55}
@media (max-width:640px){.recall-item dl{grid-template-columns:1fr}.recall-item dt{margin-top:8px}}

.result-foot{padding:20px 28px;background:var(--mist);font-size:13px;color:var(--slate)}
.result-foot a{font-weight:600}

.skeleton{padding:40px 28px;text-align:center;color:var(--slate);font-family:var(--mono);font-size:14px}

/* check page shell */
.check-shell{min-height:calc(100vh - 70px);display:flex;flex-direction:column;background:linear-gradient(180deg,#F4F7FB,#EDF1F7)}
.check-main{flex:1;display:flex;align-items:flex-start;justify-content:center;padding:56px 24px 80px}
.check-inner{width:100%;max-width:680px}
.check-inner .kicker{text-align:center;margin-bottom:26px}
.check-inner .kicker h1{font-size:clamp(28px,4.4vw,40px);margin:16px 0 12px}
.check-inner .kicker p{color:var(--slate);font-size:17px;max-width:52ch;margin:0 auto}
.check-foot{text-align:center;padding:26px;font-size:13px;color:var(--slate-2)}
.check-foot a{margin:0 10px}

/* legal / content pages */
.legal{padding:60px 0 90px}
.legal .doc{max-width:800px;margin:0 auto}
.legal h1{font-size:clamp(30px,4vw,42px);margin-bottom:10px}
.legal .updated{font-family:var(--mono);font-size:13px;color:var(--slate-2);margin-bottom:40px}
.legal h2{font-size:23px;margin:38px 0 12px}
.legal h3{font-size:18px;margin:26px 0 8px}
.legal p,.legal li{color:var(--navy);font-size:16px;line-height:1.7}
.legal ul{padding-left:22px;margin:0 0 16px}
.legal li{margin-bottom:8px}
.legal .callout{background:var(--mist);border-left:3px solid var(--amber);border-radius:0 10px 10px 0;padding:18px 22px;margin:24px 0;font-size:15px;color:var(--slate)}

/* ============================================================
   Modals (lazy-loaded from search-modal.html and modal.html)
   ============================================================ */
.rs-modal{
  position:fixed;inset:0;z-index:100;
  display:flex;align-items:center;justify-content:center;padding:24px;
  background:rgba(7,13,24,.62);backdrop-filter:blur(4px);
  opacity:0;visibility:hidden;transition:opacity .22s var(--ease),visibility .22s;
}
.rs-modal.is-open{opacity:1;visibility:visible}
.rs-modal-card{
  position:relative;width:100%;max-width:460px;
  background:#fff;border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  padding:40px 34px 30px;text-align:center;
  transform:translateY(14px) scale(.98);
  transition:transform .26s var(--ease);
}
.rs-modal.is-open .rs-modal-card{transform:translateY(0) scale(1)}
@media (prefers-reduced-motion:reduce){
  .rs-modal,.rs-modal-card{transition:none}
  .rs-modal-card{transform:none}
}
.rs-modal-x{
  position:absolute;top:14px;right:14px;width:34px;height:34px;
  border:0;background:var(--mist);border-radius:9px;cursor:pointer;
  font-size:20px;line-height:1;color:var(--slate);
  display:grid;place-items:center;transition:background .15s,color .15s;
}
.rs-modal-x:hover{background:var(--mist-2);color:var(--ink)}
.rs-modal-badge{
  width:60px;height:60px;border-radius:16px;margin:0 auto 20px;
  background:linear-gradient(155deg,var(--navy),var(--ink));
  display:grid;place-items:center;box-shadow:var(--shadow-md);
}
.rs-modal-badge svg{width:30px;height:30px;color:var(--amber)}
.rs-modal-card h2{font-size:24px;margin-bottom:12px}
.rs-modal-card p{color:var(--slate);font-size:16px;line-height:1.6;margin-bottom:8px}
.rs-modal-vin{
  font-family:var(--mono);font-size:14px;color:var(--ink);
  background:var(--mist);border-radius:8px;padding:8px 12px;
  display:inline-block;margin:6px 0 22px;letter-spacing:.08em;
}
.rs-modal-card .btn{margin-top:8px}
.rs-modal-link{
  display:inline-block;margin-top:16px;background:none;border:0;cursor:pointer;
  color:var(--slate-2);font-family:var(--body);font-size:14px;text-decoration:underline;
}
.rs-modal-link:hover{color:var(--ink)}

/* utility */
.center{text-align:center}
.mt0{margin-top:0}
.hidden{display:none!important}

/* ============================================================
   Simulated VIN search → preliminary result
   ============================================================ */
.search-result{margin-top:18px}
.search-card{
  background:#fff;border:1px solid var(--line-soft);border-radius:16px;
  box-shadow:var(--shadow-md);padding:24px;
}
.search-card h3{font-size:21px;margin:5px 0 8px}
.search-card p{font-size:15px;color:var(--slate);line-height:1.55;margin:0}
.search-kicker{
  display:flex;align-items:center;gap:8px;
  font-family:var(--mono);font-size:11px;letter-spacing:.13em;
  text-transform:uppercase;color:var(--blue);font-weight:600;
}
.search-kicker.found{color:var(--amber-deep);margin-bottom:5px}
.pulse-dot{width:7px;height:7px;border-radius:50%;background:var(--blue);box-shadow:0 0 0 0 rgba(42,91,215,.32);animation:resultPulse 1.5s infinite}
@keyframes resultPulse{70%{box-shadow:0 0 0 7px rgba(42,91,215,0)}100%{box-shadow:0 0 0 0 rgba(42,91,215,0)}}
.search-progress{display:grid;gap:9px;margin-top:20px;padding-top:18px;border-top:1px solid var(--line-soft)}
.search-step{display:flex;align-items:center;gap:10px;color:#97A4B8;font-size:14px;transition:color .2s}
.search-step.active{color:var(--navy);font-weight:600}
.search-step.done{color:var(--green)}
.search-step-icon{width:18px;height:18px;display:grid;place-items:center;font-size:14px;font-weight:700;flex:none}
.mini-spinner,.btn-spinner{
  width:14px;height:14px;border-radius:50%;display:inline-block;flex:none;
  border:2px solid currentColor;border-right-color:transparent;animation:spin .7s linear infinite;
}
.btn-spinner{width:16px;height:16px;border-width:2px}
@keyframes spin{to{transform:rotate(360deg)}}
.btn:disabled{cursor:wait;opacity:.8}

.search-card-found{border-color:#E7D7B7;background:linear-gradient(180deg,#FFFDF8 0%,#fff 68%)}
.found-head{display:flex;gap:14px;align-items:flex-start}
.found-icon{
  width:44px;height:44px;border-radius:12px;display:grid;place-items:center;flex:none;
  background:#FFF1D6;color:var(--amber-deep);box-shadow:inset 0 0 0 1px rgba(217,138,11,.13)
}
.found-icon svg{width:24px;height:24px}
.found-copy{margin-top:14px!important}
.found-summary{
  display:grid;gap:0;margin:20px 0 18px;border:1px solid var(--line-soft);
  border-radius:12px;overflow:hidden;background:#fff
}
.found-summary>div{display:flex;justify-content:space-between;gap:18px;padding:12px 14px;border-bottom:1px solid var(--line-soft);font-size:13px;align-items:center}
.found-summary>div:last-child{border-bottom:0}
.found-summary span{color:var(--slate-2)}
.found-summary b{color:var(--ink);font-weight:600;text-align:right}
.summary-vin{font-family:var(--mono);font-size:12px;letter-spacing:.04em}
.found-note{text-align:center;margin-top:11px;color:var(--slate-2);font-size:12px;line-height:1.45}

.modal-eyebrow{
  font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--amber-deep);font-weight:600;margin:-3px 0 8px
}
.modal-detail-list{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:18px 0 16px;text-align:left}
.modal-detail-list span{
  position:relative;background:var(--mist);border-radius:9px;padding:9px 10px 9px 27px;
  color:var(--slate);font-size:13px;line-height:1.35
}
.modal-detail-list span::before{content:"✓";position:absolute;left:10px;top:8px;color:var(--green);font-weight:700}

@media (max-width:560px){
  .search-card{padding:20px}
  .found-summary>div{align-items:flex-start;flex-direction:column;gap:2px}
  .found-summary b{text-align:left}
  .modal-detail-list{grid-template-columns:1fr}
}
@media (prefers-reduced-motion:reduce){
  .pulse-dot,.mini-spinner,.btn-spinner{animation:none}
}

/* ============================================================
   Search modal — immediate multi-source lookup simulation
   ============================================================ */
.rs-search-card{
  max-width:590px;
  text-align:left;
  padding:30px;
}
.search-modal-top{display:flex;gap:16px;align-items:flex-start;padding-right:26px}
.search-db-icon{
  width:48px;height:48px;border-radius:13px;display:grid;place-items:center;flex:none;
  background:linear-gradient(155deg,var(--navy),var(--ink));color:#fff;box-shadow:var(--shadow-sm)
}
.search-db-icon svg{width:25px;height:25px}
.search-modal-heading{min-width:0}
.search-modal-heading h2{font-size:24px;margin:5px 0 7px}
.search-modal-heading p{font-size:14px;line-height:1.5;margin:0;color:var(--slate)}
.search-vin-line{
  margin:20px 0 12px;padding:9px 11px;border:1px solid var(--line-soft);border-radius:9px;
  background:var(--mist);font-family:var(--mono);font-size:11px;letter-spacing:.08em;color:var(--slate-2)
}
.search-vin-line b{float:right;color:var(--ink);font-size:12px;letter-spacing:.06em}
.search-meter{height:7px;border-radius:99px;background:var(--mist-2);overflow:hidden}
.search-meter span{
  display:block;width:0;height:100%;border-radius:inherit;background:var(--blue);
  transition:width .5s var(--ease);box-shadow:0 0 14px rgba(42,91,215,.28)
}
.search-percent{display:flex;justify-content:space-between;gap:16px;margin-top:8px;font-size:12px;color:var(--slate-2)}
.search-percent b{font-family:var(--mono);color:var(--blue)}
.modal-search-progress{display:grid;gap:8px;margin:20px 0 15px}
.modal-search-step{
  display:flex;align-items:center;gap:10px;min-height:25px;padding:6px 8px;border-radius:8px;
  color:#9AA7B9;font-size:13px;transition:background .2s,color .2s
}
.modal-search-step.active{background:#EEF3FF;color:var(--navy);font-weight:600}
.modal-search-step.done{color:var(--green)}
.search-source-card{
  display:flex;align-items:flex-start;justify-content:space-between;gap:18px;
  border-top:1px solid var(--line-soft);padding-top:14px;font-size:12px
}
.search-source-card span{color:var(--slate-2)}
.search-source-card b{color:var(--ink);font-weight:600;text-align:right}
.search-sim-note{text-align:center;color:#8A97AA;font-size:11px;line-height:1.45;margin-top:15px}
.search-found-mark{
  width:62px;height:62px;border-radius:17px;margin:0 auto 18px;display:grid;place-items:center;
  background:#FFF1D6;color:var(--amber-deep);box-shadow:inset 0 0 0 1px rgba(217,138,11,.14)
}
.search-found-mark svg{width:31px;height:31px}
.center-kicker{justify-content:center;margin-bottom:7px}
[data-search-found]>.center-kicker+h2{text-align:center;font-size:25px;margin-bottom:10px}
.search-found-copy{text-align:center!important;font-size:15px!important;max-width:48ch;margin:0 auto 18px!important}
.search-found-summary{
  display:grid;margin:19px 0 18px;border:1px solid var(--line-soft);border-radius:12px;overflow:hidden;background:#fff
}
.search-found-summary>div{display:flex;justify-content:space-between;align-items:center;gap:18px;padding:12px 14px;border-bottom:1px solid var(--line-soft);font-size:13px}
.search-found-summary>div:last-child{border-bottom:0}
.search-found-summary span{color:var(--slate-2)}
.search-found-summary b{color:var(--ink);font-weight:600;text-align:right}
.status-match{display:inline-flex;align-items:center;gap:7px!important}
.status-match i{width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 0 4px var(--green-soft)}

@media (max-width:560px){
  .rs-search-card{padding:23px 19px}
  .search-modal-top{gap:12px}
  .search-db-icon{width:42px;height:42px;border-radius:11px}
  .search-modal-heading h2{font-size:21px}
  .search-source-card{flex-direction:column;gap:2px}
  .search-source-card b{text-align:left}
  .search-found-summary>div{align-items:flex-start;flex-direction:column;gap:3px}
  .search-found-summary b{text-align:left}
}

/* Full report — three key points */
.full-report-includes{margin:20px 0 16px;text-align:left}
.full-report-includes h3{margin:0 0 12px;color:var(--ink);font-size:16px;line-height:1.35}
.full-report-points{display:grid;gap:9px}
.full-report-point{display:flex;align-items:center;gap:10px;min-height:44px;padding:10px 12px;border:1px solid var(--mist);border-radius:12px;background:#F8FAFD;color:var(--navy);font-size:14px;font-weight:600;line-height:1.4}
.full-report-point__icon,.full-report-point__check{flex:0 0 24px;width:24px;height:24px;display:grid;place-items:center}
.full-report-point__icon svg{width:20px;height:20px;color:var(--navy)}
.full-report-point__check{border-radius:50%;background:rgba(35,163,109,.1);color:var(--green);font-size:14px;font-weight:800}


/* 2026 visual refresh — slightly cleaner cards, stronger hierarchy */
.site-head{box-shadow:0 1px 0 rgba(15,30,52,.03),0 8px 28px rgba(15,30,52,.045)}
.brand{font-weight:700;letter-spacing:-.03em}
.brand .mark{border-radius:11px;background:linear-gradient(145deg,#17335f 0%,#091526 100%)}
.btn-primary{background:linear-gradient(135deg,#1f5fe8 0%,#2c67ef 100%);box-shadow:0 8px 22px rgba(36,94,234,.24)}
.btn-primary:hover{background:linear-gradient(135deg,#174fc9 0%,#245eea 100%);box-shadow:0 12px 28px rgba(36,94,234,.30)}
.hero::before{background:radial-gradient(58% 54% at 88% 10%,rgba(36,94,234,.09),transparent 60%),radial-gradient(48% 42% at 8% 88%,rgba(244,161,26,.075),transparent 62%)}
.readout{border:1px solid rgba(126,156,205,.16);border-radius:20px}
.step,.split .card-panel,.rs-modal-card{border-radius:24px}
.step{box-shadow:0 8px 30px rgba(15,30,52,.055)}
.cta-band{border-radius:28px;background:linear-gradient(135deg,#10213a 0%,#08111f 72%);box-shadow:0 22px 60px rgba(8,17,31,.15)}
.rs-modal{background:rgba(6,13,24,.68);backdrop-filter:blur(7px)}
.rs-modal-card{border:1px solid rgba(213,222,234,.8);box-shadow:0 28px 80px rgba(5,12,24,.23)}
.rs-report-card{max-width:500px}
.full-report-point{min-height:50px;padding:12px 14px;border-color:#e3eaf4;background:linear-gradient(180deg,#fbfcff 0%,#f6f9fd 100%)}
.full-report-point__check{background:#eaf1ff;color:var(--blue);font-family:var(--mono);font-size:12px}
.search-db-icon{background:linear-gradient(145deg,#183766,#091526)}
.search-meter span{background:linear-gradient(90deg,#245eea,#4b7df1)}
@media (max-width:560px){.site-head .wrap{height:64px}.hero-grid{padding-top:44px}.rs-modal{padding:14px}.rs-modal-card{border-radius:20px}}

/* ============================================================
   2026 GLOBAL REDESIGN — editorial / automotive tech
   Stronger visual shift while preserving the existing markup and JS hooks.
   ============================================================ */
:root{
  --ink:#0A1020;
  --navy:#17213A;
  --navy-2:#22304F;
  --paper:#F4F7FB;
  --mist:#EEF2F8;
  --mist-2:#E2E8F2;
  --line:#CFD8E7;
  --line-soft:#E1E7F0;
  --slate:#56647A;
  --slate-2:#75829A;
  --blue:#516DF5;
  --blue-ink:#3853D6;
  --amber:#FFB547;
  --amber-deep:#B96D00;
  --green:#12A66A;
  --green-soft:#E7F8F0;
  --red:#D84B55;
  --red-soft:#FCECEF;
  --radius:18px;
  --radius-lg:30px;
  --radius-sm:11px;
  --shadow-sm:0 8px 24px rgba(18,30,55,.06);
  --shadow-md:0 18px 45px rgba(18,30,55,.09);
  --shadow-lg:0 34px 90px rgba(8,16,32,.20);
  --maxw:1180px;
}

body{
  background:
    radial-gradient(circle at 10% 0%,rgba(81,109,245,.06),transparent 24rem),
    var(--paper);
  color:var(--navy);
}

h1,h2,h3{letter-spacing:-.035em}
h2{font-size:clamp(31px,4.2vw,46px)}

.eyebrow{
  color:var(--blue);
  letter-spacing:.14em;
  font-weight:600;
  background:rgba(81,109,245,.08);
  border:1px solid rgba(81,109,245,.13);
  border-radius:999px;
  padding:7px 11px;
}
.eyebrow::before{
  width:7px;height:7px;border-radius:50%;background:var(--blue);
  box-shadow:0 0 0 5px rgba(81,109,245,.10);
}

/* Floating navigation shell */
.site-head{
  position:sticky;top:0;
  background:transparent;
  border:0;
  padding:12px 0 0;
  backdrop-filter:none;
  pointer-events:none;
}
.site-head .wrap{
  height:64px;
  background:rgba(255,255,255,.90);
  backdrop-filter:saturate(145%) blur(18px);
  border:1px solid rgba(211,221,235,.86);
  border-radius:19px;
  padding:0 14px 0 18px;
  box-shadow:0 14px 40px rgba(15,27,50,.09);
  pointer-events:auto;
}
.brand{font-size:19px;gap:12px}
.brand .mark{
  width:38px;height:38px;border-radius:12px;
  background:linear-gradient(145deg,#536FF5 0%,#253CA7 100%);
  box-shadow:0 8px 22px rgba(65,88,220,.25);
}
.brand .mark::after{border-radius:12px}
.nav{gap:26px}
.nav a.navlink{font-size:14px;color:#66748A}
.site-head .btn{padding:11px 18px;border-radius:12px}

/* New buttons */
.btn{
  border-radius:14px;
  font-weight:600;
  letter-spacing:-.01em;
  transition:transform .18s var(--ease),box-shadow .18s var(--ease),background .18s,border-color .18s;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-primary{
  background:linear-gradient(135deg,#5A76FF 0%,#3E5DE7 100%);
  box-shadow:0 12px 26px rgba(61,87,223,.25),inset 0 1px 0 rgba(255,255,255,.20);
}
.btn-primary:hover{
  background:linear-gradient(135deg,#4E6AF4 0%,#344FD2 100%);
  box-shadow:0 16px 34px rgba(61,87,223,.32);
}
.btn-ghost{
  background:#fff;
  box-shadow:none;
  border:1px solid var(--line);
}
.btn-ghost:hover{background:#F7F9FC;border-color:#BDC9DC}
.btn-lg{padding:17px 28px;border-radius:15px}

/* Hero now reads as a premium automotive dashboard card */
.hero{
  margin-top:-76px;
  padding-top:76px;
  background:
    radial-gradient(80% 100% at 92% 10%,rgba(82,111,247,.28),transparent 58%),
    radial-gradient(50% 70% at 12% 110%,rgba(66,205,213,.12),transparent 65%),
    linear-gradient(145deg,#0A1020 0%,#111B32 58%,#172849 100%);
  color:#fff;
}
.hero::before{
  background:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 92%);
}
.hero-grid{padding:100px 0 104px;gap:74px;grid-template-columns:1.04fr .96fr}
.hero h1{
  color:#fff;
  font-size:clamp(42px,5.7vw,66px);
  line-height:1.01;
  max-width:11.5ch;
  margin:20px 0 24px;
  text-wrap:balance;
}
.hero .eyebrow{
  color:#DCE5FF;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.10);
}
.hero .eyebrow::before{background:#7E93FF;box-shadow:0 0 0 5px rgba(126,147,255,.12)}
.hero .lede{color:#B9C5D8;font-size:19px;max-width:40ch;line-height:1.65}
.hero-trust{gap:12px;margin-top:30px}
.hero-trust .t{
  color:#CFD8E8;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  padding:8px 11px;
  font-size:13px;
}
.hero-trust svg{color:#68D6B0;width:15px;height:15px}

/* VIN card: clean light console instead of the old dark instrument */
.readout{
  background:rgba(255,255,255,.98);
  border:1px solid rgba(255,255,255,.72);
  border-radius:28px;
  padding:27px;
  box-shadow:0 32px 84px rgba(0,7,24,.30),0 0 0 1px rgba(255,255,255,.08);
  color:var(--navy);
}
.readout::before{
  background:radial-gradient(90% 70% at 100% 0%,rgba(81,109,245,.08),transparent 62%);
}
.readout-label{
  color:#7B879A;
  margin-bottom:14px;
  letter-spacing:.12em;
}
.readout-label .dot{background:#23B47E;box-shadow:0 0 0 5px rgba(35,180,126,.10)}
.vin-field input{
  color:#111B30;
  background:#F4F7FC;
  border:1.5px solid #D9E1ED;
  border-radius:15px;
  padding:18px 18px;
  caret-color:var(--blue);
  box-shadow:inset 0 1px 2px rgba(20,33,55,.035);
}
.vin-field input::placeholder{color:#A7B2C3}
.vin-field input:focus{
  border-color:#6A83F6;
  background:#fff;
  box-shadow:0 0 0 4px rgba(81,109,245,.12);
}
.vin-meta{color:#8490A2;margin-top:13px}
.vin-count{color:#68768C}
.vin-count b{color:var(--blue)}
.vin-error{color:#CC3E48}
.readout .btn{margin-top:18px}
.scanline{background:linear-gradient(90deg,transparent,#536FF5,transparent)}
.hero form + p{color:#AEBACD!important}

/* Section rhythm + cards */
.section{padding:104px 0}
.section-head{max-width:690px;margin-bottom:58px}
.section-head h2{margin:16px 0 16px}
.section-head p{font-size:18px;line-height:1.7}

.steps{gap:18px;counter-reset:step}
.step{
  min-height:292px;
  border:1px solid #DFE6F0;
  border-radius:26px;
  padding:30px 28px;
  box-shadow:0 12px 34px rgba(22,36,63,.055);
  overflow:hidden;
}
.step::after{
  content:"";
  position:absolute;left:0;right:0;top:0;height:4px;
  background:linear-gradient(90deg,#5874F5,#62D1CC);
}
.step:hover{transform:translateY(-6px);box-shadow:0 22px 48px rgba(22,36,63,.09)}
.step .ic{
  width:50px;height:50px;border-radius:15px;
  background:#EEF2FF;color:var(--blue);
  margin-bottom:28px;
}
.step .ic svg{color:var(--blue);width:24px;height:24px}
.step .num{color:#7B8BDD;font-size:11px;letter-spacing:.16em}
.step h3{font-size:22px;margin:12px 0 10px}
.step p{font-size:15px;line-height:1.7}

/* Dark feature block becomes a large rounded surface */
.section-ink{
  margin:0 22px;
  border-radius:38px;
  background:
    radial-gradient(60% 120% at 100% 0%,rgba(81,109,245,.20),transparent 62%),
    linear-gradient(145deg,#0B1325 0%,#14213A 100%);
  overflow:hidden;
}
.section-ink .section-head p{color:#9BAAC1}
.section-ink .eyebrow{color:#C9D4FF;background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.08)}
.feature-grid{gap:16px}
.feature{
  min-height:230px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.09);
  border-radius:24px;
  padding:30px;
  backdrop-filter:blur(8px);
}
.feature .ic{
  width:48px;height:48px;border-radius:14px;
  background:rgba(105,132,255,.14);
}
.feature .ic svg{color:#91A4FF;width:23px;height:23px}
.feature h3{font-size:20px;margin-bottom:10px}
.feature p{color:#9EADC2;line-height:1.7}

.section-tint{
  background:linear-gradient(180deg,#F1F4FA 0%,#F7F9FC 100%);
}
.split{gap:74px}
.split .card-panel{
  border:0;
  border-radius:28px;
  padding:34px;
  box-shadow:0 22px 60px rgba(20,34,60,.10);
}
.mini-recall{padding:18px 0}
.mini-recall .badge-ic{background:#EEF2FF;border-radius:11px}
.mini-recall .badge-ic svg{color:var(--blue)}
.split ul.plain li{padding:11px 0;line-height:1.6}

.faq{border-top:0}
.faq details{
  background:#fff;
  border:1px solid var(--line-soft);
  border-radius:18px;
  margin-bottom:10px;
  padding:0 20px;
  box-shadow:0 7px 20px rgba(22,36,63,.035);
}
.faq summary{padding:20px 0;font-size:17px}
.faq .ans{padding:0 0 20px}
.faq summary::after{color:var(--blue)}

.cta-band{
  border-radius:34px;
  padding:68px 48px;
  background:
    radial-gradient(50% 140% at 100% 0%,rgba(98,209,204,.18),transparent 65%),
    radial-gradient(50% 120% at 0% 100%,rgba(90,118,255,.26),transparent 70%),
    #0E172B;
  box-shadow:0 28px 70px rgba(8,16,32,.16);
}
.cta-band h2{font-size:clamp(31px,4vw,48px)}
.cta-band p{font-size:17px;color:#A6B4C9}

.site-foot{
  margin-top:90px;
  padding:70px 0 34px;
  background:#09101F;
}
.site-foot .brand .mark{box-shadow:none}
.foot-grid{border-bottom-color:#1A263C}

/* Check page gets the same new console language */
.check-shell{
  margin-top:-76px;
  padding-top:76px;
  background:
    radial-gradient(55% 55% at 50% 0%,rgba(81,109,245,.14),transparent 70%),
    linear-gradient(180deg,#EFF3FA 0%,#F7F9FC 100%);
}
.check-main{padding-top:80px}
.check-inner{max-width:720px}
.check-inner .kicker h1{font-size:clamp(34px,5vw,48px)}
.check-inner .vin-form{margin-top:32px}
.check-inner .readout{box-shadow:0 25px 70px rgba(18,31,56,.14)}

/* Modal system — larger, cleaner, richer visual hierarchy */
.rs-modal{
  background:rgba(5,10,20,.72);
  backdrop-filter:blur(12px) saturate(110%);
  padding:20px;
}
.rs-modal-card{
  border:1px solid rgba(255,255,255,.65);
  border-radius:30px;
  box-shadow:0 40px 120px rgba(0,6,20,.38);
  padding:38px 36px 32px;
}
.rs-modal-x{
  top:16px;right:16px;
  width:38px;height:38px;border-radius:12px;
  background:#F0F3F8;color:#69768B;
}
.rs-modal-x:hover{background:#E6EBF3;color:#111B30}
.rs-modal-badge{
  width:66px;height:66px;border-radius:20px;
  background:linear-gradient(145deg,#5A76FF,#334CC4);
  box-shadow:0 16px 34px rgba(64,87,214,.27);
}
.rs-modal-badge svg{color:#fff}
.modal-eyebrow{color:var(--blue);letter-spacing:.14em}
.rs-modal-card h2{font-size:27px;line-height:1.12}
.rs-modal-card p{font-size:15.5px;line-height:1.7}
.rs-modal-vin{
  background:#F1F4F9;
  border:1px solid #E1E7EF;
  border-radius:10px;
  color:#27334A;
}
.rs-report-card{max-width:530px}
.full-report-includes{margin-top:22px}
.full-report-includes h3{font-size:16px;margin-bottom:14px}
.full-report-points{gap:10px}
.full-report-point{
  min-height:58px;
  border:1px solid #E1E7F1;
  border-radius:15px;
  background:#F7F9FC;
  padding:13px 14px;
  color:#26334A;
}
.full-report-point__check{
  width:28px;height:28px;flex-basis:28px;
  background:#E9EDFF;color:#4D67ED;
}

.rs-search-card{max-width:650px;padding:34px}
.search-modal-top{gap:18px}
.search-db-icon{
  width:54px;height:54px;border-radius:17px;
  background:linear-gradient(145deg,#5B77F8,#3249BE);
  box-shadow:0 13px 28px rgba(62,84,207,.24);
}
.search-modal-heading h2{font-size:27px;margin-top:7px}
.search-modal-heading p{font-size:14.5px}
.search-kicker{color:var(--blue);letter-spacing:.12em}
.pulse-dot{background:#5874F5}
.search-vin-line{
  margin-top:24px;
  background:#F6F8FC;
  border-color:#DFE6F0;
  border-radius:12px;
  padding:11px 13px;
}
.search-meter{height:9px;background:#E6EBF3}
.search-meter span{
  background:linear-gradient(90deg,#536FF5 0%,#5ACACB 100%);
  box-shadow:0 0 18px rgba(81,109,245,.24);
}
.search-percent{margin-top:10px}
.modal-search-progress{
  gap:7px;
  margin:22px 0 18px;
  padding:6px;
  border:1px solid #E5EAF2;
  border-radius:17px;
  background:#FAFBFD;
}
.modal-search-step{
  min-height:36px;
  padding:8px 10px;
  border-radius:11px;
  font-size:13.5px;
}
.modal-search-step.active{
  background:#EEF1FF;
  color:#263C91;
}
.modal-search-step.done{color:#158A5B}
.search-source-card{
  border-top:0;
  background:#F2F5FA;
  border-radius:13px;
  padding:12px 14px;
}
.search-sim-note{margin-top:13px;color:#8A95A7}
.search-found-mark{
  width:70px;height:70px;border-radius:22px;
  background:linear-gradient(145deg,#FFF5DF,#FFE9BD);
  color:#A85E00;
  border:1px solid #FFE1A0;
  box-shadow:none;
}
[data-search-found]>.center-kicker+h2{font-size:29px;line-height:1.1}
.search-found-copy{font-size:15.5px!important;line-height:1.68!important}
.search-found-summary{
  border-radius:16px;
  background:#F9FAFC;
  border-color:#E1E7F0;
}
.search-found-summary>div{padding:14px 16px}
.status-match i{background:#19A66C}
.full-report-btn{margin-top:6px!important}

@media (max-width:900px){
  .hero-grid{padding:84px 0 78px;gap:46px}
  .hero h1{max-width:14ch}
  .section-ink{margin:0 12px;border-radius:30px}
}
@media (max-width:820px){
  .site-head{padding:9px 10px 0}
  .site-head .wrap{padding:0 10px 0 14px}
  .section{padding:78px 0}
  .section-head{margin-bottom:40px}
  .step{min-height:auto}
  .feature{min-height:auto}
  .split{gap:40px}
}
@media (max-width:560px){
  .site-head{padding:7px 7px 0}
  .site-head .wrap{height:60px;border-radius:16px}
  .brand{font-size:16px;gap:9px}
  .brand .mark{width:34px;height:34px;border-radius:10px}
  .site-head .btn{font-size:13px;padding:10px 12px}
  .hero{margin-top:-67px;padding-top:67px}
  .hero-grid{padding:70px 0 64px}
  .hero h1{font-size:39px;max-width:none}
  .hero .lede{font-size:17px}
  .hero-trust{display:grid;grid-template-columns:1fr;gap:8px}
  .hero-trust .t{justify-self:start}
  .readout{padding:20px;border-radius:22px}
  .vin-field input{font-size:18px;padding:16px 14px;letter-spacing:.10em}
  .vin-meta{align-items:flex-start;gap:8px;flex-direction:column}
  .section{padding:68px 0}
  .section-ink{margin:0 7px;border-radius:25px}
  .cta-band{padding:48px 24px;border-radius:26px}
  .site-foot{margin-top:64px}
  .rs-modal{padding:10px}
  .rs-modal-card{border-radius:24px;padding:30px 20px 24px}
  .rs-search-card{padding:26px 18px}
  .search-modal-top{padding-right:28px}
  .search-db-icon{width:46px;height:46px;border-radius:14px}
  .search-modal-heading h2{font-size:22px}
  [data-search-found]>.center-kicker+h2{font-size:25px}
}

/* ============================================================
   REDESIGN 02 — Safety dossier / editorial utility
   Direction: warm technical paper, graphite, signal red,
   rigid grid, reduced radii, report-like hierarchy.
   ============================================================ */

:root{
  --ink:#181818;
  --navy:#242424;
  --navy-2:#303030;
  --paper:#F5F2EA;
  --mist:#ECE8DE;
  --mist-2:#E2DDD1;
  --line:#CEC8BC;
  --line-soft:#DED9CE;
  --slate:#62605A;
  --slate-2:#858077;
  --blue:#D93A2F;
  --blue-ink:#B52921;
  --amber:#F0C544;
  --amber-deep:#8A6710;
  --green:#237A55;
  --green-soft:#E2EEE7;
  --red:#D93A2F;
  --red-soft:#F6DEDB;
  --radius:4px;
  --radius-lg:8px;
  --radius-sm:3px;
  --shadow-sm:0 1px 0 rgba(24,24,24,.10);
  --shadow-md:0 12px 28px rgba(30,28,24,.08);
  --shadow-lg:0 26px 70px rgba(27,25,22,.16);
  --maxw:1180px;
  --display:"Arial Narrow","Helvetica Neue",Arial,sans-serif;
  --body:"IBM Plex Sans",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --mono:"IBM Plex Mono",ui-monospace,SFMono-Regular,Menlo,monospace;
}

html{background:#F5F2EA}
body{
  color:var(--navy);
  background:
    linear-gradient(rgba(24,24,24,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(24,24,24,.028) 1px,transparent 1px),
    var(--paper);
  background-size:32px 32px;
}

h1,h2,h3{
  font-family:var(--display);
  font-weight:800;
  letter-spacing:-.045em;
  color:var(--ink);
}
h2{font-size:clamp(31px,4.5vw,48px)}
h3{letter-spacing:-.025em}
a{color:var(--blue)}
a:hover{color:var(--blue-ink)}
.wrap{max-width:var(--maxw)}

.eyebrow{
  color:var(--ink);
  background:transparent;
  border:0;
  border-radius:0;
  padding:0;
  gap:10px;
  font-size:11px;
  letter-spacing:.17em;
  font-weight:600;
}
.eyebrow::before{
  width:24px;height:3px;border-radius:0;
  background:var(--blue);
  box-shadow:none;
}

/* Header: report masthead */
.site-head{
  position:sticky;top:0;z-index:50;
  margin:0;padding:0;
  background:rgba(245,242,234,.94);
  border-bottom:1px solid #BFB8AB;
  backdrop-filter:blur(12px) saturate(115%);
  pointer-events:auto;
}
.site-head::after{
  content:"";position:absolute;left:0;right:0;bottom:-4px;height:3px;
  background:linear-gradient(90deg,var(--blue) 0 18%,var(--ink) 18% 100%);
}
.site-head .wrap{
  height:74px;
  background:transparent;
  border:0;border-radius:0;
  padding:0 24px;
  box-shadow:none;
  pointer-events:auto;
}
.brand{
  font-family:var(--display);
  font-size:20px;font-weight:900;
  letter-spacing:-.04em;
  text-transform:uppercase;
  gap:12px;
}
.brand .mark{
  width:38px;height:38px;border-radius:0;
  background:var(--blue);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.12);
}
.brand .mark::after{border-radius:0;box-shadow:inset 0 0 0 1px rgba(255,255,255,.18)}
.nav{gap:28px}
.nav a.navlink{
  color:#4E4B45;
  font-family:var(--mono);
  font-size:12px;font-weight:600;
  letter-spacing:.04em;text-transform:uppercase;
}
.nav a.navlink:hover{color:var(--blue)}
.site-head .btn{padding:11px 17px;border-radius:0}

/* Buttons: utilitarian blocks */
.btn{
  border-radius:0;
  font-family:var(--mono);
  font-size:13px;
  font-weight:600;
  letter-spacing:.025em;
  text-transform:uppercase;
  box-shadow:none;
  transition:background .18s,color .18s,transform .18s,border-color .18s;
}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}
.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:4px 4px 0 var(--ink);
}
.btn-primary:hover{
  background:var(--ink);
  color:#fff;
  box-shadow:4px 4px 0 var(--blue);
}
.btn-ghost{
  background:transparent;
  color:var(--ink);
  border:1px solid var(--ink);
  box-shadow:none;
}
.btn-ghost:hover{background:var(--ink);color:#fff;border-color:var(--ink)}
.btn-amber{background:var(--ink);color:#fff}
.btn-amber:hover{background:var(--blue)}
.btn-lg{padding:16px 24px;border-radius:0;font-size:13px}

/* Hero: editorial cover + inspection terminal */
.hero{
  margin:0;padding:0;
  background:var(--paper);
  color:var(--ink);
  border-bottom:1px solid #BEB7AA;
}
.hero::before{
  inset:0;
  background:
    linear-gradient(90deg,transparent calc(50% - 1px),rgba(24,24,24,.09) calc(50% - 1px),rgba(24,24,24,.09) 50%,transparent 50%),
    radial-gradient(circle at 82% 16%,rgba(217,58,47,.10),transparent 27%);
  background-size:auto;
  mask-image:none;
}
.hero-grid{
  grid-template-columns:1.03fr .97fr;
  gap:68px;
  padding:96px 0 92px;
  align-items:center;
}
.hero-grid>div:first-child{position:relative}
.hero-grid>div:first-child::after{
  content:"SAFETY / VIN / 17";
  display:block;
  margin-top:42px;
  padding-top:14px;
  border-top:1px solid #AFA89C;
  color:#8C877E;
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.24em;
}
.hero h1{
  color:var(--ink);
  font-size:clamp(48px,6.6vw,78px);
  line-height:.92;
  max-width:10.5ch;
  margin:22px 0 26px;
  text-transform:uppercase;
  text-wrap:balance;
}
.hero .eyebrow{color:var(--blue);background:transparent;border:0}
.hero .eyebrow::before{background:var(--blue);box-shadow:none}
.hero .lede{
  color:#55524D;
  font-size:18px;
  line-height:1.65;
  max-width:46ch;
}
.hero-trust{gap:0;margin-top:30px;border-top:1px solid #C7C0B4;border-bottom:1px solid #C7C0B4}
.hero-trust .t{
  color:#4F4C47;
  background:transparent;
  border:0;border-right:1px solid #C7C0B4;
  border-radius:0;
  padding:10px 13px 10px 0;
  margin-right:13px;
  font-family:var(--mono);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.hero-trust .t:last-child{border-right:0}
.hero-trust svg{color:var(--green);width:14px;height:14px}

.readout{
  position:relative;
  background:#1D1D1B;
  border:1px solid #080808;
  border-radius:0;
  padding:28px;
  color:#F7F4EC;
  box-shadow:12px 12px 0 rgba(217,58,47,.88);
}
.readout::before{
  background:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:20px 20px;
  opacity:1;
}
.readout::after{
  content:"INPUT TERMINAL";
  position:absolute;right:18px;top:-25px;
  font-family:var(--mono);font-size:9px;letter-spacing:.18em;color:#6B665E;
}
.readout-label{
  color:#C7C0B4;
  margin-bottom:16px;
  letter-spacing:.13em;
}
.readout-label .dot{background:var(--amber);box-shadow:0 0 0 4px rgba(240,197,68,.13)}
.vin-field input{
  color:#F7F4EC;
  background:#111110;
  border:1px solid #5A5752;
  border-radius:0;
  padding:18px 17px;
  caret-color:var(--amber);
  box-shadow:none;
  font-size:19px;
  letter-spacing:.13em;
}
.vin-field input::placeholder{color:#66625C}
.vin-field input:focus{
  border-color:var(--amber);
  background:#111110;
  box-shadow:0 0 0 2px rgba(240,197,68,.16);
}
.vin-meta{color:#A39D93;margin-top:13px;font-size:11px}
.vin-count{color:#B9B2A7}
.vin-count b{color:var(--amber)}
.vin-error{color:#FF7C72}
.readout .btn{margin-top:20px}
.readout .btn-primary{box-shadow:none;background:var(--blue)}
.readout .btn-primary:hover{background:#fff;color:var(--ink);box-shadow:none}
.scanline{height:1px;background:linear-gradient(90deg,transparent,var(--amber),transparent);box-shadow:0 0 8px rgba(240,197,68,.55)}
.hero form + p{color:#706B63!important;font-family:var(--mono);font-size:10px!important;text-transform:uppercase;letter-spacing:.04em}

/* Sections: hard grid and report cards */
.section{padding:96px 0}
.section-head{max-width:760px;margin-bottom:52px}
.section-head h2{margin:17px 0 14px;text-transform:uppercase;line-height:.98}
.section-head p{font-size:17px;line-height:1.72;color:#5C5953}

.steps{gap:0;border-top:1px solid #BDB6AA;border-left:1px solid #BDB6AA}
.step{
  min-height:314px;
  position:relative;
  border:0;
  border-right:1px solid #BDB6AA;
  border-bottom:1px solid #BDB6AA;
  border-radius:0;
  padding:30px;
  background:rgba(245,242,234,.86);
  box-shadow:none;
  overflow:hidden;
}
.step::after{display:none}
.step::before{
  content:attr(data-step);
  position:absolute;right:18px;bottom:-14px;
  font-family:var(--display);font-weight:900;font-size:92px;line-height:1;color:rgba(24,24,24,.045);
}
.step:hover{transform:none;background:#EEE9DF;box-shadow:none}
.step .ic{
  width:48px;height:48px;border-radius:0;
  background:var(--blue);color:#fff;
  margin-bottom:44px;
}
.step .ic svg{color:#fff;width:23px;height:23px}
.step .num{color:var(--blue);font-size:10px;letter-spacing:.18em}
.step h3{font-size:25px;margin:12px 0 11px;text-transform:uppercase}
.step p{font-size:15px;line-height:1.7;color:#65615A}

.section-ink{
  margin:0;
  border-radius:0;
  background:#1A1A18;
  overflow:hidden;
  position:relative;
}
.section-ink::before{
  content:"";position:absolute;left:0;right:0;top:0;height:8px;
  background:var(--blue);
}
.section-ink .section-head h2{color:#F7F3EA}
.section-ink .section-head p{color:#AAA49A}
.section-ink .eyebrow{color:#F1C845;background:transparent;border:0}
.section-ink .eyebrow::before{background:#F1C845}
.feature-grid{gap:0;border-top:1px solid #484641;border-left:1px solid #484641}
.feature{
  min-height:238px;
  background:transparent;
  border:0;
  border-right:1px solid #484641;
  border-bottom:1px solid #484641;
  border-radius:0;
  padding:30px;
  backdrop-filter:none;
}
.feature .ic{
  width:44px;height:44px;border-radius:0;
  background:#F1C845;
}
.feature .ic svg{color:#1A1A18;width:22px;height:22px}
.feature h3{font-size:22px;text-transform:uppercase}
.feature p{color:#AAA49A;line-height:1.72}

.section-tint{background:#EAE5DB}
.split{gap:70px}
.split .card-panel{
  border:1px solid #AAA398;
  border-radius:0;
  padding:30px;
  background:#F5F2EA;
  box-shadow:10px 10px 0 rgba(24,24,24,.10);
}
.mini-recall{padding:18px 0;border-bottom-color:#CBC4B8}
.mini-recall .badge-ic{background:var(--blue);border-radius:0}
.mini-recall .badge-ic svg{color:#fff}
.mini-recall b{text-transform:uppercase;letter-spacing:-.01em}
.split ul.plain li{padding:10px 0;color:#57534D}
.split ul.plain svg{color:var(--blue)}

.faq{border-top:1px solid #BFB8AB}
.faq details{
  background:transparent;
  border:0;
  border-bottom:1px solid #BFB8AB;
  border-radius:0;
  margin:0;
  padding:0;
  box-shadow:none;
}
.faq summary{padding:22px 0;font-size:18px;text-transform:uppercase;letter-spacing:-.02em}
.faq .ans{padding:0 0 24px;color:#5F5B55}
.faq summary::after{color:var(--blue);font-size:24px}

.cta-band{
  border-radius:0;
  padding:62px 48px;
  background:var(--blue);
  box-shadow:12px 12px 0 var(--ink);
}
.cta-band::before{
  background:linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:32px 32px;
}
.cta-band h2{font-size:clamp(35px,5vw,58px);text-transform:uppercase}
.cta-band p{font-size:17px;color:#FFE9E6}
.cta-band .btn-primary{background:#fff;color:var(--ink);box-shadow:4px 4px 0 var(--ink)}
.cta-band .btn-primary:hover{background:var(--ink);color:#fff;box-shadow:4px 4px 0 #fff}

.site-foot{
  margin-top:88px;
  padding:62px 0 30px;
  background:#171715;
  border-top:8px solid var(--blue);
}
.site-foot .brand .mark{background:var(--blue)}
.foot-grid{border-bottom-color:#45413C}
.foot-col h4{color:#8E887E}
.foot-col a{color:#BCB5AA}
.foot-col a:hover{color:#fff}
.foot-about,.foot-bottom,.foot-disclaimer{color:#827C73}

/* Check page: inspection worksheet */
.check-shell{
  margin:0;padding:0;
  min-height:calc(100vh - 74px);
  background:
    linear-gradient(rgba(24,24,24,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(24,24,24,.03) 1px,transparent 1px),
    #EEE9DF;
  background-size:28px 28px;
}
.check-main{padding:76px 24px 90px}
.check-inner{max-width:760px}
.check-inner .kicker{margin-bottom:28px}
.check-inner .kicker h1{font-size:clamp(39px,6vw,58px);text-transform:uppercase;line-height:.96}
.check-inner .kicker p{color:#625E57}
.check-inner .vin-form{margin-top:34px}
.check-inner .readout{box-shadow:12px 12px 0 var(--blue)}
.check-foot{color:#777168;font-family:var(--mono);font-size:11px}

/* Legal pages */
.legal{padding:72px 0 100px}
.legal .doc{max-width:820px;background:rgba(245,242,234,.84);border:1px solid #C4BDB1;padding:38px 42px}
.legal h1{font-size:clamp(40px,5vw,58px);text-transform:uppercase;line-height:.94}
.legal .updated{color:var(--blue)}
.legal h2{font-size:25px;text-transform:uppercase}
.legal p,.legal li{color:#514D47}
.legal .callout{background:#E7E1D5;border-left:5px solid var(--blue);border-radius:0;color:#55514B}

/* Modal system: paper dossier */
.rs-modal{
  background:rgba(18,18,17,.78);
  backdrop-filter:blur(5px);
  padding:18px;
}
.rs-modal-card{
  border:1px solid #A9A298;
  border-radius:0;
  box-shadow:14px 14px 0 rgba(217,58,47,.94),0 28px 80px rgba(0,0,0,.28);
  padding:36px 34px 30px;
  background:#F5F2EA;
}
.rs-modal-x{
  top:12px;right:12px;width:36px;height:36px;
  border-radius:0;background:#E5E0D6;color:#46423D;
}
.rs-modal-x:hover{background:var(--ink);color:#fff}
.rs-modal-badge{
  width:62px;height:62px;border-radius:0;
  background:var(--blue);
  box-shadow:none;
}
.rs-modal-badge svg{color:#fff}
.modal-eyebrow{color:var(--blue)}
.rs-modal-card h2{font-size:30px;text-transform:uppercase;line-height:.98}
.rs-modal-card p{color:#5A5650}
.rs-modal-vin{background:#E8E2D7;border:1px solid #C8C0B3;border-radius:0;color:#2B2926}
.rs-report-card{max-width:540px}
.full-report-point{border:1px solid #C8C0B3;border-radius:0;background:#ECE6DC;color:#34312D}
.full-report-point__check{border-radius:0;background:var(--blue);color:#fff}

.rs-search-card{max-width:650px;padding:34px}
.search-db-icon{width:54px;height:54px;border-radius:0;background:var(--ink);box-shadow:none}
.search-modal-heading h2{font-size:30px;text-transform:uppercase;line-height:1}
.search-kicker{color:var(--blue)}
.pulse-dot{background:var(--blue);box-shadow:none}
.search-vin-line{background:#E9E3D8;border-color:#C9C1B5;border-radius:0}
.search-meter{height:8px;border-radius:0;background:#D9D2C6}
.search-meter span{border-radius:0;background:var(--blue);box-shadow:none}
.search-percent b{color:var(--blue)}
.modal-search-progress{border:1px solid #C9C1B5;border-radius:0;background:#EEE8DE;padding:0;gap:0}
.modal-search-step{min-height:38px;padding:9px 11px;border-radius:0;border-bottom:1px solid #D5CEC3}
.modal-search-step:last-child{border-bottom:0}
.modal-search-step.active{background:#F4DED9;color:#75251F}
.modal-search-step.done{color:var(--green)}
.search-source-card{background:#E4DED3;border-radius:0;padding:12px 14px}
.search-found-mark{width:68px;height:68px;border-radius:0;background:var(--blue);color:#fff;border:0;box-shadow:none}
.search-found-summary{border-radius:0;background:#EEE8DE;border-color:#C8C0B3}
.search-found-summary>div{border-bottom-color:#D2CABF}
.status-match i{background:var(--green)}

.search-card{border-radius:0;border-color:#C8C0B3;background:#F5F2EA;box-shadow:8px 8px 0 rgba(24,24,24,.08)}
.search-card-found{background:#F5F2EA;border-color:#BEB6A9}
.found-icon{border-radius:0;background:var(--blue);color:#fff;box-shadow:none}
.found-summary{border-radius:0;border-color:#CBC3B7;background:#EEE8DE}
.modal-detail-list span{border-radius:0;background:#E7E1D7}

.result-card{border-radius:0;border-color:#C8C0B3;box-shadow:8px 8px 0 rgba(24,24,24,.08)}
.result-top .status-ic{border-radius:0}
.recall-item .tag{border-radius:0}

@media (max-width:900px){
  .hero-grid{padding:78px 0 74px;gap:46px}
  .hero h1{font-size:clamp(45px,8vw,67px)}
  .section-ink{margin:0;border-radius:0}
}
@media (max-width:820px){
  .site-head{padding:0}
  .site-head .wrap{height:68px;padding:0 18px}
  .section{padding:76px 0}
  .section-head{margin-bottom:38px}
  .steps,.feature-grid{grid-template-columns:1fr}
  .step{min-height:auto}
  .feature{min-height:auto}
  .split{gap:42px}
  .hero::before{background:radial-gradient(circle at 80% 12%,rgba(217,58,47,.09),transparent 25%)}
}
@media (max-width:560px){
  .site-head{padding:0}
  .site-head .wrap{height:62px;border-radius:0;padding:0 12px}
  .brand{font-size:15px;gap:8px}
  .brand .mark{width:33px;height:33px;border-radius:0}
  .site-head .btn{font-size:10px;padding:10px 11px}
  .hero{margin:0;padding:0}
  .hero-grid{padding:58px 0 60px}
  .hero h1{font-size:44px;line-height:.93}
  .hero .lede{font-size:16px}
  .hero-trust{display:block;border-bottom:0}
  .hero-trust .t{border-right:0;border-bottom:1px solid #C7C0B4;margin-right:0;padding:9px 0}
  .readout{padding:19px;box-shadow:7px 7px 0 var(--blue)}
  .readout::after{display:none}
  .vin-field input{font-size:17px;padding:15px 12px;letter-spacing:.08em}
  .section{padding:62px 0}
  .section-head h2{font-size:36px}
  .step,.feature{padding:24px}
  .cta-band{padding:46px 22px;box-shadow:7px 7px 0 var(--ink)}
  .site-foot{margin-top:62px}
  .legal .doc{padding:28px 20px}
  .rs-modal{padding:9px}
  .rs-modal-card{border-radius:0;padding:28px 18px 23px;box-shadow:7px 7px 0 rgba(217,58,47,.94),0 18px 50px rgba(0,0,0,.25)}
  .rs-search-card{padding:25px 17px}
  .search-modal-heading h2{font-size:23px}
  [data-search-found]>.center-kicker+h2{font-size:26px}
}

/* ============================================================
   REDESIGN 03 — Calm Trust / consumer safety service
   Direction: reassuring, clear, private-by-default visual language.
   Soft blue + teal palette, generous whitespace, rounded cards,
   restrained shadows, friendly hierarchy. Existing behavior preserved.
   ============================================================ */

:root{
  --ink:#16324A;
  --navy:#28465A;
  --navy-2:#36596D;
  --paper:#F7FBFA;
  --mist:#EDF5F4;
  --mist-2:#E3EFED;
  --line:#D4E4E2;
  --line-soft:#E2ECEA;
  --slate:#5F7480;
  --slate-2:#81939C;
  --blue:#2E7398;
  --blue-ink:#245C7A;
  --amber:#E6A84F;
  --amber-deep:#9B6A24;
  --green:#2F8B70;
  --green-soft:#E8F5F0;
  --red:#C9555D;
  --red-soft:#F9E9EA;
  --radius:16px;
  --radius-lg:24px;
  --radius-sm:10px;
  --shadow-sm:0 3px 12px rgba(30,66,83,.055);
  --shadow-md:0 12px 34px rgba(30,66,83,.085);
  --shadow-lg:0 24px 64px rgba(30,66,83,.12);
  --maxw:1160px;
  --display:"IBM Plex Sans",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  --body:"IBM Plex Sans",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
}

html{background:var(--paper)}
body{
  color:var(--navy);
  background:var(--paper);
  background-image:none;
  font-size:17px;
}

h1,h2,h3{
  font-family:var(--display);
  color:var(--ink);
  font-weight:600;
  letter-spacing:-.028em;
  text-transform:none;
}
h2{font-size:clamp(30px,4vw,44px);line-height:1.1}
h3{letter-spacing:-.018em}
a{color:var(--blue)}
a:hover{color:var(--blue-ink)}

.eyebrow{
  color:var(--blue);
  background:#EAF3F7;
  border:1px solid #D9E8EF;
  border-radius:999px;
  padding:7px 11px;
  gap:8px;
  font-family:var(--body);
  font-size:12px;
  font-weight:600;
  letter-spacing:.03em;
  text-transform:none;
}
.eyebrow::before{
  width:7px;height:7px;border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 4px rgba(47,139,112,.10);
}

/* Header — familiar, stable, low-friction */
.site-head{
  position:sticky;top:0;z-index:50;
  margin:0;padding:0;
  background:rgba(255,255,255,.92);
  border:0;
  border-bottom:1px solid var(--line-soft);
  backdrop-filter:blur(14px) saturate(130%);
  pointer-events:auto;
  box-shadow:none;
}
.site-head::after{display:none}
.site-head .wrap{
  height:72px;
  background:transparent;
  border:0;border-radius:0;
  padding:0 24px;
  box-shadow:none;
  pointer-events:auto;
}
.brand{
  font-family:var(--display);
  font-size:18px;font-weight:600;
  letter-spacing:-.025em;
  text-transform:none;
  gap:11px;
  color:var(--ink);
}
.brand .mark{
  width:38px;height:38px;border-radius:12px;
  background:linear-gradient(145deg,#3B88A8 0%,#2E746F 100%);
  box-shadow:0 6px 16px rgba(47,116,111,.17);
}
.brand .mark::after{border-radius:12px;box-shadow:inset 0 0 0 1px rgba(255,255,255,.16)}
.nav{gap:28px}
.nav a.navlink{
  color:#607781;
  font-family:var(--body);
  font-size:14px;font-weight:500;
  letter-spacing:0;text-transform:none;
}
.nav a.navlink:hover{color:var(--ink)}
.site-head .btn{padding:11px 18px;border-radius:12px}

/* Buttons — confident, not aggressive */
.btn{
  border-radius:13px;
  font-family:var(--body);
  font-size:15px;
  font-weight:600;
  letter-spacing:-.01em;
  text-transform:none;
  box-shadow:none;
  transition:background .18s,color .18s,transform .18s,box-shadow .18s,border-color .18s;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 8px 20px rgba(46,115,152,.18);
}
.btn-primary:hover{
  background:var(--blue-ink);
  color:#fff;
  box-shadow:0 10px 24px rgba(46,115,152,.22);
}
.btn-ghost{
  background:#fff;
  color:var(--ink);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn-ghost:hover{background:#F6FAF9;color:var(--ink);border-color:#BFD5D2}
.btn-amber{background:var(--ink);color:#fff}
.btn-amber:hover{background:#21455B;color:#fff}
.btn-lg{padding:16px 26px;border-radius:14px;font-size:16px}

/* Hero — quiet reassurance */
.hero{
  margin:0;padding:0;
  color:var(--navy);
  background:
    radial-gradient(55% 80% at 88% 20%,rgba(92,164,184,.12),transparent 64%),
    radial-gradient(42% 65% at 10% 90%,rgba(77,158,132,.08),transparent 64%),
    linear-gradient(180deg,#FBFDFC 0%,#F4FAF8 100%);
  border-bottom:1px solid var(--line-soft);
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:none;
  mask-image:none;
}
.hero-grid{
  grid-template-columns:1.02fr .98fr;
  gap:68px;
  padding:82px 0 90px;
  align-items:center;
}
.hero-grid>div:first-child::after{display:none}
.hero h1{
  color:var(--ink);
  font-size:clamp(42px,5.7vw,64px);
  line-height:1.02;
  max-width:12ch;
  margin:20px 0 23px;
  text-transform:none;
  text-wrap:balance;
}
.hero .eyebrow{color:var(--blue);background:#EAF3F7;border:1px solid #D9E8EF}
.hero .eyebrow::before{background:var(--green);box-shadow:0 0 0 4px rgba(47,139,112,.10)}
.hero .lede{
  color:#607681;
  font-size:19px;
  line-height:1.65;
  max-width:43ch;
}
.hero-trust{
  display:flex;flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
  border:0;
}
.hero-trust .t{
  color:#526D77;
  background:rgba(255,255,255,.82);
  border:1px solid #DAE8E5;
  border-radius:999px;
  padding:8px 11px;
  margin:0;
  font-family:var(--body);
  font-size:13px;
  font-weight:500;
  text-transform:none;
  letter-spacing:0;
  box-shadow:0 2px 8px rgba(42,81,94,.03);
}
.hero-trust .t:last-child{border-right:1px solid #DAE8E5}
.hero-trust svg{color:var(--green);width:15px;height:15px}

/* VIN form — familiar form card instead of a terminal */
.readout{
  position:relative;
  background:rgba(255,255,255,.98);
  border:1px solid #D6E6E3;
  border-radius:24px;
  padding:28px;
  color:var(--navy);
  box-shadow:0 24px 60px rgba(34,76,91,.11);
  overflow:hidden;
}
.readout::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(75% 55% at 100% 0%,rgba(70,151,162,.08),transparent 68%);
  opacity:1;
}
.readout::after{display:none}
.readout-label{
  color:#6F8790;
  margin-bottom:13px;
  font-family:var(--body);
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  text-transform:none;
}
.readout-label .dot{background:var(--green);box-shadow:0 0 0 4px rgba(47,139,112,.10)}
.vin-field input{
  color:#17354A;
  background:#F7FAFA;
  border:1.5px solid #CFE0DE;
  border-radius:14px;
  padding:17px 17px;
  caret-color:var(--blue);
  box-shadow:inset 0 1px 2px rgba(32,73,86,.025);
  font-size:clamp(18px,3.2vw,25px);
  letter-spacing:.11em;
}
.vin-field input::placeholder{color:#AAB9BD;letter-spacing:.10em}
.vin-field input:focus{
  border-color:#67A2B9;
  background:#fff;
  box-shadow:0 0 0 4px rgba(46,115,152,.10);
}
.vin-meta{color:#84969D;margin-top:12px;font-size:12px;font-family:var(--body)}
.vin-count{color:#647E88}
.vin-count b{color:var(--blue)}
.vin-error{color:var(--red);font-family:var(--body);font-size:13px}
.readout .btn{margin-top:18px}
.readout .btn-primary{background:var(--blue);box-shadow:0 8px 20px rgba(46,115,152,.16)}
.readout .btn-primary:hover{background:var(--blue-ink);color:#fff;box-shadow:0 10px 24px rgba(46,115,152,.20)}
.scanline{height:2px;background:linear-gradient(90deg,transparent,#63A6B5,transparent);box-shadow:none}
.hero form + p{
  color:#738A92!important;
  font-family:var(--body)!important;
  font-size:13px!important;
  text-transform:none!important;
  letter-spacing:0!important;
  margin-top:13px!important;
}

/* Sections */
.section{padding:92px 0}
.section-head{max-width:680px;margin-bottom:50px}
.section-head h2{margin:16px 0 14px;text-transform:none;line-height:1.1}
.section-head p{font-size:17px;line-height:1.72;color:#637781}

.steps{
  gap:18px;
  border:0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.step{
  min-height:286px;
  position:relative;
  border:1px solid var(--line-soft);
  border-radius:20px;
  padding:28px;
  background:#fff;
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  transition:transform .22s var(--ease),box-shadow .22s var(--ease),border-color .22s;
}
.step::before{display:none}
.step::after{display:none}
.step:hover{transform:translateY(-3px);background:#fff;box-shadow:var(--shadow-md);border-color:#CDE0DD}
.step .ic{
  width:48px;height:48px;border-radius:14px;
  background:#EAF3F7;color:var(--blue);
  margin-bottom:25px;
}
.step .ic svg{color:var(--blue);width:23px;height:23px}
.step .num{color:#6D919E;font-size:11px;letter-spacing:.08em;font-family:var(--body)}
.step h3{font-size:21px;margin:10px 0 9px;text-transform:none}
.step p{font-size:15px;line-height:1.7;color:#697D86}

/* The former dark block becomes a calm trust panel */
.section-ink{
  margin:0;
  border-radius:0;
  background:linear-gradient(180deg,#EDF6F5 0%,#F4F9F8 100%);
  color:var(--navy);
  overflow:hidden;
  position:relative;
  border-top:1px solid #DCEBE8;
  border-bottom:1px solid #DCEBE8;
}
.section-ink::before{display:none}
.section-ink .section-head h2{color:var(--ink)}
.section-ink .section-head p{color:#687D86}
.section-ink .eyebrow{color:var(--blue);background:#fff;border:1px solid #D9E8E5}
.section-ink .eyebrow::before{background:var(--green)}
.feature-grid{
  gap:18px;
  border:0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.feature{
  min-height:222px;
  background:rgba(255,255,255,.92);
  border:1px solid #DCE9E7;
  border-radius:20px;
  padding:28px;
  backdrop-filter:none;
  box-shadow:0 5px 18px rgba(34,75,88,.045);
}
.feature .ic{
  width:46px;height:46px;border-radius:14px;
  background:#E6F2F1;
}
.feature .ic svg{color:var(--green);width:22px;height:22px}
.feature h3{font-size:20px;text-transform:none;color:var(--ink);margin-bottom:9px}
.feature p{color:#687D86;line-height:1.7}

.section-tint{background:#F1F7F6}
.split{gap:62px}
.split .card-panel{
  border:1px solid #D6E5E2;
  border-radius:22px;
  padding:30px;
  background:#fff;
  box-shadow:0 16px 42px rgba(34,75,88,.075);
}
.mini-recall{padding:17px 0;border-bottom-color:#E4ECEA}
.mini-recall .badge-ic{background:#EDF4F7;border-radius:11px}
.mini-recall .badge-ic svg{color:var(--blue)}
.mini-recall b{text-transform:none;letter-spacing:-.01em}
.split ul.plain li{padding:10px 0;color:#5F757E}
.split ul.plain svg{color:var(--green)}

.faq{border-top:0}
.faq details{
  background:#fff;
  border:1px solid var(--line-soft);
  border-radius:15px;
  margin:0 0 10px;
  padding:0 19px;
  box-shadow:0 3px 12px rgba(34,75,88,.035);
}
.faq summary{padding:20px 0;font-size:17px;text-transform:none;letter-spacing:-.012em}
.faq .ans{padding:0 0 20px;color:#657A83}
.faq summary::after{color:var(--blue);font-size:22px}

.cta-band{
  border-radius:24px;
  padding:58px 44px;
  background:
    radial-gradient(60% 130% at 100% 0%,rgba(90,163,167,.12),transparent 65%),
    linear-gradient(135deg,#E9F3F5 0%,#E9F5F0 100%);
  border:1px solid #D4E7E4;
  box-shadow:0 14px 38px rgba(34,75,88,.07);
}
.cta-band::before{display:none}
.cta-band h2{font-size:clamp(31px,4vw,46px);text-transform:none;color:var(--ink)}
.cta-band p{font-size:17px;color:#657B84}
.cta-band .btn-primary{background:var(--blue);color:#fff;box-shadow:0 8px 20px rgba(46,115,152,.18)}
.cta-band .btn-primary:hover{background:var(--blue-ink);color:#fff;box-shadow:0 10px 24px rgba(46,115,152,.22)}

/* Footer — light and informational */
.site-foot{
  margin-top:84px;
  padding:58px 0 30px;
  background:#EFF5F4;
  color:#6B8088;
  border-top:1px solid #D7E5E3;
}
.site-foot .brand{color:var(--ink)}
.site-foot .brand:hover{color:var(--ink)}
.site-foot .brand .mark{background:linear-gradient(145deg,#3B88A8,#2E746F)}
.foot-grid{border-bottom-color:#D3E1DF}
.foot-col h4{color:#71878E}
.foot-col a{color:#5F7780}
.foot-col a:hover{color:var(--blue-ink)}
.foot-about,.foot-bottom,.foot-disclaimer{color:#748990}

/* Check page — same calm language */
.check-shell{
  margin:0;padding:0;
  min-height:calc(100vh - 72px);
  background:
    radial-gradient(52% 60% at 50% 0%,rgba(72,145,161,.10),transparent 72%),
    linear-gradient(180deg,#F4FAF8 0%,#F8FBFA 100%);
  background-size:auto;
}
.check-main{padding:72px 24px 88px}
.check-inner{max-width:720px}
.check-inner .kicker{margin-bottom:28px}
.check-inner .kicker h1{font-size:clamp(34px,5vw,48px);text-transform:none;line-height:1.05}
.check-inner .kicker p{color:#657B84}
.check-inner .vin-form{margin-top:32px}
.check-inner .readout{box-shadow:0 22px 58px rgba(34,76,91,.10)}
.check-foot{color:#7B8F96;font-family:var(--body);font-size:13px}

/* Legal / content */
.legal{padding:66px 0 96px}
.legal .doc{
  max-width:820px;
  background:#fff;
  border:1px solid #DDE9E7;
  border-radius:22px;
  padding:40px 44px;
  box-shadow:0 12px 34px rgba(34,75,88,.055);
}
.legal h1{font-size:clamp(34px,4.5vw,48px);text-transform:none;line-height:1.04}
.legal .updated{color:#748B93}
.legal h2{font-size:24px;text-transform:none}
.legal p,.legal li{color:#566D76}
.legal .callout{background:#EEF6F5;border-left:4px solid var(--green);border-radius:0 12px 12px 0;color:#5C747C}

/* Results */
.result-card{border-radius:20px;border-color:#DDE9E7;box-shadow:var(--shadow-md)}
.result-top{border-bottom-color:#E5EEEC}
.result-top .status-ic{border-radius:14px}
.recall-item .tag{border-radius:8px}
.result-foot{background:#F1F6F5}

/* Generic result/search cards */
.search-card{
  border-radius:18px;
  border-color:#D9E6E4;
  background:#fff;
  box-shadow:var(--shadow-md);
}
.search-card-found{background:linear-gradient(180deg,#F8FCFA 0%,#fff 72%);border-color:#D4E7DF}
.found-icon{border-radius:13px;background:var(--green-soft);color:var(--green);box-shadow:none}
.found-summary{border-radius:13px;border-color:#DDE9E6;background:#F9FBFB}
.modal-detail-list span{border-radius:10px;background:#EEF5F4}
.search-kicker.found{color:var(--green)}

/* Modal system — soft, clear, safe */
.rs-modal{
  background:rgba(18,43,55,.54);
  backdrop-filter:blur(8px) saturate(105%);
  padding:18px;
}
.rs-modal-card{
  border:1px solid rgba(222,235,232,.96);
  border-radius:24px;
  box-shadow:0 28px 78px rgba(17,48,61,.22);
  padding:36px 34px 30px;
  background:#fff;
}
.rs-modal-x{
  top:14px;right:14px;width:36px;height:36px;
  border-radius:11px;background:#EEF4F3;color:#607982;
}
.rs-modal-x:hover{background:#E2ECEA;color:var(--ink)}
.rs-modal-badge{
  width:62px;height:62px;border-radius:18px;
  background:linear-gradient(145deg,#438CA5,#377F79);
  box-shadow:0 12px 28px rgba(54,126,129,.18);
}
.rs-modal-badge svg{color:#fff}
.modal-eyebrow{color:var(--blue);text-transform:none;letter-spacing:.03em;font-family:var(--body)}
.rs-modal-card h2{font-size:27px;text-transform:none;line-height:1.12}
.rs-modal-card p{color:#617780}
.rs-modal-vin{background:#F1F6F5;border:1px solid #DFEAE8;border-radius:10px;color:#294A5B}
.rs-report-card{max-width:540px}
.full-report-point{border:1px solid #DFEAE8;border-radius:13px;background:#F7FAFA;color:#355565}
.full-report-point__check{border-radius:50%;background:var(--green-soft);color:var(--green)}

.rs-search-card{max-width:650px;padding:34px}
.search-db-icon{
  width:54px;height:54px;border-radius:16px;
  background:linear-gradient(145deg,#438CA5,#377F79);
  box-shadow:0 10px 24px rgba(54,126,129,.16);
}
.search-modal-heading h2{font-size:27px;text-transform:none;line-height:1.1}
.search-kicker{color:var(--blue);text-transform:none;letter-spacing:.03em;font-family:var(--body)}
.pulse-dot{background:var(--blue);box-shadow:0 0 0 0 rgba(46,115,152,.20)}
.search-vin-line{background:#F3F7F6;border-color:#DDE9E6;border-radius:11px}
.search-meter{height:8px;border-radius:99px;background:#E4ECEA}
.search-meter span{border-radius:99px;background:linear-gradient(90deg,#3981A3,#43A084);box-shadow:none}
.search-percent b{color:var(--blue)}
.modal-search-progress{border:1px solid #E0EAE8;border-radius:14px;background:#FAFCFB;padding:6px;gap:5px}
.modal-search-step{min-height:36px;padding:8px 10px;border-radius:10px;border:0}
.modal-search-step.active{background:#EAF3F7;color:#2E627D}
.modal-search-step.done{color:var(--green)}
.search-source-card{background:#F1F6F5;border-radius:12px;padding:12px 14px}
.search-found-mark{width:68px;height:68px;border-radius:20px;background:var(--green-soft);color:var(--green);border:1px solid #D4E9E0;box-shadow:none}
.search-found-summary{border-radius:14px;background:#F8FBFA;border-color:#DFEAE7}
.search-found-summary>div{border-bottom-color:#E4ECEA}
.status-match i{background:var(--green)}

@media (max-width:900px){
  .hero-grid{padding:68px 0 72px;gap:44px}
  .hero h1{font-size:clamp(40px,7.4vw,58px);max-width:14ch}
}
@media (max-width:820px){
  .site-head{padding:0}
  .site-head .wrap{height:66px;padding:0 18px}
  .section{padding:74px 0}
  .section-head{margin-bottom:38px}
  .steps,.feature-grid{grid-template-columns:1fr}
  .step,.feature{min-height:auto}
  .split{gap:40px}
}
@media (max-width:560px){
  .site-head{padding:0}
  .site-head .wrap{height:62px;border-radius:0;padding:0 12px}
  .brand{font-size:16px;gap:8px}
  .brand .mark{width:34px;height:34px;border-radius:10px}
  .site-head .btn{font-size:13px;padding:10px 12px}
  .hero{margin:0;padding:0}
  .hero-grid{padding:52px 0 58px}
  .hero h1{font-size:39px;line-height:1.02}
  .hero .lede{font-size:17px}
  .hero-trust{display:grid;grid-template-columns:1fr;gap:8px;border:0}
  .hero-trust .t,.hero-trust .t:last-child{border:1px solid #DAE8E5;margin:0;padding:8px 10px;justify-self:start}
  .readout{padding:20px;border-radius:20px;box-shadow:0 18px 44px rgba(34,76,91,.10)}
  .vin-field input{font-size:17px;padding:15px 13px;letter-spacing:.08em}
  .section{padding:62px 0}
  .section-head h2{font-size:34px}
  .step,.feature{padding:24px}
  .cta-band{padding:44px 22px;border-radius:20px;box-shadow:0 10px 30px rgba(34,75,88,.06)}
  .site-foot{margin-top:62px}
  .legal .doc{padding:28px 20px;border-radius:18px}
  .rs-modal{padding:9px}
  .rs-modal-card{border-radius:20px;padding:28px 18px 23px;box-shadow:0 20px 58px rgba(17,48,61,.20)}
  .rs-search-card{padding:25px 17px}
  .search-modal-heading h2{font-size:23px}
  [data-search-found]>.center-kicker+h2{font-size:26px}
}
