/* ============================================================
   Project Archon — Home Page CSS
   Hero, market ticker, market cards, features, stats,
   steps, testimonials, FAQ, newsletter sections
   ============================================================ */

/* ── Ticker Bar ──────────────────────────────────────────── */
.ticker {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: flex;
  gap: var(--space-12);
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
}

.ticker__symbol {
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
}

.ticker__price {
  color: var(--text-secondary);
}

.ticker__change { font-weight: var(--fw-medium); }
.ticker__up     { color: var(--primary); }
.ticker__down   { color: var(--danger); }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
}

/* Hero background — layered radial glows */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(41, 98, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Text */
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-5);
  animation: fadeInUp 0.6s ease both;
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero__title-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 520px;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.6s 0.3s ease both;
}

/* ── Hero Stats Row ──────────────────────────────────────── */
.hero__stats {
  display: flex;
  gap: var(--space-8);
  animation: fadeInUp 0.6s 0.4s ease both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.hero__stat-value {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Hero Visual (CSS trading chart illustration) ────────── */
.hero__visual {
  position: relative;
  animation: fadeInRight 0.7s 0.2s ease both;
}

.hero__chart-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-3xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero__chart-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glass);
  border-radius: inherit;
}

.hero__chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  position: relative;
}

.hero__chart-pair {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__chart-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #F7931A, #FF8000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  font-weight: var(--fw-bold);
}

.hero__chart-name {
  font-weight: var(--fw-bold);
  font-size: var(--text-base);
}

.hero__chart-sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.hero__chart-price {
  text-align: right;
}

.hero__chart-val {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  font-family: var(--font-mono);
  color: var(--text-primary);
}

.hero__chart-change {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--primary);
}

/* CSS candlestick chart visualization */
.hero__candles {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 140px;
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-5);
  position: relative;
}

/* Horizontal grid lines behind candles */
.hero__candles::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: var(--space-3);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 25%
    );
}

.candle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  min-width: 8px;
}

.candle__wick {
  width: 1.5px;
  background: currentColor;
  border-radius: var(--radius-full);
}

.candle__body {
  width: 70%;
  border-radius: 2px;
  min-height: 4px;
}

.candle.up   { color: var(--primary); }
.candle.down { color: var(--danger);  }
.candle.up  .candle__body { background: var(--primary); }
.candle.down .candle__body { background: var(--danger); }

/* ── Floating mini-cards around chart ────────────────────── */
.hero__float-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.hero__float-card--tl {
  top: -60px;
  left: -55px;
  z-index: 10;
  animation-delay: 0s;
}

.hero__float-card--br {
  bottom: -50px;
  right: -30px;
  z-index: 10;
  animation-delay: -2s;
}

.hero__float-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.hero__float-value {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  font-family: var(--font-mono);
}

.hero__float-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--primary);
  background: var(--primary-glow);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  margin-top: var(--space-1);
}

/* ── Live Market Cards ───────────────────────────────────── */
.market-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-5);
}

.mcard {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  cursor: pointer;
}

.mcard:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 118, 0.25);
  box-shadow: var(--shadow-xl);
}

