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

:root {
  --bg: #0c0c0c;
  --bg2: #111111;
  --card: #141414;
  --card2: #1a1a1a;
  --border: #222222;
  --border2: #2a2a2a;
  --text: #ffffff;
  --text2: #888888;
  --text3: #555555;
  --green: #9EEA0E;
  --green2: #00ff88;
  --orange: #ff8c00;
  --red: #ff3d3d;
  --yellow: #ffd600;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --font: 'Space Grotesk', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #9EEA0E;
  border-radius: 2px;
}

* {
  scrollbar-color: #9EEA0E var(--bg);
  scrollbar-width: thin;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 5vw, 60px);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #0c0c0c;
  font-family: var(--mono);
  flex-shrink: 0;
}

.logo span {
  color: var(--green);
}

.logo-text {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.5px;
  color: #9EEA0E;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 13px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  color: #0c0c0c;
  background: var(--green);
  font-weight: 600;
}

.nav-links a.active:hover {
  background: var(--green);
  color: #0c0c0c;
}

.btn {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}

.btn-ghost {
  background: transparent;
  color: var(--text2);
  padding: 8px 16px;
  border: 1px solid var(--border2);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: #444;
}

.btn-primary {
  background: var(--green);
  color: #0c0c0c;
  padding: 8px 18px;
  border: 1px solid transparent;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(158, 234, 14, 0.15);
}

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
}

/* ── NAV RIGHT ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── VIEW TOGGLE ── */
.view-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.vt-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}

.vt-personal {
  color: var(--green);
}

.vt-projects {
  color: var(--text3);
}

.vt-track {
  width: 36px;
  height: 20px;
  background: rgba(158, 234, 14, 0.15);
  border: 1px solid rgba(158, 234, 14, 0.3);
  border-radius: 10px;
  position: relative;
  transition: background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

.vt-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--text);
}

.mobile-menu a.active {
  color: var(--green);
  font-weight: 600;
}

.mobile-menu a:last-child {
  border: none;
}

.mobile-menu .btn-primary {
  margin-top: 12px;
  justify-content: center;
  padding: 12px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px clamp(16px, 5vw, 60px) 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-40%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(158, 234, 14, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(158, 234, 14, 0.1);
  border: 1px solid rgba(158, 234, 14, 0.28);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(158, 234, 14, 0.08);
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(158, 234, 14, 0.12) 20%,
    rgba(158, 234, 14, 0.55) 50%,
    rgba(158, 234, 14, 0.12) 80%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: badge-shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
  filter: blur(1px);
}

@keyframes badge-shimmer {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(158, 234, 14, 0.4);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(158, 234, 14, 0);
  }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-wrap: pretty;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-cta-label {
  font-family: var(--mono);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero-stat-value {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(158, 234, 14, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.phone {
  width: 260px;
  background: #111;
  border-radius: 40px;
  border: 2px solid #444;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(158, 234, 14, 0.12) inset;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  background: #000;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.phone-time {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}

.phone-status {
  display: flex;
  gap: 4px;
  align-items: center;
}

.phone-status span {
  width: 12px;
  height: 5px;
  background: var(--green);
  border-radius: 2px;
}

.phone-screen {
  background: var(--bg2);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 520px;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 8px;
}

.phone-header-title {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
}

.live-badge {
  background: rgba(158, 234, 14, 0.15);
  border: 1px solid rgba(158, 234, 14, 0.3);
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.alert-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  border-left: 3px solid var(--orange);
  animation: slideIn 0.4s ease both;
}

.alert-card.critical {
  border-left-color: var(--red);
}

.alert-card.warning {
  border-left-color: var(--yellow);
}

.alert-card.good {
  border-left-color: var(--green2);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-card:nth-child(2) {
  animation-delay: 0.1s;
}

.alert-card:nth-child(3) {
  animation-delay: 0.2s;
}

.alert-card:nth-child(4) {
  animation-delay: 0.3s;
}

.alert-card:nth-child(5) {
  animation-delay: 0.4s;
}

.alert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-token {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--green);
}

.alert-badge {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-critical {
  background: rgba(255, 61, 61, 0.2);
  color: var(--red);
}

.badge-warning {
  background: rgba(255, 140, 0, 0.2);
  color: var(--orange);
}

.badge-alert {
  background: rgba(255, 214, 0, 0.2);
  color: var(--yellow);
}

.badge-ok {
  background: rgba(0, 255, 136, 0.15);
  color: var(--green2);
}

.alert-title {
  font-size: 10px;
  font-weight: 600;
  margin: 3px 0 2px;
  color: var(--text);
}

.alert-meta {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--text3);
}

.mini-bar {
  height: 2px;
  border-radius: 1px;
  margin-top: 5px;
}

.phone-tabbar {
  background: #0e0e0e;
  border-top: 1px solid var(--border);
  display: flex;
  padding: 8px 0 4px;
}

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8px;
  color: var(--text3);
}

.tab-item.active {
  color: var(--green);
}

.tab-icon {
  font-size: 13px;
}

/* ── SECTION COMMON ── */
section {
  padding: 100px clamp(16px, 5vw, 60px);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text1);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-grid.reverse {
  direction: rtl;
}

.feature-grid.reverse>* {
  direction: ltr;
}

/* Feature bullets */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.feature-item:hover {
  border-color: #333;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: none;
  border: none;
}

.feature-icon.feed-icon-img {
  width: 56px;
  height: 56px;
}

.feed-warning-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.fi-green,
.fi-orange,
.fi-red,
.fi-purple,
.fi-blue {
  background: none;
}

.feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}

/* ── APP PREVIEW CARDS ── */
.app-preview {
  background: var(--card);
  border: 1.5px solid #3a3a3a;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(158, 234, 14, 0.06);
}

.app-preview-header {
  background: var(--card2);
  border-bottom: 1px solid #3a3a3a;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-preview-title {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.app-preview-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Data row */
.data-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  gap: 10px;
}

.dr-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.dr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dr-label {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dr-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
}

.dr-bar-wrap {
  flex: 1;
}

.dr-bar {
  height: 3px;
  border-radius: 2px;
  position: relative;
  background: #222;
}

.dr-bar-fill {
  height: 100%;
  border-radius: 2px;
}

.dr-val {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.dr-status {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.status-green {
  background: rgba(0, 255, 136, 0.15);
  color: var(--green2);
}

.status-orange {
  background: rgba(255, 140, 0, 0.15);
  color: var(--orange);
}

.status-red {
  background: rgba(255, 61, 61, 0.15);
  color: var(--red);
}

.status-yellow {
  background: rgba(255, 214, 0, 0.12);
  color: var(--yellow);
}

.status-gray {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text2);
}

/* Score circle */
.score-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.score-ring svg {
  transform: rotate(-90deg);
}

.score-ring-value {
  position: absolute;
  text-align: center;
  font-family: var(--mono);
}

.score-ring-value .num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.score-ring-value .lbl {
  font-size: 9px;
  color: var(--text3);
  letter-spacing: 0.05em;
}

/* Token card */
.token-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.token-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: #0c0c0c;
  flex-shrink: 0;
}

.token-info {
  flex: 1;
  min-width: 0;
}

.token-name {
  font-size: 13px;
  font-weight: 600;
}

.token-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
}

.token-score {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}

.token-risk {
  font-size: 10px;
  font-weight: 600;
  text-align: right;
}

/* Gauge */
.gauge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.gauge-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.gauge-label {
  font-size: 10px;
  color: var(--text2);
  margin-bottom: 8px;
}

.gauge-val {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}

.gauge-status {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

/* Calc preview */
.calc-display {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 8px;
}

.calc-big {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.calc-label {
  font-size: 12px;
  color: var(--text2);
  margin-top: 6px;
}

.calc-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.calc-meta-item {
  text-align: center;
}

.calc-meta-label {
  font-size: 10px;
  color: var(--text3);
  margin-bottom: 3px;
}

.calc-meta-val {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}

/* Whale rows */
.whale-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 7px;
}

.whale-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  width: 14px;
  flex-shrink: 0;
}

.whale-bar-wrap {
  flex: 1;
}

.whale-bar {
  height: 4px;
  border-radius: 2px;
}

.whale-impact {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  width: 42px;
  text-align: right;
  flex-shrink: 0;
}

/* Flag row */
.flag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
}

.flag-row:last-child {
  border: none;
}

.flag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.flag-name {
  font-size: 12px;
  color: var(--text2);
  flex: 1;
  padding: 0 10px;
}

/* summary bar */
.summary-bar {
  display: flex;
  gap: 8px;
}

.summary-box {
  flex: 1;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.summary-num {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
}

.summary-lbl {
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ── FEED SECTION ── */
#feed {
  background: var(--bg);
}

.feed-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feed-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 3px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}

.feed-card:hover {
  transform: translateX(3px);
}

.feed-card.fc-critical {
  border-left-color: var(--red);
}

.feed-card.fc-warning {
  border-left-color: var(--orange);
}

.feed-card.fc-alert {
  border-left-color: var(--yellow);
}

.feed-card.fc-ok {
  border-left-color: var(--green2);
}

.feed-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.feed-token {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.feed-chain {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text3);
  background: var(--card2);
  padding: 1px 6px;
  border-radius: 4px;
}

.feed-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feed-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  display: flex;
  gap: 12px;
}

