/* Edge Line Analytics — road-marking system
   asphalt  #25303a   hero, footer, headings on light
   concrete #eef0ed   alternate bands
   paper    #ffffff   base
   marking  #f5b800   edge lines, one accent per view
   survey   #245a8c   links, focus
   slate    #56636d   secondary text                                     */

:root {
  --asphalt: #25303a;
  --asphalt-2: #2f3b46;
  --concrete: #eef0ed;
  --paper: #ffffff;
  --marking: #f5b800;
  --survey: #245a8c;
  --ink: #1f2830;
  --slate: #56636d;
  --rule: #d5dad6;
  --display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --wrap: 72rem;
  color-scheme: light;
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
*, *::before, *::after { box-sizing: inherit; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 1.0625rem/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--survey); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--survey); outline-offset: 3px; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.08; letter-spacing: -.005em; color: var(--asphalt); margin: 0 0 .5em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: .5rem; background: var(--paper); padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: .5rem; }

/* Header */
.site-header { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--rule); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; }
.brand img { height: 44px; width: auto; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav > a, .nav-group > a { display: block; padding: .6rem .75rem; color: var(--ink); text-decoration: none; font-weight: 500; font-size: .98rem; }
.site-nav a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--marking); }
.site-nav > a:hover, .nav-group > a:hover { color: var(--survey); }
.nav-group { position: relative; }
.nav-drop { position: absolute; top: 100%; left: 0; min-width: 14rem; background: var(--paper); border: 1px solid var(--rule); border-top: 3px solid var(--marking); padding: .4rem 0; display: none; box-shadow: 0 12px 24px -12px rgba(37,48,58,.35); }
.nav-drop-wide { min-width: 17rem; }
.nav-drop a { display: block; padding: .45rem 1rem; color: var(--ink); text-decoration: none; font-size: .95rem; }
.nav-drop a:hover, .nav-drop a[aria-current="page"] { background: var(--concrete); box-shadow: none; }
.nav-group:hover .nav-drop, .nav-group:focus-within .nav-drop { display: block; }
.site-nav .nav-cta { margin-left: .5rem; background: var(--asphalt); color: #fff; padding: .6rem 1.1rem; }
.site-nav .nav-cta:hover { background: var(--asphalt-2); color: #fff; }
.menu-toggle { display: none; font: 600 1rem var(--body); background: none; border: 1px solid var(--rule); padding: .5rem .9rem; color: var(--ink); cursor: pointer; }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--rule); padding: .5rem 1.25rem 1.25rem; max-height: calc(100vh - 4.5rem); overflow-y: auto; }
  .site-nav.open { display: flex; }
  .nav-drop { position: static; display: block; border: 0; box-shadow: none; padding: 0 0 .5rem .75rem; min-width: 0; }
  .nav-drop a { padding: .35rem .75rem; color: var(--slate); }
  .site-nav .nav-cta { margin: .75rem 0 0; text-align: center; }
}

