@import "https://lsong.org/css/stylesheet.css";

:root {
  color-scheme: light dark;
}

.client-row {
  color: inherit;
  text-decoration: none;
}

.client-row:hover strong {
  color: var(--accent);
}

.totp-qr {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin: 18px auto;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
}

.totp-secret {
  letter-spacing: .08em;
  text-align: center;
}

.recovery-codes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  padding-left: 24px;
}

.recovery-code {
  font-size: 15px;
  user-select: all;
}

.secret {
  padding: 13px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.scopes {
  list-style: none;
  padding: 0;
}

.scopes li {
  padding: 8px 0;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--line);
}

.identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.identity h1 {
  margin: 0;
  line-height: 1.15;
}

.identity p {
  margin: 3px 0 0;
}

.stack>*+* {
  margin-top: 14px;
}

.danger {
  color: var(--danger);
}

.app-danger-zone {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.button-danger {
  border-color: var(--danger);
  background: var(--danger);
  color: #fff;
}

.passkey-action {
  margin-top: 6px;
}

.passkey-status:empty {
  display: none;
}

.row-actions {
  display: flex;
  gap: 8px;
}

.home-hero {
  max-width: 760px;
  padding: clamp(72px, 12vw, 132px) 0 clamp(56px, 9vw, 96px);
}

.home-eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 9vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
}

.home-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.55;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.home-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-features article {
  padding: 32px 28px 32px 0;
}

.home-features article+article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.home-features h2 {
  margin: 16px 0 10px;
  font-size: 18px;
}

.home-features p,
.home-developer-link {
  color: var(--muted);
}

.home-features p {
  margin: 0;
  line-height: 1.6;
}

.home-feature-mark {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.home-developer-link {
  margin: 28px 0 64px;
  font-size: 14px;
}

@media (max-width: 520px) {
  .home-features {
    grid-template-columns: 1fr;
  }

  .home-features article,
  .home-features article+article {
    padding: 24px 0;
    border-left: 0;
  }

  .home-features article+article {
    border-top: 1px solid var(--line);
  }

  .recovery-codes {
    grid-template-columns: 1fr;
  }
}