:root{
  --bg:#070A12;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.10);
  --text:#EAF0FF;
  --muted: #EAF0FF;
  --line: rgba(255, 255, 255, 0.12);
--accent:#62bfe6;
--accent2:#62bfe6;
  --good:#55F2A6;
  --warn:#FFCC66;
  --bad:#FF5C7A;
  --shadow: 0 20px 60px rgba(0,0,0,0.55);
  --r: 18px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  
  /* 3 glowing orbs background */
  background:
    radial-gradient(1200px 600px at 15% 10%, rgb(98,191,230,0.18), transparent 60%),
    radial-gradient(1200px 600px at 15% 110%, rgb(98,191,230,0.18), transparent 60%),

    radial-gradient(900px 500px at 85% 15%, rgb(98,191,230,0.14), transparent 55%),
    radial-gradient(900px 500px at 85% 115%, rgb(98,191,230,0.14), transparent 55%),

    radial-gradient(900px 600px at 50% 85%, rgb(98,191,230,0.10), transparent 60%),
    radial-gradient(900px 600px at 50% -15%, rgb(98,191,230,0.10), transparent 60%),

    linear-gradient(180deg, #050712, #060A16 40%, #050713);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
.container{
  width: min(1150px, 92vw);
  margin: 0 auto;
  padding-bottom: 40px;
}

/* Scroll reveal */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: 520ms ease;
}
.reveal.on{
  opacity:1;
  transform: translateY(0);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(5,7,18,0.76), rgba(5,7,18,0.40));
  border-bottom: 1px solid var(--line);
  z-index:50;
}
.header-inner{
  width:min(1150px, 92vw);
  margin:0 auto;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:750;
  letter-spacing:0.2px;
  white-space: nowrap;
}
.brand .logo{
  width:40px;
  height:40px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(25,211,255,1));
  box-shadow: 0 12px 30px rgba(124,92,255,0.20);
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,0.18);
}
.brand .logo i{ font-size:18px; }

.navlinks{
  display:flex;
  align-items:center;
  gap:18px;
  color: var(--muted);
  font-weight:600;
  font-size:14px;
}
.navlinks a{
  padding:10px 10px;
  border-radius:12px;
  transition:160ms ease;
}
.navlinks a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.cta{ display:flex; gap:10px; align-items:center; }
@media (max-width: 700px){
  .cta{
    display: none;
  }
}
.btn{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight:700;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  transition:180ms ease;
  box-shadow: 0 8px 26px rgba(0,0,0,0.25);
  user-select:none;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(1px); background: rgba(255,255,255,0.09); }
.btn.primary{
  border-color: rgba(124,92,255,0.55);
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(25,211,255,0.75));
}
.btn.primary:hover{ filter: brightness(1.05); }

/* Nav/header info boxes */
.nav-info{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 980px){
  .nav-info{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px){
  .nav-info{
    grid-template-columns: 1fr;
  }
}
.nav-box{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: 160ms ease;
  white-space: nowrap;
}
.nav-box i{
  font-size: 18px;
  color: var(--accent2);
}
.nav-box span{
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}
.nav-box strong{
  font-weight: 650;
  font-size: 14px;
}
.nav-box:hover{
  background: rgba(255,255,255,0.09);
}

/* Nav boxes mobile convert */
.nav-toggle{
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0,0,0,0.25);
  transition: transform 180ms ease, background 180ms ease;
}
.nav-toggle:hover{
  transform: translateY(1px);
  background: rgba(255,255,255,0.09);
}
.nav-toggle i{
  font-size: 18px;
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}
.nav-toggle .icon-bars{ color: #fff; }
.nav-toggle .icon-x{ color: #ff4d4d; }
.nav-toggle .icon-bars{
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.nav-toggle .icon-x{
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.9);
}
.nav-toggle[aria-expanded="true"] .icon-bars{
  opacity: 0;
  transform: rotate(90deg) scale(0.9);
}
.nav-toggle[aria-expanded="true"] .icon-x{
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Brand spacing and toggle */
.brand-wrap{
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-info-wrap{
  display: block;
}

/* Dropdown */
@media (max-width: 700px){
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-inner{
    position: relative;
  }
  .nav-info-wrap{
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 8px);
    z-index: 200;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(10,14,28,1);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 180ms;
  }
  .nav-info-wrap.open{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s;
  }
  /* Dropdown layout */
  .nav-info{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .nav-box{
    white-space: normal;
  }
}

/* Download nudge */
.dl-nudge{
  position: fixed;
  top: 78px;
  right: 16px;
  z-index: 2000;
  display: none;
}
.dl-nudge.on{
  display: block;
}
.dl-nudge-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,14,28,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  text-align: center;
  max-width: 320px;
  z-index: 1;
  overflow: hidden;
}
.dl-close{
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: 0;
  color: rgba(234,240,255,0.8);
  font-size: 18px;
  cursor: pointer;
}
.dl-arrows-row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  animation: dl-float 0.9s ease-in-out infinite;
}
@keyframes dl-float{
  0%   { transform: translateY(2px); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(2px); }
}
.dl-arrows-row span{
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid rgba(98,191,230,0.95);
  filter: drop-shadow(0 4px 8px rgba(98,191,230,0.35));
}
.dl-download-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
  color: #EAF0FF;
  font-size: 25px;
  filter: drop-shadow(0 4px 10px rgba(98,191,230,0.35));
}
.dl-nudge-inner::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    rgba(98,191,230,0.2),
    rgba(98,191,230,0.8),
    rgba(98,191,230,0.2)
  );
  background-size: 300% 300%;
  animation: dl-border-flow 4s linear infinite;
  z-index: -1;
}
@keyframes dl-border-flow{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.dl-nudge-inner::after{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 16px;
  background: rgba(10,14,28,0.92);
  z-index: -1;
}
.dl-text{
  line-height: 1.2;
}
.dl-title{
  font-weight: 800;
  font-size: 18px;
}
.dl-sub{
  font-size: 14px;
  color: rgba(234,240,255,0.72);
}

/* Grid overlay */
body::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--top-grid-height);
  pointer-events: none;
  z-index: 1;

  background:
    repeating-linear-gradient(
      90deg,
      rgba(98,191,230,0.10) 0 1px,
      transparent 1px 22px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(98,191,230,0.10) 0 1px,
      transparent 1px 22px
    );

  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.75) 55%, rgba(0,0,0,0) 100%);

  opacity: 0.55;
}
.site-header{ z-index: 50; }
main, .logo-strip{ position: relative; z-index: 2; }

