/* FrenPump Theme CSS */
:root {
  --bg: #07090B;
  --bg-2: #0D0F12;
  --bg-3: #121418;
  --lime: #CCFF00;
  --lime-dim: #88AA00;
  --amber: #FFAB00;
  --text: #E8E8E0;
  --text-dim: #888;
  --border: rgba(204, 255, 0, 0.1);
}

/* Layout */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 48px 96px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,255,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Feed Column */
.hero-feed {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.feed-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.feed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.feed-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-item {}

.feed-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.ticker {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.delta {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.delta.positive { color: var(--lime); }
.delta.negative { color: #FF4444; }

.feed-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lime-dim), var(--lime));
  border-radius: 2px;
}

.feed-meta {
  font-size: 11px;
  color: var(--text-dim);
}

.feed-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-value {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--lime);
}

.stat-label {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Hero Copy */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(204,255,0,0.08);
  border: 1px solid rgba(204,255,0,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 24px 0;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 0 36px 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.action-pill.primary {
  background: var(--lime);
  color: #000;
}

.action-pill.primary:hover {
  background: #ddff33;
  transform: translateY(-1px);
}

.action-pill.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.action-pill.secondary:hover {
  border-color: rgba(204,255,0,0.4);
  color: var(--lime);
}

.action-icon {
  display: flex;
  align-items: center;
}

/* Mechanics */
.mechanics {
  padding: 96px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mechanics-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 64px 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 64px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-num {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.1em;
}

.step h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}

.step-connector {
  padding-top: 40px;
  flex-shrink: 0;
}

/* Bonding visual */
.bonding-visual {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.bonding-label {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.bonding-bar {
  height: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  position: relative;
  overflow: visible;
  margin-bottom: 8px;
}

.bonding-fill {
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, var(--lime-dim), var(--lime));
  border-radius: 4px;
  transition: width 3s ease;
  box-shadow: 0 0 20px rgba(204,255,0,0.3);
}

.bonding-marker {
  position: absolute;
  top: -8px;
  transform: translateX(-50%);
}

.marker-line {
  width: 2px;
  height: 36px;
  background: var(--lime);
  opacity: 0.5;
  margin: 0 auto;
}

.marker-label {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 10px;
  color: var(--lime);
  text-align: center;
  white-space: nowrap;
  margin-top: 4px;
  opacity: 0.8;
}

.bonding-stages {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
}

/* Features */
.features {
  padding: 96px 48px;
  background: var(--bg);
}

.features-inner { max-width: 1200px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--bg-2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204,255,0,0.06);
  border: 1px solid rgba(204,255,0,0.15);
  border-radius: 10px;
}

.feature-card h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}

/* Manifesto */
.manifesto {
  padding: 96px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.manifesto-quote {}

.quote-mark {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 80px;
  color: var(--lime);
  line-height: 0.5;
  opacity: 0.4;
  margin-bottom: 24px;
}

blockquote {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 32px 0;
  font-style: normal;
}

.manifesto-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 16px 0;
}

.manifesto-body p:last-child { margin-bottom: 0; }

.manifesto-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mstat {}

.mstat-num {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}

.mstat-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Closing */
.closing {
  padding: 96px 48px 120px;
  background: var(--bg);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}

.closing-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing-coin {
  width: 180px;
  height: 180px;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.closing-copy h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px 0;
}

.closing-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 14px 0;
}

.closing-cta {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--lime);
  margin-top: 20px;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--lime); }

.footer-note {
  font-size: 11px;
  color: var(--text-dim);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-feed { display: none; }
  .hero { padding: 60px 24px 72px; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-stats { grid-template-columns: 1fr 1fr; }
  .closing-inner { grid-template-columns: 1fr; text-align: center; }
  .closing-visual { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .mechanics, .features, .manifesto, .closing { padding: 64px 24px; }
  .section-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .manifesto-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .action-pill { width: 100%; justify-content: center; }
}