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

  .reg-page {
    --c1: var(--color-brand-primary);
    --c2: var(--color-brand-accent);
    --bg: var(--color-bg-primary);
    --bg2: var(--color-bg-secondary);
    --bg3: var(--color-bg-tertiary);
    --fg: var(--color-neutral-100);
    --fg2: var(--color-neutral-300);
    --rad: var(--radius-lg);
    --sp: var(--spacing-lg);
    font-family: var(--font-body);
    color: var(--fg);
    padding: var(--spacing-xl) 0;
  }

  .reg-hero {
    position: relative;
    background: var(--gradient-brand);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    margin-bottom: var(--spacing-xl);
  }
  .reg-hero::before {
    content: '';
    position: absolute;
    top: 5%; right: 3%;
    width: 280px; height: 280px;
    background: var(--color-brand-glow);
    filter: blur(80px);
    opacity: .4;
    border-radius: 50%;
    pointer-events: none;
  }
  .reg-hero-inner { position: relative; z-index: 2; }
  .main-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: #fff;
    letter-spacing: -.02em;
  }
  .hero-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255,255,255,.92);
    margin-bottom: var(--spacing-lg);
    max-width: 640px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }
  .hero-stat-box {
    background: rgba(0,0,0,.28);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,.12);
    text-align: center;
  }
  .hero-stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    display: block;
  }
  .hero-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .scarcity-bar {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(0,0,0,.4);
    padding: .55rem 1.1rem;
    border-radius: 100px;
    font-size: .85rem;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
  }
  .scarcity-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 0 0 var(--color-success);
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
    70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #fff;
    color: var(--color-bg-primary);
    font-weight: 800;
    padding: 1.05rem 2.2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: .02em;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
  }
  .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    color: var(--color-bg-primary);
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--fg);
    letter-spacing: -.01em;
  }
  .section-title::after {
    content: '';
    display: block;
    width: 60px; height: 4px;
    background: var(--gradient-brand);
    border-radius: 2px;
    margin-top: .6rem;
  }
  .sub-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--c2);
  }

  .why-section { margin-bottom: var(--spacing-xl); }
  .perk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
  }
  .perk-card {
    background: var(--bg2);
    border-radius: var(--rad);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255,255,255,.06);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
  }
  .perk-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
  }
  .perk-card:hover {
    transform: translateY(-6px);
    border-color: var(--c2);
    box-shadow: var(--shadow-card);
  }
  .perk-card:hover::before { transform: scaleX(1); }
  .perk-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: .6rem;
  }
  .perk-text { color: var(--fg2); line-height: 1.55; }

  .timeline-section { margin-bottom: var(--spacing-xl); }
  .timeline {
    position: relative;
    padding-left: 0;
  }
  .timeline-step {
    background: var(--bg2);
    border-radius: var(--rad);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--c2);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .timeline-step:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-card);
  }
  .step-badge {
    display: inline-block;
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 700;
    padding: .3rem .85rem;
    border-radius: 100px;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .8rem;
  }
  .step-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--fg);
  }
  .step-body { color: var(--fg2); line-height: 1.65; }
  .step-body strong { color: var(--fg); }
  .step-body a { color: var(--c2); font-weight: 600; }

  .checklist {
    list-style: none;
    padding: 0;
    margin: var(--spacing-sm) 0 0 0;
  }
  .checklist li {
    padding: .5rem 0 .5rem 1.8rem;
    position: relative;
    color: var(--fg2);
  }
  .checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 800;
  }

  .table-responsive {
    margin-top: var(--spacing-sm);
    border-radius: var(--rad);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
  }
  .info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg3);
  }
  .info-table th {
    background: var(--bg);
    color: var(--c2);
    padding: 1rem;
    text-align: left;
    font-family: var(--font-display);
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .info-table td {
    padding: 1rem;
    color: var(--fg2);
    border-top: 1px solid rgba(255,255,255,.06);
  }

  .mobile-section {
    background: linear-gradient(135deg, var(--bg2), var(--bg3));
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(255,255,255,.08);
    position: relative;
    overflow: hidden;
  }
  .mobile-section::before {
    content: '';
    position: absolute;
    top: 0; right: -50px;
    width: 300px; height: 300px;
    background: var(--gradient-glow);
    opacity: .25;
    filter: blur(60px);
    border-radius: 50%;
  }
  .mobile-section-inner { position: relative; z-index: 2; }

  .faq-wrap { margin-bottom: var(--spacing-xl); }
  .faq-item {
    background: var(--bg2);
    border-radius: var(--rad);
    margin-bottom: .8rem;
    border: 1px solid rgba(255,255,255,.06);
    overflow: hidden;
    transition: border-color .3s ease;
  }
  .faq-item:hover { border-color: var(--c2); }
  .faq-q {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 1.15rem 1.4rem;
    color: var(--fg);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .faq-q::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--c2);
    transition: transform .3s ease;
    line-height: 1;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 1.4rem;
    color: var(--fg2);
    line-height: 1.65;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 1.4rem 1.3rem;
  }

  .closing-cta {
    background: var(--gradient-brand);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
  }
  .closing-cta h2 {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
  }
  .closing-cta p {
    color: rgba(255,255,255,.92);
    margin-bottom: var(--spacing-lg);
    font-size: 1.05rem;
  }

  @media (max-width: 768px) {
    .hero-stats { grid-template-columns: 1fr; }
    .reg-hero { padding: 1.75rem; }
    .mobile-section { padding: var(--spacing-lg); }
  }