/* Page styles for signup.html, lifted out verbatim.
   External so style-src can drop 'unsafe-inline'; see
   docs/improvement-plan-2026.md §23. Linked at the same position the
   <style> block occupied, so it still overrides styles.css. */

  .signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
  }
  @media (max-width: 920px) {
    .signup-grid { grid-template-columns: 1fr; }
  }
  #clerk-signup { display: grid; justify-content: center; min-height: 420px; }
  @media (min-width: 921px) {
    #clerk-signup { justify-content: end; position: sticky; top: 96px; }
  }
  .auth-skeleton {
    width: 100%;
    max-width: 400px;
    height: 420px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: linear-gradient(100deg, var(--bg-2) 40%, var(--paper) 50%, var(--bg-2) 60%);
    background-size: 200% 100%;
  }
  @media (prefers-reduced-motion: no-preference) {
    .auth-skeleton { animation: authShimmer 1.4s linear infinite; }
  }
  @keyframes authShimmer {
    from { background-position: 120% 0; }
    to { background-position: -80% 0; }
  }
  .signup-note {
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 16px;
    max-width: 400px;
  }
  @media (min-width: 921px) { .signup-note { margin-left: auto; text-align: center; } }

  /* "What happens next" panel — fixed navy surface (mirrors the mockup's
     dark sidebar) rather than the --ink/--bg pair, which inverts under
     [data-theme="dark"] and would leave the copy unreadable. */
  .signup-next {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    padding: 28px 26px;
    border-radius: var(--r-xl);
    background: #0f1b33;
  }
  .signup-next::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--kente);
  }
  .signup-next-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8fa4cc;
  }
  .signup-next-steps {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .signup-next-steps li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; }
  .signup-next-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold);
    padding-top: 2px;
  }
  .signup-next-steps h3 {
    margin: 0;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
  }
  .signup-next-steps p {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #8fa4cc;
  }
