﻿*, *::before, *::after { box-sizing: border-box; }

  .cr-hero {
    background-color: #09090b;
    background-image: radial-gradient(circle at 2px 2px, rgba(220,38,38,0.13) 1px, transparent 0);
    background-size: 40px 40px;
    padding: 7rem 1.5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
  }

  /* subtle radial vignette to blend dot grid */
  .cr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, transparent 40%, #09090b 100%);
    pointer-events: none;
  }

  .cr-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 52rem;
    margin: 0 auto;
  }

  /* badge */
  .cr-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(220,38,38,0.1);
    border: 1px solid rgba(220,38,38,0.3);
    backdrop-filter: blur(8px);
    margin-bottom: 1.75rem;
  }
  .cr-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: cr-pulse 2s ease-in-out infinite;
  }
  .cr-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  @keyframes cr-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
  }

  /* heading */
  .cr-hero-h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 0 0 1.25rem;
  }
  .cr-hero-h1 span {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* subtext */
  .cr-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    max-width: 38rem;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

  /* stat pills */
  .cr-stat-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  .cr-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    background: rgba(24,24,27,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
  }
  .cr-stat-pill strong { color: #fff; font-weight: 600; }

  /* CTA group */
  .cr-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .cr-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
    background: linear-gradient(to right, #dc2626, #ef4444);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    box-shadow: 0 0 30px -5px rgba(220,38,38,0.5);
  }
  .cr-btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px -5px rgba(220,38,38,0.7);
  }
  .cr-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(220,38,38,0.3);
    color: rgba(255,255,255,0.85);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
  }
  .cr-btn-ghost:hover {
    background: rgba(220,38,38,0.08);
    border-color: rgba(220,38,38,0.5);
    color: #fff;
  }

  /* trust line */
  .cr-trust {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: -0.01em;
  }

  /* divider line at bottom */
  .cr-hero-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(220,38,38,0.4), transparent);
    margin-top: 4rem;
  }

  @media (max-width: 640px) {
    .cr-hero { padding: 6rem 1rem 3.5rem; }
    .cr-hero-ctas { flex-direction: column; }
    .cr-btn-primary, .cr-btn-ghost { width: 100%; justify-content: center; }
  }