﻿*, *::before, *::after { box-sizing: border-box; }

  .cr-cls {
    background-color: #09090b;
    padding: 4rem 1.5rem 5rem;
    font-family: 'Inter', sans-serif;
  }

  .cr-cls-inner {
    max-width: 56rem;
    margin: 0 auto;
  }

  /* Bridge text */
  .cr-bridge {
    text-align: center;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cr-bridge-h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0;
  }
  .cr-bridge-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 36rem;
    line-height: 1.7;
    margin: 0;
  }
  .cr-bridge-body span { color: #fbbf24; font-weight: 600; }
  .cr-bridge-arrow {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
    animation: cr-bounce 1.5s ease-in-out infinite;
  }
  @keyframes cr-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }

  /* Capital Launch card */
  .cr-cls-card {
    border-radius: 1.25rem;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(245,158,11,0.08) 0%, rgba(9,9,11,0.97) 50%, rgba(9,9,11,0.97) 100%);
    border: 1px solid rgba(245,158,11,0.3);
    box-shadow: 0 0 40px rgba(245,158,11,0.12);
    position: relative;
  }

  /* top red accent line */
  .cr-cls-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(245,158,11,0.6), transparent);
  }

  .cr-cls-card-inner { padding: 2.5rem 2rem; }
  @media (min-width: 768px) { .cr-cls-card-inner { padding: 3rem 3rem; } }

  /* Badge */
  .cr-cls-badge-wrap { display: flex; justify-content: center; margin-bottom: 1.5rem; }
  .cr-cls-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1.1rem;
    border-radius: 9999px;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
  }
  .cr-cls-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fbbf24;
    animation: cr-pulse3 2s ease-in-out infinite;
  }
  @keyframes cr-pulse3 {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
  .cr-cls-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 0.04em;
  }

  /* Heading */
  .cr-cls-h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    margin: 0 0 0.35rem;
  }
  .cr-cls-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245,158,11,0.75);
    text-align: center;
    margin: 0 0 0.875rem;
    letter-spacing: 0.01em;
  }
  .cr-cls-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    max-width: 38rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  /* Outcome stats row */
  .cr-cls-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  @media (min-width: 560px) { .cr-cls-stats { grid-template-columns: 1fr 1fr; } }

  .cr-cls-stat-box {
    padding: 1.25rem;
    border-radius: 0.875rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(245,158,11,0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .cr-cls-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .cr-cls-stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .cr-cls-stat-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .cr-cls-stat-original {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
    text-decoration-color: rgba(220,38,38,0.5);
    text-decoration-thickness: 2px;
  }
  .cr-cls-stat-current {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
  }
  .cr-cls-save-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    font-size: 0.7rem;
    font-weight: 700;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.35rem;
    align-self: center;
  }

  /* What we build list */
  .cr-cls-section-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
  }
  .cr-cls-build-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  .cr-cls-build-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cr-cls-check-circle {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(34,197,94,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cr-cls-build-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
  }

  /* 7 Phases list box */
  .cr-cls-phases-box {
    padding: 1.25rem 1.5rem;
    border-radius: 0.875rem;
    background: rgba(9,9,11,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
  }
  .cr-cls-phases-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  .cr-cls-phases-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  .cr-cls-phase-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cr-cls-phase-num {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fbbf24;
    flex-shrink: 0;
  }
  .cr-cls-phase-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
  }

  /* Not for everyone warning box */
  .cr-cls-warning {
    padding: 1.25rem 1.5rem;
    border-radius: 0.875rem;
    background: rgba(220,38,38,0.04);
    border: 1px solid rgba(220,38,38,0.2);
    margin-bottom: 2rem;
  }
  .cr-cls-warning-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .cr-cls-warning-body {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0;
  }

  /* CTA */
  .cr-cls-cta-wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .cr-cls-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(to right, #d97706, #f59e0b);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.01em;
    box-shadow: 0 0 30px -5px rgba(245,158,11,0.5);
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  }
  .cr-cls-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 45px -5px rgba(245,158,11,0.7);
  }
  .cr-cls-cta-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: -0.01em;
  }
  .cr-cls-cta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.25rem;
  }
  .cr-cls-trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
  }
  .cr-cls-trust-item svg { flex-shrink: 0; }

  @media (max-width: 600px) {
    .cr-cls { padding: 3rem 1rem 4rem; }
    .cr-cls-card-inner { padding: 2rem 1.25rem; }
    .cr-cls-btn { padding: 0.875rem 1.75rem; font-size: 0.9375rem; }
  }