:root{
  --top-grid-height: 500px;
}
body{
  position: relative;
}

/* Logo line animation */
.logo-circuit{
  position: relative;
}
.logo-burst-layer{
  position: absolute;
  inset: -40px -100px -40px -100px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.logo-circuit > img,
.logo-circuit > .logo-tagline{
  position: relative;
  z-index: 1;
}
.burst-line{
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  border-radius: 2px;
  background: rgba(98,191,230,0.95);
  filter: drop-shadow(0 4px 10px rgba(98,191,230,0.25));
  animation-name: burst-travel;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes burst-travel{
  0%{
    opacity: 0;
    transform: translate(-50%, -50%) translate(0px, 0px);
  }
  10%{
    opacity: 1;
  }
  55%{
    opacity: 1;
  }
  75%{
    opacity: 0;
  }
  100%{
    opacity: 0;
    transform: translate(-50%, -50%) translate(var(--dx, 0px), var(--dy, 0px));
  }
}

/* Comet head */
.burst-line::after{
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(98,191,230,1);
  box-shadow: 0 0 10px rgba(98,191,230,0.55);
  opacity: inherit;
  /* positioned by .js */
  left: var(--lead-left, 100%);
  top: var(--lead-top, 50%);
  transform: translate(-50%, -50%);
}

/*Logo*/
.logo-strip{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 75px 0 25px;
  overflow-x: clip;
}
.logo-strip-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1150px;
  width: 100%;
  gap: 8px;
}
.logo-strip img{
  height: 150px;
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 12px 28px rgba(98,191,230,0.45));
}
.logo-tagline{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(234,240,255,0.85);
  text-align: center;
}
@media (max-width: 500px){
  .logo-strip img{
    max-width: 92vw;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

/* Hero main card */
.hero{ padding:56px 0 10px 0; }
.hero-grid{
  display:grid;
  gap:22px;
  align-items:start;
}
.hero-card{
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding:26px;
  position:relative;
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(124,92,255,0.20), transparent 55%),
    radial-gradient(820px 380px at 85% 20%, rgba(25,211,255,0.16), transparent 55%);
  pointer-events:none;
}
.hero-card > *{ position:relative; z-index:1; }

/* Hero main headline */
h1{
  margin:14px 0 10px 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height:1.06;
  letter-spacing:-0.6px;
}
@media (max-width: 500px){
  .hero h1{
    text-align: center;
  }
}

/* Hero stat grid */
.hero-stats{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.stat{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.16);
  border-radius:14px;
  padding:12px;
}
.stat .top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: var(--muted);
  font-weight:700;
  font-size:13px;
  gap:10px;
}
.stat .val{
  margin-top:10px;
  font-weight:850;
  font-size:18px;
  letter-spacing:0.2px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: rgba(255,255,255,0.78);
  font-weight:700;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  white-space:nowrap;
}
.badge.good i{ color: var(--good); }
.badge.warn i{ color: var(--warn); }

/* Individual stat (home, business, etc) */
.hero-stat{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 22px 22px; /* was 16px */
  box-shadow: 0 14px 40px rgba(0,0,0,0.30);
  transition: 180ms ease;
}

/* Hero stat icons */
.hero-stat-icon{
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--accent2);
  font-size: 30px;
}