.feed-bar {
  height: 2px;
  margin-top: 8px;
  border-radius: 1px;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px clamp(16px, 5vw, 60px);
}

.stats-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-box {
  text-align: center;
}

.stat-num {
  font-family: var(--mono);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text2);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px clamp(16px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(158, 234, 14, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-cta-label {
  font-family: var(--mono);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 60px clamp(16px, 5vw, 60px) 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  max-width: 280px;
  margin-top: 14px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text3);
}

.footer-bottom a {
  color: var(--text3);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--text2);
}

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0 clamp(16px, 5vw, 60px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-grid.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-actions {
    align-items: center;
  }

  @keyframes btn-glow-pulse {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(158, 234, 14, 0.5),
                  0 0 12px rgba(158, 234, 14, 0.2);
      opacity: 1;
    }
    50% {
      box-shadow: 0 0 0 10px rgba(158, 234, 14, 0),
                  0 0 28px rgba(158, 234, 14, 0.35);
      opacity: 0.88;
    }
  }

  .hero .btn-primary {
    animation: btn-glow-pulse 2.6s ease-in-out infinite;
  }

  .phone-wrap {
    order: 1;
  }

  .phone {
    width: 280px;
  }

  .phone-screen {
    min-height: 380px;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: none;
  }

  .vt-label {
    display: none;
  }

  .vt-personal {
    display: inline;
  }

  .projects-page .vt-personal {
    display: none;
  }

  .projects-page .vt-projects {
    display: inline;
  }

  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col h5,
  .footer-col a {
    text-align: center;
  }

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

  .summary-bar {
    flex-wrap: wrap;
  }

  .gauge-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 64px clamp(16px, 4vw, 32px);
  }

  .section-tag {
    font-size: 16px;
    justify-content: center;
  }

  .section-title,
  .section-desc {
    text-align: center;
    max-width: 100%;
  }

  .app-preview {
    max-width: 280px;
    margin: 0 auto;
  }

  .app-preview-body {
    padding: 12px;
    gap: 6px;
    max-height: 253px;
    overflow: hidden;
  }

  #back-to-top {
    right: 4px !important;
  }

  #back-to-top img {
    width: 52px !important;
    height: 40px !important;
  }

  /* ── MOBILE-ONLY TWEAKS ── */

  /* Nav: larger logo text */
  nav .logo-text {
    font-size: 16px;
  }

  /* Mobile menu: larger link font */
  .mobile-menu a {
    font-size: 17px;
  }

  /* Hero: match CTA label size to button text */
  .hero-cta-label {
    font-size: 15px;
    letter-spacing: 0.06em;
  }

  /* CTA label: match hero-cta-label mobile size */
  .cta-cta-label {
    font-size: 15px;
    letter-spacing: 0.06em;
  }

  /* Sections: slightly larger titles */
  .section-title {
    font-size: clamp(30px, 7vw, 40px);
  }

  /* Section tag: remove the dash/line before text */
  .section-tag::before {
    display: none;
  }

  /* Cards: vertically center icon relative to entire text block */
  .feature-item {
    align-items: center;
  }

  /* Footer: larger logo image */
  footer .logo img {
    height: 46px;
  }

  /* Footer: larger logo text */
  footer .logo-text {
    font-size: 17px;
  }

  /* Footer: larger body text */
  .footer-brand p {
    font-size: 15px;
  }

  .footer-col a {
    font-size: 15px;
  }

  .footer-col h5 {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    letter-spacing: -1px;
  }

  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .phone {
    width: 260px;
  }

  .phone-screen {
    min-height: 360px;
  }

  .calc-big {
    font-size: 36px;
  }
}

/* Tweaks panel */
#tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 260px;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 18px;
  z-index: 2000;
  display: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

#tweaks-panel.visible {
  display: block;
}

#tweaks-panel h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: 0.03em;
}

.tweak-row {
  margin-bottom: 14px;
}

.tweak-label {
  font-size: 11px;
  color: var(--text2);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.tweak-label span {
  font-family: var(--mono);
  color: var(--green);
}

input[type=range] {
  width: 100%;
  accent-color: var(--green);
  background: transparent;
  cursor: pointer;
}

.tweak-select {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 6px 10px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 12px;
  cursor: pointer;
}

.tweak-colors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.tweak-swatch {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.tweak-swatch.active {
  border-color: white;
  transform: scale(1.15);
}

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  line-height: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-3px);
}

#back-to-top img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* ════════════════════════════════════════════
   PROJECTS PAGE — LIGHT THEME
   ════════════════════════════════════════════ */
.projects-page {
  --pg-bg:       #f5f6f8;
  --pg-bg2:      #ffffff;
  --pg-card:     #ffffff;
  --pg-border:   #e2e5ea;
  --pg-text:     #0f1117;
  --pg-text2:    #5a6270;
  --pg-text3:    #9ba3af;
  --pg-green:    #9EEA0E;
  --pg-green-dk: #6ab300;
  --pg-accent:   #0f1117;

  background: var(--pg-bg);
  color: var(--pg-text);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  scrollbar-color: var(--pg-green) var(--pg-bg);
  scrollbar-width: thin;
}

