/* ===== ZENISCALE — STYLES ===== */

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

:root {
  --bg: #060606;
  --bg2: #0E0E0E;
  --bg3: #161616;
  --text: #F5F0E8;
  --text-muted: #8A857E;
  --accent: #D4FF2B;
  --accent-dim: rgba(212, 255, 43, 0.08);
  --accent-mid: rgba(212, 255, 43, 0.15);
  --warm: #FF6B35;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

a { text-decoration: none; }


/* ===== PAGES ===== */

.page {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page.active {
  display: block;
  opacity: 1;
}


/* ===== NAV ===== */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(24px) saturate(1.2);
  background: rgba(6, 6, 6, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logo {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.logo svg {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.3s;
  letter-spacing: 0.01em;
  position: relative;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active-link { color: var(--text); }
.nav-links a.active-link::after { width: 100%; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 0.55rem 1.5rem !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition: all 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  box-shadow: 0 0 32px rgba(212, 255, 43, 0.3);
  transform: translateY(-1px);
}


/* ===== MOBILE NAV ===== */

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  -webkit-tap-highlight-color: transparent;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 80px;
  background: rgba(6, 6, 6, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

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

.mobile-menu a {
  color: var(--text);
  font-size: 1.5rem;
  font-family: var(--serif);
  cursor: pointer;
  padding: 0.5rem 1rem;
  -webkit-tap-highlight-color: transparent;
}


/* ===== ANIMATIONS ===== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

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

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(212, 255, 43, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 16px rgba(212, 255, 43, 0.3); }
}


/* ===== SHARED COMPONENTS ===== */

.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.08;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 3.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 48px rgba(212, 255, 43, 0.25);
}

.btn-secondary {
  display: inline-block;
  color: var(--text-muted);
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-weight: 400;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.35s;
  cursor: pointer;
  background: transparent;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}


/* ===== PAGE HEADER ===== */

.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(212, 255, 43, 0.035) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  position: relative;
}

.page-header h1 em {
  font-style: italic;
  color: var(--accent);
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}


/* ===== CARDS ===== */

.card-grid { display: grid; gap: 1rem; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0;
  transition: opacity 0.5s;
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 255, 43, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.card:hover {
  border-color: rgba(212, 255, 43, 0.12);
  transform: translateY(-4px);
}

.card:hover::before { opacity: 0.6; }
.card:hover::after { opacity: 1; }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 255, 43, 0.1);
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ===== MARQUEE ===== */

.marquee-wrap {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  width: 100%;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 60s linear infinite;
}

.marquee-item {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-muted);
  opacity: 0.5;
  padding: 0 1.5rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-item::after {
  content: '\2726';
  color: var(--accent);
  font-size: 0.6rem;
  opacity: 0.5;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ===== STATS ===== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg2);
  padding: 2.5rem 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ===== DETAIL LIST ===== */

.detail-list {
  display: flex;
  flex-direction: column;
}

.detail-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: start;
}

.detail-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-label {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
  position: sticky;
  top: 100px;
}

.detail-label em {
  color: var(--accent);
  font-style: italic;
}

.detail-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.detail-body p:last-child { margin-bottom: 0; }

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.25rem;
}

.tag {
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(212, 255, 43, 0.15);
  color: var(--accent);
  background: var(--accent-dim);
  letter-spacing: 0.02em;
}


/* ===== CTA ===== */

.cta-section {
  padding: 5rem 2rem 7rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-box {
  background: var(--bg2);
  border-radius: 28px;
  padding: 5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(212, 255, 43, 0.25), transparent 40%, transparent 60%, rgba(255, 107, 53, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(212, 255, 43, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  position: relative;
}

.cta-box .cta-desc {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-contact {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
}

.cta-contact a {
  color: var(--accent);
  transition: opacity 0.3s;
}

.cta-contact a:hover { opacity: 0.8; }


/* ===== FORM ===== */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-grid .full { grid-column: 1 / -1; }

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  font-weight: 300;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: rgba(212, 255, 43, 0.3);
  box-shadow: 0 0 0 3px rgba(212, 255, 43, 0.08);
}

.form-grid textarea {
  resize: vertical;
  min-height: 140px;
}

.form-grid select {
  appearance: none;
  cursor: pointer;
}

.form-grid select option {
  background: var(--bg2);
  color: var(--text);
}

.form-btn-wrap {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
}


/* ===== LEGAL PAGES ===== */

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.legal-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}


/* ===== FOOTER ===== */

footer {
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: var(--text-muted);
}

footer a {
  color: var(--text-muted);
  transition: color 0.3s;
  cursor: pointer;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
}


/* ===== RESPONSIVE — LAPTOP ===== */

@media (max-width: 1280px) {
  .section-wrap { max-width: 960px; }
  .cta-section { max-width: 960px; }
}

@media (max-width: 1024px) {
  nav { padding: 0 1.5rem; height: 68px; }
  .logo svg { height: 42px; }
  .nav-links { gap: 1.8rem; }
  .nav-links a { font-size: 0.82rem; }
  .section-wrap { padding: 5.5rem 1.75rem; }
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card { padding: 1.75rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-num { font-size: 2.5rem; }
  .detail-item { grid-template-columns: 200px 1fr; gap: 2rem; }
  .cta-box { padding: 4rem 2.5rem; }
  .page-header { padding: 9rem 1.75rem 3.5rem; }
}


/* ===== RESPONSIVE — TABLET ===== */

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; height: 64px; }
  .logo svg { height: 36px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .section-wrap { padding: 4rem 1.25rem; }
  .page-header { padding: 7.5rem 1.25rem 2.5rem; }
  .page-header h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .page-header p { font-size: 1rem; }
  .section-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .section-desc { font-size: 0.95rem; margin-bottom: 2.5rem; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .card { padding: 1.75rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-card { padding: 1.75rem 1rem; }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: 0.7rem; }
  .detail-item { grid-template-columns: 1fr; gap: 1rem; }
  .detail-label { position: static; font-size: 1.3rem; }
  .detail-tags { gap: 6px; }
  .tag { font-size: 0.7rem; padding: 0.3rem 0.75rem; }
  .cta-box { padding: 3rem 1.5rem; border-radius: 20px; }
  .cta-box h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  /* Single-column form on tablet too for better UX */
  .form-grid { grid-template-columns: 1fr; }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 0.75rem;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; text-align: center; padding: 1rem 2rem; }
  .btn-primary { padding: 0.9rem 2rem; font-size: 0.88rem; }
  .btn-secondary { padding: 0.9rem 1.5rem; font-size: 0.88rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.25rem; }
  .cta-section { padding: 3rem 1.25rem 5rem; }
  .marquee-item { font-size: 0.95rem; padding: 0 1rem; gap: 1rem; }
  .legal-content h3 { font-size: 1rem; }
  .legal-content p { font-size: 0.88rem; }
}


/* ===== RESPONSIVE — MOBILE ===== */

@media (max-width: 480px) {
  nav { padding: 0 1rem; height: 60px; }
  .logo svg { height: 32px; }

  /* Sections */
  .section-wrap { padding: 3.5rem 1rem; }
  .page-header { padding: 6.5rem 1rem 2rem; }
  .page-header h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .page-header p { font-size: 0.92rem; line-height: 1.65; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .section-desc { font-size: 0.9rem; margin-bottom: 2rem; }

  /* Cards */
  .card { padding: 1.5rem; border-radius: 16px; }
  .card-icon { width: 38px; height: 38px; margin-bottom: 1.25rem; }
  .card h3 { font-size: 0.98rem; }
  .card p { font-size: 0.84rem; }

  /* Stats — 1-column stacked */
  .stats-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .stat-card { padding: 1.5rem 1rem; }
  .stat-num { font-size: 2rem; }

  /* Detail list */
  .detail-item { gap: 0.75rem; padding: 2rem 0; }
  .detail-label { font-size: 1.15rem; }
  .detail-body p { font-size: 0.88rem; line-height: 1.75; }

  /* CTA */
  .cta-box { padding: 2.5rem 1.25rem; border-radius: 16px; }
  .cta-box h2 { font-size: 1.6rem; }
  .cta-box .cta-desc { font-size: 0.9rem; }
  .cta-contact { font-size: 0.8rem; }

  /* Form — touch-friendly, ≥16px prevents iOS zoom on focus */
  .form-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .form-grid input,
  .form-grid textarea,
  .form-grid select {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
  }
  .form-grid textarea { min-height: 120px; }

  /* Hero buttons — full width, stacked */
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 0.75rem;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    font-size: 0.92rem;
    padding: 1rem 1.5rem;
  }

  /* Footer */
  footer { font-size: 0.72rem; padding: 1.75rem 1rem; }
  .footer-links { gap: 1.5rem; }

  /* Mobile menu */
  .mobile-menu a { font-size: 1.25rem; }

  /* Marquee */
  .marquee-item { font-size: 0.85rem; padding: 0 0.75rem; gap: 0.75rem; }
  .marquee-wrap::before,
  .marquee-wrap::after { width: 60px; }

  /* Legal */
  .legal-content h3 { font-size: 0.95rem; }
  .legal-content p { font-size: 0.85rem; line-height: 1.75; }

  /* Tags */
  .tag { font-size: 0.68rem; padding: 0.28rem 0.7rem; }

  /* Snappier reveal on mobile */
  .reveal { transform: translateY(24px); }
}

/* ===== EXTRA SMALL — very narrow phones ===== */
@media (max-width: 360px) {
  .page-header h1 { font-size: 1.65rem; }
  .section-title { font-size: 1.5rem; }
  .cta-box h2 { font-size: 1.45rem; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { font-size: 0.85rem; padding: 0.9rem 1.2rem; }
  .stat-num { font-size: 1.8rem; }
}
