/* landing.css — styles specific to landing.html */

/* Override container max-width for landing */
.container { max-width: 1200px; position: relative; z-index: 2; }

/* ── Sections ── */
.section { padding: 120px 0; position: relative; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
  padding-top: 128px; overflow: hidden;
}
.hero-waves { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-waves svg { width: 100%; height: 100%; opacity: .12; }
.float-blocks { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.f-block {
  position: absolute;
  background: rgba(0,255,135,.04); border: 1px solid rgba(0,255,135,.15);
  border-radius: 8px; backdrop-filter: blur(4px);
  font-size: 9px; color: rgba(0,255,135,.5);
  font-family: 'SF Mono', 'Fira Code', monospace;
  padding: 8px 10px; line-height: 1.4;
  animation: floatBlock linear infinite;
  box-shadow: 0 0 20px rgba(0,255,135,.06), inset 0 0 12px rgba(0,255,135,.03);
}
@keyframes floatBlock {
  0%   { transform: translateY(0px) rotate(var(--rot)); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .7; }
  100% { transform: translateY(-120px) rotate(calc(var(--rot) + 5deg)); opacity: 0; }
}
.hero-content { position: relative; z-index: 5; max-width: 760px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px;
  background: rgba(0,255,135,.08); border: 1px solid rgba(0,255,135,.2);
  border-radius: 100px;
  font-size: 11.5px; font-weight: 600; color: var(--green);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(52px, 8vw, 96px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.0; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.7) 50%, var(--green) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(18px, 2.5vw, 22px); color: var(--text-2);
  font-weight: 400; letter-spacing: -.01em; margin-bottom: 44px; line-height: 1.5;
}
.hero-sub span { color: var(--text); font-weight: 500; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 32px; background: var(--green); color: #000;
  font-size: 15px; font-weight: 700; border: none; border-radius: 10px; cursor: pointer;
  transition: all .25s; font-family: inherit;
  box-shadow: 0 0 30px rgba(0,255,135,.35), 0 4px 20px rgba(0,0,0,.4); letter-spacing: -.01em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,255,135,.55), 0 8px 32px rgba(0,0,0,.5); background: #1aff97; }
.btn-secondary {
  padding: 14px 32px; background: transparent; color: var(--text);
  font-size: 15px; font-weight: 600; border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer; transition: all .25s; font-family: inherit;
  backdrop-filter: blur(8px); letter-spacing: -.01em;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.25); background: var(--surface); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 64px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-val { font-size: 28px; font-weight: 700; color: var(--text); letter-spacing: -.5px; }
.hero-stat-val span { color: var(--green); }
.hero-stat-label { font-size: 12px; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; margin-top: 3px; }
.hero-divider { width: 1px; height: 40px; background: var(--border); align-self: center; }

/* ── Section labels ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--green); }
.section-title {
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; color: var(--text);
}
.section-desc { font-size: 17px; color: var(--text-2); max-width: 500px; line-height: 1.65; }

/* ── Features ── */
#features { background: var(--bg); }
.features-header { margin-bottom: 64px; }
.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-2); padding: 36px 32px; position: relative;
  transition: background .25s; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-glow), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover { background: #0f0f0f; }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 44px; height: 44px; background: rgba(0,255,135,.08);
  border: 1px solid rgba(0,255,135,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px; transition: all .3s;
}
.feature-card:hover .feature-icon { background: rgba(0,255,135,.15); border-color: rgba(0,255,135,.4); box-shadow: 0 0 20px rgba(0,255,135,.2); }
.feature-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -.02em; }
.feature-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.feature-tag {
  display: inline-block; margin-top: 16px; padding: 3px 10px;
  background: rgba(0,255,135,.06); border: 1px solid rgba(0,255,135,.12);
  border-radius: 100px; font-size: 10px; font-weight: 700; color: var(--green); letter-spacing: .08em;
}