.projects-page::-webkit-scrollbar-thumb {
  background: var(--pg-green);
}

/* Nav — light override */
.projects-page nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--pg-border);
}

.projects-page .logo-text {
  color: var(--pg-accent);
}

.projects-page .nav-links a {
  color: var(--pg-text2);
}

.projects-page .nav-links a:hover {
  color: var(--pg-text);
  background: rgba(0, 0, 0, 0.04);
}

.projects-page .nav-links a.active {
  color: #0c0c0c;
  background: var(--pg-green);
  font-weight: 600;
}

.projects-page .nav-links a.active:hover {
  background: var(--pg-green);
  color: #0c0c0c;
}

.projects-page .mobile-menu a.active {
  color: var(--pg-green-dk);
  font-weight: 600;
}

.projects-page .vt-personal {
  color: var(--pg-text3);
}

.projects-page .vt-projects {
  color: var(--pg-green-dk);
}

.projects-page .vt-track {
  background: rgba(158, 234, 14, 0.2);
  border-color: rgba(158, 234, 14, 0.5);
}

.projects-page .vt-thumb {
  background: var(--pg-green-dk);
  transform: translateX(16px);
}

.projects-page .burger span {
  background: var(--pg-accent);
}

.projects-page .mobile-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--pg-border);
}

.projects-page .mobile-menu a {
  color: var(--pg-text2);
  border-color: var(--pg-border);
}

.projects-page .mobile-menu a:hover {
  color: var(--pg-text);
}

/* Projects hero */
.proj-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(16px, 5vw, 60px) 80px;
  position: relative;
  overflow: hidden;
  background: var(--pg-bg);
}

.proj-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(158, 234, 14, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.proj-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.proj-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(158, 234, 14, 0.12);
  border: 1px solid rgba(158, 234, 14, 0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--pg-green-dk);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.proj-badge-dot {
  font-size: 13px;
  font-weight: 700;
  color: var(--pg-green-dk);
  line-height: 1;
}

.proj-hero h1 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--pg-text);
  margin-bottom: 18px;
}

.proj-hero h1 em {
  font-style: normal;
  color: var(--pg-green-dk);
}

.proj-hero p {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--pg-text2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.proj-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.proj-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pg-accent);
  color: #9EEA0E;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.proj-btn-primary:hover {
  background: #9EEA0E;
  color: #000;
  transform: translateY(-1px);
}

.proj-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pg-text2);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--pg-border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.proj-btn-ghost:hover {
  border-color: #b0b8c4;
  color: var(--pg-text);
}

/* Dashboard mockup */
.proj-dashboard-mock {
  background: var(--pg-card);
  border: 1px solid var(--pg-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.proj-dash-topbar {
  background: var(--pg-bg);
  border-bottom: 1px solid var(--pg-border);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proj-dash-title {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--pg-text);
}

.proj-verified-badge {
  background: rgba(158, 234, 14, 0.15);
  border: 1px solid rgba(158, 234, 14, 0.4);
  color: var(--pg-green-dk);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}

.proj-dash-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proj-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.proj-stat-card {
  background: var(--pg-bg);
  border: 1px solid var(--pg-border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.proj-stat-num {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--pg-text);
  line-height: 1;
}

.proj-stat-lbl {
  font-size: 10px;
  color: var(--pg-text3);
  margin-top: 4px;
}

.proj-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.proj-token-badge {
  background: var(--pg-bg);
  border: 1px solid var(--pg-border);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 120px;
}

.proj-token-avatar {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}

.proj-token-info {
  flex: 1;
  min-width: 0;
}

.proj-token-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--pg-text);
}

.proj-token-score {
  font-family: var(--mono);
  font-size: 9px;
}

.proj-score-bar-wrap {
  background: var(--pg-bg);
  border: 1px solid var(--pg-border);
  border-radius: 10px;
  padding: 12px 14px;
}

.proj-score-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--pg-text2);
  margin-bottom: 8px;
  font-weight: 500;
}

.proj-score-bar-track {
  height: 6px;
  background: var(--pg-border);
  border-radius: 3px;
  overflow: hidden;
}

.proj-score-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--pg-green-dk);
}

/* ── PROJECTS SECTIONS ── */
.proj-section {
  padding: 100px clamp(16px, 5vw, 60px);
}

.proj-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.proj-section-alt {
  background: var(--pg-bg2);
}

.proj-section-dark {
  background: var(--pg-accent);
  color: #fff;
}

.proj-tag {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pg-green-dk);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.proj-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--pg-text);
}

.proj-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--pg-text2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.proj-grid.reverse {
  direction: rtl;
}

.proj-grid.reverse > * {
  direction: ltr;
}

.proj-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.proj-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--pg-bg);
  border: 1px solid var(--pg-border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.proj-feature-item:hover {
  border-color: rgba(158, 234, 14, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.proj-feature-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border: none;
}

.proj-feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--pg-text);
  margin-bottom: 3px;
}

.proj-feature-item p {
  font-size: 12px;
  color: var(--pg-text2);
  line-height: 1.55;
}

/* Divider */
.proj-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pg-border), transparent);
  margin: 0 clamp(16px, 5vw, 60px);
}

/* About illustration card */
.proj-about-card {
  background: var(--pg-card);
  border: 1px solid var(--pg-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.proj-about-header {
  background: var(--pg-accent);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.proj-about-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--pg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: #0f1117;
  flex-shrink: 0;
}

.proj-about-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.proj-about-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--mono);
  margin-top: 2px;
}

.proj-about-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proj-about-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--pg-border);
}

.proj-about-row:last-child {
  border: none;
}

.proj-about-key {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pg-text3);
  letter-spacing: 0.05em;
}

.proj-about-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--pg-text);
}

.proj-status-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.proj-status-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pg-green-dk);
  display: inline-block;
}

/* Widget showcase */
.proj-widget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proj-widget-grid .proj-widget-card:last-child:nth-child(3n - 2) {
  grid-column: 2;
}

.proj-widget-card {
  background: var(--pg-card);
  border: 1px solid var(--pg-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
}

.proj-widget-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(158, 234, 14, 0.4);
  transform: translateY(-3px);
}

.proj-widget-img-wrap {
  padding: 12px 12px 0;
}

.proj-widget-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.proj-widget-text {
  padding: 14px 16px 16px;
}

.proj-widget-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--pg-text);
  margin-bottom: 5px;
}

.proj-widget-desc {
  font-size: 11px;
  color: var(--pg-text2);
  line-height: 1.55;
}

/* Onboarding steps */
.proj-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proj-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}

.proj-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: var(--pg-border);
}

.proj-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pg-green-dk);
  color: #fff;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.proj-step-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--pg-text);
  margin-bottom: 5px;
  margin-top: 8px;
}

.proj-step-body p {
  font-size: 13px;
  color: var(--pg-text2);
  line-height: 1.6;
}

/* Badges grid */
.proj-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proj-badge-card {
  background: var(--pg-card);
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.proj-badge-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  border-color: rgba(158, 234, 14, 0.35);
}

