/* =============================
   GRC SECTION (ISOLATED)
   Prefix: grc-iso-
   ============================= */

/* Main Container Scoping */
.grc-iso-section {
  /* Scoped Variables */
  --grc-bg-dark: radial-gradient(1200px 600px at 10% 10%, #0b1a3a, #020617 70%);
  --grc-card-bg: rgba(255,255,255,0.06);
  --grc-accent: #6d5cff;
  --grc-text-muted: #b6c2ff;
  --grc-text-light: #ffffff;
  --grc-shadow: 0 30px 60px rgba(109,92,255,0.25);
  font-family: 'Inter', sans-serif;
  background: var(--grc-bg-dark);
  padding: 80px 6%;
  overflow: hidden;
  color: var(--grc-text-light);
  box-sizing: border-box;
  width: 100%;
  position: relative;
  border-radius: 100px 100px 0px 0px;
}

/* Reset for internal elements */
.grc-iso-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.grc-iso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.grc-iso-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius: 20px;
  padding: 28px;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  animation: grcIsoFadeUp 0.9s ease forwards;
  opacity: 0; /* Init hidden for animation */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Stagger animations */
.grc-iso-card:nth-child(1) { animation-delay: 0.1s; }
.grc-iso-card:nth-child(2) { animation-delay: 0.2s; }
.grc-iso-card:nth-child(3) { animation-delay: 0.3s; }

.grc-iso-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--grc-shadow);
}

.grc-iso-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(109,92,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.grc-iso-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 600;
}

.grc-iso-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--grc-text-muted);
}

/* =========================================
   NEW COUNTDOWN DASHBOARD (Replaces Info Strip)
   ========================================= */
.grc-iso-dashboard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: grcIsoScaleIn 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.4s;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.3);
}

