html, body { overflow-x: hidden; max-width: 100vw; }

  .regPage {
    --accent-primary: var(--color-1);
    --accent-secondary: var(--color-2);
    --surface-dark: var(--color-9, #0d0b1a);
    --surface-card: var(--color-8, #1a1730);
    --text-bright: #fff;
    --text-soft: rgba(255,255,255,0.78);
    --text-dim: rgba(255,255,255,0.55);
    padding: clamp(2rem, 5vw, 4rem) 0;
    color: var(--text-bright);
    font-family: var(--font-body);
  }

  .regHero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-3, 24px);
    background: var(--gradient-1, linear-gradient(135deg, #6a11cb 0%, #2575fc 100%));
    box-shadow: var(--shadow-2, 0 30px 80px rgba(0,0,0,0.4));
  }

  .regHero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.25), transparent 65%);
    pointer-events: none;
  }

  .heroBadge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffd700;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 999px;
    backdrop-filter: blur(10px);
  }

  .heroBadge::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ffd700;
    box-shadow: 0 0 12px #ffd700;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .heroTitle {
    margin: 0 0 1.2rem;
    font-family: var(--font-display, inherit);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-bright);
  }

  .heroLead {
    max-width: 640px;
    margin: 0 0 2rem;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.6;
    color: var(--text-soft);
  }

  .heroCtaRow {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .ctaPrimary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a0033;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: var(--radius-2, 12px);
    box-shadow: 0 12px 32px rgba(255,183,0,0.45);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .ctaPrimary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(255,183,0,0.6);
  }

  .ctaPrimary::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform .25s;
  }

  .ctaPrimary:hover::after { transform: translateX(4px); }

  .heroStats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
    position: relative;
    z-index: 1;
  }

  .statBox {
    padding: 1.2rem 1.3rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-2, 12px);
    backdrop-filter: blur(12px);
  }

  .statNum {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .statLabel {
    font-size: 0.82rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Section base */
  .regSection {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .sectionHead {
    margin-bottom: 2rem;
    text-align: center;
  }

  .sectionTitle {
    margin: 0 0 0.6rem;
    font-family: var(--font-display, inherit);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-bright);
  }

  .sectionDek {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Timeline steps */
  .stepsTimeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    counter-reset: stepCounter;
  }

  .stepCard {
    position: relative;
    padding: 2.2rem 1.6rem 1.6rem;
    background: linear-gradient(160deg, var(--surface-card, #1a1730) 0%, rgba(26,23,48,0.85) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-2, 14px);
    box-shadow: var(--shadow-1, 0 12px 32px rgba(0,0,0,0.3));
    transition: transform .3s ease, border-color .3s ease;
    counter-increment: stepCounter;
  }

  .stepCard:hover {
    transform: translateY(-6px);
    border-color: rgba(255,215,0,0.4);
  }

  .stepCard::before {
    content: counter(stepCounter, decimal-leading-zero);
    position: absolute;
    top: -16px;
    left: 1.4rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #1a0033;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(255,183,0,0.4);
  }

  .stepTitle {
    margin: 0 0 0.7rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
  }

  .stepText {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-soft);
  }

  /* Requirements table */
  .table-responsive {
    overflow-x: auto;
    border-radius: var(--radius-2, 14px);
    box-shadow: var(--shadow-1, 0 12px 32px rgba(0,0,0,0.25));
  }

  .reqTable {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    background: var(--surface-card, #1a1730);
    border-radius: var(--radius-2, 14px);
  }

  .reqTable thead {
    background: linear-gradient(135deg, rgba(106,17,203,0.6), rgba(37,117,252,0.5));
  }

  .reqTable th {
    padding: 1.1rem 1.3rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-bright);
  }

  .reqTable td {
    padding: 1.05rem 1.3rem;
    font-size: 0.96rem;
    color: var(--text-soft);
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .reqTable td:first-child {
    font-weight: 600;
    color: var(--text-bright);
  }

  .reqTable tr:hover td {
    background: rgba(255,215,0,0.05);
  }

  /* KYC grid */
  .kycGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
  }

  .kycCard {
    padding: 1.8rem 1.5rem;
    background: var(--surface-card, #1a1730);
    border-left: 4px solid #ffd700;
    border-radius: var(--radius-2, 12px);
    box-shadow: var(--shadow-1, 0 10px 28px rgba(0,0,0,0.3));
    transition: transform .3s ease;
  }

  .kycCard:hover { transform: translateY(-4px); }

  .kycCard h3 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    color: var(--text-bright);
  }

  .kycCard p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--text-soft);
  }

  /* Highlight boxes */
  .highlightBox {
    padding: 2rem clamp(1.5rem, 3vw, 2.5rem);
    background: linear-gradient(135deg, rgba(106,17,203,0.18), rgba(255,215,0,0.08));
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: var(--radius-2, 14px);
  }

  .highlightBox h3 {
    margin: 0 0 0.8rem;
    font-size: 1.3rem;
    color: #ffd700;
  }

  .highlightBox p {
    margin: 0 0 1.5rem;
    color: var(--text-soft);
    line-height: 1.65;
  }

  /* FAQ Accordion */
  .faqList {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .faqItem {
    background: var(--surface-card, #1a1730);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-2, 12px);
    overflow: hidden;
    transition: border-color .25s ease;
  }

  .faqItem[open] {
    border-color: rgba(255,215,0,0.4);
  }

  .faqItem summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    cursor: pointer;
    list-style: none;
  }

  .faqItem summary::-webkit-details-marker { display: none; }

  .faqItem summary::after {
    content: '+';
    font-size: 1.6rem;
    font-weight: 300;
    color: #ffd700;
    transition: transform .3s;
  }

  .faqItem[open] summary::after { transform: rotate(45deg); }

  .faqAnswer {
    padding: 0 1.5rem 1.4rem;
    color: var(--text-soft);
    line-height: 1.6;
    font-size: 0.96rem;
  }

  /* Final CTA */
  .finalCta {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    background: var(--gradient-2, linear-gradient(135deg, #1a0033 0%, #4a0080 50%, #1a0033 100%));
    border-radius: var(--radius-3, 20px);
    box-shadow: var(--shadow-2, 0 30px 80px rgba(0,0,0,0.5));
    border: 1px solid rgba(255,215,0,0.2);
  }

  .finalCta h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--text-bright);
  }

  .finalCta p {
    max-width: 540px;
    margin: 0 auto 2rem;
    color: var(--text-soft);
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .heroTitle { font-size: 2rem; }
    .heroCtaRow { flex-direction: column; align-items: stretch; }
    .ctaPrimary { justify-content: center; }
  }