/* EnablerDAO — Modern Dark Theme */
/* Persona: Takuya, 30歳開発者。Linear/Vercel的な洗練を好む */

:root {
  --bg: #09090b;
  --fg: #e4e4e7;
  --green: #4ade80;
  --green-dim: rgba(74, 222, 128, 0.15);
  --green-glow: rgba(74, 222, 128, 0.3);
  --dim: #71717a;
  --bright: #fafafa;
  --cyan: #22d3ee;
  --amber: #fbbf24;
  --red: #f87171;
  --violet: #a78bfa;
  --surface: #18181b;
  --surface2: #1e1e22;
  --surface-glass: rgba(24, 24, 27, 0.6);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --mono: "SF Mono", "Cascadia Code", "Fira Code", "Consolas", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(74, 222, 128, 0.25); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--dim); border-radius: 3px; }

a { color: var(--green); text-decoration: none; transition: color 0.15s; }
a:hover { color: #86efac; }
.link-cyan { color: var(--cyan); }

/* Subtle grid bg */
.grid-bg {
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  min-height: 100vh;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
.site-header {
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(74, 222, 128, 0.08);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 56px;
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}
.header-left { display: flex; align-items: center; gap: 12px; }
.traffic-lights { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.header-title {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 13px;
  text-decoration: none;
}
.header-title:hover { color: var(--bright); }
.header-nav { display: flex; gap: 2px; flex: 1; align-items: center; }
.nav-link {
  color: var(--dim);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.15s;
}
.nav-link:hover { color: var(--bright); background: rgba(255, 255, 255, 0.05); }
.header-right { display: flex; align-items: center; gap: 12px; }
.git-link { color: var(--dim); }
.wallet-badge {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; background: none; border: none; font-family: var(--sans); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 180px;
  z-index: 200;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.dropdown-menu.show { display: block; }
.dropdown-item {
  display: block;
  padding: 8px 12px;
  color: var(--dim);
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
}
.dropdown-item:hover { color: var(--bright); background: rgba(255, 255, 255, 0.05); }

/* Mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.mobile-menu.show { display: block; }
.mobile-link {
  display: block;
  padding: 10px 0;
  color: var(--dim);
  font-size: 15px;
  text-decoration: none;
}
.mobile-link:hover { color: var(--green); }
.mobile-separator {
  padding: 8px 0;
  color: var(--dim);
  font-size: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .header-nav, .wallet-badge { display: none; }
  .mobile-menu-btn { display: block; }
}

/* === NAV CTA === */
.nav-cta {
  color: var(--bg) !important;
  background: var(--green);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.2);
}
.nav-cta:hover {
  background: #86efac;
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

/* === MAIN CONTENT === */
.main-content { padding: 0 0 40px; min-height: 60vh; }

/* Sections */
.section { padding: 100px 0; }
.section-alt { background: linear-gradient(180deg, var(--surface) 0%, rgba(24, 24, 27, 0.5) 100%); }
.section-label {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--bright);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-subtitle { color: var(--dim); font-size: 16px; margin-bottom: 48px; line-height: 1.7; }

/* Legacy section-title for non-home pages */
.prompt::before { content: "$ "; color: var(--green); font-family: var(--mono); }

/* Page header */
.page-header { margin-bottom: 32px; }
.page-title { font-size: 24px; color: var(--bright); margin-bottom: 8px; font-weight: 700; }
.page-subtitle { color: var(--dim); font-size: 15px; }

/* Quick stats */
.quick-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.stat-badge {
  font-size: 13px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--dim);
}

/* Terminal box */
.terminal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.5s ease-out forwards; }
.animate-fade-in-up-delay-1 { animation: fadeInUp 0.5s ease-out 0.1s forwards; opacity: 0; }
.animate-fade-in-up-delay-2 { animation: fadeInUp 0.5s ease-out 0.2s forwards; opacity: 0; }

/* === HERO === */
.hero {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-box {
  padding: 0;
  border: none;
  background: none;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--green);
  background: var(--green-dim);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-badge .pulse-dot { margin-right: 2px; }
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-shadow: 0 0 60px rgba(74, 222, 128, 0.15);
}
.hero-desc {
  color: var(--dim);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.2);
}
.btn-primary:hover {
  background: #86efac;
  box-shadow: 0 0 28px rgba(74, 222, 128, 0.4), 0 4px 16px rgba(74, 222, 128, 0.25);
  transform: translateY(-2px);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--bright);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.08);
}
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* === STATS BAND === */
.stats-band {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.02) 0%, transparent 100%);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 12px 0; }
.stat-highlight {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px currentColor;
}
.stat-label {
  display: block;
  color: var(--dim);
  font-size: 13px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === PRODUCTS === */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.product-card {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(74, 222, 128, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(74, 222, 128, 0.06);
}
.product-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.product-header-text { flex: 1; }
.product-name { font-size: 18px; font-weight: 700; color: var(--bright); }
.product-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.badge-green { background: rgba(74, 222, 128, 0.15); color: var(--green); }
.badge-cyan { background: rgba(34, 211, 238, 0.15); color: var(--cyan); }
.badge-amber { background: rgba(251, 191, 36, 0.15); color: var(--amber); }
.badge-violet { background: rgba(167, 139, 250, 0.15); color: var(--violet); }
.product-desc { color: var(--dim); font-size: 14px; margin-bottom: 16px; flex: 1; }
.product-stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 16px;
  font-family: var(--mono);
}
.product-link {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-link:hover { color: #86efac; }

/* Other products */
.other-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.other-product-card {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.other-product-card:hover {
  border-color: rgba(74, 222, 128, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 16px rgba(74, 222, 128, 0.05);
}
.other-product-card h4 { color: var(--bright); margin: 12px 0 6px; font-size: 16px; }
.other-product-card p { color: var(--dim); font-size: 13px; margin-bottom: 12px; }
.other-product-card a { font-size: 13px; color: var(--green); font-weight: 600; }
.other-product-emoji { font-size: 28px; }

/* Product logos */
.product-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface2);
}
.other-product-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  background: var(--surface2);
}

/* App Store badge */
.appstore-badge-link { display: inline-block; margin-top: 8px; }
.appstore-badge {
  height: 36px;
  width: auto;
  transition: opacity 0.2s;
}
.appstore-badge:hover { opacity: 0.8; }
.appstore-badge-lg {
  height: 48px;
  width: auto;
  transition: opacity 0.2s;
}
.appstore-badge-lg:hover { opacity: 0.8; }

/* === ELIO FEATURE === */
.elio-feature { padding: 60px 0 40px; }
.elio-feature-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, var(--surface-glass), rgba(167, 139, 250, 0.04));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: var(--radius);
  padding: 48px;
  transition: all 0.3s ease;
}
.elio-feature-card:hover {
  border-color: rgba(167, 139, 250, 0.3);
  box-shadow: 0 16px 48px rgba(167, 139, 250, 0.08);
}
.elio-feature-content { flex: 1; }
.elio-feature-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--bright);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.elio-feature-desc {
  color: var(--dim);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.elio-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.elio-feature-list li {
  color: var(--fg);
  font-size: 15px;
  padding: 6px 0;
}
.elio-feature-list li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}
.elio-feature-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.elio-feature-icon { flex-shrink: 0; }
.elio-app-icon {
  width: 200px;
  height: 200px;
  border-radius: 40px;
  box-shadow: 0 16px 48px rgba(167, 139, 250, 0.2);
}