/* Ambient Glow Background */
.grc-iso-dashboard::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(109,92,255,0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.grc-iso-dash-content {
  position: relative;
  z-index: 1;
}

.grc-iso-dash-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grc-text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

/* Big Counter Grid */
.grc-iso-timer {
  display: flex;
  justify-content: center;
  gap: 30px; /* Space between units */
  margin-bottom: 30px;
  flex-wrap: wrap; /* Allows wrap on huge screens but we control mobile below */
}

.grc-iso-time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.grc-iso-time-val {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  
  /* Gradient Text */
  background: linear-gradient(180deg, #fff 0%, #b6c2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  text-shadow: 0 10px 20px rgba(109,92,255,0.2);
}

.grc-iso-time-label {
  font-size: 12px;
  color: var(--grc-accent);
  margin-top: 8px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Colon Separator */
.grc-iso-separator {
  font-size: 40px;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  margin-top: 5px;
}

/* Keywords / Highlights (Replacing the Cards) */
.grc-iso-highlights {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
}

.grc-iso-pill {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.grc-iso-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255,255,255,0.2);
}

.grc-iso-pill-icon {
  color: var(--grc-accent);
}

/* CTA */
.grc-iso-cta-wrap {
  text-align: center;
}

.grc-iso-btn {
  background: linear-gradient(135deg, #6d5cff, #4f46e5);
  border: none;
  padding: 16px 42px;
  color: #fff;
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(109,92,255,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  font-weight: 600;
}

.grc-iso-btn:hover { 
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(109,92,255,0.45);
}

/* Unique Keyframes */
@keyframes grcIsoFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes grcIsoScaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media(max-width: 992px) {
  .grc-iso-grid { grid-template-columns: 1fr; }
}

@media(max-width: 600px) {
  /* Fix for Mobile Countdown: Keep it in one row */
  .grc-iso-timer { 
    gap: 8px; /* Tighter gap */
    flex-wrap: nowrap; /* Force single line */
    justify-content: space-between; /* Spread evenly if needed */
  }

  /* Allow units to shrink */
  .grc-iso-time-unit {
    min-width: auto; /* Remove rigid width */
    flex: 1; 
  }

  .grc-iso-time-val { 
    font-size: 28px; /* Resize text to fit */
  }

  .grc-iso-time-label { 
    font-size: 10px; 
    margin-top: 4px;
  }

  .grc-iso-separator { 
    font-size: 20px; 
    margin-top: 4px; 
    padding: 0 2px;
  }

  .grc-iso-pill { 
    font-size: 12px; 
    padding: 8px 16px; 
  }
  
  .grc-iso-section { 
    padding: 60px 20px; 
  }
  
  .grc-iso-dashboard {
      padding: 30px 15px; /* Reduce padding on mobile card */
  }
}









 /* =========================================
     STATS ROW SECTION (ISOLATED)
     Prefix: stat-row-
     ========================================= */
    .stat-row-section {
      /* Theme Variables */
      --stat-bg-outer: #ffffff; 
      --stat-card-bg: #0f172a; 
      --stat-border: rgba(255, 255, 255, 0.1);
      --stat-accent-gradient: linear-gradient(135deg, #6d5cff 0%, #b6c2ff 100%);
      --stat-text-main: #ffffff;
      --stat-text-muted: #94a3b8;
      
      font-family: 'Inter', sans-serif;
      background-color: var(--stat-bg-outer);
      padding: 20px; 
      display: flex;
      justify-content: center;
      align-items: center;
      /* width: 100%;
      min-height: 100vh;  */
    }
  
    /* Reset */
    .stat-row-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
  
    /* The Big Row Card */
    .stat-row-card {
      width: 100%;
      max-width: 1200px;
      background: var(--stat-card-bg); 
      border: 1px solid var(--stat-border);
      border-radius: 24px;
      padding: 50px 40px;
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
      
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* Always 4 columns */
      gap: 0; 
      position: relative;
      overflow: hidden;
    }
  
    /* Shine Effect Overlay */
    .stat-row-card::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
      transition: 0.5s;
      pointer-events: none;
    }
    
    .stat-row-card:hover::before {
      left: 100%;
      transition: 0.8s ease-in-out;
    }
  
    /* Individual Stat Item */
    .stat-row-item {
      padding: 0 30px;
      text-align: center;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }
  
    /* Vertical Dividers - Always present except last child */
    .stat-row-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 10%;
      height: 80%;
      width: 1px;
      background: linear-gradient(180deg, transparent, var(--stat-border), transparent);
    }
  
    /* The Number Styling */
    .stat-row-number {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 12px;
      line-height: 1.1;
      
      background: var(--stat-accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      
      display: flex;
      align-items: flex-start;
      gap: 4px;
    }
  
    .stat-row-symbol {
      font-size: 28px;
      margin-top: 6px; 
      color: #6d5cff;
      -webkit-text-fill-color: #6d5cff;
    }
  
    .stat-row-desc {
      font-size: 15px;
      line-height: 1.6;
      color: var(--stat-text-muted);
      font-weight: 500;
      max-width: 220px; 
    }
  
    /* Hover Interaction */
    .stat-row-item:hover .stat-row-number {
      transform: scale(1.05);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .stat-row-item:hover .stat-row-desc {
      color: var(--stat-text-main);
      transition: color 0.3s ease;
    }
  
    /* --- RESPONSIVE DESIGN (Strict "Shrink" Strategy) --- */
    
    /* Tablet: Just scale down slightly, keep structure */
    @media (max-width: 1024px) {
      .stat-row-card { padding: 40px 20px; }
      .stat-row-number { font-size: 36px; }
      .stat-row-symbol { font-size: 20px; }
      .stat-row-desc { font-size: 13px; padding: 0 5px; }
      .stat-row-item { padding: 0 10px; }
    }
  
    /* Mobile: Aggressive shrink to keep 4-column layout */
    @media (max-width: 600px) {
      .stat-row-section { padding: 10px; }
      
      .stat-row-card {
        /* Keep 4 columns intact */
        grid-template-columns: repeat(4, 1fr);
        padding: 20px 4px; /* Very tight padding */
        border-radius: 16px;
        gap: 0;
      }
  
      .stat-row-item { 
        padding: 0 2px; /* Minimal side padding */
      }
      
      /* Scale Dividers for shorter height */
      .stat-row-item:not(:last-child)::after {
        top: 20%;
        height: 60%;
      }
      
      /* Typography Scaling */
      .stat-row-number { 
        font-size: 18px; /* Significantly smaller */
        margin-bottom: 6px;
        justify-content: center;
      }
      
      .stat-row-symbol { 
        font-size: 12px; 
        margin-top: 2px; 
      }
      
      .stat-row-desc { 
        font-size: 9px; /* Tiny readable text */
        line-height: 1.3;
        max-width: none; /* Let it fill the column width */
        word-wrap: break-word; /* Prevent overflow */
        padding: 0 2px;
      }
    }