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

  :root {
    --login-step-bg: rgba(255,255,255,0.04);
    --login-step-border: rgba(255,255,255,0.08);
    --login-accent-rgb: 255, 180, 0;
  }

  .login-hero {
    background: var(--gradient-hero, linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%));
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-accent);
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
  }

  .login-hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--login-accent-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .login-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 1rem;
  }

  .login-hero h1 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .login-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 640px;
    line-height: 1.7;
    margin: 0 0 1.8rem;
  }

  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
  }

  .trust-badge svg {
    flex-shrink: 0;
    color: var(--accent);
  }

  /* Steps Timeline */
  .steps-section {
    margin-bottom: 2.5rem;
  }

  .steps-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.8rem;
  }

  .steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .steps-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-secondary, #6c63ff), transparent);
    opacity: 0.4;
  }

  .step-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1rem 1.2rem 1rem 0;
    position: relative;
    transition: var(--transition-base);
  }

  .step-item:hover .step-num {
    background: var(--gradient-gold);
    color: #000;
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
  }

  .step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--login-step-bg);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--accent);
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
  }

  .step-content {
    padding-top: 0.6rem;
    flex: 1;
  }

  .step-content strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

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

  /* Login Options Cards Grid */
  .options-section {
    margin-bottom: 2.5rem;
  }

  .options-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
  }

  .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
  }

  .option-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
  }

  .option-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
  }

  .option-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 16px rgba(var(--login-accent-rgb), 0.25);
  }

  .option-card-icon svg {
    color: #000;
  }

  .option-card h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
  }

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

  /* Security Highlight Box */
  .security-section {
    margin-bottom: 2.5rem;
  }

  .security-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
  }

  .security-banner {
    background: linear-gradient(135deg, rgba(0,200,100,0.08) 0%, rgba(0,150,255,0.06) 100%);
    border: 1px solid rgba(0,200,100,0.25);
    border-radius: var(--radius-lg);
    padding: 1.8rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
  }

  .security-banner-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(0,200,100,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .security-banner h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
  }

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

  .security-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .security-checklist li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-base);
  }

  .security-checklist li:hover {
    border-color: var(--border-accent);
    color: var(--text-primary);
  }

  .check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(0,200,100,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Password Recovery - Accordion style */
  .recovery-section {
    margin-bottom: 2.5rem;
  }

  .recovery-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
  }

  .recovery-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .recovery-step {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    text-align: center;
    transition: var(--transition-bounce);
  }

  .recovery-step:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-accent);
  }

  .recovery-step-num {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.6rem;
  }

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

  .recovery-note {
    background: rgba(255,180,0,0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1rem 1.4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Dashboard Features - Comparison table */
  .dashboard-section {
    margin-bottom: 2.5rem;
  }

  .dashboard-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
  }

  .table-responsive {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
  }

  .dashboard-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
  }

  .dashboard-table thead {
    background: var(--gradient-accent);
  }

  .dashboard-table thead th {
    padding: 1rem 1.4rem;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: left;
    white-space: nowrap;
  }

  .dashboard-table tbody tr {
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-base);
  }

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

  .dashboard-table tbody tr:hover {
    background: var(--bg-card-hover);
  }

  .dashboard-table td {
    padding: 0.9rem 1.4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    vertical-align: middle;
  }

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

  .feature-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(0,200,100,0.15);
    border-radius: 50%;
  }

  /* FAQ Accordion */
  .faq-section {
    margin-bottom: 2.5rem;
  }

  .faq-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  details.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
  }

  details.faq-item[open] {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-accent);
  }

  details.faq-item summary {
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
  }

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

  details.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    line-height: 1;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition-base);
  }

  details.faq-item[open] summary::after {
    content: '−';
  }

  .faq-body {
    padding: 0 1.4rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1rem;
  }

  .faq-body a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
  }

  .faq-body a:hover {
    text-decoration: underline;
  }

  /* CTA Section */
  .cta-strip {
    background: var(--gradient-hero);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-accent);
    margin-bottom: 1rem;
  }

  .cta-strip h2 {
    color: var(--text-primary);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    margin: 0 0 0.7rem;
  }

  .cta-strip p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
  }

  .btn--gold {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: var(--shadow-gold);
  }

  .btn--gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(var(--login-accent-rgb), 0.5);
  }

  .btn--primary {
    background: var(--gradient-accent);
    color: #000;
    box-shadow: var(--shadow-accent);
  }

  .btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-accent);
  }

  .section-spacer {
    height: 0.5rem;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .login-hero,
  .steps-section,
  .options-section,
  .security-section,
  .recovery-section,
  .dashboard-section,
  .faq-section,
  .cta-strip {
    animation: fadeInUp 0.5s ease both;
  }

  @media (max-width: 768px) {
    .login-hero { padding: 2rem 1.5rem; }
    .security-banner { flex-direction: column; gap: 1rem; }
    .recovery-steps { grid-template-columns: repeat(2, 1fr); }
    .options-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    .recovery-steps { grid-template-columns: 1fr; }
    .steps-timeline::before { left: 20px; }
  }