/* Product icon colors */
.icon-stayflow { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.icon-chatweb { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.icon-jiuflow { background: linear-gradient(135deg, #ef4444, #f97316); }
.icon-elio { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.icon-miseban { background: linear-gradient(135deg, #4f46e5, #6366f1); }
.icon-banto { background: linear-gradient(135deg, #059669, #10b981); }
.icon-soluna { background: linear-gradient(135deg, #f59e0b, #f97316); }
.icon-enabler { background: linear-gradient(135deg, #ec4899, #f43f5e); }

/* Products detail */
.products-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 32px; }
.product-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.product-detail-card h3 { font-size: 18px; color: var(--bright); }
.product-detail-card p { color: var(--dim); font-size: 14px; margin: 8px 0; }
.product-features { list-style: none; padding: 0; margin: 12px 0; }
.product-features li { color: var(--dim); font-size: 14px; padding: 4px 0; }
.product-features li::before { content: "› "; color: var(--green); font-weight: bold; }
.product-links { display: flex; gap: 16px; margin-top: 12px; }
.product-links a { font-size: 14px; }

/* Other products list */
.other-products-list { margin-bottom: 32px; }
.other-product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.other-product-name { color: var(--bright); min-width: 120px; font-size: 15px; font-weight: 600; }
.other-product-desc { color: var(--dim); flex: 1; font-size: 14px; }

/* === PROPERTIES === */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.property-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
  text-decoration: none;
  display: block;
}
.property-card:hover {
  border-color: rgba(74, 222, 128, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 16px rgba(74, 222, 128, 0.05);
}
.property-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.property-info { padding: 16px; }
.property-info h4 { color: var(--bright); margin-bottom: 4px; font-size: 16px; font-weight: 700; }
.property-location { color: var(--dim); font-size: 13px; margin-bottom: 12px; }
.property-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  margin-bottom: 8px;
  overflow: hidden;
}
.bar-fill { display: block; height: 100%; background: var(--green); border-radius: 3px; }
.property-rate { color: var(--green); font-size: 13px; font-weight: 600; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.about-card {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}
.about-card:hover {
  border-color: rgba(74, 222, 128, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.about-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--bright); font-weight: 700; }
.about-card p { color: var(--dim); font-size: 14px; line-height: 1.7; }

/* === FOUNDER === */
.founder-card {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: center;
  transition: all 0.3s ease;
}
.founder-card:hover {
  border-color: rgba(74, 222, 128, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.founder-info { flex: 1; }
.founder-info h3 { color: var(--bright); font-size: 20px; margin-bottom: 8px; }
.founder-info p { color: var(--dim); font-size: 14px; margin-bottom: 12px; line-height: 1.6; }
.founder-links { display: flex; gap: 16px; }
.founder-links a {
  font-size: 14px;
  color: var(--dim);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.15s;
}
.founder-links a:hover { color: var(--bright); border-color: var(--border-hover); }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.04), rgba(34, 211, 238, 0.04));
  border-top: 1px solid rgba(74, 222, 128, 0.1);
  border-bottom: 1px solid rgba(74, 222, 128, 0.1);
  text-align: center;
  padding: 56px 24px;
}
.cta-band-text {
  color: var(--bright);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BLOG === */
.blog-list { display: flex; flex-direction: column; gap: 16px; }
.blog-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.blog-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.blog-category { font-size: 11px; padding: 3px 10px; border-radius: 4px; font-weight: 600; }
.blog-date { color: var(--dim); font-size: 13px; }
.blog-card-title { color: var(--bright); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.blog-card-desc { color: var(--dim); font-size: 14px; margin-bottom: 12px; }
.blog-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.blog-tag {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 10px;
  border-radius: 4px;
  transition: all 0.15s;
}
.blog-tag:hover { color: var(--green); background: var(--green-dim); }

/* Article detail */
.article-container { max-width: 760px; }
.breadcrumb { color: var(--dim); font-size: 13px; margin-bottom: 24px; font-family: var(--mono); }
.breadcrumb a { color: var(--dim); }
.breadcrumb a:hover { color: var(--green); }
.article-header-card {
  margin-bottom: 48px;
  padding: 0;
  background: none;
  border: none;
}
.article-header { margin-bottom: 32px; }
.article-title {
  font-size: 32px;
  color: var(--bright);
  margin: 16px 0;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.article-desc { color: var(--dim); font-size: 16px; margin-bottom: 20px; line-height: 1.7; }
.article-meta { color: var(--dim); font-size: 14px; margin-bottom: 16px; }
.article-meta span { margin-right: 16px; }
.article-nav {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Markdown body */
.markdown-body { color: var(--fg); line-height: 1.85; font-size: 15px; }
.markdown-body h2 {
  color: var(--bright);
  font-size: 22px;
  font-weight: 700;
  margin: 56px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.markdown-body h3 { color: var(--bright); font-size: 18px; font-weight: 600; margin: 40px 0 12px; }
.markdown-body h4 { color: var(--bright); font-size: 15px; font-weight: 600; margin: 24px 0 8px; }
.markdown-body p { margin-bottom: 16px; }
.markdown-body ul, .markdown-body ol { margin: 8px 0 20px 24px; }
.markdown-body li { margin-bottom: 8px; }
.markdown-body code {
  font-family: var(--mono);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  font-size: 13px;
  color: var(--green);
  border-radius: 4px;
}
.markdown-body pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  overflow-x: auto;
  margin: 24px 0;
}
.markdown-body pre code { background: none; padding: 0; border-radius: 0; color: var(--fg); }
.markdown-body blockquote {
  border-left: 3px solid var(--green);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(74, 222, 128, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--bright);
  font-style: italic;
}
.markdown-body blockquote p { margin-bottom: 0; }
.markdown-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.markdown-body th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--bright);
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
  font-weight: 600;
}
.markdown-body td { padding: 12px 16px; border: 1px solid var(--border); }
.markdown-body hr { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.markdown-body a { color: var(--green); }
.markdown-body a:hover { color: #86efac; }
.markdown-body strong { color: var(--bright); font-weight: 600; }
.markdown-body em { color: var(--dim); }

/* === FORMS === */
.form-title { color: var(--green); font-size: 15px; font-weight: 600; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; color: var(--dim); font-size: 13px; margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 14px;
  transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-status { color: var(--green); font-size: 14px; margin-top: 12px; }

/* Ideas */
.ideas-controls { display: flex; justify-content: space-between; align-items: center; margin: 24px 0; flex-wrap: wrap; gap: 8px; }
.ideas-filters { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--dim);
  font-family: var(--sans);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--green); color: var(--green); }
.ideas-sort select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--dim);
  font-family: var(--sans);
  font-size: 13px;
  padding: 6px 10px;
}
.ideas-list { margin-bottom: 32px; }
.idea-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
}
.idea-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.idea-card-title { color: var(--bright); font-size: 16px; font-weight: 600; }
.idea-card-category { font-size: 11px; padding: 3px 10px; background: rgba(34, 211, 238, 0.1); color: var(--cyan); border-radius: 4px; }
.idea-card-detail { color: var(--dim); font-size: 14px; margin-bottom: 10px; }
.idea-card-footer { display: flex; justify-content: space-between; align-items: center; }
.idea-card-meta { color: var(--dim); font-size: 13px; }
.like-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--dim);
  font-family: var(--sans);
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.like-btn:hover { border-color: var(--green); color: var(--green); }

/* FAQ */
.faq-section { margin-top: 32px; }
.faq-list { margin-top: 16px; }
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.faq-item h4 { color: var(--bright); font-size: 15px; margin-bottom: 8px; }
.faq-item p { color: var(--dim); font-size: 14px; }

/* === DAO === */
.dao-tabs { display: flex; gap: 4px; margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--dim);
  font-family: var(--sans);
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.tab-btn.active, .tab-btn:hover { border-color: var(--green); color: var(--green); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Advisory */
.advisory-sessions { display: grid; gap: 20px; }
.advisory-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.advisory-card h3 { color: var(--bright); margin-bottom: 8px; }
.advisory-members { color: var(--dim); font-size: 14px; margin-bottom: 12px; }
.advisory-consensus { margin: 12px 0; }
.advisory-consensus h4 { color: var(--green); font-size: 15px; margin-bottom: 8px; }
.advisory-consensus ol { margin-left: 20px; }
.advisory-consensus li { color: var(--dim); font-size: 14px; margin-bottom: 6px; }

/* Proposals */
.proposals-list { display: grid; gap: 16px; }
.proposal-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.proposal-header { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.proposal-id { color: var(--dim); font-size: 13px; font-family: var(--mono); }
.proposal-status { font-size: 11px; padding: 3px 10px; border-radius: 4px; font-weight: 600; }
.status-active { color: var(--green); }
.status-pending { color: var(--amber); }
.proposal-card h3 { color: var(--bright); font-size: 16px; margin-bottom: 8px; }
.proposal-card p { color: var(--dim); font-size: 14px; }
.proposal-votes { display: flex; gap: 16px; margin: 12px 0; font-size: 14px; }
.vote-for { color: var(--green); }
.vote-against { color: var(--red); }
.vote-abstain { color: var(--dim); }
.proposal-meta { color: var(--dim); font-size: 13px; }

/* Tables */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0; }
.data-table th { color: var(--bright); text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); font-weight: 600; }
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--dim); }
.total-row td { color: var(--bright); font-weight: 600; }
.mono-text { font-family: var(--mono); font-size: 12px; word-break: break-all; }

/* Token */
.token-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.token-list { list-style: none; padding: 0; }
.token-list li { color: var(--dim); font-size: 14px; padding: 4px 0; }
.token-list li::before { content: "› "; color: var(--green); font-weight: bold; }

/* === AGENTS === */
.agents-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: 32px; }
.agent-card {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s ease;
}
.agent-card:hover {
  border-color: rgba(74, 222, 128, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.agent-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.agent-emoji { font-size: 22px; }
.agent-header h3 { color: var(--bright); font-size: 16px; flex: 1; }
.agent-role { color: var(--dim); font-size: 13px; margin-bottom: 4px; }
.agent-model { color: var(--dim); font-size: 12px; font-family: var(--mono); margin-bottom: 8px; }
.agent-skills { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.skill-badge { font-size: 11px; padding: 3px 8px; background: var(--green-dim); color: var(--green); border-radius: 4px; }
.agent-url { font-size: 12px; color: var(--cyan); font-family: var(--mono); }

/* === STATUS === */
.status-list { display: flex; flex-direction: column; gap: 2px; }
.status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.status-name { color: var(--bright); min-width: 160px; font-size: 15px; font-weight: 600; }
.status-detail { color: var(--dim); font-size: 14px; }

/* === KPI === */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.kpi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.kpi-label { display: block; color: var(--dim); font-size: 13px; margin-bottom: 8px; }
.kpi-value { display: block; color: var(--green); font-size: 28px; font-weight: 800; }
.dashboard-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

/* === QA === */
.qa-list { margin-top: 20px; }
.qa-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 12px; }
.qa-question { color: var(--bright); font-size: 15px; margin-bottom: 10px; font-weight: 600; }
.qa-question::before { content: "Q: "; color: var(--green); font-family: var(--mono); }
.qa-answer { color: var(--dim); font-size: 14px; }
.qa-answer::before { content: "A: "; color: var(--cyan); font-family: var(--mono); }
.qa-meta { color: var(--dim); font-size: 12px; margin-top: 8px; }

/* === NEWSLETTER === */
.newsletter-section { padding: 100px 0; }
.newsletter-box {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, var(--surface-glass), rgba(74, 222, 128, 0.03));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(74, 222, 128, 0.1);
  border-radius: var(--radius);
}
.newsletter-title { color: var(--bright); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.newsletter-desc { color: var(--dim); font-size: 15px; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 8px; justify-content: center; max-width: 420px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 14px;
  transition: border-color 0.15s;
}
.newsletter-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 12px rgba(74, 222, 128, 0.15); }
.newsletter-status { color: var(--green); font-size: 14px; margin-top: 12px; }
.newsletter-benefits {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px;
  color: var(--dim);
}
.loading-text { color: var(--dim); font-size: 14px; }

/* === FOOTER === */
.site-footer {
  background: linear-gradient(180deg, var(--surface) 0%, #0d0d0f 100%);
  border-top: 1px solid var(--border);
  padding: 56px 24px;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-cta {
  text-align: center;
  padding: 40px 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.footer-cta-text { color: var(--bright); font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.footer-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 40px; }
.footer-heading { color: var(--dim); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; font-weight: 600; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-link { color: var(--dim); font-size: 14px; text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: var(--bright); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-copy { color: var(--dim); font-size: 13px; margin-bottom: 4px; }
.footer-founder { color: var(--dim); font-size: 13px; }

/* === TOKEN PAGE === */
.token-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.token-card-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.25s ease;
}
.token-card-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.token-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.token-card-name {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.token-card-supply {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--dim);
  margin-bottom: 16px;
}
.token-card-purpose {
  color: var(--dim);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.token-card-link { font-size: 14px; font-weight: 600; }

/* Earn methods */
.earn-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.earn-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dim);
}
.earn-icon { font-size: 18px; flex-shrink: 0; }

/* Allocation bars */
.allocation-bars { display: flex; flex-direction: column; gap: 10px; }
.alloc-row { display: flex; align-items: center; gap: 12px; }
.alloc-label { color: var(--dim); font-size: 14px; min-width: 140px; }
.alloc-bar { flex: 1; height: 8px; background: rgba(255, 255, 255, 0.04); border-radius: 4px; overflow: hidden; }
.alloc-fill { height: 100%; border-radius: 4px; }
.alloc-pct { font-family: var(--mono); font-size: 13px; font-weight: 600; min-width: 36px; text-align: right; color: var(--dim); }

/* Dog Pack Row */
.dog-pack-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.dog-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 100px;
  transition: all 0.2s ease;
}
.dog-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.dog-avatar { font-size: 32px; }
.dog-name { font-size: 13px; font-weight: 700; }
.dog-role { font-size: 11px; color: var(--dim); }

/* BONE Flow */
.bone-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.bone-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 16px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 110px;
  flex: 1;
  max-width: 150px;
}
.bone-flow-icon { font-size: 24px; }
.bone-flow-text { display: flex; flex-direction: column; gap: 2px; }
.bone-flow-text strong { color: var(--bright); font-size: 13px; }
.bone-flow-text span { color: var(--dim); font-size: 11px; }
.bone-flow-arrow { color: var(--amber); font-size: 20px; padding-top: 24px; flex-shrink: 0; }

/* Tier Grid */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tier-box { text-align: center; position: relative; }
.tier-recommended { border-color: rgba(74, 222, 128, 0.3) !important; }
.tier-badge-rec {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  background: rgba(74, 222, 128, 0.15);
  color: var(--green);
  border-radius: 4px;
}
.tier-header { margin-bottom: 16px; }
.tier-header h3 { font-size: 18px; margin: 4px 0; }
.tier-req { font-family: var(--mono); font-size: 13px; color: var(--dim); }
.tier-features { list-style: none; padding: 0; text-align: left; }
.tier-features li { padding: 6px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.tier-features li:last-child { border-bottom: none; }
.tier-yes::before { content: "✓ "; color: var(--green); font-weight: 700; }
.tier-no { color: var(--dim); text-decoration: line-through; }
.tier-no::before { content: "✗ "; color: var(--dim); font-weight: 700; text-decoration: none; }

/* Start Steps */
.start-steps {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.start-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dim);
}
.start-num {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  /* Token cards → stack */
  .token-cards-3 { grid-template-columns: 1fr; gap: 12px; }
  .token-card-main { padding: 20px; }
  .token-card-name { font-size: 24px; }
  .token-card-supply { font-size: 13px; }
  .token-card-purpose { font-size: 13px; }

  /* Data table scrollable */
  .data-table { font-size: 13px; }
  .data-table th, .data-table td { padding: 8px 10px; white-space: nowrap; }
  .terminal-box { padding: 16px; overflow-x: auto; }

  /* Earn methods → stack */
  .earn-methods { grid-template-columns: 1fr; gap: 6px; }
  .earn-item { padding: 10px 12px; font-size: 13px; }

  /* Allocation bars */
  .alloc-label { min-width: 80px; font-size: 12px; }
  .alloc-pct { font-size: 12px; min-width: 32px; }
  .alloc-row { gap: 8px; }

  /* Dog Pack → wrap 3+2 */
  .dog-pack-row { gap: 8px; }
  .dog-card { min-width: 60px; padding: 10px 8px; }
  .dog-avatar { font-size: 24px; }
  .dog-name { font-size: 11px; }
  .dog-role { font-size: 10px; }

  /* BONE flow → vertical compact */
  .bone-flow { flex-direction: column; align-items: center; gap: 0; }
  .bone-flow-arrow { transform: rotate(90deg); padding: 4px 0; font-size: 16px; }
  .bone-flow-step { max-width: 100%; min-width: auto; width: 100%; flex-direction: row; text-align: left; gap: 12px; padding: 12px 16px; }
  .bone-flow-icon { font-size: 20px; }
  .bone-flow-text strong { font-size: 13px; }
  .bone-flow-text span { font-size: 11px; }

  /* Stats row in BONE section */
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-highlight { font-size: 1.3rem !important; }

  /* Tier grid → stack */
  .tier-grid { grid-template-columns: 1fr; gap: 12px; }
  .tier-header h3 { font-size: 16px; }
  .tier-features li { font-size: 13px; padding: 5px 0; }

  /* About grid (ENAI cards) → stack */
  .about-grid { grid-template-columns: 1fr; gap: 12px; }
  .about-card { padding: 20px; }
  .about-card h3 { font-size: 15px; }
  .about-card p { font-size: 13px; }

  /* Start steps → stack */
  .start-steps { flex-direction: column; gap: 8px; }
  .start-step { padding: 10px 16px; font-size: 13px; }

  /* Mono addresses → wrap */
  .mono-text { font-size: 10px !important; word-break: break-all; }

  /* Section spacing tighter */
  .section-label { font-size: 12px; letter-spacing: 1.5px; }
  .section-subtitle { font-size: 14px; margin-bottom: 24px; }

  /* CTA band compact */
  .cta-band { padding: 32px 16px; }
  .cta-band-actions { gap: 8px; }
  .cta-band-actions .btn { padding: 10px 20px; font-size: 13px; }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal.visible .product-card,
.reveal.visible .about-card,
.reveal.visible .other-product-card,
.reveal.visible .property-card,
.reveal.visible .agent-card {
  animation: staggerFadeIn 0.5s ease forwards;
  opacity: 0;
}
.products-grid > :nth-child(1), .about-grid > :nth-child(1),
.other-products-grid > :nth-child(1), .properties-grid > :nth-child(1),
.agents-grid > :nth-child(1) { animation-delay: 0s; }
.products-grid > :nth-child(2), .about-grid > :nth-child(2),
.other-products-grid > :nth-child(2), .properties-grid > :nth-child(2),
.agents-grid > :nth-child(2) { animation-delay: 0.1s; }
.products-grid > :nth-child(3), .about-grid > :nth-child(3),
.other-products-grid > :nth-child(3), .properties-grid > :nth-child(3),
.agents-grid > :nth-child(3) { animation-delay: 0.2s; }
.products-grid > :nth-child(4), .about-grid > :nth-child(4),
.other-products-grid > :nth-child(4), .properties-grid > :nth-child(4),
.agents-grid > :nth-child(4) { animation-delay: 0.3s; }

@keyframes staggerFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .reveal.visible .product-card,
  .reveal.visible .about-card,
  .reveal.visible .other-product-card,
  .reveal.visible .property-card,
  .reveal.visible .agent-card { animation: none; opacity: 1; }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 80px 0 40px; }
  .hero-title { font-size: 34px; }
  .hero-desc { font-size: 16px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-highlight { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .token-sections { grid-template-columns: 1fr; }
  .dashboard-sections { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .newsletter-benefits { flex-direction: column; gap: 6px; }
  .founder-card { flex-direction: column; text-align: center; }
  .founder-links { justify-content: center; }
  .article-title { font-size: 24px; }
  .cta-band-text { font-size: 17px; }
  .elio-feature-card { flex-direction: column; padding: 32px 24px; gap: 32px; text-align: center; }
  .elio-feature-title { font-size: 22px; }
  .elio-feature-actions { justify-content: center; }
  .elio-app-icon { width: 140px; height: 140px; border-radius: 28px; }
  .elio-feature-list { text-align: left; }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 16px; }
  .newsletter-section { padding: 64px 0; }
  .newsletter-box { padding: 36px 20px; }
  .newsletter-form { flex-direction: column; }
  .hero-badge { font-size: 12px; padding: 5px 12px; }
}

/* Extra small (≤ 400px) */
@media (max-width: 400px) {
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 14px; }
  .token-card-name { font-size: 20px; }
  .section-title { font-size: 20px; }
  .dog-pack-row { gap: 6px; }
  .dog-card { min-width: 54px; padding: 8px 6px; }
  .bone-flow-step { padding: 10px 12px; }
  .tier-badge-rec { top: 8px; right: 8px; font-size: 9px; }
  .properties-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 8px; }
  .stat-highlight { font-size: 1.2rem !important; }
  .stat-label { font-size: 11px; }
  .btn-primary, .btn-secondary { padding: 10px 16px; font-size: 13px; }
}
