/* =============================================
   SnipePump — Light Theme + Bento + Pill buttons
   ============================================= */

:root {
  /* Base light */
  --bg: #ffffff;
  --bg-elevated: #f7fafb;
  --bg-card: #ffffff;
  --bg-card-hover: #fafcfd;
  --border: #e5ebef;
  --border-bright: #d0d9e0;

  /* Text */
  --text: #023F38;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-dim: #cbd5dd;

  /* Accent — pastel mint (pump.fun vibe) */
  --green: #00D68E;
  --green-bright: #1EE3A0;
  --green-dark: #00B077;
  --green-deep: #00D68E;
  --green-glow: rgba(0, 214, 142, 0.45);
  --green-soft: rgba(0, 214, 142, 0.1);
  --green-mid: rgba(0, 214, 142, 0.3);

  /* Layout */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 9999px;
  --shadow: 0 2px 12px rgba(10, 22, 40, 0.05);
  --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.08);
  --shadow-green: 0 8px 28px rgba(0, 214, 142, 0.4);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── Ambient Glow ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.orb-1 {
  width: 600px; height: 600px;
  background: rgba(0, 214, 142, 0.35);
  top: -200px; right: -150px;
  animation: orbFloat 22s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: rgba(0, 214, 142, 0.2);
  bottom: 10%; left: -150px;
  animation: orbFloat 28s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px; height: 400px;
  background: rgba(0, 214, 142, 0.12);
  top: 45%; right: 5%;
  animation: orbFloat 20s ease-in-out infinite 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -50px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }

/* ── Gradient Accent Text ── */
.gradient-text {
  color: var(--green-deep);
}

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.btn {
  color: var(--text) !important;
  font-weight: 800 !important;
  font-size: 14px !important;
}
.nav-links a.nav-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--text);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}
.nav-links a.nav-x:hover {
  color: var(--text);
  border-color: var(--green-dark);
  background: var(--green-soft);
  transform: translateY(-1px);
}

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Buttons (Pill) ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--green);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 214, 142, 0.45);
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-ghost {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  border-color: var(--green-dark);
  background: var(--green-soft);
}
.btn-xl { padding: 18px 42px; font-size: 17px; }

.btn-glow-wrap { position: relative; overflow: hidden; }
.btn-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
  animation: btnGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnGlow {
  0%, 100% { transform: translate(-30%, -30%); }
  50% { transform: translate(30%, 30%); }
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 180px 0 80px;
  background: var(--bg);
  overflow: hidden;
}
/* Hero grid pattern with fade mask */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 214, 142, 0.25) 1.3px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
/* Hero soft radial green glow */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(0, 214, 142, 0.32) 0%, rgba(0, 214, 142, 0.08) 30%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Hero CA Chip (compact pill) ── */
.hero-ca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  margin-top: 50px;
  margin-bottom: 0;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.hero-ca:hover {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px var(--green-soft), var(--shadow);
  transform: translateY(-1px);
}
.hero-ca-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-ca-sep {
  width: 1px;
  height: 14px;
  background: var(--border);
}
.hero-ca-value {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.4px;
}
.hero-ca-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: var(--text);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.hero-ca-btn:hover { background: var(--green-bright); }
.hero-ca-btn.copied { background: var(--green-deep); color: #ffffff; }

.hero-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 32px;
  filter: drop-shadow(0 8px 24px rgba(0, 214, 142, 0.35));
}

.hero-subtitle {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 84px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.02;
  margin-bottom: 20px;
  letter-spacing: 0;
  max-width: 900px;
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 0;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 68px;
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.02;
  letter-spacing: 0;
}
.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════
   BENTO GRID — Features
   ══════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-mid);
  box-shadow: var(--shadow-lg);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--green-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-card > * { position: relative; z-index: 1; }

/* Card sizes */
.bento-xl  { grid-column: span 2; grid-row: span 2; padding: 40px; }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bento-full { grid-column: span 4; }

/* Featured (accent bg) variant */
.bento-card.accent {
  background: linear-gradient(180deg, rgba(0, 214, 142, 0.14) 0%, var(--bg-card) 80%);
  border-color: var(--green-mid);
}

/* Bento XL — hero feature card */
.bento-xl .bento-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--green);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 214, 142, 0.4);
}
.bento-xl .bento-big-num {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 100px;
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 0.95;
  margin: 10px 0 8px;
}
.bento-xl .bento-big-num span {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--green-deep);
  letter-spacing: 0;
}
.bento-xl h3 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  line-height: 1;
}
.bento-xl p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 420px;
}

/* Regular bento card */
.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.bento-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.bento-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bento-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--green);
  color: var(--text);
}

