/* ===== BLOCKATTACK – INFO PAGE STYLES ===== */

/* ── PAGE HEADER BG ──────────────────────── */
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(232,83,26,0.11) 0%, transparent 65%);
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center bottom, black, transparent 80%);
}

/* ── CONTENT WRAPPER ─────────────────────── */
.content { max-width: 1100px; margin: 0 auto; padding: 0 2rem 8rem; }

/* ── MISSION CARD ────────────────────────── */
.mission {
  background: linear-gradient(135deg, rgba(232,83,26,0.09), rgba(75,123,236,0.06));
  border: 1px solid rgba(232,83,26,0.18); border-radius: 20px;
  padding: 3.5rem; margin-bottom: 4rem; position: relative; overflow: hidden;
}
.mission::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--green));
}
.mission-quote {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700; line-height: 1.3; margin-bottom: 1.25rem;
}
.mission-quote .hl { color: var(--orange); }
.mission p { color: var(--gray); line-height: 1.8; font-size: 1rem; max-width: 600px; }

/* ── TWO COLUMN LAYOUT ───────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 4rem; }

.info-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; transition: transform 0.25s, border-color 0.25s;
}
.info-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.ic-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.ic-head .ico { font-size: 1.5rem; }
.ic-head h3 { font-family: 'Unbounded', sans-serif; font-size: 0.95rem; font-weight: 700; }

.info-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.info-card li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--gray); }
.info-card     li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.info-card.bc  li::before { color: var(--blue); }
.info-card.gc  li::before { color: var(--green); }

/* ── SPECS ───────────────────────────────── */
.specs-title { font-family: 'Unbounded', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.25rem; }
.specs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 4rem;
}
.spec-item {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem; text-align: center; transition: border-color 0.2s;
}
.spec-item:hover { border-color: rgba(255,255,255,0.15); }
.spec-val { font-family: 'Unbounded', sans-serif; font-size: 1.6rem; font-weight: 900; margin-bottom: 0.4rem; }
.spec-val.o { color: var(--orange); }
.spec-val.b { color: var(--blue); }
.spec-val.g { color: var(--green); }
.spec-lab { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── TIMELINE ────────────────────────────── */
.tl-title { font-family: 'Unbounded', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.75rem; }
.timeline { position: relative; padding-left: 2rem; margin-bottom: 4rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.tl-item { position: relative; padding-bottom: 2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -2.38rem; top: 0.2rem;
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
}
.tl-dot.o { border-color: var(--orange); }
.tl-dot.b { border-color: var(--blue); }
.tl-dot.g { border-color: var(--green); }
.tl-dot.o::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.tl-dot.b::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.tl-dot.g::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.tl-item h4 { font-family: 'Unbounded', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.tl-item p  { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ── CTA ─────────────────────────────────── */
.cta-wrap {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 20px;
  padding: 3.5rem; text-align: center;
}
.cta-wrap h3 { font-family: 'Unbounded', sans-serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 0.85rem; }
.cta-wrap p  { color: var(--gray); margin-bottom: 2rem; max-width: 420px; margin-left: auto; margin-right: auto; }
.btn-group   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ──────────────────────────── */
@media(max-width:768px){
  .two-col  { grid-template-columns: 1fr; }
  .mission  { padding: 2rem; }
}