/* Hero remote icon */
.hero-remote-icon{
  align-self: center;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(25,211,255,0.75));
  border: 1px solid rgba(124,92,255,0.55);
  color: #fff;
  font-size: 20px;
  transition: 180ms ease;
}
.hero-remote-icon:hover{
  transform: translateY(1px);
  filter: brightness(1.08);
}
.hero-stat .hero-stat-content{
  flex: 1;
}
.hero-stat .hero-remote-icon{
  align-self: center;
  margin-left: auto;
}
.hero-note{
  font-size: 12px;
  color: var(--muted);
}

/* Text block */
.hero-stat-content{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-title{
  font-weight: 700;
  font-size: 18px;
}
.hero-stat-text{
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.callout{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, rgba(124,92,255,0.16), rgba(25,211,255,0.10));
}
.callout i{ font-size:16px; color: rgba(255,255,255,0.92); margin-top:2px; }
.callout p{ font-size:14px; margin:0; color: var(--muted); font-weight:600; line-height:1.55; }
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .grid3{ grid-template-columns:1fr; }
  .hero-stats{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .navlinks{ display:none; }
}
@media (max-width: 500px){
  .hero-stat{
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }
  .hero-stat-icon{
    margin: 0 auto;
  }
  .hero-stat-content{
    width: 100%;
    text-align: center;
  }
  .hero-stat .hero-remote-icon{
    position: absolute;
    right: 12px;
    bottom: 12px;
    top: auto;
    margin: 0;
  }
}

/* Sections */
.section-title{
  display:flex;
  align-items:center;
  gap:14px;
  margin: 0;
}
.section-title span{
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--text);
  white-space: nowrap;
}
.section-title::after{
  content:"";
  flex:1;
  height:2px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.35),
    transparent
  );
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px) {
    .grid3 {
        grid-template-columns: 1fr;
    }
}
.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  border-radius: var(--r);
  padding:18px;
  box-shadow: 0 14px 45px rgba(0,0,0,0.28);
  position:relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute;
  inset:auto -120px -120px auto;
  width:220px;
  height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(124,92,255,0.20), transparent 60%);
  transform: rotate(12deg);
  pointer-events:none;
}
.card > *{ position:relative; z-index:1; }
.icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  margin-bottom:12px;
}
.card .icon{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: auto;
  height: auto;
  background: none;
  border: none;
  pointer-events: none;
  z-index: 1;
}
.card .icon i{
  font-size: 65px;
  opacity: 0.10;
  color: var(--accent2);
}
.card h3,
.card ul,
.card p{
  position: relative;
  z-index: 2;
}
.icon i{ font-size:18px; color: rgba(255,255,255,0.92); }
.card h3{ margin:0 0 8px 0; font-size:18px; }
.card p{ margin:0; color: var(--muted); font-weight:500; line-height:1.6; font-size:16px; }

.service-bullets{
  margin:12px 0 0 0;
  padding-left:18px;
  color: #EAF0FF;
  line-height:1.75;
  font-weight:650;
  font-size:14px;
}

/* Services callout box top spacing */
.grid3 + .divider{
  margin-top: 14px;
}

/* About */
.split{
  display:grid;
  gap:14px;
  align-items:stretch;
}
.about p{ margin:0 0 12px 0; color: var(--muted); font-weight:500; line-height:1.65; font-size: 16px; text-indent: 18px;}

/* Map */
.mapwrap{ padding:0; overflow:hidden; }
.mapheader{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.16);
}
.mapheader .left{ display:flex; align-items:center; gap:10px; font-weight:850; }
.mapheader .left i{ color: var(--accent2); }
.mapheader .right{ color: var(--muted); font-weight:700; font-size:13px; }
.mapwrap iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
  filter: saturate(1.08) contrast(1.05);
}
.mapinfo{
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.14);
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(234,240,255,0.78);
  font-weight: 600;
}

/* Contact footer buttons*/
.contact-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  align-items:stretch;
}
.contact-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.contact-card{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius:16px;
  padding:14px;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  transition:180ms ease;
}
.contact-card:hover{ transform: translateY(0px); background: rgba(255,255,255,0.09); }
.contact-card .ic{
  width:50px;
  height:50px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--accent2);
  flex:0 0 auto;
}
.contact-card .ic i{ font-size:22px; }
.contact-card .txt{ display:flex; flex-direction:column; gap:2px; min-width:0; }
.contact-card .txt .label{ color: var(--muted); font-weight:700; font-size:13px; }
.contact-card .txt .value{
  font-weight:650;
  font-size:16px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
@media (max-width: 700px){
  .contact-cards{
    grid-template-columns: 1fr !important;
  }
  .contact-card{
    min-width: 0;
  }
  .contact-card .txt{
    min-width: 0;
  }
  .contact-card .txt .value{
    white-space: normal; 
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
  }
}

/* Footer */
footer{
  margin-top:18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  padding:24px 0 0 0;
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  color: rgba(234,240,255,0.55);
  font-weight:650;
  font-size:14px;
}
.footer-row .mini{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.footer-row .mini a{
  padding:8px 10px;
  border-radius:12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.footer-row .mini a:hover{ background: rgba(255,255,255,0.08); color: var(--text); }

/* END :) */