/* Layout polish */
.hero {
  padding: 64px 20px;
  background: #0f172a;/* deep slate */
  color: #ffffff;
  border-radius: 12px;
  margin-bottom: 32px;
}


.hero h1 {
  color: Red;
}

.grid.tiles .block.tile h3 {
  
}

.hero--center { text-align: center; }
.hero__tagline { opacity: 0.9; max-width: 800px; margin: 12px auto 24px; }
.hero__actions .button { margin: 6px 8px; }

/* Tiles */
.tiles .tile {
  background: #ffffff;
  border: 3px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(15,23,42,0.06);
  gap: 20px;
  
  
}
.tiles .tile h3 { margin-top: 0; }
.tiles .tile .button { margin-top: 8px; }

/* Feature section */
.feature { align-items: center; }
.img-rounded { border-radius: 12px; width: 100%; height: auto; }

/* CTA strip */
.strip.cta {
  text-align: center;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 16px;
  margin-top: 40px;
}

/* Buttons (tweak Quark defaults a bit) */
.button.primary {
  background: #dc2626; /* TNT red */
  border-color: #dc2626;
  color: #fff;
}
.button.primary:hover { background:#b91c1c; border-color:#b91c1c; }
.button.secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.hero .button.secondary:hover { background: rgba(255,255,255,0.12); }

.header-row {
  display: flex;
  justify-content: space-between; /* pushes ends apart */
  align-items: center;            /* keeps them vertically aligned */
  margin-bottom: 20px;
  
}


