@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --navy-950: #061329;
  --navy-900: #081a35;
  --navy-800: #0b2446;
  --blue-600: #087cf0;
  --blue-500: #1c99ff;
  --blue-300: #75d1ff;
  --cyan-200: #a7e9ff;
  --ink: #101f37;
  --muted: #5f6e81;
  --line: #dce5ef;
  --surface: #f4f8fc;
  --white: #fff;
  --shadow: 0 24px 70px rgba(12, 36, 70, 0.13);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

button, input, select, textarea { font: inherit; }

a { color: inherit; }

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-600);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 88px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--blue-300);
  background: rgba(61, 175, 255, 0.12);
  border: 1px solid rgba(117, 209, 255, 0.2);
}

.brand-mark svg { width: 31px; }
.brand-mark path:first-child { fill: currentColor; stroke: none; }
.brand-mark .brand-signal { stroke: var(--white); stroke-width: 2.5; }

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  opacity: 0.68;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue-300);
  transition: transform 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible { color: var(--white); }
.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after { transform: scaleX(1); }

.primary-nav .nav-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-call svg { width: 16px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 35%, rgba(12, 121, 239, 0.22), transparent 30%),
    linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 58%, #0a2142 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -44%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(117, 209, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(117, 209, 255, 0.025), 0 0 0 180px rgba(117, 209, 255, 0.018);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: clamp(45px, 7vw, 105px);
  min-height: 760px;
  padding-top: 102px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue-300);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark { color: var(--blue-600); }

h1, h2, h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 670px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  font-weight: 700;
}

.hero-lede {
  max-width: 625px;
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 12px 32px rgba(8, 124, 240, 0.3);
}

.button-primary:hover { box-shadow: 0 16px 38px rgba(8, 124, 240, 0.42); }

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.09);
}

.button-ghost svg { width: 18px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 0 4px rgba(117, 209, 255, 0.1);
}

.network-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.network-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #82e6bf;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(130, 230, 191, 0.11);
}

.network-map {
  position: relative;
  aspect-ratio: 1.38;
}

.network-map > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-line {
  stroke: url(#lineFade);
  stroke-width: 1.5;
  stroke-dasharray: 6 7;
  animation: signalMove 8s linear infinite;
}

.signal-ring {
  fill: none;
  stroke: rgba(77, 189, 255, 0.15);
}

.ring-one { animation: pulseRing 3s ease-out infinite; }
.ring-two { animation: pulseRing 3s 1.4s ease-out infinite; }

.network-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(5, 21, 44, 0.82);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.23);
  font-size: 0.74rem;
}

.network-node strong { white-space: nowrap; }

.node-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 8px;
  color: var(--blue-300);
  background: rgba(55, 174, 255, 0.12);
}

.node-icon svg { width: 16px; }

.network-node.hub {
  left: 50%;
  top: 50%;
  display: grid;
  grid-template-columns: auto 1fr;
  min-width: 122px;
  padding: 13px;
  border-color: rgba(117, 209, 255, 0.38);
  color: var(--white);
  background: rgba(7, 36, 74, 0.94);
}

.network-node.hub .node-icon {
  grid-row: 1 / 3;
  width: 35px;
  height: 35px;
}

.network-node.hub small {
  color: rgba(255, 255, 255, 0.48);
  line-height: 1;
}

.node-helpdesk { left: 22%; top: 24%; }
.node-network { left: 78%; top: 24%; }
.node-phone { left: 22%; top: 76%; }
.node-camera { left: 78%; top: 76%; }

.network-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.network-metrics div { padding: 17px 18px; }
.network-metrics div + div { border-left: 1px solid rgba(255, 255, 255, 0.1); }

.network-metrics strong {
  display: block;
  color: var(--blue-300);
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}

.network-metrics span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.67rem;
}

.section { padding: 112px 0 122px; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}

.section-heading h2,
.approach h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 455px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-300));
  transition: transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #bfd7ed;
  box-shadow: var(--shadow);
}

.service-card:hover::before { transform: scaleX(1); }

.service-number {
  position: absolute;
  top: 21px;
  right: 23px;
  color: #cdd8e4;
  font-family: "Manrope", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 13px;
  color: var(--blue-600);
  background: #ebf6ff;
}

.service-icon svg { width: 24px; }

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: #35465e;
  font-size: 0.83rem;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-500);
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--blue-600);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.service-card > a span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.service-card > a:hover span { transform: translateX(4px); }

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 80%, rgba(28, 153, 255, 0.2), transparent 30%),
    var(--navy-900);
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(117, 209, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(117, 209, 255, 0.02), 0 0 0 170px rgba(117, 209, 255, 0.018);
}

