/* Pocket Shop MiniSite — dark editorial aesthetic */

:root {
  --bg: #0b0b0e;
  --surface: #131316;
  --surface2: #1a1a1f;
  --border: #252529;
  --accent: #f0c040;
  --accent2: #e8a820;
  --green: #34d399;
  --blue: #5b8def;
  --text: #d0d0d4;
  --dim: #77777e;
  --heading: #f5f5f7;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Manrope, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }

/* -- Animations -- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -- Nav -- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
}
.nav-brand .icon { font-size: 20px; }
.nav-links {
  display: flex;
  gap: 6px;
}
.nav-links a {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dim);
  transition: all 120ms;
}
.nav-links a:hover {
  background: var(--surface2);
  color: var(--text);
}

/* -- Hero -- */
.hero {
  text-align: center;
  padding: 64px 20px 48px;
  animation: fadeUp 0.5s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(240,192,64,0.08);
  border: 1px solid rgba(240,192,64,0.2);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
  animation: fadeUp 0.5s ease 0.1s both;
}
.hero p {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 28px;
  animation: fadeUp 0.5s ease 0.2s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  transition: background 120ms;
  animation: fadeUp 0.5s ease 0.3s both;
}
.hero-cta:hover {
  background: var(--accent2);
  color: #000;
}

/* -- Section -- */
.section {
  padding: 48px 20px;
  max-width: 640px;
  margin: 0 auto;
}
.section-alt {
  background: var(--surface);
  max-width: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-alt .section-inner {
  max-width: 640px;
  margin: 0 auto;
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 28px;
}

/* -- Steps -- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 4px;
}
.step p {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.55;
}

/* -- Feature cards -- */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 400px) {
  .features { grid-template-columns: 1fr; }
}
.feature {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color 120ms;
}
.feature:hover { border-color: #3a3a40; }
.feature-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 5px;
}
.feature p {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.5;
}

/* -- FAQ -- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-q:hover { color: var(--accent); }
.faq-q .arrow {
  font-size: 16px;
  color: var(--dim);
  transition: transform 200ms;
}
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
}
.faq-a-inner {
  padding: 0 0 14px;
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
}

/* -- CTA banner -- */
.cta-banner {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(240,192,64,0.06), rgba(91,141,239,0.04));
  border-top: 1px solid var(--border);
}
.cta-banner h2 {
  font-size: 20px;
  color: var(--heading);
  margin-bottom: 8px;
}
.cta-banner p {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 20px;
}
.btn-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 120ms;
}
.btn-gold {
  background: var(--accent);
  color: #000;
}
.btn-gold:hover { background: var(--accent2); color: #000; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* -- Comparison table -- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
}
.compare-table th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  color: var(--heading);
  border-bottom: 2px solid var(--border);
  font-size: 12px;
}
.compare-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--dim);
}
.compare-table tr:hover td {
  color: var(--text);
}
.compare-table .highlight {
  color: var(--accent);
  font-weight: 600;
}

/* -- Footer -- */
.footer {
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--dim);
}
.footer a { color: var(--dim); margin: 0 8px; }
.footer a:hover { color: var(--accent); }

/* -- Live node data -- */
.node-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.node-stat {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  min-width: 90px;
}
.node-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}
.node-label {
  font-size: 10px;
  color: var(--dim);
  margin-top: 2px;
}
