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

  .vsPage {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background: var(--color-bg-base);
    padding: var(--spacing-2xl) 0;
  }

  /* Hero intro */
  .vsHero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-bg-surface) 60%, var(--color-bg-card) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-glow);
    box-shadow: var(--shadow-glow);
    overflow: hidden;
  }

  .vsHero::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-accent), var(--color-gold), transparent);
    border-radius: var(--radius-full);
  }

  .vsHeroBadge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 2px 12px rgba(212,175,55,0.4);
  }

  .vsHeroTitle {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.15;
    margin: 0 0 var(--spacing-md);
    letter-spacing: -0.02em;
  }

  .vsHeroTitle span {
    background: linear-gradient(135deg, var(--color-gold), var(--color-accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .vsHeroDesc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 620px;
    line-height: 1.7;
    margin: 0 auto var(--spacing-xl);
  }

  .vsHeroActions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Steps section */
  .vsStepsWrap {
    margin-bottom: var(--spacing-3xl);
  }

  .vsSectionHead {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }

  .vsSectionNum {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--color-brand-primary), var(--color-brand-secondary));
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    box-shadow: var(--shadow-glow);
  }

  .vsSectionTitle {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
  }

  .vsLoginMethods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }

  .vsMethodCard {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-xl);
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    cursor: default;
  }

  .vsMethodCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-border-glow);
  }

  .vsMethodIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    font-size: 1.6rem;
  }

  .vsMethodIcon--email {
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
    border: 1px solid rgba(139,92,246,0.3);
  }

  .vsMethodIcon--social {
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(255,215,0,0.15));
    border: 1px solid rgba(212,175,55,0.3);
  }

  .vsMethodTitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-sm);
  }

  .vsMethodDesc {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
    flex: 1;
  }

  .vsMethodTag {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: 2px var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-bright));
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    align-self: flex-start;
  }

  /* Forgot password highlight box */
  .vsForgotBox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.05));
    border: 1px solid rgba(139,92,246,0.25);
    border-left: 3px solid var(--color-brand-primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-3xl);
  }

  .vsForgotIcon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .vsForgotContent h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-xs);
  }

  .vsForgotContent p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
  }

  /* Registration timeline */
  .vsRegWrap {
    margin-bottom: var(--spacing-3xl);
  }

  .vsTimeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--spacing-xl);
    position: relative;
  }

  .vsTimeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 44px;
    bottom: 44px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-brand-primary), var(--color-gold), var(--color-accent));
    border-radius: var(--radius-full);
  }

  .vsTimelineItem {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
  }

  .vsTimelineDot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-full);
    background: var(--color-bg-elevated);
    border: 2px solid var(--color-brand-primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-gold);
    box-shadow: 0 0 12px rgba(99,102,241,0.3);
    position: relative;
    z-index: 1;
  }

  .vsTimelineBody {
    flex: 1;
    padding-top: 10px;
  }

  .vsTimelineTitle {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-xs);
  }

  .vsTimelineText {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
  }

  /* Fields grid */
  .vsFieldsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin: var(--spacing-xl) 0;
  }

  .vsFieldChip {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    transition: border-color var(--transition-fast);
  }

  .vsFieldChip:hover { border-color: var(--color-border-glow); }

  .vsFieldChip span:first-child {
    font-size: 1rem;
  }

  /* AUD callout */
  .vsAudBanner {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,215,0,0.06));
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
  }

  .vsAudFlag {
    font-size: 2.2rem;
    flex-shrink: 0;
  }

  .vsAudText strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 2px;
  }

  .vsAudText p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
  }

  /* Post registration dashboard */
  .vsDashCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-3xl);
  }

  .vsDashCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), border-color var(--transition-base);
  }

  .vsDashCard:hover {
    transform: translateY(-3px);
    border-color: var(--color-border-glow);
  }

  .vsDashCardIcon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
  }

  .vsDashCardTitle {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-xs);
  }

  .vsDashCardDesc {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
  }

  /* KYC info panel */
  .vsKycPanel {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.03));
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-3xl);
  }

  .vsKycIcon {
    font-size: 2rem;
    flex-shrink: 0;
  }

  .vsKycContent h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-success);
    margin: 0 0 var(--spacing-sm);
  }

  .vsKycContent p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
  }

  /* App section */
  .vsAppWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-bg-card) 100%);
    border: 1px solid var(--color-border-glow);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-3xl);
    box-shadow: var(--shadow-glow);
    overflow: hidden;
    position: relative;
  }

  .vsAppWrap::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-gold), transparent);
  }

  .vsAppLabel {
    display: inline-block;
    padding: 3px var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-brand-primary), var(--color-brand-secondary));
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: var(--spacing-sm);
  }

  .vsAppTitle {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-md);
    line-height: 1.2;
  }

  .vsAppDesc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0 0 var(--spacing-xl);
  }

  .vsAppFeatures {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .vsAppFeature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.88rem;
    color: var(--color-text-secondary);
  }

  .vsAppFeature::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: linear-gradient(135deg, var(--color-success), #16a34a);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
  }

  .vsAppVisual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vsPhoneMock {
    width: 160px;
    height: 280px;
    background: linear-gradient(135deg, var(--color-bg-base), var(--color-bg-surface));
    border: 2px solid var(--color-border-glow);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-glow), 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    animation: vsPhoneFloat 3s ease-in-out infinite;
  }

  @keyframes vsPhoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .vsPhoneMock::before {
    content: '';
    position: absolute;
    top: 12px;
    width: 50px;
    height: 4px;
    background: var(--color-border);
    border-radius: var(--radius-full);
  }

  .vsPhoneIcon {
    font-size: 2.5rem;
  }

  .vsPhoneText {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    text-align: center;
    letter-spacing: 0.05em;
  }

  /* FAQ accordion */
  .vsFaqWrap {
    margin-bottom: var(--spacing-3xl);
  }

  .vsFaqItem {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: border-color var(--transition-base);
  }

  .vsFaqItem:hover {
    border-color: var(--color-border-glow);
  }

  .vsFaqQuestion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    cursor: pointer;
    user-select: none;
    list-style: none;
    gap: var(--spacing-md);
  }

  .vsFaqQuestion::-webkit-details-marker { display: none; }

  .vsFaqQuestionText {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-text-primary);
    flex: 1;
  }

  .vsFaqChevron {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-elevated);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    transition: transform var(--transition-base), background var(--transition-base);
  }

  details[open] .vsFaqChevron {
    transform: rotate(180deg);
    background: var(--color-brand-primary);
    color: #fff;
  }

  .vsFaqAnswer {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-md);
  }

  /* Comparison table */
  .vsTableWrap {
    margin-bottom: var(--spacing-3xl);
    overflow-x: auto;
    border-radius: var(--radius-lg);
  }

  .vsCompTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
  }

  .vsCompTable thead th {
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-bg-elevated);
    color: var(--color-text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    text-align: left;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-border-glow);
  }

  .vsCompTable thead th:first-child {
    border-radius: var(--radius-md) 0 0 0;
  }

  .vsCompTable thead th:last-child {
    border-radius: 0 var(--radius-md) 0 0;
  }

  .vsCompTable tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-fast);
  }

  .vsCompTable tbody tr:last-child {
    border-bottom: none;
  }

  .vsCompTable tbody tr:hover {
    background: var(--color-bg-card-hover);
  }

  .vsCompTable td {
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--color-text-secondary);
    vertical-align: middle;
  }

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

  .vsCheckGreen { color: var(--color-success); font-weight: 700; }
  .vsCheckGold { color: var(--color-gold); font-weight: 700; }

  /* CTA bottom */
  .vsCtaBottom {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-bg-elevated), var(--color-bg-surface));
    border: 1px solid var(--color-border-glow);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
  }

  .vsCtaBottom::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-accent-bright), var(--color-gold), transparent);
  }

  .vsCtaTitle {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-sm);
  }

  .vsCtaSubtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin: 0 0 var(--spacing-xl);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .vsHero { padding: var(--spacing-2xl) var(--spacing-md); }
    .vsLoginMethods { grid-template-columns: 1fr; }
    .vsFieldsGrid { grid-template-columns: 1fr 1fr; }
    .vsDashCards { grid-template-columns: 1fr; gap: var(--spacing-sm); }
    .vsAppWrap { grid-template-columns: 1fr; text-align: center; }
    .vsPhoneMock { width: 120px; height: 210px; }
    .vsAppFeatures { align-items: flex-start; }
    .vsAppVisual { order: -1; }
    .vsTimeline::before { left: 20px; }
  }

  @media (max-width: 480px) {
    .vsFieldsGrid { grid-template-columns: 1fr; }
    .vsHeroActions { flex-direction: column; align-items: center; }
    .vsAudBanner { flex-direction: column; text-align: center; }
    .vsKycPanel { flex-direction: column; }
    .vsForgotBox { flex-direction: column; }
  }