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

  .vip-hero {
    position: relative;
    padding: var(--sp6) 0 var(--sp5);
    text-align: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--card-bg) 50%, var(--bg) 100%);
    border-radius: var(--rad2);
    overflow: hidden;
    margin-bottom: var(--sp5);
  }

  .vip-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, color-mix(in srgb, var(--acc) 18%, transparent), transparent 70%);
    pointer-events: none;
  }

  .vip-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1.2rem;
    border: 1px solid var(--acc);
    border-radius: 2rem;
    color: var(--acc);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: var(--sp3);
    background: color-mix(in srgb, var(--acc) 10%, transparent);
  }

  .vip-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: var(--fg);
    line-height: 1.1;
    margin: 0 0 var(--sp3);
    letter-spacing: -.02em;
  }

  .vip-hero__title span {
    background: linear-gradient(90deg, var(--acc), var(--acc2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .vip-hero__desc {
    color: var(--fg2);
    font-size: 1.08rem;
    max-width: 620px;
    margin: 0 auto var(--sp4);
    line-height: 1.7;
  }

  .vip-hero__stats {
    display: flex;
    justify-content: center;
    gap: var(--sp4);
    flex-wrap: wrap;
    margin-bottom: var(--sp4);
  }

  .vip-hero__stat {
    text-align: center;
  }

  .vip-hero__stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--acc);
    line-height: 1;
  }

  .vip-hero__stat-label {
    font-size: .78rem;
    color: var(--fg3);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: .25rem;
  }

  /* HOW IT WORKS - timeline */
  .vip-how {
    margin-bottom: var(--sp5);
  }

  .vip-section-header {
    text-align: center;
    margin-bottom: var(--sp4);
  }

  .vip-section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--fg);
    margin: var(--sp2) 0 var(--sp2);
  }

  .vip-section-header p {
    color: var(--fg2);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
  }

  .timeline {
    display: flex;
    gap: 0;
    position: relative;
    flex-wrap: wrap;
  }

  .timeline::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    left: calc(16.66% - 1px);
    right: calc(16.66% - 1px);
    height: 2px;
    background: linear-gradient(90deg, var(--acc), var(--acc2));
    opacity: .4;
  }

  .timeline-step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 0 var(--sp2) var(--sp3);
    position: relative;
  }

  .timeline-step__icon {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--acc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp2);
    font-size: 1.6rem;
    box-shadow: 0 0 24px color-mix(in srgb, var(--acc) 30%, transparent);
    position: relative;
    z-index: 1;
  }

  .timeline-step__num {
    position: absolute;
    top: -.3rem;
    right: -.3rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: var(--acc);
    color: var(--bg);
    font-size: .65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .timeline-step h3 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--fg);
    margin: 0 0 .4rem;
  }

  .timeline-step p {
    font-size: .82rem;
    color: var(--fg2);
    line-height: 1.55;
    margin: 0;
  }

  /* LEVELS TABLE */
  .vip-levels {
    margin-bottom: var(--sp5);
  }

  .vip-levels-table-wrap {
    border-radius: var(--rad2);
    overflow: hidden;
    box-shadow: var(--shadow2);
    border: 1px solid var(--border);
  }

  .vip-levels-table {
    width: 100%;
    border-collapse: collapse;
  }

  .vip-levels-table thead tr {
    background: linear-gradient(90deg, var(--card-bg), var(--card-bg2));
  }

  .vip-levels-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--fg3);
    border-bottom: 2px solid var(--border2);
    white-space: nowrap;
  }

  .vip-levels-table tbody tr {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    transition: background var(--trans);
  }

  .vip-levels-table tbody tr:last-child {
    border-bottom: none;
  }

  .vip-levels-table tbody tr:hover {
    background: var(--card-bg2);
  }

  .vip-levels-table tbody tr.level-top {
    background: linear-gradient(90deg, color-mix(in srgb, var(--acc) 8%, var(--card-bg)), var(--card-bg));
  }

  .vip-levels-table td {
    padding: 1.1rem 1.25rem;
    font-size: .9rem;
    color: var(--fg2);
    vertical-align: middle;
  }

  .level-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    color: var(--fg);
    font-size: .95rem;
  }

  .level-badge__dot {
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
  }

  .level-badge--rookie .level-badge__dot { background: #7ec8e3; }
  .level-badge--apprentice .level-badge__dot { background: #a8e6cf; }
  .level-badge--shark .level-badge__dot { background: #f7971e; }
  .level-badge--whale .level-badge__dot { background: var(--acc); box-shadow: 0 0 8px var(--acc); }

  .rakeback-pill {
    display: inline-block;
    padding: .25rem .75rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: .88rem;
    background: color-mix(in srgb, var(--acc) 15%, transparent);
    color: var(--acc);
    border: 1px solid color-mix(in srgb, var(--acc) 35%, transparent);
  }

  .rakeback-pill--top {
    background: linear-gradient(90deg, var(--acc), var(--acc2));
    color: var(--bg);
    border: none;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--acc) 40%, transparent);
  }

  /* BENEFITS GRID */
  .vip-benefits {
    margin-bottom: var(--sp5);
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp3);
  }

  .benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--rad2);
    padding: var(--sp4);
    position: relative;
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  }

  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow2);
    border-color: var(--acc);
  }

  .benefit-card__icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: var(--rad);
    background: color-mix(in srgb, var(--acc) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: var(--sp3);
  }

  .benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    margin: 0 0 .5rem;
  }

  .benefit-card p {
    font-size: .85rem;
    color: var(--fg2);
    line-height: 1.6;
    margin: 0;
  }

  /* HIGHLIGHT CTA */
  .vip-cta-block {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-bg2) 100%);
    border: 1px solid var(--border2);
    border-radius: var(--rad2);
    padding: var(--sp5) var(--sp4);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--sp5);
    box-shadow: var(--shadow2);
  }

  .vip-cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, color-mix(in srgb, var(--acc) 12%, transparent), transparent 70%);
    pointer-events: none;
  }

  .vip-cta-block h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--fg);
    margin: 0 0 var(--sp2);
    position: relative;
  }

  .vip-cta-block p {
    color: var(--fg2);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto var(--sp4);
    line-height: 1.65;
    position: relative;
  }

  .vip-cta-block .btn {
    position: relative;
  }

  /* FAQ ACCORDION */
  .vip-faq {
    margin-bottom: var(--sp5);
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp2);
  }

  .faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--rad2);
    overflow: hidden;
    transition: border-color var(--trans);
  }

  .faq-item:hover {
    border-color: var(--border2);
  }

  .faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp3);
    padding: 1.2rem var(--sp4);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }

  .faq-item__question {
    font-size: .98rem;
    font-weight: 700;
    color: var(--fg);
    flex: 1;
  }

  .faq-item__arrow {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--acc) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--trans), background var(--trans);
    color: var(--acc);
    font-size: .9rem;
  }

  .faq-item.is-open .faq-item__arrow {
    transform: rotate(180deg);
    background: var(--acc);
    color: var(--bg);
  }

  .faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }

  .faq-item.is-open .faq-item__body {
    max-height: 400px;
  }

  .faq-item__body-inner {
    padding: 0 var(--sp4) 1.2rem;
    color: var(--fg2);
    font-size: .92rem;
    line-height: 1.7;
  }

  .faq-item__body-inner a {
    color: var(--acc);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid color-mix(in srgb, var(--acc) 40%, transparent);
    transition: border-color var(--trans);
  }

  .faq-item__body-inner a:hover {
    border-color: var(--acc);
  }

  /* RESPONSIVE */
  @media (max-width: 1023px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { display: none; }
    .timeline { flex-direction: column; gap: var(--sp2); }
    .timeline-step { min-width: auto; display: flex; align-items: flex-start; text-align: left; gap: var(--sp3); padding: 0; }
    .timeline-step__icon { flex-shrink: 0; margin: 0; }
    .timeline-step-content {}
    .timeline-step h3, .timeline-step p { text-align: left; }
  }

  @media (max-width: 767px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .vip-hero__stats { gap: var(--sp3); }
    .vip-cta-block { padding: var(--sp4) var(--sp3); }
    .faq-item__trigger { padding: 1rem var(--sp3); }
    .faq-item__body-inner { padding: 0 var(--sp3) 1rem; }
  }

  @media (max-width: 479px) {
    .vip-levels-table th:last-child,
    .vip-levels-table td:last-child { display: none; }
  }