/** Calder Commerce — site styles
   Extracted from index.html. Source order preserved (the cascade depends on it). */

:root {
  --ink: #0F1B2B;
  --muted: #60707D;
  --paper: #F2F4F6;
  --white: #FFFFFF;
  --blue: #2F7F95;
  --violet: #14A3A3;
  --pink: #4ABABA;
  --orange: #8EDDDD;
  /* light text used across the dark panels */
  --on-dark: 224, 237, 240;
  /* restrained Calder Commerce brand ring */
  --rainbow: conic-gradient(from 40deg, #0E7C7B, #14A3A3, #63C7C6, #2F7F95, #14A3A3, #0E7C7B);
  --radius-xl: 34px;
  --shadow-soft: 0 24px 70px rgba(15, 27, 43, 0.16);
  --shadow-card: 0 18px 48px rgba(7, 19, 31, 0.24);
  --max: 1180px;
  --section-y: 112px;        /* vertical rhythm for every standard content section */

  /* CalderCommerce type scale — calmer, more consistent and easier to tune */
  --font-ui: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --text-xs: clamp(0.78rem, 0.72rem + 0.16vw, 0.86rem);
  --text-sm: clamp(0.88rem, 0.82rem + 0.18vw, 0.96rem);
  --text-base: clamp(0.98rem, 0.92rem + 0.22vw, 1.05rem);
  --text-lg: clamp(1.05rem, 0.98rem + 0.34vw, 1.18rem);
  --h1: clamp(2.65rem, 5vw, 4.85rem);
  --h2: clamp(2rem, 3.6vw, 3.35rem);
  --h3: clamp(1.28rem, 1.35vw, 1.62rem);
  --tight: -0.055em;
  --tighter: -0.07em;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--text-base);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-shell {
  position: relative;
  min-height: 100vh;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* Layout rhythm: keep every major section on the same spacing system */
.section-pad { padding: var(--section-y) 0; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}
.section-head .eyebrow { margin-bottom: 18px; }

.nav-wrap {
  position: fixed;
  z-index: 50;
  top: 22px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.nav.container { width: min(1060px, calc(100% - 40px)); }

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 10px 10px 10px 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(15, 27, 43, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.045em;
  font-size: clamp(1.06rem, 1.18vw, 1.28rem);
  color: var(--ink);
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  color: var(--ink);
  font-weight: 700;
  font-size: var(--text-sm);
}

.nav-actions { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(15, 27, 43, 0.10);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 0;
  font-weight: 800;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-position 400ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(120deg, #0E7C7B, #14A3A3, #2FB7B4);
  background-size: 220%;
  box-shadow: 0 14px 34px rgba(20, 163, 163, 0.28);
}
.btn-primary:hover { background-position: right; }
.btn-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

.menu-btn { display: none; }

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 158px 0 120px;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background:
    radial-gradient(circle at 8% 28%, rgba(20, 163, 163, 0.20), transparent 30rem),
    radial-gradient(circle at 92% 30%, rgba(47, 127, 149, 0.20), transparent 34rem),
    linear-gradient(180deg, #07131F 0%, #0F1B2B 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 56vw;
  height: 46vw;
  background: radial-gradient(circle, rgba(20, 163, 163, 0.62), rgba(47, 127, 149, 0.18) 42%, transparent 70%);
  filter: blur(58px);
  opacity: 0.55;
  transform: translate(-28%, 28%);
  z-index: -3;
  animation: glowDrift 11s ease-in-out infinite alternate;
}

.hero::after {
  left: auto;
  right: 0;
  background: radial-gradient(circle, rgba(99, 199, 198, 0.52), rgba(20, 163, 163, 0.16) 42%, transparent 70%);
  transform: translate(30%, 24%);
  animation-delay: -5s;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  opacity: 0.46;
  filter: saturate(0.38) brightness(0.92);
  mix-blend-mode: luminosity;
}

.grid-floor {
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: min(1040px, 92vw);
  height: 340px;
  transform: translateX(-50%) perspective(900px) rotateX(62deg);
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, rgba(20, 163, 163, 0.38), transparent 54%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
  mask-image: linear-gradient(to top, black, transparent 92%);
  opacity: .56;
  z-index: -2;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  transform: translateY(var(--hero-shift, 0px));
  opacity: var(--hero-opacity, 1);
  transition: opacity 80ms linear;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: var(--text-xs);
  letter-spacing: .005em;
  margin-bottom: 28px;
  box-shadow: inset 0 0 38px rgba(255,255,255,.03);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rainbow);
  display: inline-block;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: var(--tighter);
  text-wrap: balance;
}
h1 {
  font-size: var(--h1);
  line-height: .98;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(100deg, #49B8C4, #14A3A3 48%, #0E7C7B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  color: rgba(var(--on-dark), .74);
  font-size: var(--text-lg);
  line-height: 1.66;
  max-width: 980px;
  margin: 0 auto 36px;
}

.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

section { position: relative; }

.services {
  color: white;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 163, 163, 0.20), transparent 34rem),
    linear-gradient(180deg, #07131F 0%, #0F1B2B 100%);
}

.section-head h2 {
  font-size: var(--h2);
  line-height: 1.04;
  margin-bottom: 18px;
}

.section-head p {
  font-size: var(--text-base);
  line-height: 1.72;
  color: var(--muted);
}

.services .section-head p { color: rgba(var(--on-dark), .72); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(19, 43, 59, .97), rgba(9, 29, 43, .98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
  min-height: 410px;
  padding: 34px;
  isolation: isolate;
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.14), transparent 34%),
              linear-gradient(120deg, transparent 0%, rgba(20,163,163,.16), rgba(47,127,149,.10), transparent 72%);
  z-index: -1;
  opacity: .9;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border-radius: 999px;
  padding: 9px 15px;
  color: white;
  background: rgba(255,255,255,.09);
  font-weight: 800;
  font-size: var(--text-xs);
}

.service-card h3 {
  font-size: var(--h3);
  line-height: 1.14;
  letter-spacing: var(--tight);
  margin: 0 0 20px;
}

.check-list {
  display: grid;
  gap: 13px;
  color: rgba(var(--on-dark), .78);
  font-size: var(--text-sm);
  line-height: 1.55;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 1px;
  background: linear-gradient(135deg, #2F7F95, #14A3A3);
  box-shadow: 0 0 22px rgba(20, 163, 163, .38);
}

.insight {
  background: var(--paper);
  overflow: hidden;
}

.insight-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 380px) minmax(240px, 1fr);
  gap: 38px;
  align-items: center;
  margin-top: 12px;
}

.floating-list {
  display: grid;
  gap: 16px;
  align-content: center;
}

.mini-card {
  min-height: 104px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,27,43,.08);
  box-shadow: 0 16px 38px rgba(15,27,43,.08);
  border-radius: 18px;
  padding: 18px 20px;
  color: #52636F;
  font-size: var(--text-sm);
  line-height: 1.52;
  font-weight: 600;
  opacity: 0;
  transform: translateY(16px);
}