.proj-badge-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
}

.proj-badge-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--pg-text);
  margin-bottom: 4px;
}

.proj-badge-desc {
  font-size: 12px;
  color: var(--pg-text3);
  line-height: 1.5;
}

/* CTA — projects */
.proj-cta {
  padding: 100px clamp(16px, 5vw, 60px);
  background: var(--pg-accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.proj-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(158, 234, 14, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.proj-cta h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.proj-cta h2 em {
  font-style: normal;
  color: var(--pg-green);
}

.proj-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.65;
  position: relative;
}

.proj-cta-label {
  font-family: var(--mono);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--pg-green);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.proj-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

/* Footer — projects light */
.projects-page footer {
  background: var(--pg-bg2);
  border-top: 1px solid var(--pg-border);
}

.projects-page .footer-brand p,
.projects-page .footer-col a,
.projects-page .footer-bottom {
  color: var(--pg-text2);
}

.projects-page .footer-col h5 {
  color: var(--pg-text3);
}

.projects-page .footer-col a:hover {
  color: var(--pg-text);
}

.projects-page .footer-bottom {
  border-color: var(--pg-border);
}

/* ── PROJECTS RESPONSIVE ── */
@media (max-width: 1024px) {
  .proj-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proj-grid.reverse {
    direction: ltr;
  }

  .proj-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proj-widget-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proj-widget-grid .proj-widget-card:last-child:nth-child(3n - 2) {
    grid-column: auto;
  }

  .proj-widget-grid .proj-widget-card:last-child:nth-child(2n - 1) {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .proj-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proj-hero-inner > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Hero: constrain dashboard mock width on mobile */
  .proj-hero-inner > div:last-child {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }

  .proj-hero h1,
  .proj-hero p {
    text-align: center;
    max-width: 100%;
  }

  .proj-hero-actions {
    align-items: center;
  }

  .proj-stat-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .proj-section {
    padding: 64px clamp(16px, 4vw, 32px);
  }

  /* Section labels: 16px on mobile */
  .proj-tag {
    font-size: 16px;
  }

  #about .proj-tag,
  #onboarding .proj-tag,
  #dashboard .proj-tag {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* About: center title and desc; constrain card column */
  #about .proj-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #about .proj-title,
  #about .proj-desc {
    text-align: center;
  }

  #about .proj-grid > div:last-child {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }

  /* Onboarding: center title/desc; constrain card column */
  #onboarding .proj-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #onboarding .proj-title,
  #onboarding .proj-desc {
    text-align: center;
  }

  #onboarding .proj-grid > div:last-child {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }

  /* Dashboard: text column centered, app card column comes second */
  #dashboard .proj-grid {
    display: flex;
    flex-direction: column;
  }

  #dashboard .proj-grid > div:first-child {
    order: 2;
  }

  #dashboard .proj-grid > div:last-child {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #dashboard .proj-title,
  #dashboard .proj-desc {
    text-align: center;
  }

  /* About & Dashboard: vertically center icons in cards */
  #about .proj-feature-item,
  #dashboard .proj-feature-item {
    align-items: center;
  }

  /* About & Dashboard: left-align text inside feature cards */
  #about .proj-feature-item h4,
  #about .proj-feature-item p,
  #dashboard .proj-feature-item h4,
  #dashboard .proj-feature-item p {
    text-align: left;
  }

  /* Onboarding: left-align step text */
  .proj-step-body h4,
  .proj-step-body p {
    text-align: left;
  }

  /* CTA: scale up label on mobile */
  .proj-cta-label {
    font-size: 15px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 480px) {
  .proj-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proj-widget-grid {
    grid-template-columns: 1fr;
  }

  .proj-widget-grid .proj-widget-card:last-child:nth-child(2n - 1) {
    grid-column: auto;
    max-width: 100%;
    justify-self: auto;
  }

  .proj-stat-row {
    grid-template-columns: 1fr 1fr;
  }

}

/* ════════════════════════════════════════════
   PROJECT VERIFICATION SECTION (index.html)
   ════════════════════════════════════════════ */
#verify { padding: 0; }

.pv-wrap {
  padding: 72px clamp(16px, 5vw, 60px) 80px;
  position: relative;
  overflow: hidden;
}

.pv-wrap::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(158, 234, 14, 0.055) 0%, transparent 65%);
  pointer-events: none;
}

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

.pv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .pv-layout { grid-template-columns: 1fr; gap: 24px; }
  .pv-layout .section-tag { justify-content: center; }
  .pv-title  { text-align: center; }
  .pv-desc   { text-align: center; max-width: 100%; }
  .pv-pills  { justify-content: center; }

  .pv-copy-body { display: none; }
  .pv-copy-body.open { display: block; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }

  .pv-info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
  }

  .pv-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--border2);
    background: var(--card2);
    color: var(--text2);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    font-family: var(--mono);
    line-height: 1;
  }

  .pv-info-btn:hover,
  .pv-info-btn.active {
    border-color: var(--green);
    color: var(--green);
    background: rgba(158,234,14,0.08);
  }
}

@media (min-width: 901px) {
  .pv-info-row { display: none; }
  .pv-copy-body { display: block !important; }
}

.pv-title em { font-style: normal; color: var(--green); }

.pv-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.pv-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pv-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
}

.pv-list li::before {
  content: '—';
  color: var(--green);
  font-family: var(--mono);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pv-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pv-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.pv-pill.green  { background: rgba(106,179,0,0.12);  color: #6ab300; border: 1px solid rgba(106,179,0,0.25); }
.pv-pill.orange { background: rgba(255,140,0,0.12);  color: #ff8c00; border: 1px solid rgba(255,140,0,0.25); }
.pv-pill.red    { background: rgba(255,61,61,0.10);  color: #ff3d3d; border: 1px solid rgba(255,61,61,0.22); }

.pv-checker {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 500px) { .pv-checker { padding: 24px 18px 20px; } }

.pv-checker::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.45;
}

.pv-checker-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 5px;
}

.pv-checker-sub {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 24px;
}

.pv-input-row {
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .pv-checker-title { text-align: center; }
  .pv-checker-sub   { text-align: center; }
  .pv-input-row     { flex-direction: column; }
  .pv-btn           { justify-content: center; }
}

.pv-input-wrap {
  flex: 1;
  position: relative;
}

.pv-search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
  opacity: 0.5;
}

.pv-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 16px 13px 38px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pv-input::placeholder { color: var(--text3); font-weight: 400; }

.pv-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(158, 234, 14, 0.09);
}

.pv-btn {
  padding: 13px 24px;
  background: var(--green);
  color: #0c0c0c;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.18s, box-shadow 0.25s;
}

.pv-btn:hover:not(:disabled) {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(158, 234, 14, 0.16);
}

.pv-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.pv-spinner {
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: pv-spin 0.65s linear infinite;
  display: none;
}

.pv-btn.loading .pv-spinner { display: block; }
.pv-btn.loading .pv-btn-label { display: none; }

@keyframes pv-spin { to { transform: rotate(360deg); } }

.pv-hint {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.03em;
}

.pv-hint span { color: var(--text2); }

