/* Marketing Pages — Shared CSS */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

.page-hero {
  padding: 5rem 2rem 3rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.hero-inner { max-width: 720px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  color: #3BA6F1;
  background: #e8f4fd;
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}
.badge::before { content: '★'; font-size: .6rem; }

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
  color: #0f172a;
  font-family: 'DM Sans', sans-serif;
}
.page-hero .intro {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 600px;
  font-family: 'DM Sans', sans-serif;
}

.content {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  font-family: 'DM Sans', sans-serif;
}
.block { margin-bottom: 3rem; }

.block-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #0f172a;
}
.block-title::before {
  content: '';
  width: 4px;
  height: 1.2rem;
  background: #3BA6F1;
  border-radius: 2px;
  flex-shrink: 0;
}

.block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding-left: 0;
}
.block li {
  font-size: .92rem;
  line-height: 1.65;
  color: #334155;
  padding-left: 1.4rem;
  position: relative;
}
.block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3BA6F1;
  font-weight: 700;
  font-size: .85rem;
}

.del-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-top: .5rem;
}
.del-box li::before { content: '✓'; color: #3BA6F1; }

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: .75rem;
}
.metric {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}
.metric .val {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3BA6F1;
  margin-bottom: .2rem;
}
.metric .lbl { font-size: .78rem; color: #94a3b8; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: #3BA6F1;
  margin-top: 1.5rem;
  text-decoration: none;
  transition: gap .2s;
}
.back-link:hover { gap: .65rem; }

/* Events page specific */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
  margin-top: .75rem;
}
.event-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: border-color .3s;
}
.event-card:hover { border-color: #3BA6F1; }
.event-card .tier {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #3BA6F1;
  margin-bottom: .35rem;
}
.event-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.event-card .timing { font-size: .78rem; color: #94a3b8; }

.phase {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
}
.phase-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3BA6F1;
  margin-bottom: .85rem;
  display: block;
}
.phase ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding-left: 0;
}
.phase li {
  font-size: .92rem;
  line-height: 1.65;
  color: #334155;
  padding-left: 1.4rem;
  position: relative;
}
.phase li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3BA6F1;
  font-weight: 700;
  font-size: .85rem;
}

@media (max-width: 768px) {
  .page-hero { padding: 3.5rem 1.5rem 2rem; }
  .content { padding: 2rem 1.5rem 3rem; }
  .metrics { grid-template-columns: 1fr 1fr; }
}
