/* ============================================================
   REMOTE AUTO REPAIR — stylesheet
   Palette: black / white / blue. Type: Archivo + Barlow Condensed + IBM Plex Mono
   ============================================================ */

:root {
  --ink:        #07090D;
  --ink-2:      #0C1017;
  --panel:      #121824;
  --panel-2:    #182031;
  --line:       #1E2736;
  --line-2:     #2B3648;

  --paper:      #EDF1F7;
  --muted:      #94A3B8;
  --muted-2:    #64748B;

  --blue:       #2E6BFF;
  --blue-2:     #5B8CFF;
  --blue-deep:  #0A245E;
  --blue-glow:  rgba(46,107,255,.28);

  --display: "Archivo", system-ui, sans-serif;
  --label:   "Barlow Condensed", system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 48px);
  --r: 4px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

/* ---------- utility ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--blue); color: #fff; padding: 12px 18px; border-radius: var(--r);
  font-family: var(--label); text-transform: uppercase; letter-spacing: .08em; text-decoration: none;
  transition: top .18s;
}
.skip:focus { top: 12px; }

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- type ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
h1 { font-size: clamp(2.6rem, 7.2vw, 5rem); font-weight: 900; letter-spacing: -.035em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -.01em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--label);
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--blue-2);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--blue);
  flex: none;
}
.lede { font-size: clamp(1.05rem, 1.9vw, 1.28rem); color: var(--muted); max-width: 60ch; }
.mono { font-family: var(--mono); font-size: .82em; letter-spacing: -.01em; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,9,13,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar__in {
  display: flex; align-items: center; gap: 22px;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand .brandmark { height: 30px; width: auto; flex: none; }
.brand--footer { display: block; margin-bottom: 18px; }
.brand--footer img { width: 210px; height: auto; }
.brand__name {
  font-family: var(--display);
  font-weight: 900; font-size: 1.02rem; letter-spacing: -.02em; line-height: 1;
  text-transform: uppercase;
}
.brand__tag {
  display: block;
  font-family: var(--label); font-weight: 600; font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--blue-2);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--label); font-weight: 600; font-size: 1.02rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); text-decoration: none;
  padding: 9px 13px; border-radius: var(--r);
  transition: color .16s, background .16s;
}
.nav a:hover { color: var(--paper); background: var(--panel); }
.nav a[aria-current="page"] { color: var(--paper); }
.nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; background: var(--blue); margin-top: 5px;
}

.navtoggle {
  display: none;
  background: var(--panel); border: 1px solid var(--line); color: var(--paper);
  width: 44px; height: 44px; border-radius: var(--r); cursor: pointer;
  align-items: center; justify-content: center;
}
.navtoggle span { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.navtoggle span::before, .navtoggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
  transition: transform .2s;
}
.navtoggle span::before { top: -6px; }
.navtoggle span::after  { top: 6px; }
.navtoggle[aria-expanded="true"] span { background: transparent; }
.navtoggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--label); font-weight: 700; font-size: 1.08rem;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 15px 26px; border-radius: var(--r);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .14s, background .16s, border-color .16s, box-shadow .16s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 22px -8px var(--blue-glow); }
.btn--primary:hover { background: #1D5BF5; box-shadow: 0 10px 30px -8px var(--blue-glow); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--blue); background: rgba(46,107,255,.07); }
.btn--sm { padding: 11px 18px; font-size: .95rem; }
.btn--block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(52px, 8vw, 96px) 0 clamp(56px, 8vw, 100px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(760px 460px at 78% 18%, rgba(46,107,255,.14), transparent 68%),
    linear-gradient(180deg, #0B1220 0%, var(--ink) 62%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 78%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal; color: var(--blue-2);
  display: block;
}
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.24rem); color: var(--muted); max-width: 44ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.hero__facts {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.fact { display: flex; align-items: baseline; gap: 9px; }
.fact b {
  font-family: var(--mono); font-weight: 600; font-size: 1.02rem; color: var(--blue-2);
}
.fact span {
  font-family: var(--label); text-transform: uppercase; letter-spacing: .12em;
  font-size: .88rem; color: var(--muted-2);
}

/* ---------- signature: service radius map ---------- */
.radius { position: relative; }
.radius__card {
  background: linear-gradient(165deg, var(--panel) 0%, #0B1017 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 30px 70px -30px #000;
}
.radius__head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--label); text-transform: uppercase; letter-spacing: .16em;
  font-size: .82rem; color: var(--muted-2);
  padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
}
.radius__head b { color: var(--blue-2); font-weight: 600; }
.map-ring   { fill: none; stroke: var(--line-2); stroke-width: 1; }
.map-ring--lit { stroke: var(--blue); stroke-opacity: .55; stroke-dasharray: 5 5; }
.map-axis   { stroke: var(--line); stroke-width: 1; }
.map-label  { font-family: var(--mono); font-size: 9.5px; fill: var(--muted-2); letter-spacing: -.02em; }
.map-town   { font-family: var(--label); font-size: 13px; font-weight: 600; fill: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.map-dot    { fill: var(--blue-2); }
.map-home   { fill: #fff; }
.map-homelabel { font-family: var(--display); font-size: 14px; font-weight: 800; fill: #fff; letter-spacing: .02em; }

/* draw-on animation */
.radius svg .anim-ring { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: draw 1.5s cubic-bezier(.2,.7,.3,1) forwards; }
.radius svg .anim-ring:nth-of-type(2) { animation-delay: .12s; }
.radius svg .anim-ring:nth-of-type(3) { animation-delay: .24s; }
.radius svg .anim-pt { opacity: 0; animation: pop .45s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop  { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.pulse { animation: pulse 2.6s ease-out infinite; transform-origin: center; }
@keyframes pulse {
  0%   { r: 6;  opacity: .55; }
  70%  { r: 26; opacity: 0; }
  100% { r: 26; opacity: 0; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.sec { padding: clamp(56px, 8vw, 104px) 0; }
.sec--alt { background: var(--ink-2); border-block: 1px solid var(--line); }
.sec--tight { padding: clamp(40px, 5vw, 64px) 0; }
.sec__head { max-width: 68ch; margin-bottom: clamp(32px, 4vw, 52px); }
.sec__head .lede { margin-top: 16px; }

/* ---------- emergency strip ---------- */
.strip {
  background: var(--blue-deep);
  border-block: 1px solid #14367F;
}
.strip__in {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 8px 20px; padding: 14px 0; text-align: center;
}
.strip p {
  margin: 0; font-family: var(--label); font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em; font-size: 1rem; color: #C9D9FF;
}
.strip a { color: #fff; font-family: var(--mono); font-weight: 600; font-size: .95rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); }
.strip a:hover { border-color: #fff; }

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 14px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 24px 24px;
  position: relative;
  transition: border-color .18s, transform .18s, background .18s;
}
.card:hover { border-color: #33456A; transform: translateY(-3px); background: var(--panel-2); }
.card__code {
  font-family: var(--mono); font-size: .74rem; color: var(--blue-2);
  letter-spacing: .04em; margin-bottom: 14px; display: block;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; line-height: 1.6; }
.card ul {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.card ul li {
  font-family: var(--label); text-transform: uppercase; letter-spacing: .08em;
  font-size: .82rem; color: var(--muted-2);
  border: 1px solid var(--line); border-radius: 3px; padding: 3px 8px;
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.step { padding: 30px 26px; border-right: 1px solid var(--line); background: var(--panel); }
.step:last-child { border-right: none; }
.step b {
  font-family: var(--mono); font-size: .8rem; color: var(--blue-2);
  display: block; margin-bottom: 16px; letter-spacing: .06em;
}
.step h3 { margin-bottom: 9px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- pricing / labor model ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.slab {
  background: var(--panel); border: 1px solid var(--line); border-radius: 6px; padding: 28px;
}
.slab h3 { margin-bottom: 16px; }
.rate { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.rate:last-of-type { border-bottom: none; }
.rate span { color: var(--muted); font-size: .97rem; }
.rate b { font-family: var(--mono); font-weight: 600; color: var(--paper); white-space: nowrap; font-size: .97rem; }
.note {
  font-size: .88rem; color: var(--muted-2); border-left: 2px solid var(--blue);
  padding-left: 14px; margin-top: 22px;
}

/* ---------- checklist ---------- */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; color: var(--muted); }
.checks li::before {
  content: ""; flex: none; width: 19px; height: 19px; margin-top: 3px;
  border: 1px solid var(--blue); border-radius: 3px;
  background: rgba(46,107,255,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B8CFF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.checks li b { color: var(--paper); font-weight: 600; }

/* ---------- towns ---------- */
.towns { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.town {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 5px;
  padding: 15px 17px; text-decoration: none;
  transition: border-color .16s, background .16s;
}
.town:hover { border-color: var(--blue); background: var(--panel-2); }
.town b { font-weight: 600; font-size: 1rem; }
.town span { font-family: var(--mono); font-size: .76rem; color: var(--muted-2); white-space: nowrap; }

/* ---------- gallery placeholders ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
figure.shot { margin: 0; }
.shot img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 3; object-fit: cover;
  border: 1px solid var(--line); border-radius: 5px;
  background: var(--panel);
}
.shot--wide img { aspect-ratio: 3 / 2; }
.shot--tall img { aspect-ratio: 4 / 5; }
.shot__frame {
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(46,107,255,.05) 10px 20px),
    var(--panel);
  border: 1px dashed var(--line-2); border-radius: 5px;
  display: grid; place-items: center; text-align: center; padding: 20px;
}
.shot__frame span {
  font-family: var(--label); text-transform: uppercase; letter-spacing: .14em;
  font-size: .85rem; color: var(--muted-2);
}
.shot figcaption { font-size: .87rem; color: var(--muted-2); margin-top: 9px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-weight: 600; font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  margin-top: -6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B8CFF' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 22px; max-width: 76ch; margin: 0; }
.faq summary:hover { color: var(--blue-2); }

/* ============================================================
   FORM
   ============================================================ */
.formcard {
  background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
  padding: clamp(24px, 3.5vw, 38px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; margin-bottom: 7px;
  font-family: var(--label); font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; font-size: .88rem; color: var(--muted);
}
.field label .req { color: var(--blue-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--line-2); border-radius: var(--r);
  font-family: var(--display); font-size: 1rem;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #4B5769; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: none; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field--row3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hint { font-size: .84rem; color: var(--muted-2); margin: 7px 0 0; }
.field.is-bad input, .field.is-bad textarea, .field.is-bad select { border-color: #F26D6D; }
.err { color: #FF9B9B; font-size: .84rem; margin: 6px 0 0; font-family: var(--label); letter-spacing: .06em; text-transform: uppercase; }
.formactions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.hp { position: absolute; left: -9999px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 76px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 36px; }
.footer h4 {
  font-family: var(--label); text-transform: uppercase; letter-spacing: .18em;
  font-size: .9rem; color: var(--muted-2); margin-bottom: 16px; font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer a { color: var(--muted); text-decoration: none; font-size: .96rem; }
.footer a:hover { color: var(--blue-2); }
.footer .brand { margin-bottom: 16px; }
.footer__blurb { color: var(--muted-2); font-size: .93rem; max-width: 34ch; }
.hours { display: grid; gap: 6px; }
.hours div { display: flex; justify-content: space-between; gap: 14px; font-size: .9rem; color: var(--muted); }
.hours dt { font-family: var(--label); text-transform: uppercase; letter-spacing: .1em; }
.hours dd { margin: 0; font-family: var(--mono); font-size: .82rem; color: var(--muted-2); }
.footer__bar {
  margin-top: 48px; border-top: 1px solid var(--line); padding: 22px 0 26px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .86rem; color: var(--muted-2);
}
.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: var(--r);
  display: grid; place-items: center; color: var(--muted);
}
.social a:hover { border-color: var(--blue); color: var(--blue-2); }
.social svg { width: 17px; height: 17px; }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 8px; text-decoration: none;
  font-family: var(--label); font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  font-size: 1rem;
}
.callbar a:first-child { background: var(--blue); color: #fff; }
.callbar a:last-child  { background: var(--panel); color: var(--paper); }
.callbar svg { width: 17px; height: 17px; }

/* ---------- scroll reveal ---------- */
.rise { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.rise.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .radius { order: -1; }
  .split { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }

  .navtoggle { display: flex; }
  .nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    padding: 8px var(--gut) 18px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .btn { margin-top: 14px; justify-content: center; }
  .topbar .btn--headercall { display: none; }

  .callbar { display: flex; }
  .footer__bar { padding-bottom: 96px; }
}
@media (max-width: 560px) {
  .field--row, .field--row3 { grid-template-columns: 1fr; }
  .formactions { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .rise { opacity: 1; transform: none; }
  .radius svg .anim-ring { stroke-dashoffset: 0; }
  .radius svg .anim-pt { opacity: 1; }
}

@media print {
  .topbar, .callbar, .hero::after, .strip { display: none; }
  body { background: #fff; color: #000; }
}
