.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.logo {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo .dot { color: var(--accent); }

.tagline {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink3);
  margin-top: 12px;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 40px;
  width: 280px;
  max-width: 100%;
}

.idp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.idp-btn:hover { background: var(--bg2); border-color: var(--ink3); }
.idp-btn:active { background: var(--bg2); }
.idp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.rule {
  width: 48px;
  height: 1px;
  background: var(--divider);
  margin-top: 48px;
}