.pv-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.pv-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.pv-modal {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.28s ease;
  opacity: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border2) transparent;
}

.pv-modal-overlay.open .pv-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.pv-modal-top-bar {
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--green), rgba(158,234,14,0.3));
}

.pv-modal-top-bar.bar-warning {
  background: linear-gradient(90deg, #ff3d3d, rgba(255,61,61,0.3));
}

.pv-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
  margin-bottom: 20px;
}

.pv-modal-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--text3);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
}

.pv-modal-close:hover { background: var(--card2); color: var(--text); }

.pv-modal-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 13px;
  border-radius: 20px;
}

.pv-modal-status.verified {
  background: rgba(158,234,14,0.12);
  color: var(--green);
  border: 1px solid rgba(158,234,14,0.28);
}

.pv-modal-status.unverified {
  background: rgba(255,61,61,0.10);
  color: #ff3d3d;
  border: 1px solid rgba(255,61,61,0.25);
}

.pv-modal-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pv-pulse 2s ease-in-out infinite;
}

@keyframes pv-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.65); }
}

.pv-modal-body { padding: 0 24px 28px; }

.pv-modal-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--border);
}

.pv-modal-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  color: #0c0c0c;
}

.pv-modal-token-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.pv-modal-token-ticker {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text3);
  margin-top: 3px;
}