.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.approach h2 {
  max-width: 570px;
  margin-bottom: 22px;
}

.approach-intro {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
}

.approach-steps {
  display: grid;
  gap: 2px;
  margin-top: 38px;
}

.approach-steps > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-steps > div > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(117, 209, 255, 0.25);
  border-radius: 50%;
  color: var(--blue-300);
  font-size: 0.69rem;
  font-weight: 700;
}

.approach-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.87rem;
}

.approach-steps strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.96rem;
}

.contact-card {
  padding: clamp(27px, 4vw, 43px);
  border-radius: 25px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.24);
}

.contact-card-head h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}

.contact-card-head > p:last-child {
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 0.92rem;
}

form { display: grid; gap: 17px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label { display: grid; gap: 7px; }

label > span {
  color: #314158;
  font-size: 0.75rem;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #cfdae6;
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: #fafdff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input, select { height: 46px; padding: 0 13px; }
textarea { min-height: 102px; padding: 11px 13px; resize: vertical; }

input::placeholder, textarea::placeholder { color: #92a0af; }

input:focus, select:focus, textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(28, 153, 255, 0.1);
}

.submit-button {
  width: 100%;
  margin-top: 2px;
}

.submit-button span { margin-left: auto; font-size: 1.15rem; }

.form-note {
  margin: -7px 0 0;
  color: #7b8998;
  font-size: 0.72rem;
  text-align: center;
}

.direct-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.direct-contact div {
  display: grid;
  justify-items: end;
}

.direct-contact a {
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: none;
}

.direct-contact a:hover { text-decoration: underline; }

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.52);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.footer-brand { color: var(--white); }
.footer-brand .brand-mark { width: 36px; height: 36px; }
.footer-brand .brand-mark svg { width: 27px; }

.site-footer p {
  margin: 0;
  font-size: 0.75rem;
}

.site-footer p:last-child { justify-self: end; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(2) { transition-delay: 80ms; }
.service-card:nth-child(3) { transition-delay: 160ms; }
.service-card:nth-child(4) { transition-delay: 240ms; }

@keyframes signalMove { to { stroke-dashoffset: -52; } }

@keyframes pulseRing {
  0% { opacity: 0; transform: scale(.68); transform-origin: center; }
  20% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.38); transform-origin: center; }
}

@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: 1fr 0.86fr; gap: 45px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 405px; }
  .contact-shell { grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 30px, 680px); }

  .site-header { height: 76px; }
  .nav-toggle { display: block; }

  .primary-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 15px 22px;
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    background: rgba(6, 19, 41, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav > a:not(.nav-call) {
    padding: 15px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .primary-nav > a:not(.nav-call)::after { display: none; }
  .primary-nav .nav-call { justify-content: center; margin-top: 15px; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; min-height: auto; padding: 145px 0 80px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .trust-row { justify-content: center; }
  h1 { margin-inline: auto; }
  .hero-lede { margin-inline: auto; }
  .network-card { width: min(100%, 560px); margin-inline: auto; }

  .section { padding: 85px 0 95px; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  .section-heading > p { max-width: 560px; }

  .contact-section { padding: 85px 0; }
  .contact-shell { grid-template-columns: 1fr; }
  .approach { text-align: center; }
  .approach .eyebrow { justify-content: center; }
  .approach h2, .approach-intro { margin-inline: auto; }
  .approach-steps { max-width: 560px; margin-inline: auto; text-align: left; }

  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer p:last-child { justify-self: center; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .brand-mark { width: 38px; height: 38px; }
  h1 { font-size: clamp(2.6rem, 13vw, 3.7rem); }
  .hero-layout { padding-top: 125px; gap: 48px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-row { display: grid; justify-content: start; width: max-content; margin-inline: auto; text-align: left; }

  .network-node { padding: 7px 8px; font-size: 0.65rem; }
  .network-node .node-icon { width: 23px; height: 23px; }
  .network-node .node-icon svg { width: 14px; }
  .network-node.hub { min-width: 108px; padding: 9px; }
  .network-node.hub .node-icon { width: 30px; height: 30px; }
  .network-metrics div { padding: 14px 10px; }
  .network-metrics span { font-size: 0.59rem; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }

  .field-row { grid-template-columns: 1fr; }
  .contact-card { border-radius: 19px; }
  .direct-contact { align-items: flex-start; flex-direction: column; }
  .direct-contact div { justify-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 3px;
}