/* Buttons */
.btn { display: inline-block; font: 600 1rem/1 var(--body); padding: .95rem 1.4rem; text-decoration: none; border: 2px solid transparent; transition: background-color .15s, color .15s; }
.btn-yellow { background: var(--marking); color: var(--asphalt); }
.btn-yellow:hover { background: #ffc92e; }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-solid { background: var(--asphalt); color: #fff; }
.btn-solid:hover { background: var(--asphalt-2); }
.btn-outline { border-color: var(--asphalt); color: var(--asphalt); }
.btn-outline:hover { background: var(--asphalt); color: #fff; }
.text-link { font-weight: 600; color: var(--asphalt); text-decoration: none; border-bottom: 2px solid var(--marking); padding-bottom: 2px; }
.text-link:hover { color: var(--survey); }

/* Hero: the road that becomes a trend line */
.hero { position: relative; background: var(--asphalt); color: #e3e8ea; overflow: hidden; }
.hero-inner { position: relative; z-index: 1; padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(9rem, 20vw, 14rem); }
.hero h1 { color: #fff; max-width: 13ch; font-size: clamp(2.9rem, 7.4vw, 6rem); line-height: .98; }
.hero-sub { max-width: 40rem; font-size: 1.2rem; color: #c9d1d5; margin-top: 1.25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-road { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: clamp(9rem, 24vw, 22rem); }
.hero-road .lane { stroke: rgba(255,255,255,.28); stroke-width: 3; stroke-dasharray: 42 34; fill: none; vector-effect: non-scaling-stroke; }
.hero-road .edge-line { stroke: var(--marking); stroke-width: 6; fill: none; stroke-linecap: round; vector-effect: non-scaling-stroke; clip-path: inset(-12px 100% -12px -12px); animation: draw 2.4s .3s cubic-bezier(.6,.05,.3,1) forwards; }
.hero-road .nodes circle { fill: var(--asphalt); stroke: var(--marking); stroke-width: 3; vector-effect: non-scaling-stroke; opacity: 0; animation: pop .4s 2.4s forwards; }
@keyframes draw { to { clip-path: inset(-12px -12px -12px -12px); } }
@keyframes pop { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-road .edge-line { animation: none; clip-path: none; }
  .hero-road .nodes circle { animation: none; opacity: 1; }
}

/* Bands */
.band { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.band-alt { background: var(--concrete); }
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.split-head p { color: var(--slate); max-width: 30rem; }
.prose { max-width: 38rem; }
.row-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.row-head h2 { margin: 0; }

/* Services on home: lanes separated by dashed markings */
.svc-list { border-top: 3px solid var(--asphalt); }
.svc { display: grid; grid-template-columns: 12rem 1fr; gap: 1.5rem; padding: 1.4rem 0; border-bottom: 2px dashed var(--rule); }
.svc h3 { margin: 0; font-size: 1.6rem; }
.svc p { margin: .25rem 0 0; color: var(--slate); }

/* Featured work */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.feat { display: flex; flex-direction: column; background: var(--paper); padding: 1.75rem 1.5rem; text-decoration: none; color: var(--ink); min-height: 19rem; }
.feat:hover { background: #fbfbf9; }
.feat:hover .feat-title { color: var(--survey); }
.feat-fig { font: 700 3.4rem/1 var(--display); color: var(--asphalt); border-bottom: 5px solid var(--marking); align-self: flex-start; padding-bottom: .2rem; }
.feat-label { color: var(--slate); font-size: .95rem; margin-top: .6rem; }
.feat-title { font: 600 1.35rem/1.2 var(--display); color: var(--asphalt); margin-top: auto; padding-top: 1.5rem; }
.feat-meta { color: var(--slate); font-size: .9rem; margin-top: .5rem; }

/* Clients */
.clients h2 { margin-bottom: 2rem; }
.logo-wall { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr)); gap: 1rem; }
.logo-wall li { background: var(--paper); aspect-ratio: 16 / 9; display: grid; place-items: center; padding: 1rem 1.25rem; }
.logo-wall img { max-height: 3.6rem; width: auto; object-fit: contain; filter: grayscale(1); opacity: .8; transition: filter .2s, opacity .2s; }
.logo-wall li:hover img { filter: none; opacity: 1; }

/* Contact */
.contact { background: var(--asphalt); color: #d5dcdf; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.contact h2 { color: #fff; }
.contact a { color: #fff; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 5rem); }
.contact-direct { margin-top: 1.5rem; }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: .35rem; font-weight: 500; color: #fff; font-size: .95rem; }
.contact-form input, .contact-form textarea { font: inherit; color: var(--ink); background: #fff; border: 2px solid transparent; padding: .75rem .85rem; width: 100%; border-radius: 0; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--marking); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .btn-solid { background: var(--marking); color: var(--asphalt); justify-self: start; }
.contact-form .btn-solid:hover { background: #ffc92e; }
.hp { position: absolute; left: -9999px; }

/* Interior page heads: the edge line runs under every title */
.page-head { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem); border-bottom: 5px solid var(--marking); background: linear-gradient(var(--paper), var(--paper)) padding-box; position: relative; }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 14px; border-bottom: 2px dashed var(--rule); }
.page-head h1 { max-width: 22ch; font-size: clamp(2.3rem, 5vw, 3.9rem); }
.lede { font-size: 1.2rem; color: var(--slate); max-width: 40rem; }
.lede-sm { color: var(--slate); }
.mission { font: 600 clamp(1.6rem, 2.8vw, 2.1rem)/1.2 var(--display); color: var(--asphalt); max-width: 22ch; }

/* Lists */
.lined { list-style: none; margin: 0 0 1rem; padding: 0; }
.lined li { padding: .7rem 0 .7rem 1.4rem; border-bottom: 1px solid var(--rule); position: relative; }
.lined li::before { content: ""; position: absolute; left: 0; top: 1.25rem; width: .7rem; height: 3px; background: var(--marking); }

/* Team */
.face-row { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); gap: 1.5rem; }
.face-row img { aspect-ratio: 1; object-fit: cover; width: 100%; margin-bottom: .75rem; filter: grayscale(.2); }
.face-row span { display: block; font: 600 1.3rem var(--display); color: var(--asphalt); }
.face-row small { color: var(--slate); font-size: .95rem; }
.people { display: grid; gap: 3rem; }
.person { display: grid; grid-template-columns: 13rem 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 2px dashed var(--rule); max-width: 58rem; }
.person:last-child { border-bottom: 0; padding-bottom: 0; }
.person img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.person h2 { margin: 0; font-size: 2rem; }
.role { color: var(--slate); font-weight: 600; margin-bottom: 1rem; }
.aside { color: var(--slate); font-style: italic; }
.li { font-weight: 600; font-size: .95rem; }
.advisors { display: grid; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); gap: 3rem; max-width: 58rem; }
.advisor img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; margin-bottom: 1.25rem; border-bottom: 5px solid var(--marking); }
.advisor h2 { margin: 0; font-size: 2rem; }

/* Services page */
.svc-block { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 5rem); padding: 2.5rem 0; border-top: 3px solid var(--asphalt); }
.svc-block:first-child { padding-top: 0; border-top: 0; }
.svc-block h2 { margin-bottom: .35rem; }
.svc-refs { margin-top: 1.5rem; }
.svc-refs p { font-weight: 600; margin-bottom: .4rem; color: var(--slate); font-size: .95rem; }
.svc-refs a { display: block; padding: .25rem 0; }

/* Work index */
.work-list { border-top: 3px solid var(--asphalt); }
.work-row { display: grid; grid-template-columns: 14rem 1fr 11rem; gap: 1.5rem; align-items: baseline; padding: 1.5rem 0; border-bottom: 2px dashed var(--rule); text-decoration: none; color: var(--ink); }
.wr-practice { font-weight: 600; color: var(--slate); }
.wr-title { font: 600 1.55rem/1.2 var(--display); color: var(--asphalt); }
.wr-sector { color: var(--slate); text-align: right; font-size: .95rem; }
.work-row:hover .wr-title { color: var(--survey); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .15em; }

/* Case study */
.crumb { color: var(--slate); font-size: .95rem; margin-bottom: 1.25rem; }
.cs-sector { font-weight: 600; color: var(--slate); }
.cs-figure { margin: 1.75rem 0 0; color: var(--slate); display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.cs-figure span { font: 700 3.2rem/1 var(--display); color: var(--asphalt); }
.cs-figure-text { font-weight: 600; color: var(--asphalt); }
.cs-img { margin: 2.5rem 0 0; }
.cs-img img { width: 100%; max-height: 30rem; object-fit: cover; }
.cs-body > * { max-width: 50rem; }
.cs-steps { list-style: none; margin: 0; padding: 0 0 0 2.25rem; border-left: 5px solid var(--marking); }
.cs-steps > li { position: relative; padding-bottom: 2.5rem; }
.cs-steps > li:last-child { padding-bottom: 0; }
.cs-steps > li::before { content: ""; position: absolute; left: calc(-2.25rem - 12px); top: .35rem; width: 19px; height: 19px; border-radius: 50%; background: var(--paper); border: 4px solid var(--asphalt); }
.cs-steps h2 { font-size: 1.9rem; }
.cs-lead { display: flex; align-items: center; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--rule); }
.cs-lead img { width: 4.5rem; height: 4.5rem; border-radius: 50%; object-fit: cover; }
.cs-lead p { margin: 0; color: var(--slate); font-size: .9rem; }
.cs-lead a { font: 600 1.3rem var(--display); color: var(--asphalt); }
.cs-ask { margin-top: 2.5rem; font-weight: 500; }
.next-work p { color: var(--slate); margin-bottom: .35rem; }
.next-work a { font: 600 clamp(1.5rem, 3vw, 2.2rem)/1.15 var(--display); color: var(--asphalt); }

/* Footer */
.site-footer { background: var(--asphalt); color: #b9c3c8; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer .edge { height: 5px; background: var(--marking); }
.footer-inner { display: grid; grid-template-columns: 2fr 2fr 1.3fr; gap: 2.5rem; padding: 3.5rem 0 2.5rem; font-size: .95rem; }
.footer-name { font: 700 1.6rem var(--display); color: #fff; margin-bottom: .5rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 1.5rem; align-content: start; }
.site-footer a { color: #e3e8ea; text-decoration: none; }
.site-footer a:hover { color: var(--marking); }
.footer-contact { display: grid; gap: .4rem; align-content: start; overflow-wrap: anywhere; }
.footer-base { border-top: 2px dashed rgba(255,255,255,.18); padding: 1.25rem 0 1.75rem; font-size: .88rem; }
.footer-base p { margin: 0; }

@media (max-width: 820px) {
  .split, .contact-grid, .svc-block { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; gap: .25rem; }
  .person { grid-template-columns: 1fr; gap: 1.25rem; }
  .person img { max-width: 12rem; }
  .work-row { grid-template-columns: 1fr; gap: .35rem; }
  .wr-sector { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 700px) { .hero-road .nodes { display: none; } }
.brand { text-decoration: none; }
.wordmark { font: 700 1.6rem/1 var(--display); color: var(--asphalt); border-bottom: 4px solid var(--marking); padding-bottom: 2px; }

/* Atlas IQ */
.ai-hero-inner { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.ai-hero h1 { max-width: 15ch; font-size: clamp(2.6rem, 5.2vw, 4.6rem); line-height: 1; }
.ai-name { font: 700 1.5rem/1 var(--display); color: var(--marking); margin-bottom: 1.25rem; }
.ai-name span { font: 500 1rem var(--body); color: #c9d1d5; margin-left: .35rem; }
.ai-demo { margin: 0; background: var(--paper); color: var(--ink); border-bottom: 6px solid var(--marking); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.ai-demo-bar { background: var(--concrete); padding: .6rem 1rem; font: 600 1rem var(--display); color: var(--asphalt); border-bottom: 1px solid var(--rule); }
.ai-demo-body { padding: 1.25rem; display: grid; gap: 1rem; }
.msg { margin: 0; font-size: .98rem; }
.msg-q { justify-self: end; max-width: 85%; background: var(--asphalt); color: #fff; padding: .7rem .9rem; }
.msg-a { max-width: 95%; }
.msg-a p { margin: 0 0 .75rem; }
.ai-chart { width: 100%; height: auto; display: block; margin-bottom: .75rem; }
.ai-chart .grid { stroke: var(--rule); stroke-width: 1; fill: none; }
.ai-chart .band { fill: rgba(245,184,0,.25); }
.ai-chart .actual { fill: none; stroke: var(--asphalt); stroke-width: 3; stroke-linejoin: round; }
.ai-chart .forecast { fill: none; stroke: #d69e00; stroke-width: 3; stroke-dasharray: 7 5; stroke-linejoin: round; }
.ai-chart circle { fill: var(--paper); stroke: var(--asphalt); stroke-width: 2.5; }
.ai-chart text { font: 500 11px var(--body); fill: var(--slate); }
.msg-a .msg-rec { margin: 0; padding: .6rem .8rem; background: var(--concrete); border-left: 4px solid var(--marking); font-weight: 500; }
.ai-demo figcaption { font-size: .8rem; color: var(--slate); padding: 0 1.25rem .9rem; }

.ai-flow { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; counter-reset: flow; border-top: 5px solid var(--marking); }
.ai-flow li { position: relative; padding-top: 2rem; counter-increment: flow; }
.ai-flow li::before { content: ""; position: absolute; top: -12px; left: 0; width: 19px; height: 19px; border-radius: 50%; background: var(--paper); border: 4px solid var(--asphalt); }
.ai-flow h3 { font-size: 2rem; margin-bottom: .35rem; }
.ai-flow p { color: var(--slate); max-width: 22rem; }
.ai-caps .svc { grid-template-columns: 14rem 1fr; }

.ai-statement { background: var(--asphalt); padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.ai-statement p { font: 600 clamp(1.6rem, 3.2vw, 2.4rem)/1.2 var(--display); color: #fff; max-width: 30ch; margin: 0; padding-left: 1.5rem; border-left: 5px solid var(--marking); }

.ai-apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.ai-app { border-top: 3px solid var(--asphalt); padding-top: 1.25rem; }
.ai-app h3 { font-size: 1.75rem; margin-bottom: .35rem; }
.ai-app > p { color: var(--slate); }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.shot { margin: 0; }
.shot a { display: block; background: var(--paper); padding: .75rem; border-bottom: 4px solid var(--marking); }
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.shot a:hover { outline: 2px solid var(--asphalt); }
.shot figcaption { margin-top: .6rem; font-size: .95rem; color: var(--slate); }

@media (max-width: 900px) {
  .ai-hero-inner { grid-template-columns: 1fr; }
  .ai-flow, .ai-apps { grid-template-columns: 1fr; }
  .ai-flow { border-top: 0; border-left: 5px solid var(--marking); padding-left: 2rem; gap: 1.5rem; }
  .ai-flow li { padding-top: 0; }
  .ai-flow li::before { top: .35rem; left: calc(-2rem - 12px); }
  .ai-caps .svc { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .shots { grid-template-columns: 1fr; } }

/* Home hero illustration */
.hero-home h1 { font-size: clamp(2.8rem, 5.6vw, 5.2rem); }
.hero-home { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-map { margin: 0; box-shadow: 0 30px 60px -30px rgba(0,0,0,.65); }
.hero-map svg { display: block; width: 100%; height: auto; }
.hero-map .contour path { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 1.5; }
.hero-map .water { fill: #245a8c; opacity: .55; }
.hero-map .pier rect { fill: #56636d; }
.hero-map .rail-line { fill: none; stroke: #8a979f; stroke-width: 1.5; }
.hero-map .rail-ties { fill: none; stroke: #8a979f; stroke-width: 9; stroke-dasharray: 1.5 9; }
.hero-map .runway { fill: #56636d; }
.hero-map .runway-mark { stroke: #fff; stroke-width: 1.5; stroke-dasharray: 10 8; opacity: .7; }
.hero-map .road-bed { fill: none; stroke: #56636d; stroke-width: 24; }
.hero-map .road-center { fill: none; stroke: rgba(255,255,255,.75); stroke-width: 1.5; stroke-dasharray: 10 8; }
.hero-map .road-edge { fill: none; stroke: #f5b800; stroke-width: 2.5; }
.hero-map .leader path { fill: none; stroke: #f5b800; stroke-width: 1.5; stroke-dasharray: 3 3; }
.hero-map .node circle { fill: #25303a; stroke: #f5b800; stroke-width: 3; }
.hero-map .card > rect:first-child { fill: #fff; }
.hero-map .card text { font: 600 13px "Barlow", Arial, sans-serif; fill: #25303a; }
.hero-map .spark { fill: none; stroke: #25303a; stroke-width: 2.5; stroke-linejoin: round; }
.hero-map .bar { fill: #25303a; }
.hero-map .bar-bg { fill: #d5dad6; }
.hero-map .dots circle { fill: #f5b800; }
.hero-map .dots circle.open { fill: #fff; stroke: #56636d; stroke-width: 1.5; }
@media (max-width: 900px) {
  .hero-home { grid-template-columns: 1fr; }
  .hero-map { max-width: 32rem; }
}
