/* === Brand Palette [cite: 55-57] === */
:root {
  --bg: #0f1221;
  --panel: #12162a;
  --text: #e9eefb;
  --muted: #a9b1c7;
  --accent: #ff6a00;
  --accent-2: #18d07a;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: radial-gradient(1200px 800px at 80% -10%, #1a2144 0%, transparent 60%), var(--bg);
  color: var(--text);
  /* Font stack per doc [cite: 58] */
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.45;
}

.wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.card {
  width: min(780px, 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  border-radius: 18px;
  padding: 38px 28px;
  text-align: center;
  backdrop-filter: saturate(140%) blur(6px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* === CSS Bolt Logo [cite: 60] === */
.bolt {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: conic-gradient(from 210deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.25);
  position: relative;
  display: grid;
  place-items: center;
  transform: rotate(-8deg);
}
.bolt:before {
  content: "";
  width: 14px;
  height: 20px;
  background: white;
  clip-path: polygon(45% 0, 100% 0, 58% 45%, 90% 45%, 35% 100%, 55% 55%, 20% 55%);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
/* === End Logo === */

h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: clamp(32px, 6vw, 54px);
}

h2, h3, dt, dd {
  margin: 0;
}

h2.tag {
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: clamp(14px, 2.4vw, 18px);
  font-weight: 500;
}

.hero {
  margin-top: 22px;
  font-size: clamp(18px, 3.5vw, 22px);
  color: #cfd6ee;
}

.pill {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #dbe4ff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), #e25500);
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.25);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.2);
}
.btn.secondary {
  background: #1a1f39;
  color: #e3e9ff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.btn.secondary:hover {
  background: #22284d;
  transform: translateY(0);
  box-shadow: none;
}

.mini-cta-text {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 0 0;
}

.mini {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

footer {
  margin-top: 30px;
  color: #9aa4bf;
  font-size: 13px;
}

.grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  grid-template-columns: repeat(12, 1fr);
}

.panel {
  grid-column: 1/-1;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: left;
}

.panel h2 {
  font-size: 14px;
  color: #aeb6d2;
  letter-spacing: .2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.panel-desc {
  font-size: 14px; 
  color: var(--muted); 
  margin: 0 0 10px 0;
}

.intel-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #0e1327;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e7ecff;
  font-size: 14px;
}

.lead small {
  color: #8e96b3;
}
.map-link {
  color: #96ffe0; /* Bright green accent [cite: 57] */
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

@media (min-width: 700px) {
  .panel {
    grid-column: span 12;
  }
  .panel.half {
    grid-column: span 6;
  }
}

.use-case-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.use-case-list li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.use-case-list li:before {
  content: "✓";
  color: var(--accent-2); /* Electric green accent [cite: 57] */
  position: absolute;
  left: 0;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  text-align: left;
}
.faq-item dt {
  font-size: 14px;
  color: #e7ecff;
  font-weight: 600;
  margin: 0 0 4px 0;
}
.faq-item dd {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.from-creator {
  text-align: left;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.from-creator strong {
  color: #cfd6ee;
  font-weight: 600;
}