/* ── Protocol ── */
#protocol { background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 100%); }
.protocol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.protocol-text .section-desc { max-width: 100%; }
.protocol-points { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.protocol-point { display: flex; gap: 14px; align-items: flex-start; }
.point-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(0,255,135,.08); border: 1px solid rgba(0,255,135,.15);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; margin-top: 1px;
}
.point-text { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.point-text strong { color: var(--text); font-weight: 600; }
.terminal-wrap { position: relative; }
.terminal-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,255,135,.12), transparent 70%);
  pointer-events: none;
}
.terminal {
  background: #0a0a0a; border: 1px solid rgba(0,255,135,.2);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 60px rgba(0,255,135,.08), 0 40px 80px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative; z-index: 1;
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.06);
}
.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-dot.red    { background: #ff5f57; }
.t-dot.yellow { background: #febc2e; }
.t-dot.green  { background: #28c840; }
.t-title { flex: 1; text-align: center; font-size: 11px; color: var(--text-3); font-family: 'SF Mono', 'Fira Code', monospace; letter-spacing: .05em; }
.terminal-body { padding: 28px 28px 32px; font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'JetBrains Mono', monospace; font-size: 13.5px; line-height: 1.8; }
.t-comment { color: #444; }
.t-key     { color: #a78bfa; }
.t-str     { color: var(--green); }
.t-punct   { color: #555; }
.t-num     { color: #fb923c; }
.terminal-footer {
  padding: 10px 28px; border-top: 1px solid rgba(255,255,255,.04);
  display: flex; justify-content: space-between; align-items: center;
}
.t-status { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--text-3); font-family: 'SF Mono', monospace; }
.t-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); animation: pulse 2s ease-in-out infinite; }
.t-copy { font-size: 10.5px; color: var(--text-3); font-family: 'SF Mono', monospace; cursor: pointer; transition: color .2s; }
.t-copy:hover { color: var(--green); }

/* ── Explorer preview ── */
#explorer { background: var(--bg); }
.explorer-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.explorer-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 16px;
  font-family: 'SF Mono', monospace; font-size: 12px; color: var(--text-3); min-width: 260px;
}
.explorer-search svg { opacity: .4; flex-shrink: 0; }
.artifacts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.artifact-card {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: all .25s; cursor: pointer;
}
.artifact-card:hover { border-color: rgba(0,255,135,.25); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 20px rgba(0,255,135,.06); }
.artifact-visual { height: 120px; position: relative; overflow: hidden; background: #0c0c0c; display: flex; align-items: center; justify-content: center; }
.artifact-bg { position: absolute; inset: 0; background: var(--bg-grad); opacity: .15; }
.artifact-tick { font-size: 26px; font-weight: 900; letter-spacing: -1px; background: var(--tick-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; z-index: 1; }
.artifact-body { padding: 14px; }
.artifact-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.artifact-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-3); font-family: 'SF Mono', monospace; margin-bottom: 8px; }
.artifact-progress { height: 2px; background: rgba(255,255,255,.06); border-radius: 1px; overflow: hidden; }
.artifact-bar { height: 100%; background: var(--bar-col); box-shadow: 0 0 6px var(--bar-col); border-radius: 1px; transition: width 1s ease; }
.artifact-footer { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-top: 1px solid var(--border); font-size: 11px; color: var(--text-3); }
.artifact-badge { padding: 2px 8px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: .05em; }
.badge-live { background: rgba(0,255,135,.1);   color: var(--green); border: 1px solid rgba(0,255,135,.2); }
.badge-full { background: rgba(255,100,100,.1); color: #ff6464;     border: 1px solid rgba(255,100,100,.2); }
.badge-soon { background: rgba(120,120,255,.1); color: #a78bfa;     border: 1px solid rgba(120,120,255,.2); }
.exp-table-wrap   { background: var(--bg-2); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 24px; }
.exp-controls     { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.exp-search-box   { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; flex: 1; max-width: 260px; }
.exp-search-box input { background: none; border: none; outline: none; color: var(--text); font-size: 13px; font-family: inherit; width: 100%; }
.exp-search-box input::placeholder { color: var(--text-3); }
.exp-sort-tabs    { display: flex; gap: 4px; flex-wrap: wrap; }
.exp-tab          { padding: 5px 13px; background: transparent; border: 1px solid var(--border); color: var(--text-2); border-radius: 7px; font-size: 12px; font-weight: 600; font-family: inherit; cursor: pointer; transition: all .2s; }
.exp-tab:hover    { border-color: rgba(0,255,135,.3); color: var(--text); }
.exp-tab.active   { background: rgba(0,255,135,.12); color: var(--green); border-color: rgba(0,255,135,.35); }
.exp-table        { width: 100%; border-collapse: collapse; min-width: 560px; }
.exp-table thead th { padding: 10px 16px; text-align: left; font-size: 11px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; background: rgba(255,255,255,.02); border-bottom: 1px solid var(--border); white-space: nowrap; }
.exp-table tbody td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.04); font-size: 13px; vertical-align: middle; }
.exp-table tbody tr:last-child td { border-bottom: none; }
.exp-table tbody tr { cursor: pointer; transition: background .15s; }
.exp-table tbody tr:hover td { background: rgba(0,255,135,.025); }
.exp-tick-icon    { width: 30px; height: 30px; border-radius: 7px; background: rgba(0,255,135,.1); border: 1px solid rgba(0,255,135,.2); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: var(--green); flex-shrink: 0; }
.exp-prog-bar     { width: 90px; height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; display: inline-block; vertical-align: middle; margin-right: 6px; }
.exp-prog-fill    { height: 100%; border-radius: 2px; }
.exp-mint-btn     { padding: 5px 14px; background: rgba(0,255,135,.1); border: 1px solid rgba(0,255,135,.3); color: var(--green); border-radius: 6px; font-size: 11px; font-weight: 700; font-family: inherit; cursor: pointer; transition: all .2s; white-space: nowrap; }
.exp-mint-btn:hover { background: var(--green); color: #000; }
.exp-table-footer { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; border-top: 1px solid var(--border); }
.exp-view-all     { color: var(--green); font-size: 13px; font-weight: 600; }
.exp-view-all:hover { text-decoration: underline; }
.exp-rank         { color: var(--text-3); font-size: 12px; }

/* ── Activity feed ── */
.activity-panel  { background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.activity-header { padding: 14px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.activity-title  { font-size: 13px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.live-dot        { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 1.5s ease-in-out infinite; }
.activity-more   { font-size: 12px; color: var(--text-3); cursor: pointer; }
.activity-more:hover { color: var(--green); }
.activity-row {
  display: grid; grid-template-columns: 80px 140px 140px 110px 70px;
  gap: 8px; padding: 10px 20px;
  font-size: 12px; font-family: 'SF Mono', monospace;
  border-bottom: 1px solid rgba(255,255,255,.03);
  align-items: center; transition: background .15s; min-width: 0;
}
.activity-row > * { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.activity-row:hover { background: rgba(255,255,255,.02); }
.activity-row.header { color: var(--text-3); font-size: 10px; letter-spacing: .08em; background: rgba(255,255,255,.02); text-transform: uppercase; }
.feed-dot    { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 5px; vertical-align: middle; flex-shrink: 0; }
.feed-loading { text-align: center; padding: 24px 0; color: var(--text-3); font-size: 12px; font-family: monospace; }
.a-op        { padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-align: center; }
.a-deploy    { background: rgba(124,58,237,.15); color: #a78bfa; }
.a-mint      { background: rgba(0,255,135,.08);  color: var(--green); }
.a-transfer  { background: rgba(251,146,60,.1);  color: #fb923c; }
.a-addr      { color: var(--text-2); }
.a-amount    { color: var(--text); font-weight: 600; }
.a-block     { color: var(--text-3); }
.a-time      { color: var(--text-3); text-align: right; }
.ticker-chip { font-weight: 700; color: var(--green); letter-spacing: .03em; }

/* ── Stats section ── */
#stats { background: linear-gradient(180deg, var(--bg) 0%, #090912 100%); position: relative; overflow: hidden; }
.stats-bg-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(0,255,135,.05), transparent 70%);
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.stat-card { background: var(--bg-2); padding: 40px 32px; text-align: center; position: relative; overflow: hidden; transition: background .25s; }
.stat-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,255,135,.4), transparent); opacity: 0; transition: opacity .3s; }
.stat-card:hover { background: #0f0f0f; }
.stat-card:hover::after { opacity: 1; }
.stat-value { font-size: 42px; font-weight: 800; letter-spacing: -2px; color: var(--text); margin-bottom: 8px; line-height: 1; }
.stat-value em { color: var(--green); font-style: normal; }
.stat-label { font-size: 12px; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.stat-change {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; padding: 3px 8px;
  background: rgba(0,255,135,.07); border: 1px solid rgba(0,255,135,.12);
  border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--green);
}

/* ── Ecosystem ── */
#ecosystem { background: var(--bg); }
.ecosystem-header { text-align: center; margin-bottom: 64px; }
.ecosystem-header .section-desc { margin: 0 auto; }
.ecosystem-header .section-eyebrow { justify-content: center; }
.eco-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.eco-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; display: flex; gap: 24px;
  transition: all .25s; position: relative; overflow: hidden; cursor: pointer;
}
.eco-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--eco-color, var(--green)), transparent); opacity: 0; transition: opacity .3s; }
.eco-card:hover { border-color: rgba(255,255,255,.12); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.eco-card:hover::before { opacity: 1; }
.eco-icon-wrap { width: 56px; height: 56px; flex-shrink: 0; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; background: var(--eco-bg, rgba(0,255,135,.07)); border: 1px solid var(--eco-border, rgba(0,255,135,.15)); transition: all .3s; }
.eco-card:hover .eco-icon-wrap { box-shadow: 0 0 24px var(--eco-glow, rgba(0,255,135,.2)); }
.eco-content { flex: 1; }
.eco-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -.02em; }
.eco-desc  { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }
.eco-links { display: flex; gap: 8px; }
.eco-link  { padding: 6px 14px; border: 1px solid var(--border); border-radius: 7px; font-size: 12px; font-weight: 600; color: var(--text-2); transition: all .2s; cursor: pointer; }
.eco-link:hover { border-color: rgba(255,255,255,.2); color: var(--text); background: var(--surface); }
.eco-status { margin-left: auto; align-self: flex-start; flex-shrink: 0; }
.eco-badge  { padding: 4px 10px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.eco-live   { background: rgba(0,255,135,.08); color: var(--green); border: 1px solid rgba(0,255,135,.2); }
.eco-beta   { background: rgba(251,146,60,.08); color: #fb923c;    border: 1px solid rgba(251,146,60,.2); }
.eco-soon   { background: rgba(124,58,237,.08); color: #a78bfa;    border: 1px solid rgba(124,58,237,.2); }

/* ── CTA ── */
#cta { text-align: center; background: linear-gradient(180deg, var(--bg) 0%, #060608 100%); position: relative; overflow: hidden; }
.cta-glow-1 { position: absolute; top: 50%; left: 30%; transform: translate(-50%,-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(0,255,135,.07), transparent 70%); pointer-events: none; }
.cta-glow-2 { position: absolute; top: 50%; left: 70%; transform: translate(-50%,-50%); width: 400px; height: 300px; background: radial-gradient(ellipse, rgba(124,58,237,.08), transparent 70%); pointer-events: none; }
.cta-box {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 24px; padding: 80px 60px; position: relative; z-index: 1; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,255,135,.4), rgba(124,58,237,.4), transparent); }
.cta-title { font-size: clamp(36px, 5vw, 58px); font-weight: 800; letter-spacing: -2px; color: var(--text); margin-bottom: 16px; }
.cta-sub   { font-size: 18px; color: var(--text-2); margin-bottom: 40px; }
.cta-btns  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 0 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand { max-width: 280px; }
.footer-logo  { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.footer-logo-mark { width: 28px; height: 28px; background: linear-gradient(135deg, var(--green), var(--purple-mid)); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: #000; }
.footer-tagline { font-size: 13px; color: var(--text-3); line-height: 1.6; }
.footer-built { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: rgba(0,255,135,.06); border: 1px solid rgba(0,255,135,.12); border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--green); letter-spacing: .03em; }
.footer-links-col { min-width: 120px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer-link-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-link-list a { font-size: 14px; color: var(--text-2); transition: color .2s; }
.footer-link-list a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12.5px; color: var(--text-3); }
.footer-socials { display: flex; gap: 8px; }
.social-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; cursor: pointer; transition: all .2s; font-size: 15px; color: var(--text-2); text-decoration: none; }
.social-btn:hover { background: var(--surface-2); border-color: rgba(0,255,135,.25); color: var(--green); box-shadow: 0 0 12px rgba(0,255,135,.1); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s cubic-bezier(.16,1,.3,1) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }
.count-up { transition: all .3s; }

/* ── Landing responsive ── */
@media (max-width: 1024px) {
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .artifacts-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #hero             { padding-top: 64px; }
  .protocol-grid    { grid-template-columns: 1fr; }
  .eco-grid         { grid-template-columns: 1fr; }
  .features-grid    { grid-template-columns: 1fr; }
  .artifacts-grid   { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .hero-divider     { display: none; }
  .hero-stats       { gap: 24px; }
  .cta-box          { padding: 48px 24px; }
  .activity-row     { grid-template-columns: 70px 1fr 90px 60px; }
  .activity-row > *:nth-child(3) { display: none; }
  .footer-top       { flex-direction: column; }
}
@media (max-width: 620px) {
  .exp-table thead th:nth-child(5), .exp-table tbody td:nth-child(5) { display: none; }
  .exp-controls     { flex-direction: column; align-items: flex-start; }
  .exp-search-box   { max-width: 100%; width: 100%; }
}
@media (max-width: 480px) {
  .section          { padding: 80px 0; }
  .stats-grid       { grid-template-columns: 1fr; }
}
