:root {
  color-scheme: light;
  --tm-background: #eef3f8;
  --tm-foreground: #101828;
  --tm-muted: #475467;
  --tm-panel: rgba(255, 255, 255, 0.92);
  --tm-panel-border: rgba(226, 232, 240, 0.92);
  --tm-shadow: 0 28px 56px rgba(15, 23, 42, 0.08);
  --tm-button-bg: #111827;
  --tm-button-text: #ffffff;
  --tm-button-hover: #1f2937;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--tm-foreground);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.tm-page-bg {
  min-height: 100vh;
  background:
    radial-gradient(1100px 520px at 95% -10%, rgba(191, 219, 254, 0.7) 0%, rgba(191, 219, 254, 0) 62%),
    radial-gradient(860px 460px at -10% 24%, rgba(226, 232, 240, 0.9) 0%, rgba(226, 232, 240, 0) 58%),
    var(--tm-background);
}

.tm-page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.tm-panel {
  border: 1px solid var(--tm-panel-border);
  border-radius: 28px;
  background: var(--tm-panel);
  box-shadow: var(--tm-shadow);
  backdrop-filter: blur(14px);
}

.tm-brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tm-brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #020617;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.tm-brand-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.tm-brand-kicker {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-transform: none;
  color: #0f172a;
}

.tm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 188px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 140ms ease,
    transform 140ms ease,
    opacity 140ms ease;
}

.tm-button:hover {
  transform: translateY(-1px);
}

.tm-button[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.45;
  transform: none;
}

.tm-button-primary {
  background: var(--tm-button-bg);
  color: var(--tm-button-text);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.tm-button-primary:hover {
  background: var(--tm-button-hover);
}

@media (max-width: 640px) {
  .tm-page-shell {
    padding: 16px;
  }

  .tm-brand-lockup {
    gap: 14px;
  }
}