/* ══════════════════════════════════
   Steps (How It Works) — Bento
   ══════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.step-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-mid);
  box-shadow: var(--shadow-lg);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 214, 142, 0.45);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.step-card code {
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-family: 'SF Mono', monospace;
  font-weight: 700;
}
.step-card strong { color: var(--text); font-weight: 700; }

.step-line { display: none; }

/* ══════════════════════════════════
   Tier Bento
   ══════════════════════════════════ */
.bento-tiers {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
}

.bento-card.bento-tier {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.bento-card.bento-tier .tier-name-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 6px 14px;
  background: var(--bg-elevated);
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.bento-card.bento-tier .tier-name-pill.filled {
  background: var(--green);
  color: var(--text);
}
.bento-card.bento-tier .tier-fee-big {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 92px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 4px;
}
.bento-card.bento-tier .tier-fee-big .pct {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 400;
}
.bento-card.bento-tier .tier-fee-green { color: var(--green-deep); }
.bento-card.bento-tier .tier-fee-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.bento-card.bento-tier .tier-feats {
  list-style: none;
  width: 100%;
  margin-bottom: 20px;
}
.bento-card.bento-tier .tier-feats li {
  padding: 8px 0 8px 24px;
  font-size: 13.5px;
  color: var(--text-secondary);
  position: relative;
}
.bento-card.bento-tier .tier-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.bento-card.bento-tier .tier-req-bottom {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
}
.bento-card.bento-tier .tier-req-bottom.highlight { color: var(--green-deep); }

/* ══════════════════════════════════
   Bento Verify Chain (inline steps)
   ══════════════════════════════════ */
.bento-card.bento-verify {
  padding: 40px 36px;
  justify-content: center;
}
.bento-card.bento-verify h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text);
}
.verify-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.verify-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--text-secondary);
}
.verify-pill strong { color: var(--text); font-weight: 700; }
.verify-pill .verify-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--green);
  color: var(--text);
  font-weight: 900;
  font-size: 12px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.bento-card.bento-verify .verify-arrow {
  color: var(--text-dim);
  font-size: 18px;
  font-weight: 800;
}
.verify-loop { color: var(--green-deep) !important; font-size: 22px !important; }

/* ══════════════════════════════════
   Bento Revenue Grid (3 cards + full)
   ══════════════════════════════════ */
.bento-revenue {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
}
.bento-revenue .bento-card {
  padding: 36px 30px;
}
.bento-revenue .bento-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 214, 142, 0.45);
}
.bento-revenue .bento-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.bento-revenue .bento-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.bento-revenue .bento-card.bento-full { grid-column: span 3; }

/* ══════════════════════════════════
   Legacy support (old classes kept for docs)
   ══════════════════════════════════ */
.verify-box {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ══════════════════════════════════
   Trencher Cards
   ══════════════════════════════════ */
.trencher-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trencher-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.trencher-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-mid);
  box-shadow: var(--shadow-lg);
}

.trencher-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--text);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 214, 142, 0.4);
}

.trencher-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.trencher-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ══════════════════════════════════
   CTA
   ══════════════════════════════════ */
.cta-section {
  background: var(--bg);
  position: relative;
}
.cta-inner {
  text-align: center;
  padding: 80px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--green-soft) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner > * {
  position: relative;
  z-index: 1;
}
.cta-logo {
  width: auto;
  height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 24px rgba(0, 214, 142, 0.35));
}
.cta-inner h2 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.02;
}
.cta-inner > p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 32px;
}

/* ══════════════════════════════════
   Footer
   ══════════════════════════════════ */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.ca-mono {
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--text-secondary);
}

/* ══════════════════════════════════
   Responsive
   ══════════════════════════════════ */
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-xl { grid-column: span 2; grid-row: span 2; }
  .bento-wide { grid-column: span 2; }
  .bento-full { grid-column: span 2; }
  .bento-tall { grid-row: span 1; }
  .bento-tiers { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .bento-revenue { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .bento-revenue .bento-card.bento-full { grid-column: span 1; }
  .verify-chain { flex-direction: column; gap: 10px; }
  .bento-card.bento-verify .verify-arrow { transform: rotate(90deg); }
  .trencher-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .steps-row { grid-template-columns: 1fr; max-width: 520px; }
  .hero-subtitle { font-size: 64px; }
  .section-title { font-size: 52px; }
  .verify-steps { flex-direction: column; gap: 16px; }
  .verify-arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }

  .hero { padding: 140px 0 60px; }
  .hero-subtitle { font-size: 48px; letter-spacing: 0; }
  .hero-desc { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .section { padding: 70px 0; }
  .section-title { font-size: 42px; }
  .section-desc { font-size: 15px; }

  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-xl, .bento-wide, .bento-full { grid-column: span 1; grid-row: span 1; padding: 28px; }
  .bento-xl .bento-big-num { font-size: 60px; }

  .verify-box { padding: 32px 20px; }
  .cta-inner { padding: 52px 24px; }
  .cta-inner h2 { font-size: 44px; }

  .footer-top { flex-direction: column; gap: 20px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