.mcard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.mcard__coin {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.mcard__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

/* Coin color schemes */
.mcard__icon--btc { background: linear-gradient(135deg, #F7931A, #FF6B00); color: #fff; }
.mcard__icon--eth { background: linear-gradient(135deg, #627EEA, #3D5AF1); color: #fff; }
.mcard__icon--sol { background: linear-gradient(135deg, #9945FF, #14F195); color: #fff; }
.mcard__icon--bnb { background: linear-gradient(135deg, #F3BA2F, #D48B00); color: #fff; }
.mcard__icon--xrp { background: linear-gradient(135deg, #00AAE4, #0077B6); color: #fff; }
.mcard__icon--ada { background: linear-gradient(135deg, #0033AD, #0052CC); color: #fff; }
.mcard__icon--avax{ background: linear-gradient(135deg, #E84142, #B71C1C); color: #fff; }
.mcard__icon--dot { background: linear-gradient(135deg, #E6007A, #9B0057); color: #fff; }

.mcard__name  { font-weight: var(--fw-semibold); font-size: var(--text-sm); }
.mcard__ticker{ font-size: var(--text-xs); color: var(--text-muted); }

.mcard__price {
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  font-family: var(--font-mono);
  margin-bottom: var(--space-3);
}

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

.mcard__vol {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ── Why Choose Us ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 230, 118, 0.2);
  box-shadow: var(--shadow-xl);
}

.why-card:hover::before { opacity: 1; }

.why-card__icon {
  margin-bottom: var(--space-5);
}

.why-card__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
}

.why-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ── Features Section ────────────────────────────────────── */
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.feature-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  cursor: pointer;
}

.feature-item:hover {
  border-color: rgba(0, 230, 118, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.feature-item__content { flex: 1; }

.feature-item__title {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-2);
}

.feature-item__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ── Features Visual (CSS chart panel) ───────────────────── */
.features__visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.chart-panel {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
}

.chart-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.chart-panel__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
}

.chart-panel__tabs {
  display: flex;
  gap: var(--space-2);
}

.chart-panel__tab {
  font-size: var(--text-xs);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-base);
}

.chart-panel__tab.active {
  background: var(--primary-glow);
  color: var(--primary);
}

/* CSS-only area chart */
.area-chart {
  height: 80px;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  overflow: hidden;
}

.area-chart__bar {
  flex: 1;
  background: linear-gradient(to top, rgba(0,230,118,0.5), rgba(0,230,118,0.1));
  border-radius: 2px 2px 0 0;
  min-width: 4px;
  position: relative;
}

.area-chart__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

/* ── Stats Section ───────────────────────────────────────── */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: var(--space-10);
  text-align: center;
  border-right: 1px solid var(--border-color);
  transition: background var(--transition-base);
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
  background: rgba(0, 230, 118, 0.02);
}

.stat-item__value {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--fw-extrabold);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

.stat-item__sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

/* ── Steps Section ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary), transparent);
  opacity: 0.2;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  position: relative;
}

.step-item__number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--card-bg);
  border: 2px solid rgba(0, 230, 118, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  color: var(--primary);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.15);
}

.step-item:hover .step-item__number {
  background: var(--primary-glow);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.3);
  transform: scale(1.05);
}

.step-item__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
}

.step-item__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.tcard {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
}

.tcard::before {
  content: '"';
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.tcard:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 118, 0.2);
  box-shadow: var(--shadow-xl);
}

.tcard__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
  color: var(--warning);
  font-size: 0.875rem;
}

.tcard__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.tcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--text-base);
  flex-shrink: 0;
}

.tcard__name   { font-weight: var(--fw-semibold); font-size: var(--text-sm); }
.tcard__role   { font-size: var(--text-xs); color: var(--text-muted); }
.tcard__return {
  margin-left: auto;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--primary);
  font-family: var(--font-mono);
}

/* Avatar color variants */
.avatar--a { background: linear-gradient(135deg, #7C4DFF, #3D00B5); color: #fff; }
.avatar--b { background: linear-gradient(135deg, #00B0FF, #0054A6); color: #fff; }
.avatar--c { background: linear-gradient(135deg, #FF6D00, #BF360C); color: #fff; }
.avatar--d { background: linear-gradient(135deg, #00E676, #00695C); color: #111; }
.avatar--e { background: linear-gradient(135deg, #E91E63, #880E4F); color: #fff; }

/* ── FAQ (CSS-only accordion) ────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 800px;
  margin-inline: auto;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  cursor: pointer;
  font-weight: var(--fw-semibold);
  font-size: var(--text-base);
  color: var(--text-primary);
  transition: all var(--transition-base);
  user-select: none;
}

.faq-item__label:hover {
  border-color: rgba(0, 230, 118, 0.25);
  background: var(--card-bg-hover);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--primary-glow);
  border: 1px solid rgba(0, 230, 118, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary);
  transition: transform var(--transition-base);
  line-height: 1;
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--card-bg);
  border: 1px solid transparent;
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  margin-top: -2px;
}

.faq-item__text {
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* Open state */
.faq-item input:checked ~ .faq-item__label {
  border-color: rgba(0, 230, 118, 0.3);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: var(--primary-glow);
}

.faq-item input:checked ~ .faq-item__label .faq-item__icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--text-inverse);
}

.faq-item input:checked ~ .faq-item__content {
  max-height: 300px;
  border-color: rgba(0, 230, 118, 0.3);
}

/* ── Newsletter Section ──────────────────────────────────── */
.newsletter-section {
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,230,118,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
}

.newsletter__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-3);
}

.newsletter__subtitle {
  color: var(--text-secondary);
  font-size: var(--text-lg);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.newsletter-form__row {
  display: flex;
  gap: var(--space-3);
}

.newsletter-form__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-base);
}

.newsletter-form__input::placeholder { color: var(--text-muted); }
.newsletter-form__input:focus         { border-color: var(--primary); }

.newsletter-form__note {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid       { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle   { margin-inline: auto; }
  .hero__actions    { justify-content: center; }
  .hero__stats      { justify-content: center; }
  .hero__visual     { display: none; }
  .features__grid   { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; text-align: center; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
}

@media (max-width: 768px) {
  .steps-grid::before { display: none; }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .stat-item          { border-right: 1px solid var(--border-color); }
  .stat-item:nth-child(even) { border-right: none; }
  .newsletter-form__row { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: var(--space-4); }
  .stats-grid  { grid-template-columns: 1fr; }
  .stat-item   { border-right: none; border-bottom: 1px solid var(--border-color); }
}