.pv-modal-chain {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.pv-modal-chain.chain-eth   { background: rgba(98,126,234,0.15); color: #8fa1f0; border: 1px solid rgba(98,126,234,0.25); }
.pv-modal-chain.chain-bsc   { background: rgba(240,185,11,0.12);  color: #f0b90b; border: 1px solid rgba(240,185,11,0.25); }
.pv-modal-chain.chain-sol   { background: rgba(153,69,255,0.12);  color: #9945ff; border: 1px solid rgba(153,69,255,0.25); }
.pv-modal-chain.chain-matic { background: rgba(130,71,229,0.12);  color: #8247e5; border: 1px solid rgba(130,71,229,0.25); }
.pv-modal-chain.chain-arb   { background: rgba(40,160,240,0.12);  color: #28a0f0; border: 1px solid rgba(40,160,240,0.25); }
.pv-modal-chain.chain-xrp   { background: rgba(0,160,220,0.12);   color: #00a0dc; border: 1px solid rgba(0,160,220,0.25); }
.pv-modal-chain.chain-trx   { background: rgba(255,6,10,0.10);    color: #ff3d3d; border: 1px solid rgba(255,6,10,0.22); }
.pv-modal-chain.chain-zec   { background: rgba(249,177,11,0.12);  color: #f9b10b; border: 1px solid rgba(249,177,11,0.25); }
.pv-modal-chain.chain-xmr   { background: rgba(255,102,0,0.12);   color: #ff6600; border: 1px solid rgba(255,102,0,0.25); }

.pv-modal-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--border);
}

.pv-modal-score-ring {
  position: relative;
  width: 72px; height: 72px;
  flex-shrink: 0;
}

.pv-modal-score-ring canvas {
  position: absolute; top: 0; left: 0;
}

.pv-modal-score-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.pv-modal-score-num {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.pv-modal-score-max {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text3);
  margin-top: 1px;
}

.pv-modal-score-meta { flex: 1; }

.pv-modal-score-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pv-modal-score-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

.tag-safe   { background: rgba(106,179,0,0.14); color: #6ab300; border: 1px solid rgba(106,179,0,0.28); }
.tag-medium { background: rgba(255,140,0,0.14); color: #ff8c00; border: 1px solid rgba(255,140,0,0.28); }
.tag-risk   { background: rgba(255,61,61,0.12); color: #ff3d3d; border: 1px solid rgba(255,61,61,0.25); }

.pv-modal-badges-title {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  padding: 16px 0 10px;
}

.pv-modal-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.pv-modal-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  background: rgba(158,234,14,0.09);
  color: var(--green);
  border: 1px solid rgba(158,234,14,0.22);
}

.pv-modal-notfound {
  text-align: center;
  padding: 28px 0 8px;
}

.pv-modal-notfound-icon {
  font-size: 42px;
  margin-bottom: 14px;
  opacity: 0.6;
}

.pv-modal-notfound-title {
  font-size: 17px;
  font-weight: 700;
  color: #ff3d3d;
  margin-bottom: 8px;
}

.pv-modal-notfound-desc {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
}

.pv-modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  margin-top: 22px;
  background: var(--green);
  color: #0c0c0c;
  border: none;
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.18s, box-shadow 0.25s;
}

.pv-modal-cta:hover {
  background: transparent;
  color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green), 0 6px 20px rgba(158,234,14,0.15);
  transform: translateY(-1px);
}

.pv-modal-cta.cta-disabled {
  background: var(--card2);
  color: var(--text3);
  cursor: default;
  pointer-events: none;
}

/* ════════════════════════════════════════════
   WORKER VERIFICATION PAGE (project-verification.html)
   ════════════════════════════════════════════ */
.wv-page {
  padding-top: 64px;
  min-height: 100vh;
}

.wv-hero {
  padding: 72px clamp(16px, 5vw, 60px) 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.wv-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(158, 234, 14, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.wv-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 61, 61, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.wv-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 61, 61, 0.1);
  border: 1px solid rgba(255, 61, 61, 0.25);
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.wv-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-red 1.8s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.wv-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.wv-hero-title em {
  font-style: normal;
  color: var(--green);
}

.wv-hero-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 48px;
}

.wv-threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 48px;
}

@media (max-width: 640px) {
  .wv-threat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.wv-threat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s;
}

.wv-threat-card:hover {
  border-color: rgba(255, 61, 61, 0.3);
  transform: translateY(-2px);
}

.wv-threat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
}

.wv-threat-icon.red { background: rgba(255, 61, 61, 0.12); }
.wv-threat-icon.orange { background: rgba(255, 140, 0, 0.12); }
.wv-threat-icon.yellow { background: rgba(255, 214, 0, 0.12); }

.wv-threat-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.wv-threat-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}

.wv-checker-wrap {
  padding: 0 clamp(16px, 5vw, 60px) 80px;
}

.wv-checker {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 40px 40px 36px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .wv-checker {
    padding: 28px 20px 24px;
  }
}

.wv-checker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.5;
}

.wv-checker-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.wv-checker-sub {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 28px;
}

.wv-platform-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.wv-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--card2);
  color: var(--text2);
  transition: all 0.2s;
  user-select: none;
}

.wv-tab:hover {
  border-color: #444;
  color: var(--text);
}

.wv-tab.active {
  background: rgba(158, 234, 14, 0.1);
  border-color: rgba(158, 234, 14, 0.35);
  color: var(--green);
}

.wv-tab svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.wv-input-row {
  display: flex;
  gap: 10px;
}

@media (max-width: 500px) {
  .wv-input-row {
    flex-direction: column;
  }
}

.wv-input-wrap {
  flex: 1;
  position: relative;
}

.wv-at {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  pointer-events: none;
  line-height: 1;
}

.wv-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 16px 13px 32px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wv-input::placeholder {
  color: var(--text3);
  font-weight: 400;
}

.wv-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(158, 234, 14, 0.1);
}

.wv-btn {
  padding: 13px 26px;
  background: var(--green);
  color: #0c0c0c;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wv-btn:hover:not(:disabled) {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(158, 234, 14, 0.18);
}

.wv-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.wv-btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.wv-btn.loading .wv-btn-spinner { display: block; }
.wv-btn.loading .wv-btn-text { display: none; }

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

.wv-result {
  margin-top: 24px;
  border-radius: 14px;
  padding: 22px 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.wv-result.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wv-result.result-verified {
  background: rgba(158, 234, 14, 0.07);
  border: 1px solid rgba(158, 234, 14, 0.25);
}

.wv-result.result-warning {
  background: rgba(255, 61, 61, 0.07);
  border: 1px solid rgba(255, 61, 61, 0.3);
}

.wv-result-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.wv-result-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.result-verified .wv-result-icon { background: rgba(158, 234, 14, 0.15); }
.result-warning .wv-result-icon { background: rgba(255, 61, 61, 0.15); }

.wv-result-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.result-verified .wv-result-title { color: var(--green); }
.result-warning .wv-result-title { color: var(--red); }

.wv-result-handle {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}

.wv-result-body {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.wv-result-body strong {
  color: var(--text);
  font-weight: 600;
}

.wv-member-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(158, 234, 14, 0.15);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.wv-member-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(158, 234, 14, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.wv-member-name {
  font-size: 14px;
  font-weight: 600;
}

.wv-member-role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  margin-top: 2px;
}

.wv-verified-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(158, 234, 14, 0.12);
  border: 1px solid rgba(158, 234, 14, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.wv-rules {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wv-rule {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 61, 61, 0.06);
  border: 1px solid rgba(255, 61, 61, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}

.wv-rule-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.wv-rule strong {
  color: var(--red);
  font-weight: 600;
}

.wv-notice {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  font-size: 12px;
  color: var(--text3);
  line-height: 1.6;
}

.wv-notice strong {
  color: var(--purple);
  font-weight: 600;
}

.wv-how {
  padding: 0 clamp(16px, 5vw, 60px) 80px;
}

.wv-how-inner {
  max-width: 960px;
  margin: 0 auto;
}

.wv-section-tag {
  display: inline-block;
  background: rgba(158, 234, 14, 0.1);
  border: 1px solid rgba(158, 234, 14, 0.2);
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.wv-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.wv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .wv-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.wv-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.wv-step:hover {
  border-color: rgba(158, 234, 14, 0.25);
  transform: translateY(-2px);
}

.wv-step-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.wv-step-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wv-step-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}

.wv-rules-section {
  padding: 0 clamp(16px, 5vw, 60px) 80px;
}

.wv-rules-inner {
  max-width: 960px;
  margin: 0 auto;
}

.wv-golden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 700px) {
  .wv-golden-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.wv-golden-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.wv-golden-card:hover {
  border-color: rgba(255, 61, 61, 0.25);
  transform: translateY(-2px);
}

.wv-golden-icon { font-size: 22px; margin-bottom: 14px; }

.wv-golden-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

.wv-golden-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}

.wv-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 clamp(16px, 5vw, 60px) 60px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.wv-report-strip {
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 0 clamp(16px, 5vw, 60px);
}

.wv-report-box {
  background: rgba(255, 61, 61, 0.05);
  border: 1px solid rgba(255, 61, 61, 0.2);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 600px) {
  .wv-report-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
  }
}

.wv-report-icon { font-size: 32px; flex-shrink: 0; }

.wv-report-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.wv-report-content p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}

.wv-report-btn {
  margin-left: auto;
  padding: 11px 22px;
  background: transparent;
  color: var(--red);
  border: 1px solid rgba(255, 61, 61, 0.4);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.wv-report-btn:hover {
  background: rgba(255, 61, 61, 0.1);
  border-color: var(--red);
}

@media (max-width: 600px) {
  .wv-report-btn { margin-left: 0; }
}

/* ════════════════════════════════════════════
   TOKEN DETAIL PAGE (token-detail.html)
   ════════════════════════════════════════════ */
.td-page {
  padding-top: 64px;
  min-height: 100vh;
}

.td-subnav {
  position: sticky;
  top: 64px;
  z-index: 900;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(16px, 5vw, 60px);
}

.td-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.td-subnav-inner::-webkit-scrollbar { display: none; }

.td-subnav-link {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  text-decoration: none;
  padding: 14px 18px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.td-subnav-link:hover { color: var(--text2); }

.td-subnav-link.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.td-section {
  padding: 60px clamp(16px, 5vw, 60px);
  border-bottom: 1px solid var(--border);
}

.td-section:last-of-type { border-bottom: none; }

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

.td-section-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.td-section-sub {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 32px;
}

.td-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.td-hero {
  padding: 48px clamp(16px, 5vw, 60px) 52px;
  position: relative;
  overflow: hidden;
}

.td-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(158, 234, 14, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

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

.td-breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.td-breadcrumb a {
  color: var(--text3);
  text-decoration: none;
  transition: color 0.15s;
}

.td-breadcrumb a:hover { color: var(--text2); }

.td-breadcrumb .bc-active { color: var(--green); }

.td-hero-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.td-hero-left {
  flex: 1;
  min-width: 280px;
}

.td-hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.td-identity {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.td-identity-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.td-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.td-name {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

.td-ticker {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--text3);
  margin-top: 4px;
}

.td-chain-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  width: fit-content;
}

.td-meta-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.td-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.td-meta-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.td-meta-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
}

.td-address-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  max-width: 500px;
}

.td-address {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text2);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.td-icon-btn {
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 12px;
  color: var(--text3);
  transition: all 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  white-space: nowrap;
}

.td-icon-btn:hover {
  color: var(--text2);
  border-color: #444;
}

.td-score-ring-wrap {
  position: relative;
  width: 140px;
  height: 140px;
}

.td-score-ring-wrap canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.td-score-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.td-score-big {
  font-family: var(--mono);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.td-score-max {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}

.td-score-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-safe   { background: rgba(106, 179, 0, 0.15); color: #6ab300; border: 1px solid rgba(106, 179, 0, 0.3); }
.tag-medium { background: rgba(255, 140, 0, 0.15); color: #ff8c00; border: 1px solid rgba(255, 140, 0, 0.3); }
.tag-risk   { background: rgba(255, 61, 61, 0.15); color: #ff3d3d; border: 1px solid rgba(255, 61, 61, 0.3); }

.td-no-flags {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(106, 179, 0, 0.08);
  border: 1px solid rgba(106, 179, 0, 0.25);
  border-radius: 10px;
  padding: 18px 22px;
  color: #6ab300;
  font-weight: 600;
  font-size: 14px;
}

.td-flags-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.td-flag-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.td-flag-sev {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 5px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.sev-critical { background: rgba(255,61,61,0.18);   color: #ff3d3d; border: 1px solid rgba(255,61,61,0.3); }
.sev-high     { background: rgba(255,140,0,0.15);    color: #ff8c00; border: 1px solid rgba(255,140,0,0.3); }
.sev-medium   { background: rgba(59,130,246,0.12);   color: #3b82f6; border: 1px solid rgba(59,130,246,0.25); }
.sev-low      { background: rgba(136,136,136,0.12);  color: #888;    border: 1px solid rgba(136,136,136,0.2); }

.td-flag-body { flex: 1; }

.td-flag-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.td-flag-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
}

.td-flag-impact {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: #ff3d3d;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 760px) {
  .td-hero-layout { flex-direction: column-reverse; gap: 32px; }
  .td-hero-right { flex-direction: row; align-items: center; }
}

@media (max-width: 480px) {
  .td-identity { gap: 14px; }
  .td-name { font-size: clamp(22px, 7vw, 32px); }
}

@media (max-width: 520px) {
  .td-meta-row { gap: 16px; }
}

.copy-ok {
  color: var(--green) !important;
  border-color: rgba(158,234,14,0.4) !important;
}

.td-badges-intro {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.td-badges-tally {
  display: flex;
  gap: 6px;
  align-items: center;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 6px 14px 6px 10px;
}

.td-tally-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.td-tally-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.td-tally-sep {
  width: 1px;
  height: 14px;
  background: var(--border2);
  margin: 0 6px;
}

.td-tally-lbl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.04em;
}

.td-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.td-badge-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  animation: tdFadeUp 0.35s ease both;
}

.td-badge-card:nth-child(2) { animation-delay: 0.05s; }
.td-badge-card:nth-child(3) { animation-delay: 0.10s; }
.td-badge-card:nth-child(4) { animation-delay: 0.15s; }
.td-badge-card:nth-child(5) { animation-delay: 0.20s; }
.td-badge-card:nth-child(6) { animation-delay: 0.25s; }
.td-badge-card:nth-child(7) { animation-delay: 0.30s; }
.td-badge-card:nth-child(8) { animation-delay: 0.35s; }

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

.td-badge-card.earned:hover { transform: translateY(-3px); }
.td-badge-card.earned { border-color: rgba(158,234,14,0.28); }
.td-badge-card.earned:hover {
  border-color: rgba(158,234,14,0.5);
  box-shadow: 0 10px 36px rgba(158,234,14,0.08);
}

.td-badge-card.locked {
  opacity: 0.25;
  filter: grayscale(1) brightness(0.5);
  cursor: default;
}

.td-badge-img-wrap {
  padding: 18px 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
}

.td-badge-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s;
}

.td-badge-card.earned:hover .td-badge-img { transform: scale(1.06); }

.td-badge-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.td-badge-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 5px;
}

.td-badge-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.td-badge-status-pill {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.tp-earned { background: rgba(158,234,14,0.13); color: #9EEA0E; border: 1px solid rgba(158,234,14,0.28); }
.tp-locked { background: rgba(80,80,80,0.18);   color: #555;    border: 1px solid rgba(80,80,80,0.22); }

.td-badge-desc {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 12px;
}

.td-badge-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.td-badge-earned-lbl {
  font-family: var(--mono);
  font-size: 9px;
  color: #6ab300;
}

.td-badge-locked-lbl {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text3);
}

.td-badge-progress-wrap { width: 100%; }

.td-badge-progress-track {
  height: 3px;
  background: var(--border2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 3px;
}

.td-badge-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: #3a3a3a;
}

.td-badge-progress-lbl {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text3);
}

.td-widget-intro { margin-bottom: 20px; }

.td-widget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.td-widget-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  animation: tdFadeUp 0.35s ease both;
}

.td-widget-card:nth-child(2) { animation-delay: 0.06s; }
.td-widget-card:nth-child(3) { animation-delay: 0.12s; }
.td-widget-card:nth-child(4) { animation-delay: 0.18s; }
.td-widget-card:nth-child(5) { animation-delay: 0.24s; }
.td-widget-card:nth-child(6) { animation-delay: 0.30s; }

.td-widget-card:hover {
  transform: translateY(-3px);
  border-color: rgba(158,234,14,0.35);
  box-shadow: 0 10px 36px rgba(158,234,14,0.06);
}

.td-widget-img-wrap {
  padding: 14px 14px 0;
  background: var(--card);
}

.td-widget-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s;
}

.td-widget-card:hover .td-widget-img { transform: scale(1.02); }

.td-widget-body {
  padding: 14px 16px 16px;
  flex: 1;
}

.td-widget-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
}

.td-widget-desc {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .td-badge-grid { grid-template-columns: repeat(3, 1fr); }
  .td-widget-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .td-badge-grid { grid-template-columns: repeat(2, 1fr); }
  .td-widget-grid { grid-template-columns: repeat(2, 1fr); }
  .td-badge-img { width: 80px; height: 80px; }
}

@media (max-width: 400px) {
  .td-badge-grid { grid-template-columns: repeat(2, 1fr); }
  .td-widget-grid { grid-template-columns: 1fr; }
}

.td-page-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 8px;
}

.td-overview-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 28px;
}

.td-overview-title em {
  font-style: normal;
  color: var(--green);
}

.td-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding: 18px 24px;
  background: rgba(158, 234, 14, 0.05);
  border: 1px solid rgba(158, 234, 14, 0.2);
  border-radius: 14px;
}

@media (max-width: 600px) {
  .td-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }
}

.td-cta-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.td-cta-sub {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}

.td-cta-section { text-align: center; background: var(--bg2); }

.td-bottom-cta {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.td-bottom-cta-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.td-bottom-cta-sub {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

.td-flag-counts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.td-flag-count-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 12px;
  flex: 1;
  min-width: 120px;
}

.td-flag-count-box.red    { background: rgba(255,61,61,0.08);  border: 1px solid rgba(255,61,61,0.2);  }
.td-flag-count-box.orange { background: rgba(255,140,0,0.08);  border: 1px solid rgba(255,140,0,0.2);  }
.td-flag-count-box.green  { background: rgba(106,179,0,0.08);  border: 1px solid rgba(106,179,0,0.2);  }

.td-flag-count-num {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.td-flag-count-box.red    .td-flag-count-num { color: #ff3d3d; }
.td-flag-count-box.orange .td-flag-count-num { color: #ff8c00; }
.td-flag-count-box.green  .td-flag-count-num { color: #6ab300; }

.td-flag-count-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.td-flag-teaser {
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.td-flag-teaser a { color: var(--green); text-decoration: none; }
.td-flag-teaser a:hover { text-decoration: underline; }

@media (max-width: 520px) {
  .td-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
  }
  .td-address-row { flex-wrap: wrap; gap: 8px; }
  .td-address { width: 100%; flex: none; }
}

/* ════════════════════════════════════════════
   TOKEN EXPLORER PAGE (tokens.html)
   ════════════════════════════════════════════ */
.te-page {
  padding-top: 64px;
  min-height: 100vh;
}

.te-header {
  padding: 60px clamp(16px, 5vw, 60px) 0;
  position: relative;
  overflow: hidden;
}

.te-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(158, 234, 14, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

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

.te-breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.te-breadcrumb a {
  color: var(--text3);
  text-decoration: none;
  transition: color 0.15s;
}

.te-breadcrumb a:hover {
  color: var(--text2);
  text-decoration: none;
}

.te-breadcrumb .bc-active { color: var(--green); }

.te-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.te-title em {
  font-style: normal;
  color: var(--green);
}

.te-subtitle {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 36px;
}

.te-stats-row {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.te-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
}

.te-stat-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
}

.te-stat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.te-controls {
  padding: 28px clamp(16px, 5vw, 60px) 0;
}

.te-controls-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.te-search-wrap { position: relative; }

.te-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  font-size: 14px;
  pointer-events: none;
}

.te-search {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.te-search::placeholder { color: var(--text3); }
.te-search:focus { border-color: rgba(158, 234, 14, 0.4); }

.te-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.te-filter-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.te-filter-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 40px;
}

.te-filter-group {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.te-chip {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--text3);
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.04em;
}

.te-chip:hover {
  border-color: #444;
  color: var(--text2);
}

.te-chip.active {
  background: rgba(158, 234, 14, 0.12);
  border-color: rgba(158, 234, 14, 0.4);
  color: var(--green);
}

.te-divider-line {
  width: 1px;
  height: 20px;
  background: var(--border);
}

.te-list-wrap {
  padding: 24px clamp(16px, 5vw, 60px) 0;
}

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

.te-list-header {
  display: grid;
  grid-template-columns: 40px 1fr 90px 80px 90px;
  gap: 12px;
  align-items: center;
  padding: 0 16px 10px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.te-token-card {
  display: grid;
  grid-template-columns: 40px 1fr 90px 80px 90px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  position: relative;
  border-left-width: 3px;
}

.te-token-card:hover {
  background: var(--card2);
  transform: translateX(2px);
}

.te-token-card.score-safe   { border-left-color: #6ab300; }
.te-token-card.score-medium { border-left-color: #ff8c00; }
.te-token-card.score-risk   { border-left-color: #ff3d3d; }

.te-token-card.score-safe:hover   { border-color: rgba(106, 179, 0, 0.35); border-left-color: #6ab300; }
.te-token-card.score-medium:hover { border-color: rgba(255, 140, 0, 0.35); border-left-color: #ff8c00; }
.te-token-card.score-risk:hover   { border-color: rgba(255, 61, 61, 0.35); border-left-color: #ff3d3d; }

.te-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  color: #0c0c0c;
}

.te-token-info { min-width: 0; }

.te-token-name {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.te-token-ticker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  margin-top: 3px;
  letter-spacing: 0.03em;
}

.te-chain-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.te-chain-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.te-score-col { text-align: right; }

.te-score-num {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.te-score-num.safe   { color: #6ab300; }
.te-score-num.medium { color: #ff8c00; }
.te-score-num.risk   { color: #ff3d3d; }

.te-score-label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text3);
  margin-top: 2px;
  text-align: right;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.te-arrow {
  color: var(--text3);
  font-size: 14px;
  text-align: right;
  transition: color 0.2s;
}

.te-token-card:hover .te-arrow { color: var(--text2); }

.te-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text3);
}

.te-empty-icon {
  font-size: 40px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.te-empty-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 6px;
}

.te-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(16px, 5vw, 60px) 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.te-page-info {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
}

.te-page-btns {
  display: flex;
  gap: 4px;
  align-items: center;
}

.te-page-btn {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--text3);
  cursor: pointer;
  transition: all 0.15s;
}

.te-page-btn:hover:not(:disabled) {
  border-color: #444;
  color: var(--text2);
}

.te-page-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #0c0c0c;
}

.te-page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.te-page-dots {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
  padding: 0 4px;
}

.te-chain-mobile { display: none; }

@media (max-width: 700px) {
  .te-list-header { display: none; }

  .te-token-card {
    grid-template-columns: 40px 1fr auto auto;
    gap: 10px;
    align-items: center;
  }

  .te-token-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
  }

  .te-token-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .te-token-ticker { display: block; margin-top: 0; }

  .te-chain-mobile { display: inline-flex; align-self: center; }
  .te-chain-desktop { display: none; }

  .te-score-col {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }

  .te-arrow { display: none; }

  .te-pagination {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

@media (min-width: 701px) {
  .te-chain-mobile { display: none; }
}

@media (max-width: 480px) {
  .te-chip {
    font-size: 10px;
    padding: 4px 9px;
  }
}

/* ════════════════════════════════════════════
   MOBILE ACCORDION — feature-item & proj-feature-item
   Only active when .mobile-accordion class is added by JS
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* ── collapsed state: compact card ── */
  .mobile-accordion .feature-item,
  .mobile-accordion .proj-feature-item {
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding: 9px 40px 9px 12px;
    gap: 10px;
    transition: border-color 0.2s, padding 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ── collapsed icon: smaller ── */
  .mobile-accordion .feature-item .feature-icon,
  .mobile-accordion .proj-feature-item .proj-feature-icon {
    flex-shrink: 0;
    align-self: center;
    width: 36px;
    height: 36px;
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-accordion .feature-item .feed-warning-icon {
    width: 32px;
    height: 32px;
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-accordion .proj-feature-item .proj-feature-icon img {
    width: 32px !important;
    height: 32px !important;
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ── collapse the description by default ── */
  .mobile-accordion .feature-item > div:last-child,
  .mobile-accordion .proj-feature-item > div:last-child {
    overflow: hidden;
    flex: 1;
    min-width: 0;
  }

  .mobile-accordion .feature-item > div:last-child p,
  .mobile-accordion .proj-feature-item > div:last-child p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    opacity: 0;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.28s ease,
                margin    0.28s ease;
  }

  /* ── h4 sits flush when collapsed ── */
  .mobile-accordion .feature-item h4,
  .mobile-accordion .proj-feature-item h4 {
    margin-bottom: 0;
    transition: margin-bottom 0.28s ease;
  }

  /* ── chevron indicator ── */
  .mobile-accordion .feature-item::after,
  .mobile-accordion .proj-feature-item::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--text3);
    border-bottom: 2px solid var(--text3);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s;
  }

  /* ── expanded state ── */
  .mobile-accordion .feature-item.fi-open,
  .mobile-accordion .proj-feature-item.fi-open {
    padding: 14px 40px 14px 16px;
    border-color: rgba(158, 234, 14, 0.3);
  }

  .mobile-accordion .feature-item.fi-open .feature-icon,
  .mobile-accordion .proj-feature-item.fi-open .proj-feature-icon {
    width: 50px;
    height: 50px;
  }

  .mobile-accordion .feature-item.fi-open .feed-warning-icon {
    width: 46px;
    height: 46px;
  }

  .mobile-accordion .proj-feature-item.fi-open .proj-feature-icon img {
    width: 44px !important;
    height: 44px !important;
  }

  .mobile-accordion .feature-item.fi-open > div:last-child p,
  .mobile-accordion .proj-feature-item.fi-open > div:last-child p {
    max-height: 200px;
    opacity: 1;
    margin-top: 6px;
  }

  .mobile-accordion .feature-item.fi-open h4,
  .mobile-accordion .proj-feature-item.fi-open h4 {
    margin-bottom: 2px;
  }

  .mobile-accordion .feature-item.fi-open::after,
  .mobile-accordion .proj-feature-item.fi-open::after {
    transform: translateY(-35%) rotate(225deg);
    border-color: var(--green);
  }
}