img {
  width: 1000px; 
  height: 500px;
  margin-bottom: 20px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  color: var(--blue);
}

.hero .wrap {
  text-align: center;
}

.hero-copy-list p {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 26px;
  color:#555
}

.hero-copy-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 1px;
  background: var(--blue);
}

/* ---------- Button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--blue);
  color: #fff;
  padding: 14px 26px;
  border-radius: 2px;
}

.btn:hover {
  box-shadow:0 8px 24px rgba(130, 245, 64, 0.25);
  transform:translateY(-1px);
}
.btn:hover::after { transform:translateX(0);}

.btn:focus-visible { 
  outline:2px solid var(--blue-hi);
  outline-offset:3px; 
}

.btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  transition:transform .35s ease;
}
.btn:hover svg{ transform:translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  background: #f7f5f1;
  color: black;
  border: 1px solid silver;
  padding: 14px 26px;
  border-radius: 2px;
}

.btn-secondary:hover { transform:translateY(-1px);}

/* ---------- Grid ---------- */
.info-grid {
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  border:1px solid silver;
}

.info-card{
  padding:32px 28px;
  transition:background .35s ease;
}

.info-card:hover { background: #efefef; }

.info-card .num {
  font-size:0.75rem;
  color:var(--blue);
  letter-spacing:0.08em;
}

.info-card h3{
  font-weight:500;
  font-size:1.2rem;
  margin:14px 0 10px;
}

.info-card p {
  font-size:0.94rem;
}

.mermaid {
  margin-top: 42px;
}

.final-section {
  padding: 100px 0 90px;
  text-align: center;
}

.final-section p {
  color: #555;
  margin-bottom: 30px;
}