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

  .login-page {
    --accent-glow: 0 0 40px rgba(255, 200, 50, 0.25);
    color: var(--fg);
    padding: clamp(2rem, 5vw, 4rem) 0;
  }

  .login-page h1, .login-page h2, .login-page h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .login-hero {
    position: relative;
    background: var(--grad, linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%));
    border-radius: var(--rad, 24px);
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
    overflow: hidden;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    box-shadow: var(--shadow, 0 30px 80px rgba(0,0,0,0.35));
    color: #fff;
  }

  .login-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,200,50,0.35) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
  }

  .login-hero::after {
    content: '';
    position: absolute;
    bottom: -8%;
    left: -3%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(120,80,255,0.3) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }

  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
  }

  .hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin: 0 0 1rem;
    background: linear-gradient(120deg, #fff 0%, #ffd86b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-lead {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
  }

  .hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
  }

  .trust-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px #4ade80;
  }

  .hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd86b 0%, #ff8a3d 100%);
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(255, 138, 61, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-size: 1.05rem;
  }

  .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 138, 61, 0.55);
  }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.25s ease;
  }

  .cta-secondary:hover { background: rgba(255,255,255,0.15); }

  .login-stats-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(20px);
  }

  .stats-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffd86b;
    margin-bottom: 1.25rem;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .stats-row .stat {
    text-align: center;
  }

  .stats-row .stat strong {
    display: block;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    color: #fff;
    font-weight: 800;
  }

  .stats-row .stat span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
  }

  .countdown-strip {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(90deg, rgba(255,138,61,0.2), rgba(255,216,107,0.15));
    border-radius: 12px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px dashed rgba(255,216,107,0.4);
  }

  /* Section blocks */
  .info-section {
    margin: clamp(2.5rem, 5vw, 4rem) 0;
  }

  .section-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.5rem;
    color: var(--fg);
  }

  .section-sub {
    color: var(--muted, #6b7280);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    max-width: 720px;
  }

  /* Device cards */
  .device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .device-card {
    background: var(--card, #fff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 18px;
    padding: 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .device-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd86b, #ff8a3d);
  }

  .device-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  }

  .device-card h3 {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    color: var(--fg);
  }

  .device-card ol {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--fg);
    line-height: 1.7;
  }

  .device-card ol li { margin-bottom: 0.4rem; }

  .device-card p {
    margin: 1rem 0 0;
    font-size: 0.92rem;
    color: var(--muted, #6b7280);
    line-height: 1.6;
  }

  /* Timeline */
  .recovery-timeline {
    position: relative;
    padding: 2rem;
    background: var(--card, #fff);
    border-radius: 20px;
    border: 1px solid var(--border, #e5e7eb);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  }

  .timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
    display: grid;
    gap: 1rem;
  }

  .timeline-list li {
    counter-increment: step;
    position: relative;
    padding: 1.1rem 1.2rem 1.1rem 4rem;
    background: linear-gradient(135deg, rgba(255,216,107,0.08), rgba(255,138,61,0.04));
    border-radius: 14px;
    border-left: 4px solid #ffd86b;
    line-height: 1.6;
  }

  .timeline-list li::before {
    content: counter(step);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.2rem;
    height: 2.2rem;
    background: linear-gradient(135deg, #ffd86b, #ff8a3d);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(255,138,61,0.35);
  }

  /* Troubleshooting */
  .trouble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }

  .trouble-card {
    padding: 1.5rem;
    background: var(--card, #fff);
    border-radius: 16px;
    border: 1px solid var(--border, #e5e7eb);
    transition: all 0.3s ease;
    position: relative;
  }

  .trouble-card:hover {
    border-color: #ff8a3d;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  }

  .trouble-card .num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #ff8a3d;
    margin-bottom: 0.5rem;
  }

  .trouble-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--fg);
  }

  .trouble-card p {
    margin: 0;
    color: var(--muted, #6b7280);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .inline-cta {
    margin-top: 2rem;
    padding: 1.75rem;
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    border-radius: 18px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .inline-cta p { margin: 0; font-size: 1.05rem; }
  .inline-cta a {
    background: linear-gradient(135deg, #ffd86b, #ff8a3d);
    color: #1a1a2e;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.2s ease;
  }
  .inline-cta a:hover { transform: scale(1.04); }

  /* Support table */
  .table-responsive {
    overflow-x: auto;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  }

  .support-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card, #fff);
    overflow: hidden;
  }

  .support-table thead {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
  }

  .support-table th,
  .support-table td {
    padding: 1.1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border, #e5e7eb);
  }

  .support-table th {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .support-table tbody tr:hover {
    background: rgba(255,216,107,0.06);
  }

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

  /* FAQ accordion */
  .faq-list {
    display: grid;
    gap: 0.85rem;
  }

  .faq-item {
    background: var(--card, #fff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .faq-item[open] {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: #ff8a3d;
  }

  .faq-item summary {
    cursor: pointer;
    padding: 1.15rem 1.5rem;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--fg);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

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

  .faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: #ff8a3d;
    transition: transform 0.3s ease;
    font-weight: 400;
  }

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

  .faq-item .faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted, #6b7280);
    line-height: 1.65;
  }

  @media (max-width: 600px) {
    .hero-cta-row { flex-direction: column; }
    .cta-primary, .cta-secondary { width: 100%; }
    .stats-row { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .inline-cta { flex-direction: column; align-items: stretch; text-align: center; }
    .inline-cta a { width: 100%; text-align: center; }
  }