.mini-card.is-visible,
.stat-card.is-visible,
.about-panel.is-visible,
.contact-panel.is-visible,
.card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

.mini-card .x,
.mini-card .tick {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-bottom: 9px;
  color: white;
  font-size: 13px;
  font-weight: 800;
}
.mini-card .x { background: #AAB5BC; }
.mini-card .tick { background: linear-gradient(135deg, var(--blue), var(--violet)); }

.audit-scan {
  width: min(330px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.as-score { text-align: center; }
.as-ringwrap {
  position: relative;
  width: 128px;
  height: 128px;
  margin-inline: auto;
}
.as-ringwrap svg { display: block; }
.as-num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.as-lab {
  margin-top: 8px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.as-window {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(15, 27, 43, .10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15, 27, 43, .12);
}
.as-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  background: #EEF3F5;
  border-bottom: 1px solid rgba(15, 27, 43, .07);
}
.as-bar b { width: 8px; height: 8px; border-radius: 50%; background: #C5D0D4; }
.as-url {
  margin-left: 6px;
  font-size: 11px;
  color: var(--muted);
  background: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.as-page {
  position: relative;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  overflow: hidden;
}
.as-hero {
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(47, 127, 149, .20), rgba(20, 163, 163, .20), rgba(99, 199, 198, .18));
}
.as-row { display: flex; gap: 10px; align-items: center; }
.as-th { width: 42px; height: 34px; border-radius: 7px; background: #DCE5E8; flex: none; }
.as-ll { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.as-ll i { height: 7px; border-radius: 4px; background: #DCE5E8; display: block; }
.as-ll i:nth-child(2) { width: 62%; }
.as-chip {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  color: #0E7C7B;
  background: #E4F5F4;
  border: 1px solid #B9E2E0;
  border-radius: 20px;
  padding: 3px 9px;
  white-space: nowrap;
  opacity: 0;
  transform: scale(.7);
}
.as-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18px;
  background: linear-gradient(180deg, rgba(20, 163, 163, 0), rgba(20, 163, 163, .34) 60%, rgba(20, 163, 163, 0));
  border-top: 2px solid var(--violet);
  box-shadow: 0 0 18px rgba(20, 163, 163, .58);
  animation: asScan 3.6s ease-in-out infinite;
}
.r1 .as-chip { animation: asChip 3.6s ease-in-out infinite; animation-delay: .85s; }
.r2 .as-chip { animation: asChip 3.6s ease-in-out infinite; animation-delay: 1.5s; }
.r3 .as-chip { animation: asChip 3.6s ease-in-out infinite; animation-delay: 2.15s; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.stat-card {
  opacity: 0;
  transform: translateY(16px);
  border-radius: 22px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(15,27,43,.08);
  box-shadow: 0 18px 40px rgba(15,27,43,.08);
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  margin-bottom: 4px;
}
.stat-card p { margin: 0; color: #60707D; line-height: 1.45; font-size: var(--text-sm); }

.about {
  background: var(--paper);
}

.about-panel {
  opacity: 0;
  transform: translateY(20px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  border-radius: 44px;
  background: #0F1B2B;
  color: white;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.18);
}

.about-copy {
  padding: clamp(34px, 5vw, 70px);
  background: linear-gradient(180deg, rgba(18,42,61,.97), rgba(9,28,42,.99));
}

.about-copy h2 {
  font-size: var(--h2);
  line-height: 1.04;
  margin-bottom: 22px;
}

.about-copy p { color: rgba(var(--on-dark), .72); line-height: 1.72; font-size: var(--text-base); }

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.about-point {
  padding-left: 22px;
  border-left: 1px solid rgba(20, 163, 163, .78);
}
.about-point strong { display: block; margin-bottom: 6px; font-size: var(--text-base); }
.about-point span { color: rgba(var(--on-dark), .66); font-size: var(--text-sm); line-height: 1.6; }

.about-visual {
  position: relative;
  min-height: 520px;
  background: #07131F;
  overflow: hidden;
}
.about-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cn-net { animation: cnFloat 12s ease-in-out infinite; }
.cn-nd { animation: cnTw 3s ease-in-out infinite; }
.cn-star { animation: cnTw 4.5s ease-in-out infinite; }

.contact {
  background:
    radial-gradient(circle at 30% 0%, rgba(20,163,163,.11), transparent 34rem),
    linear-gradient(180deg, var(--paper), #FFFFFF);
}

.contact-panel {
  opacity: 0;
  transform: translateY(20px);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 20px;
  padding: 18px;
  border-radius: 42px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15,27,43,.08);
}

.contact-intro {
  padding: clamp(30px, 4vw, 54px);
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 10% 10%, rgba(20,163,163,.30), transparent 18rem),
    radial-gradient(circle at 90% 0%, rgba(47,127,149,.22), transparent 18rem),
    linear-gradient(180deg, #123047, #071A28);
}
.contact-intro h2 {
  font-size: var(--h2);
  line-height: 1.04;
  margin-bottom: 22px;
}
.contact-intro p { color: rgba(var(--on-dark), .72); line-height: 1.7; font-size: var(--text-base); }

form {
  padding: clamp(24px, 3vw, 42px);
  display: grid;
  gap: 16px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; color: #334957; font-weight: 700; font-size: var(--text-sm); }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(15,27,43,.13);
  border-radius: 14px;
  padding: 14px 15px;
  font-size: var(--text-sm);
  background: #F8FAFB;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
textarea { min-height: 132px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: rgba(20,163,163,.72);
  box-shadow: 0 0 0 4px rgba(20,163,163,.12);
}

.hidden { display: none; }

footer {
  color: rgba(255,255,255,.72);
  background: #07131F;
  padding: 46px 0;
}
.footer-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

@keyframes glowDrift {
  from { opacity: .42; filter: blur(70px); }
  to { opacity: .78; filter: blur(46px); }
}
@keyframes asScan {
  0% { transform: translateY(-14px); opacity: 0; }
  8% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(190px); opacity: 0; }
}
@keyframes asChip {
  0%, 10% { opacity: 0; transform: scale(.7); }
  17% { opacity: 1; transform: scale(1.1); }
  26% { transform: scale(1); }
  88% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.7); }
}
@keyframes cnFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(8px, -6px); }
  50% { transform: translate(-6px, 7px); }
  75% { transform: translate(6px, 4px); }
}
@keyframes cnTw {
  0%, 100% { opacity: .45; }
  50% { opacity: 1; }
}

@media (max-width: 920px) {
  .nav { border-radius: 18px; }
  .nav-links, .nav-actions { display: none; }
  .menu-btn { display: grid; }
  .hero { min-height: auto; padding: 138px 0 96px; }
  .service-grid, .insight-stage, .about-panel, .contact-panel { grid-template-columns: 1fr; }
  .card { min-height: 320px; }
  .insight-stage { min-height: auto; gap: 28px; }
  .stats-row { grid-template-columns: 1fr; }
  .about-visual { min-height: 420px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--max)); }
  .nav.container { width: min(100% - 24px, var(--max)); }
  .nav-wrap { top: 12px; }
  .nav { min-height: 58px; padding-left: 14px; }
  .brand { font-size: 1rem; letter-spacing: -0.035em; }
  .brand-mark { width: 30px; height: 30px; }
  h1 { font-size: clamp(2.55rem, 13.5vw, 3.7rem); letter-spacing: -0.062em; }
  .hero-copy { font-size: 0.98rem; }
  .section-head h2, .about-copy h2, .contact-intro h2 { letter-spacing: -0.06em; }
  :root { --section-y: 84px; }
  .service-card { gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-panel { padding: 10px; border-radius: 30px; }
  .contact-intro { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition: none !important; }
  .as-chip { opacity: 1 !important; transform: none !important; }
  .as-scanline { display: none !important; }
  .cn-nd, .cn-star { opacity: 1 !important; }
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem 1.4rem;
}

.footer-credit {
  flex-basis: 100%;
  margin: 0;
  text-align: right;
  opacity: 0.65;
  font-size: 0.9rem;
}

/* Calder Commerce colour-only overrides
   These target colours currently embedded in the HTML's inline SVG and tool strip. */
.tool-strip-inner {
  border-color: rgba(15, 27, 43, .08) !important;
  box-shadow: 0 18px 44px -30px rgba(15, 27, 43, .42) !important;
}
.tool-strip-label { color: rgba(15, 27, 43, .58) !important; }

#as-grad stop:nth-child(1) { stop-color: #2F7F95; }
#as-grad stop:nth-child(2) { stop-color: #14A3A3; }
#as-grad stop:nth-child(3) { stop-color: #63C7C6; }

.about-visual .cn-net > .cn-nd circle:first-child {
  fill: #14A3A3 !important;
  opacity: .13 !important;
}
.about-visual .cn-net > .cn-nd circle:last-child { fill: #14A3A3 !important; }
.about-visual .cn-net > .cn-nd:nth-of-type(3n+1) circle:first-child { fill: #2F7F95 !important; }
.about-visual .cn-net > .cn-nd:nth-of-type(3n+1) circle:last-child { fill: #2F7F95 !important; }
.about-visual .cn-net > .cn-nd:nth-of-type(3n+2) circle:first-child { fill: #63C7C6 !important; }
.about-visual .cn-net > .cn-nd:nth-of-type(3n+2) circle:last-child { fill: #63C7C6 !important; }
