:root {
  --wrap: 1100px;
  --bg: #0e0f12;
  --card-bg: #16181d;
  --text: #e9eef6;
  --muted: #a9b3c7;
  --brand: #6aa3ff;
  --border: #23262d;
  --radius: 16px;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  margin: 0;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 24px;
}

section {
  margin: 24px 0;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin: 8px 0 10px;
}

h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  margin: 4px 0 8px;
}

h3 {
  font-size: clamp(16px, 2vw, 20px);
  margin: 0 0 6px;
}

.kicker {
  font-size: .85rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid-3 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.icon {
  width: 34px;
  height: 34px;
  color: var(--brand);
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding: 18px 0;
  color: var(--muted);
  text-align: center;
}
/* Subtle reveal animation */
[data-animate]{
  opacity:0;
  transform:translateY(8px);
  transition:opacity .45s ease, transform .45s ease;
}
[data-animate].in{
  opacity:1;
  transform:none;
}
@media (prefers-reduced-motion: reduce){
  [data-animate]{opacity:1; transform:none}
}
/* --- homepage visual accents --- */
.icon-band {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 14px;            /* tighter than before */
}
.band-icon {
  width: 26px;
  height: 26px;
  stroke: var(--brand-2);      /* same family as product icons */
  fill: none;
  stroke-width: 1.8;
}
.band-icon circle,
.band-icon path,
.band-icon polyline,
.band-icon line,
.band-icon rect {
  vector-effect: non-scaling-stroke;
}
.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 28px auto;
  width: min(620px, 70%);
  position: relative;
}
.divider::before {
  content: "";
  height: 0;
  border-top: 1px dotted var(--brand-2);
  width: 100%;
  opacity: .8;
}
.divider svg {
  position: absolute;
  background: var(--bg);
  padding: 0 6px;
  width: 18px;
  height: 18px;
  stroke: var(--brand-2);
  fill: none;
  stroke-width: 1.8;
}
/* Treasure-map divider (robust) */
.divider{
  display:flex;
  justify-content:center;
  align-items:center;
  width:min(620px,70%);
  margin:28px auto;
  position:relative;
}

.divider::before{
  content:"";
  display:block;           /* <- ensures it draws */
  height:0;                /* <- works with border-top */
  width:100%;
  border-top:1px dotted var(--brand-2, #8fd3ff);
  opacity:.9;
}

.divider svg{
  position:absolute;
  width:18px;
  height:18px;
  stroke:var(--brand-2, #8fd3ff);
  fill:none;
  stroke-width:1.8;
  background:var(--bg, #0e0f12);
  padding:0 6px;           /* masks the dotted line behind the icon */
  box-sizing:content-box;
}
